mirror of
https://github.com/PretendoNetwork/miiverse-api.git
synced 2026-08-19 23:24:05 -05:00
Update index file, etc - actually works!
This commit is contained in:
BIN
src/.DS_Store
vendored
Normal file
BIN
src/.DS_Store
vendored
Normal file
Binary file not shown.
BIN
src/portal/.DS_Store
vendored
Normal file
BIN
src/portal/.DS_Store
vendored
Normal file
Binary file not shown.
@@ -1,36 +1,33 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en" crosspilot="">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>rverse</title>
|
||||
<link rel="stylesheet" type="text/css" href="./css/n3ds/style.css">
|
||||
<script src="./js/jquery-1.9.1.min.js"></script>
|
||||
<script src="./js/src/cave-emulation.js"></script>
|
||||
<script src="./js/n3ds/libs.js"></script>
|
||||
<script src="./js/n3ds/olv.js"></script>
|
||||
<script src="./js/n3ds/olv.locale-en.js"></script>
|
||||
</head>
|
||||
<body data-user-id="User" data-is-first-post="1" data-is-first-favorite="1" data-profile-url="/users/User">
|
||||
<div id="body" data-region-id="2">
|
||||
<div id="welcome-start" class="guest-page">
|
||||
<div class="window-page">
|
||||
<div class="window welcome-window">
|
||||
<div class="window-title">
|
||||
<p>Welcome to the Pretendo Network Miiverse placeholder.</p>
|
||||
<p>This is just being used as a testbed for CAVE API functions at the moment.</p>
|
||||
</div>
|
||||
<div class="window-body">
|
||||
<div class="window-body-inner message">
|
||||
<p>You will need a Pretendo Network ID in order to create posts or create a profile. You can't do this yet though.</p>
|
||||
<!--<a href="#" class="black-button register">Link ID</a>-->
|
||||
<a href="#" class="more-button" data-sound="SE_CTR_COMMON_SYSAPPLET_END">Exit</a>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>rverse</title>
|
||||
<link rel="stylesheet" type="text/css" href="./css/n3ds/style.css"/>
|
||||
<script src="./js/cave-emulation.js"/>
|
||||
<script src="./js/n3ds/libs.js"/>
|
||||
<script src="./js/n3ds/olv.locale-en.js"/>
|
||||
<script src="./js/n3ds/olv.js"/>
|
||||
|
||||
</head>
|
||||
<body data-user-id="User" data-is-first-post="1" data-is-first-favorite="1" data-profile-url="/users/User">
|
||||
<div id="body" data-region-id="2">
|
||||
<div id="welcome-start" class="guest-page">
|
||||
<div class="window-page">
|
||||
<div class="window welcome-window">
|
||||
<div class="window-title">
|
||||
<p>Welcome to the Pretendo Network Miiverse placeholder.</p>
|
||||
<p>This is just being used as a testbed for CAVE API functions at the moment.</p>
|
||||
</div>
|
||||
<div class="window-body">
|
||||
<div class="window-body-inner message">
|
||||
<p>You will need a Pretendo Network ID in order to create posts or create a profile. You can't do this yet though.</p>
|
||||
<a href="#" class="black-button register">Link ID</a>
|
||||
<a href="#" class="more-button" data-sound="SE_CTR_COMMON_SYSAPPLET_END">Exit</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
<iframe src="about:blank" style="display: none;"></iframe>
|
||||
</html>
|
||||
BIN
src/portal/js/.DS_Store
vendored
Normal file
BIN
src/portal/js/.DS_Store
vendored
Normal file
Binary file not shown.
5
src/portal/js/jquery-1.9.1.min.js
vendored
5
src/portal/js/jquery-1.9.1.min.js
vendored
File diff suppressed because one or more lines are too long
BIN
src/portal/js/n3ds/.DS_Store
vendored
Normal file
BIN
src/portal/js/n3ds/.DS_Store
vendored
Normal file
Binary file not shown.
@@ -219,26 +219,26 @@ if (typeof cave === "undefined") {
|
||||
|
||||
capture_getLowerImageDetail: function(width, height, quality, format) {
|
||||
console.log('cave.capture_getLowerImageDetail('+
|
||||
[width, height, quality, format].join(', ')
|
||||
+')');
|
||||
[width, height, quality, format].join(', ')
|
||||
+')');
|
||||
},
|
||||
|
||||
capture_getUpperImageLeftDetail: function(width, height, quality, format) {
|
||||
console.log('cave.capture_getUpperImageLeftDetail('+
|
||||
[width, height, quality, format].join(', ')
|
||||
+')');
|
||||
[width, height, quality, format].join(', ')
|
||||
+')');
|
||||
},
|
||||
|
||||
capture_getUpperImageRightDetail: function(width, height, quality, format) {
|
||||
console.log('cave.capture_getUpperImageRightDetail('+
|
||||
[width, height, quality, format].join(', ')
|
||||
+')');
|
||||
[width, height, quality, format].join(', ')
|
||||
+')');
|
||||
},
|
||||
|
||||
capture_getUpperImage3DDetail: function(width, height, quality, format) {
|
||||
console.log('cave.capture_getUpperImage3DDetail('+
|
||||
[width, height, quality, format].join(', ')
|
||||
+')');
|
||||
[width, height, quality, format].join(', ')
|
||||
+')');
|
||||
},
|
||||
|
||||
capture_notifyUpdatedLocalList: function() {
|
||||
@@ -389,7 +389,7 @@ if (typeof cave === "undefined") {
|
||||
console.log('cave.convertTimeToString(' + unixTime + ')');
|
||||
var date = new Date(unixTime * 1000);
|
||||
return date.getFullYear() + '-' + this._toDoubleDigits( date.getMonth() + 1 ) + '-' + this._toDoubleDigits(date.getDate())
|
||||
+ ' ' + this._toDoubleDigits(date.getHours()) + ':' + this._toDoubleDigits(date.getMinutes()) + ':' + this._toDoubleDigits(date.getSeconds());
|
||||
+ ' ' + this._toDoubleDigits(date.getHours()) + ':' + this._toDoubleDigits(date.getMinutes()) + ':' + this._toDoubleDigits(date.getSeconds());
|
||||
},
|
||||
_toDoubleDigits: function (num) {
|
||||
num +="";
|
||||
1
src/portal/js/n3ds/cave-emulation.min.js
vendored
Normal file
1
src/portal/js/n3ds/cave-emulation.min.js
vendored
Normal file
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
1
src/portal/js/n3ds/olv.locale-en.min.js
vendored
Normal file
1
src/portal/js/n3ds/olv.locale-en.min.js
vendored
Normal file
File diff suppressed because one or more lines are too long
1
src/portal/js/n3ds/olv.min.js
vendored
Normal file
1
src/portal/js/n3ds/olv.min.js
vendored
Normal file
File diff suppressed because one or more lines are too long
1894
src/portal/js/olv.js
1894
src/portal/js/olv.js
File diff suppressed because it is too large
Load Diff
Reference in New Issue
Block a user