2019-12-17 17:06:54 -05:00
|
|
|
|
<!doctypehtml><meta http-equiv=X-UA-Compatible content="IE=edge"><meta content="text/html; charset=utf-8"http-equiv=Content-Type><meta name=viewport content="user-scalable=1,initial-scale=1,minimum-scale=1,maximum-scale=1"><meta name=apple-mobile-web-app-capable content=yes><meta name=format-detection content="telephone=no"><link type=text/css href=styles/style.css media=screen rel=stylesheet title=CSS><script src=scripts/common-0.0.1.js></script><title>{{{title}}} - Terms of use</title><body id=body onload='"undefined"!=typeof startup&&startup()'style=display:none;overflow:hidden><div id=container><div id=masthead class=noselect style="background:url(logo.png) 0 0;background-color:#036;background-repeat:no-repeat;height:66px;width:100%;overflow:hidden"><div style=float:left>{{{titlehtml}}}</div><div style=float:left;height:66px;color:#c8c8c8;padding-left:14px;padding-top:7px><strong><font style=font-size:46px;font-family:Arial,Helvetica,sans-serif>{{{title1}}}</font></strong></div><div style=float:left;height:66px;color:#c8c8c8;padding-left:5px;padding-top:14px><strong><font style=font-size:14px;font-family:Arial,Helvetica,sans-serif>{{{title2}}}</font></strong></div><p id=logoutControl style="color:#fff;font-size:11px;margin:10px 10px 0"></div><div id=page_leftbar><div style=height:16px></div></div><div id=topbar class="noselect style3"style=height:24px;position:relative><div id=uiMenuButton title=ユーザーインターフェイスの選択 onclick=showUserInterfaceSelectMenu()>♦<div id=uiMenu style=display:none><div id=uiViewButton1 class=uiSelector onclick=userInterfaceSelectMenu(1) title=左バーインターフェイス><div class=uiSelector1></div></div><div id=uiViewButton2 class=uiSelector onclick=userInterfaceSelectMenu(2) title=トップバーインターフェース><div class=uiSelector2></div></div><div id=uiViewButton3 class=uiSelector onclick=userInterfaceSelectMenu(3) title=固定幅インターフェイス><div class=uiSelector3></div></div><div id=uiViewButton4 class=uiSelector onclick=toggleNightMode() title=ナイトモードを切り替える><div class=uiSelector4></div></div></div></div></div><div id=column_l style="max-height:calc(100vh - 135px);overflow-y:auto"><h1>利用規約</h1><p>利用規約については、サイト管理者にお問い合わせください。<hr><p class=MsoNormal>以下は、このソフトウェアに組み込まれているオープンソースコンポーネントとソフトウェアの必須の開示です。<p class=MsoNormal><b><span>1.AJAX Control Toolkit-新しいBSDライセンス</span></b><span style=font-size:10pt;font-family:"><o:p></o:p></span><p class=MsoNormal><span>Copyright(c)2009、CodePlex Foundation。全著作権所有。<o:p></o:p></span><p class=MsoNormal><span>ソースおよびバイナリ形式での再配布および使用は、変更の有無にかかわらず、次の条件が満たされている場合に許可されます。<o:p></o:p></span><p class=MsoNormal><span>1.ソースコードの再配布には、上記の著作権表示、この条件リスト、および以下の免責事項を保持する必要があります。<o:p></o:p></span><p class=MsoNormal><span>2.バイナリ形式での再配布では、上記の著作権表示、この条件リスト、および以下の免責事項を、配布物とともに提供されるドキュメントおよび/またはその他の資料に複製する必要があります。<o:p></o:p></span><p class=MsoNormal><span>3. CodePlex Foundationの名前もその貢献者の名前も、書面による事前の許可なしに、このソフトウェアから派生した製品を推奨または宣伝するために使用することはできません。<o:p></o:p></span><p class=MsoNormal><span>このソフトウェアは、著作権者および寄稿者によって「現状のまま」提供され、商品性および特定の目的への適合性の黙示的な保証を含むがこれに限定されない明示的または黙示的な保証は放棄されます。いかなる場合<E5A0B4>
|
2019-12-09 19:34:37 -05:00
|
|
|
|
var uiMode = parseInt(getstore('uiMode', 1));
|
|
|
|
|
var webPageStackMenu = false;
|
|
|
|
|
var webPageFullScreen = true;
|
|
|
|
|
var nightMode = (getstore('_nightMode', '0') == '1');
|
|
|
|
|
var logoutControls = {{{logoutControls}}};
|
|
|
|
|
|
|
|
|
|
var terms = '{{{terms}}}';
|
|
|
|
|
if (terms != '') { QH('column_l', decodeURIComponent(terms)); }
|
|
|
|
|
QV('column_l', true);
|
|
|
|
|
userInterfaceSelectMenu();
|
|
|
|
|
|
|
|
|
|
// Setup logout control
|
|
|
|
|
var logoutControl = '';
|
|
|
|
|
if (logoutControls.name != null) { logoutControl = format("{0}へようこそ。", logoutControls.name); }
|
|
|
|
|
if (logoutControls.logoutUrl != null) { logoutControl += format(' <a href=\"' + logoutControls.logoutUrl + '\" style="color:white">' + "ログアウト" + '</a>'); }
|
|
|
|
|
QH('logoutControl', logoutControl);
|
|
|
|
|
|
|
|
|
|
// Toggle user interface menu
|
|
|
|
|
function showUserInterfaceSelectMenu() {
|
|
|
|
|
Q('uiViewButton1').classList.remove('uiSelectorSel');
|
|
|
|
|
Q('uiViewButton2').classList.remove('uiSelectorSel');
|
|
|
|
|
Q('uiViewButton3').classList.remove('uiSelectorSel');
|
|
|
|
|
Q('uiViewButton4').classList.remove('uiSelectorSel');
|
|
|
|
|
try { Q('uiViewButton' + uiMode).classList.add('uiSelectorSel'); } catch (ex) { }
|
|
|
|
|
QV('uiMenu', (QS('uiMenu').display == 'none'));
|
|
|
|
|
if (nightMode) { Q('uiViewButton4').classList.add('uiSelectorSel'); }
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function userInterfaceSelectMenu(s) {
|
|
|
|
|
if (s) { uiMode = s; putstore('uiMode', uiMode); }
|
|
|
|
|
webPageFullScreen = (uiMode < 3);
|
|
|
|
|
webPageStackMenu = true;//(uiMode > 1);
|
|
|
|
|
toggleFullScreen(0);
|
|
|
|
|
toggleStackMenu(0);
|
|
|
|
|
QC('column_l').add('room4submenu');
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function toggleNightMode() {
|
|
|
|
|
nightMode = !nightMode;
|
|
|
|
|
if (nightMode) { QC('body').add('night'); } else { QC('body').remove('night'); }
|
|
|
|
|
putstore('_nightMode', nightMode ? '1' : '0');
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Toggle the web page to full screen
|
|
|
|
|
function toggleFullScreen(toggle) {
|
|
|
|
|
if (toggle === 1) { webPageFullScreen = !webPageFullScreen; putstore('webPageFullScreen', webPageFullScreen); }
|
|
|
|
|
var hide = 0;
|
|
|
|
|
//if (args.hide) { hide = parseInt(args.hide); }
|
|
|
|
|
if (webPageFullScreen == false) {
|
|
|
|
|
QC('body').remove('menu_stack');
|
|
|
|
|
QC('body').remove('fullscreen');
|
|
|
|
|
QC('body').remove('arg_hide');
|
|
|
|
|
//if (xxcurrentView >= 10) QC('column_l').add('room4submenu');
|
|
|
|
|
//QV('UserDummyMenuSpan', false);
|
|
|
|
|
//QV('page_leftbar', false);
|
|
|
|
|
} else {
|
|
|
|
|
QC('body').add('fullscreen');
|
|
|
|
|
if (hide & 16) QC('body').add('arg_hide'); // This is replacement for QV('page_leftbar', !(hide & 16));
|
|
|
|
|
//QV('UserDummyMenuSpan', (xxcurrentView < 10) && webPageFullScreen);
|
|
|
|
|
//QV('page_leftbar', true);
|
|
|
|
|
}
|
|
|
|
|
QV('body', true);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// If FullScreen, toggle menu to be horisontal or vertical
|
|
|
|
|
function toggleStackMenu(toggle) {
|
|
|
|
|
if (webPageFullScreen == true) {
|
|
|
|
|
if (toggle === 1) {
|
|
|
|
|
webPageStackMenu = !webPageStackMenu;
|
|
|
|
|
putstore('webPageStackMenu', webPageStackMenu);
|
|
|
|
|
}
|
|
|
|
|
if (webPageStackMenu == false) {
|
|
|
|
|
QC('body').remove('menu_stack');
|
|
|
|
|
} else {
|
|
|
|
|
QC('body').add('menu_stack');
|
|
|
|
|
//if (xxcurrentView >= 10) QC('column_l').remove('room4submenu');
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function putstore(name, val) { try { if (typeof (localStorage) === 'undefined') return; localStorage.setItem(name, val); } catch (e) { } }
|
|
|
|
|
function getstore(name, val) { try { if (typeof (localStorage) === 'undefined') return val; var v = localStorage.getItem(name); if ((v == null) || (v == null)) return val; return v; } catch (e) { return val; } }
|
|
|
|
|
function format(format) { var args = Array.prototype.slice.call(arguments, 1); return format.replace(/{(\d+)}/g, function (match, number) { return typeof args[number] != 'undefined' ? args[number] : match; }); };</script>
|