Commit efaa553e by Takumi Imai

Merge branch 'feature/1.0_check_web_dev' into 'feature/1.0_check_web'

Feature/1.0 check web dev

See merge request !91
parents 4f026a87 a6e93273
{
"arrowParens": "avoid",
"bracketSpacing": true,
"endOfLine": "lf",
"htmlWhitespaceSensitivity": "css",
"insertPragma": false,
"jsxBracketSameLine": false,
"jsxSingleQuote": false,
"printWidth": 200,
"proseWrap": "preserve",
"quoteProps": "as-needed",
"requirePragma": false,
"semi": true,
"singleQuote": true,
"tabWidth": 4,
"tabs": true,
"trailingComma": "all",
"useTabs": false,
"vueIndentScriptAndStyle": false
}
\ No newline at end of file
{
// IntelliSense を使用して利用可能な属性を学べます。
// 既存の属性の説明をホバーして表示します。
// 詳細情報は次を確認してください: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "ABookCheck WEB",
"type": "chrome",
"request": "launch",
"url":"http://127.0.0.1:5500/abweb/html/login.html",
"webRoot": "${workspaceFolder}"
}
]
}
\ No newline at end of file
<!DOCTYPE html>
<html>
<head>
<title></title>
<script type="text/javascript" src="./abvw/common/js/jquery-1.8.1.min.js"></script>
<script type="text/javascript" src="./abvw/common/js/jquery-ui-1.8.23.custom.min.js"></script>
<!--<script src="abvw/common/js/common.js" type="text/javascript"></script>-->
<script type="text/javascript">
function ShowLocalStorage() {
$("#divLocalStorage").html("");
$("#divLocalStorage").append("<h3>Local Storage List</h3>");
var localStorageKeys = Object.keys(localStorage);
for (var nIndex = 0; nIndex < localStorageKeys.length; nIndex++) {
var strKey = localStorageKeys[nIndex];
var item = "";
item += "<div>";
item += "<li>" + strKey + "<br/>->" + localStorage.getItem(strKey) + "</li>";
item += "</div>";
$("#divLocalStorage").append(item);
}
}
function ShowSessionStorage() {
$("#divSessionStorage").html("");
$("#divSessionStorage").append("<h3>Session Storage List</h3>");
var sessionStorageKeys = Object.keys(sessionStorage);
for (var nIndex = 0; nIndex < sessionStorageKeys.length; nIndex++) {
var strKey = sessionStorageKeys[nIndex];
var item = "";
item += "<div>";
item += "<li>" + strKey + "<br/>->" + sessionStorage.getItem(strKey) + "</li>";
item += "</div>";
$("#divSessionStorage").append(item);
}
}
$(document).ready(function () {
$("#btnShowLocalStorage").click(function () { ShowLocalStorage(); });
$("#btnClearLocalStorage").click(function () { localStorage.clear(); ShowLocalStorage(); });
$("#btnShowSessionStorage").click(function () { ShowSessionStorage(); });
$("#btnClearSessionStorage").click(function () { sessionStorage.clear(); ShowSessionStorage(); });
$("#btnSetLocal").attr('disabled', 'disabled');
$("#btnSetSession").click(function () {
var strKey = $("#txtKey1").val() + "";
var strValue = $("#txtValue1").val() + "";
if (strKey != "") {
sessionStorage.setItem(strKey, strValue);
}
});
});
</script>
</head>
<body>
<h1>Local</h1> <br />
Key: <input type="text" id="txtKey" />&nbsp;Value: <input type="text" id="txtValue" /><button id="btnSetLocal">Set local</button>
<br />
<h1>Session</h1> <br />
Key: <input type="text" id="txtKey1" />&nbsp;Value: <input type="text" id="txtValue1" /><button id="btnSetSession">Set session</button>
<table>
<tr>
<td style="vertical-align: top;">
<button id="btnShowLocalStorage" >Show local storage</button>
<button id="btnClearLocalStorage" >Clear local storage</button>
<div id="divLocalStorage">
<h3>Local Storage List</h3>
</div>
</td>
<td style="vertical-align: top;">
<button id="btnShowSessionStorage" >Show session storage</button>
<button id="btnClearSessionStorage" >Clear session storage</button>
<div id="divSessionStorage">
<h3>Session Storage List</h3>
</div>
</td>
</tr>
</table>
</body>
</html>
@charset "utf-8"; @charset('utf-8');
/* /*
* { * {
font-family: "メイリオ", "MS Pゴシック", "ヒラギノ角ゴ Pro W3", "Osaka", "sans-serif"; font-family: "メイリオ", "MS Pゴシック", "ヒラギノ角ゴ Pro W3", "Osaka", "sans-serif";
font-size: 12pt; font-size: 12pt;
-webkit-font-smoothing: antialiased; -webkit-font-smoothing: antialiased;
} }
*/ */
/** /**
* システムエラーメッセージスタイル * システムエラーメッセージスタイル
*/ */
.toast-container { .toast-container {
z-index: 90001; z-index: 90001;
} }
.toast-item { .toast-item {
border-radius: 10px; border-radius: 10px;
} }
.toast-position-middle-center { .toast-position-middle-center {
margin-left: -250px; margin-left: -250px;
width: 500px; width: 500px;
} }
...@@ -327,11 +327,6 @@ $(function () { ...@@ -327,11 +327,6 @@ $(function () {
// ロード時に一旦エラー状態をクリアしておく // ロード時に一旦エラー状態をクリアしておく
AVWEB.avwClearError(); AVWEB.avwClearError();
//#31919 【調査】商談支援システム GoogleChromeでビッチイン・アウトが効かない
navigator.pointerEnabled = navigator.maxTouchPoints > 0; // Edge 17 touch support workaround
document.documentElement.ontouchstart = navigator.maxTouchPoints > 0 ? function(){} : undefined; // Chrome 70 touch support workaround
}); });
/* get system setting object */ /* get system setting object */
...@@ -923,12 +918,13 @@ AVWEB.avwClearError = function() { ...@@ -923,12 +918,13 @@ AVWEB.avwClearError = function() {
/* ブラウザunload時に警告メッセージの出力設定を行う関数 */ /* ブラウザunload時に警告メッセージの出力設定を行う関数 */
AVWEB.avwSetLogoutNortice = function() { AVWEB.avwSetLogoutNortice = function() {
window.onbeforeunload = function(event) { window.onbeforeunload = function(event) {
if(ClientData.isGetitsMode() || ClientData.isStreamingMode()){
if(ClientData.isGetitsMode() || ClientData.isCheckViewMode()){ if(ClientData.isGetitsMode()){
COMMON.SetEndLog(CONTENTVIEW_GENERAL.contentID); COMMON.SetEndLog(CONTENTVIEW_GENERAL.contentID);
COMMON.RegisterLog(); COMMON.RegisterLog();
} else if (ClientData.isStreamingMode() == false) { }
// ストリーミング以外ではメッセージ表示 } else {
// メッセージ表示
// FFでは、https://bugzilla.mozilla.org/show_bug.cgi?id=588292 によりメッセージが出力されない // FFでは、https://bugzilla.mozilla.org/show_bug.cgi?id=588292 によりメッセージが出力されない
var message = I18N.i18nText('sysInfoWithoutLogout'); var message = I18N.i18nText('sysInfoWithoutLogout');
var e = event || window.event; var e = event || window.event;
...@@ -937,7 +933,6 @@ AVWEB.avwSetLogoutNortice = function() { ...@@ -937,7 +933,6 @@ AVWEB.avwSetLogoutNortice = function() {
} }
return message; return message;
} }
}; };
}; };
/* 警告メッセージを出力しないでページ遷移を行う関数 */ /* 警告メッセージを出力しないでページ遷移を行う関数 */
...@@ -980,30 +975,6 @@ AVWEB.getApiUrl = function(accountPath) { ...@@ -980,30 +975,6 @@ AVWEB.getApiUrl = function(accountPath) {
}; };
/** shop配下のアクションを呼ぶURLを作成 */
AVWEB.getShopApiUrl = function(accountPath) {
// Shop url 構築
var apiUrl = ClientData.conf_apiUrl(); //sysSettings.apiUrl;
if(accountPath) {
apiUrl = AVWEB.format(apiUrl, accountPath);
}
return apiUrl.substring(0, apiUrl.length - 6) + "shop";
};
/** checkapi配下のアクションを呼ぶURLを作成 */
AVWEB.getCheckApiUrl = function(accountPath) {
// checkapi url 構築
var apiUrl = ClientData.conf_apiUrl(); //sysSettings.apiUrl;
if(accountPath) {
apiUrl = AVWEB.format(apiUrl, accountPath);
}
return apiUrl.substring(0, apiUrl.length - 6) + "checkapi";
};
/* get url */ /* get url */
AVWEB.getURL = function(apiName) { AVWEB.getURL = function(apiName) {
//var sysSettings = AVWEB.avwSysSetting(); //var sysSettings = AVWEB.avwSysSetting();
...@@ -1033,9 +1004,3 @@ AVWEB.format = function(fmt) { ...@@ -1033,9 +1004,3 @@ AVWEB.format = function(fmt) {
return fmt; return fmt;
}; };
...@@ -134,6 +134,7 @@ TEXTOBJECT.getTextObjectImage = function(width, height, htmlData) { ...@@ -134,6 +134,7 @@ TEXTOBJECT.getTextObjectImage = function(width, height, htmlData) {
end: function (tag) { end: function (tag) {
var t = tag.toLowerCase(); var t = tag.toLowerCase();
console.log("the"+t);
/* /*
* Uタグ * Uタグ
*/ */
......
...@@ -65,7 +65,7 @@ ...@@ -65,7 +65,7 @@
"dspBkCancel":"Logout", "dspBkCancel":"Logout",
"txtSearchResult":"Result", "txtSearchResult":"Result",
"dspHome":"Home", "dspHome":"Home",
"txtLoginUser":"(v1.9.0)User:", "txtLoginUser":"(v1.8.0)User:",
"txtAll":"All", "txtAll":"All",
"txtMkgSize":"Size", "txtMkgSize":"Size",
"txtMkgS":"S", "txtMkgS":"S",
...@@ -141,7 +141,7 @@ ...@@ -141,7 +141,7 @@
"txtPrevious":"< Previous", "txtPrevious":"< Previous",
"msgAnonymousLoginErr":"Can not login. (Error code: {0})", "msgAnonymousLoginErr":"Can not login. (Error code: {0})",
"msgAnonymousLoginErr2":"Can not login. ", "msgAnonymousLoginErr2":"Can not login. ",
"txtEnqueteTitle":"Form", "txtEnqueteTitle":"Enquete",
"txtExamTitle":"Exam", "txtExamTitle":"Exam",
"txtQuizTitle":"Quiz", "txtQuizTitle":"Quiz",
"txtTransparent":"Transparent", "txtTransparent":"Transparent",
......
...@@ -65,7 +65,7 @@ ...@@ -65,7 +65,7 @@
"dspBkCancel":"バックアップせずにログアウト", "dspBkCancel":"バックアップせずにログアウト",
"txtSearchResult":"検索結果", "txtSearchResult":"検索結果",
"dspHome":"ホーム", "dspHome":"ホーム",
"txtLoginUser":"(v1.9.0)ログイン中:", "txtLoginUser":"(v1.8.0)ログイン中:",
"txtAll":"すべて", "txtAll":"すべて",
"txtMkgSize":"太さ", "txtMkgSize":"太さ",
"txtMkgS":"小", "txtMkgS":"小",
...@@ -141,7 +141,7 @@ ...@@ -141,7 +141,7 @@
"txtPrevious":"<前", "txtPrevious":"<前",
"msgAnonymousLoginErr":"ログインできません。(エラーコード:{0})", "msgAnonymousLoginErr":"ログインできません。(エラーコード:{0})",
"msgAnonymousLoginErr2":"ログインできません。", "msgAnonymousLoginErr2":"ログインできません。",
"txtEnqueteTitle":"フォーム", "txtEnqueteTitle":"アンケート",
"txtExamTitle":"試験", "txtExamTitle":"試験",
"txtQuizTitle":"クイズ", "txtQuizTitle":"クイズ",
"txtTransparent":"透明", "txtTransparent":"透明",
......
...@@ -65,7 +65,7 @@ ...@@ -65,7 +65,7 @@
"dspBkCancel":"로그아웃", "dspBkCancel":"로그아웃",
"txtSearchResult":"검색 결과", "txtSearchResult":"검색 결과",
"dspHome":"홈", "dspHome":"홈",
"txtLoginUser":"(v1.9.0)로그인 중:", "txtLoginUser":"(v1.8.0)로그인 중:",
"txtAll":"전체", "txtAll":"전체",
"txtMkgSize":"두께", "txtMkgSize":"두께",
"txtMkgS":"소", "txtMkgS":"소",
...@@ -141,7 +141,7 @@ ...@@ -141,7 +141,7 @@
"txtPrevious":"< 이전", "txtPrevious":"< 이전",
"msgAnonymousLoginErr":"로그인할 수 없습니다. (에러코드 : {0})", "msgAnonymousLoginErr":"로그인할 수 없습니다. (에러코드 : {0})",
"msgAnonymousLoginErr2":"로그인할 수 없습니다.", "msgAnonymousLoginErr2":"로그인할 수 없습니다.",
"txtEnqueteTitle":"", "txtEnqueteTitle":"앙케이트",
"txtTransparent":"투명", "txtTransparent":"투명",
"txtSemiTransparent":"반투명", "txtSemiTransparent":"반투명",
"txtNoTransparent":"불투명", "txtNoTransparent":"불투명",
......
{ {
"1apiUrl" : "http://localhost:8080/acms/{0}/abvapi", "apiUrl" : "https://web5.abook.bz/acms/{0}/abvapi",
"1apiLoginUrl" : "http://localhost:8080/acms/nuabvapi", "apiLoginUrl" : "https://web5.abook.bz/acms/nuabvapi",
"1apiResourceDlUrl" : "http://localhost:8080/acms/{0}/dl", "apiResourceDlUrl" : "https://web5.abook.bz/acms/{0}/dl",
"apiUrl" : "https://abook189.abook.bz/acms/{0}/abvapi",
"apiLoginUrl" : "https://abook189.abook.bz/acms/nuabvapi",
"apiResourceDlUrl" : "https://abook189.abook.bz/acms/{0}/dl",
"bookShelfCount" : 15, "bookShelfCount" : 15,
"bookListCount" : 15, "bookListCount" : 15,
"screenlockTimeDefault" : 30, "screenlockTimeDefault" : 30,
......
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<meta http-equiv="Pragma" content="no-cache">
<meta http-equiv="Cache-Control" content="no-store">
<meta http-equiv="Cache-Control" content="no-cache">
<meta http-equiv="Expires" content="-1">
<meta name="viewport" content="">
<title></title>
<link rel="stylesheet" type="text/css" href="common/css/default.css?__UPDATEID__" />
<link rel="stylesheet" type="text/css" href="common/css/jquery-ui.css?__UPDATEID__" />
<link rel="stylesheet" type="text/css" href="common/css/jquery.toastmessage.css?__UPDATEID__" />
<link rel="stylesheet" type="text/css" href="common/css/default.css?__UPDATEID__" />
<link rel="stylesheet" type="text/css" href="common/css/screenLock.css?__UPDATEID__" />
<link rel="stylesheet" type="text/css" href="css/reset.css?__UPDATEID__" />
<!-- CSSビュー -->
<link rel="stylesheet" type="text/css" href="common/css/jquery.powertip.css?__UPDATEID__" />
<link rel="stylesheet" type="text/css" href="css/layout/viewer.css?__UPDATEID__" />
<link rel="stylesheet" type="text/css" href="css/layout/Anket.css?__UPDATEID__" />
<link rel="stylesheet" type="text/css" href="css/delete_shiori.css?__UPDATEID__" />
<script type="text/javascript" src="./common/js/jquery-1.8.1.min.js?__UPDATEID__"></script>
<script type="text/javascript" src="./common/js/jquery-ui-1.8.23.custom.min.js?__UPDATEID__"></script>
<script type="text/javascript" src="./common/js/jquery.ui.touch-punch.min.js?__UPDATEID__"></script>
<script type="text/javascript" src="./common/js/jquery.toastmessage.js?__UPDATEID__"></script>
<script type="text/javascript" src="./common/js/jquery.cookie.js?__UPDATEID__" ></script>
<script type="text/javascript" src="./common/js/jquery.treeview.js?__UPDATEID__" ></script>
<script type="text/javascript" src="./common/js/jquery.treeview.edit.js?__UPDATEID__" ></script>
<script type="text/javascript" src="./common/js/screenLock.js?__UPDATEID__"></script>
<script type="text/javascript" src="./common/js/avweb.js?__UPDATEID__"></script>
<script type="text/javascript" src="./common/js/i18n.js?__UPDATEID__"></script>
<script type="text/javascript" src="./common/js/common.js?__UPDATEID__"></script>
<script type="text/javascript" src="./common/js/uuid.js?__UPDATEID__"></script>
<script type="text/javascript" src="./js/contentview_Check.js?__UPDATEID__"></script>
<script type="text/javascript" src="./common/js/html2canvas.js?__UPDATEID__" ></script>
<script type="text/javascript" src="./common/js/promise-6.1.0.min.js?__UPDATEID__" ></script>
<style>
html{
-ms-touch-action : none;
}
</style>
<script type="text/javascript">
$(document).ready(function() {
CONTENTVIEW_CHECK.ready();
});
</script>
</head>
<body id="contentview_check" oncontextmenu="return false;">
<div id="ws-body" class="wrapper_ws" >
<div id="main-ws">
</div>
</div>
<div id="viewer" style="display:none;" >
</div>
<iframe style="height:0px;width:0px;visibility:hidden" src="about:blank">
this frame prevents back forward cache
</iframe>
</body>
</html>
\ No newline at end of file
/*! normalize.css v8.0.0 | MIT License | github.com/necolas/normalize.css */
/* Document
========================================================================== */
/**
* 1. Correct the line height in all browsers.
* 2. Prevent adjustments of font size after orientation changes in iOS.
*/
html {
line-height: 1.15; /* 1 */
-webkit-text-size-adjust: 100%; /* 2 */
}
/* Sections
========================================================================== */
/**
* Remove the margin in all browsers.
*/
body {
margin: 0;
}
/**
* Correct the font size and margin on `h1` elements within `section` and
* `article` contexts in Chrome, Firefox, and Safari.
*/
h1 {
font-size: 2em;
margin: 0.67em 0;
}
/* Grouping content
========================================================================== */
/**
* 1. Add the correct box sizing in Firefox.
* 2. Show the overflow in Edge and IE.
*/
hr {
box-sizing: content-box; /* 1 */
height: 0; /* 1 */
overflow: visible; /* 2 */
}
/**
* 1. Correct the inheritance and scaling of font size in all browsers.
* 2. Correct the odd `em` font sizing in all browsers.
*/
pre {
font-family: monospace, monospace; /* 1 */
font-size: 1em; /* 2 */
}
/* Text-level semantics
========================================================================== */
/**
* Remove the gray background on active links in IE 10.
*/
a {
background-color: transparent;
}
/**
* 1. Remove the bottom border in Chrome 57-
* 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
*/
abbr[title] {
border-bottom: none; /* 1 */
text-decoration: underline; /* 2 */
text-decoration: underline dotted; /* 2 */
}
/**
* Add the correct font weight in Chrome, Edge, and Safari.
*/
b,
strong {
font-weight: bolder;
}
/**
* 1. Correct the inheritance and scaling of font size in all browsers.
* 2. Correct the odd `em` font sizing in all browsers.
*/
code,
kbd,
samp {
font-family: monospace, monospace; /* 1 */
font-size: 1em; /* 2 */
}
/**
* Add the correct font size in all browsers.
*/
small {
font-size: 80%;
}
/**
* Prevent `sub` and `sup` elements from affecting the line height in
* all browsers.
*/
sub,
sup {
font-size: 75%;
line-height: 0;
position: relative;
vertical-align: baseline;
}
sub {
bottom: -0.25em;
}
sup {
top: -0.5em;
}
/* Embedded content
========================================================================== */
/**
* Remove the border on images inside links in IE 10.
*/
img {
border-style: none;
}
/* Forms
========================================================================== */
/**
* 1. Change the font styles in all browsers.
* 2. Remove the margin in Firefox and Safari.
*/
button,
input,
optgroup,
select,
textarea {
font-family: inherit; /* 1 */
font-size: 100%; /* 1 */
line-height: 1.15; /* 1 */
margin: 0; /* 2 */
}
/**
* Show the overflow in IE.
* 1. Show the overflow in Edge.
*/
button,
input { /* 1 */
overflow: visible;
}
/**
* Remove the inheritance of text transform in Edge, Firefox, and IE.
* 1. Remove the inheritance of text transform in Firefox.
*/
button,
select { /* 1 */
text-transform: none;
}
/**
* Correct the inability to style clickable types in iOS and Safari.
*/
button,
[type="button"],
[type="reset"],
[type="submit"] {
-webkit-appearance: button;
}
/**
* Remove the inner border and padding in Firefox.
*/
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
border-style: none;
padding: 0;
}
/**
* Restore the focus styles unset by the previous rule.
*/
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
outline: 1px dotted ButtonText;
}
/**
* Correct the padding in Firefox.
*/
fieldset {
padding: 0.35em 0.75em 0.625em;
}
/**
* 1. Correct the text wrapping in Edge and IE.
* 2. Correct the color inheritance from `fieldset` elements in IE.
* 3. Remove the padding so developers are not caught out when they zero out
* `fieldset` elements in all browsers.
*/
legend {
box-sizing: border-box; /* 1 */
color: inherit; /* 2 */
display: table; /* 1 */
max-width: 100%; /* 1 */
padding: 0; /* 3 */
white-space: normal; /* 1 */
}
/**
* Add the correct vertical alignment in Chrome, Firefox, and Opera.
*/
progress {
vertical-align: baseline;
}
/**
* Remove the default vertical scrollbar in IE 10+.
*/
textarea {
overflow: auto;
}
/**
* 1. Add the correct box sizing in IE 10.
* 2. Remove the padding in IE 10.
*/
[type="checkbox"],
[type="radio"] {
box-sizing: border-box; /* 1 */
padding: 0; /* 2 */
}
/**
* Correct the cursor style of increment and decrement buttons in Chrome.
*/
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
height: auto;
}
/**
* 1. Correct the odd appearance in Chrome and Safari.
* 2. Correct the outline style in Safari.
*/
[type="search"] {
-webkit-appearance: textfield; /* 1 */
outline-offset: -2px; /* 2 */
}
/**
* Remove the inner padding in Chrome and Safari on macOS.
*/
[type="search"]::-webkit-search-decoration {
-webkit-appearance: none;
}
/**
* 1. Correct the inability to style clickable types in iOS and Safari.
* 2. Change font properties to `inherit` in Safari.
*/
::-webkit-file-upload-button {
-webkit-appearance: button; /* 1 */
font: inherit; /* 2 */
}
/* Interactive
========================================================================== */
/*
* Add the correct display in Edge, IE 10+, and Firefox.
*/
details {
display: block;
}
/*
* Add the correct display in all browsers.
*/
summary {
display: list-item;
}
/* Misc
========================================================================== */
/**
* Add the correct display in IE 10+.
*/
template {
display: none;
}
/**
* Add the correct display in IE 10.
*/
[hidden] {
display: none;
}
@charset "UTF-8";
html {
font-size: 62.5%;
font-family: "メイリオ", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "小塚ゴシック Pr6N R", "Arial", "MS Pゴシック", "MS PGothic", sans-serif; }
body {
overflow: hidden;
font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "MS Pゴシック", "MS PGothic", "sans-serif";
}
a {
display: block;
text-decoration: none; }
div.container {
overflow: auto;
-webkit-overflow-scrolling: touch;
height: calc(100vh - 122px);
margin: 140px 22px 22px; }
div.container ul.addition_list {
width: 100%;
list-style: none;
padding: 0; }
div.container ul.addition_list >li {
background: #ffffff;
border: 1px solid #cccccc;
padding: 18px 20px 18px 50px;
margin-top: -1px;
cursor: pointer; }
div.container ul.addition_list li .code {
display: inline-block;
padding: 5px 10px;
color: #fff;
margin-bottom: 5px;
text-align: center; }
div.container ul.addition_list li p {
font-size: 2rem;
font-weight: bold;
line-height: 150%;
margin: 5px 0;
color: #000000;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;}
div.container ul.inspection_list {
width: 100%;
list-style: none;
padding: 0; }
div.container ul.inspection_list li .code {
font-size: 1.1rem;
color: #333333; }
div.container ul.inspection_list li p {
font-size: 1.8rem;
font-weight: bold;
line-height: 150%;
margin: 5px 0 0;
color: #000000; }
div.container ul.inspection_list li.check {
background: url("../img/check.png") no-repeat;
background-position: 10px center; }
div.container ul.inspection_list li.read {
background: url("../img/read.png") no-repeat;
background-position: 10px center; }
\ No newline at end of file
@charset "utf-8";
button.addition {
background: #ffffff url("/acms/check/images/addition.png") no-repeat;
background-position: 20% center;
}
div.container ul.addition_list >li {
background: #ffffff;
border: 1px solid #cccccc;
padding: 18px 20px;
margin-top: -1px;
cursor: auto;
display: flex;
}
div.container ul.addition_list {
padding-left: 0;
}
div.container ul.addition_list li.check .code {
background-color: #1B1BD2;
}
div.container ul.addition_list li.read .code {
background-color: #FF7700;
}
div.container ul.addition_list li p.projectName {
font-weight: normal;
font-size: 1.5em;
}
div.container ul.addition_list li p.workContent {
font-weight: normal;
}
/*
.ui-widget {
font-size: 2.8em;
}
*/
#checkDetail {
position: fixed;
}
.nav li a {
padding: 0;
}
.nav li a p.nav_icon {
margin-left: 5px;
}
/*
header {
position: relative;
display: flex;
padding: 0 10px;
border: 2px solid #095395;
border-radius: 1px;
width: auto;
height: 60px;
margin: 15px 12px;
align-items: center;
justify-content: center;
}
*/
#checkListSearch {
display: flex;
width: 100%;
padding: 0 0;
}
#checkListSearch #searchWordDiv {
width: 70%;
}
#checkListSearch #searchBtn {
width: 30%;
}
#listValues {
margin: 65px 12px 0px;
}
#listValues li td {
align-items: center;
justify-content: center;
}
#listIcon {
width: 30px;
height: 30px;
}
#contentType {
font-weight: bold;
font-size: 2rem;
letter-spacing: 0.5rem;
color: #095395;
margin-left: 10px;
width: 30%;
}
.codeAndExpiration {
margin-bottom: 5px;
font-size: 16px;
font-weight: bold;
color: #37648C;
list-style-type: none;
margin: 0;
padding: 0;
}
.codeAndExpiration div {
font-weight: bold;
font-size: 1.7rem;
color: #37648C;
margin-top: 5px;
}
.nullValue {
text-align: center;
font-size: 24px;
color: #D50000;
}
.actionBtnDiv {
align-items: center;
justify-content: center;
display: none;
cursor: pointer;
}
.actionBtnDiv img {
width: 67px;
height: 67px;
border: none;
border-radius: 3px;
}
.actionBtnDiv p {
font-size: 14px !important;
color: #095395 !important;
text-align: center;
}
.taskInfoDiv {
width: 100%;
margin: 0 0.5em;
}
.actionBtn {
margin: 0 12px;
}
.actionBtn p {
margin-left: -3px !important;
}
/*
header .headerFormForMobile {
width: 100%;
}
header .headerFormForMobile >.childDiv {
display: flex;
align-items: center;
justify-content: center;
}
header button.addition {
background: #0068CB url(/acms/check/images/addition.png) no-repeat;
background-position: calc(20% - 0.3vw) center;
}
*/
.ui-dialog-popup {
border: 1px solid #dddddd;
background: #ffffff url(../images/datepicker/ui-bg_flat_75_ffffff_40x100.png) 50% 50% repeat-x;
color: #444444;
padding: 0;
}
.headerBar {
z-index: 9999 !important;
position: relative;
background: #0068cb;
margin: 0;
padding: 0;
font-size: 14px;
width: auto;
height: 50px;
display: flex;
position: fixed;
width: 100%;
top: 0;
left: 0;
}
.headerBar .titleInfo {
width: 100%;
font-size: 16px;
font-weight: bold;
text-align: center;
color: rgb(255, 255, 255);
margin: auto;
line-height: 50px;
}
.headerBar .headerBtn {
display: flex;
margin: auto;
padding: 5px;
}
.headerBar .headerBtn a {
margin-right: 5px;
}
/* for pushmessage */
.notification-pushmessage {
position:fixed;
height:40px;
line-height:40px;
text-align:center;
top:0;
left:0;
right:0;
z-index:10000;
background-color:#bde;
opacity:0.8;
color:#000;
border:solid 1px #000;
font-weight:bold;
font-size:13px;
}
.selected_send_type {
background: #b0e0e6;
}
#avw-sys-modal {
z-index: 10000 !important;
}
/* for setting */
body section {
z-index: 10001 !important;
}
.toast-item-loading
{
text-align:center;
height:40px;
background:url(../../img/data_loading.gif) no-repeat center;
}
\ No newline at end of file
@charset "utf-8";
body {
background: white;
}
/* 3点リーダー */
.textEllipsis {
text-overflow: ellipsis;
overflow: hidden;
white-space: nowrap
}
#content-grid {
margin: 65px 12px;
min-width: 800px;
}
.projectName_div {
width: auto;
display: flex;
justify-content: left;
font-size: 30px;
margin-bottom: 20px;
border-bottom: 1px solid #ccc;
text-indent: 5px;
}
/* section */
section.sectionhomelist{
height: 135px;
display: flex;
border: 1px solid #cccccc;
}
.cnt_section_list{
margin: 0;
width: 100%;
height: 120px;
position: relative;
padding-top: 10px;
padding-bottom: 5px;
display: flex;
}
.cnt_section_list a.img{
display: block;
width: 161px;
height: 120px;
float: left;
margin-left: 20px;
}
.cnt_section_list .text{
float: left;
height: 120px;
margin: 0 0 0 40px;
padding-top: 8px;
width: 80%;
}
.cnt_section_list .text ul.date{
/* [disabled]float: left; */
display: block;
white-space: nowrap;
}
.cnt_section_list .text .info{
/* [disabled]overflow: hidden; */
margin-top: 10px;
}
.cnt_section_list .text ul.pic{
position: relative;
/* [disabled]overflow: hidden; */
display: block;
float: right;
}
#list .wrapper_ws #main-ws .hoge-R section.sectionhomelist .name img {
display: inline-block;
vertical-align: middle;
margin-right: 5px;
}
.pic {
float: right;
}
.pic li {
float: left;
font-size: 1.1em;
font-weight: bold;
color: #fff;
background-color: #0068CB;
border: 1px solid #0068CB;
border-radius: 5px;
box-shadow: 2px 2px 1px #D9D9D9;
cursor: pointer;
width: 120px;
text-align: center;
margin: 20px 50px 0 0;
display: inline-block;
}
.pic li a {
display: block;
width: 100%;
}
.listIcon {
width: 26px;
height: 26px;
margin: 3px;
}
.cnt_section_list .text a.name {
font-size: 24px;
width: 100%;
}
.cnt_section_list .text ul.date li {
font-size: 16px;
}
.content-list {
white-space: nowrap;
}

26.7 KB | W: | H:

7.17 KB | W: | H:

abvw/img/login/logo_login.png
abvw/img/login/logo_login.png
abvw/img/login/logo_login.png
abvw/img/login/logo_login.png
  • 2-up
  • Swipe
  • Onion skin
...@@ -1037,6 +1037,6 @@ BOOKMARK.downloadFunction = function(e) { ...@@ -1037,6 +1037,6 @@ BOOKMARK.downloadFunction = function(e) {
var contentId = $(this).attr('contentid'); var contentId = $(this).attr('contentid');
// Download content // Download content
COMMON.downloadResourceById(contentId); HEADER.downloadResourceById(contentId);
}; };
//名前空間用のオブジェクトを用意する
var CHECKVIEW = {};
CHECKVIEW.ready = function(){
// セッションストレージクリア
SessionStorageUtils.clear();
AVWEB.avwUserSessionObj = null;
// create new session
AVWEB.avwCreateUserSession();
I18N.initi18n();
var sysSettings = AVWEB.avwSysSetting(); // get info in conf.json
// モード初期化
ClientData.isGetitsMode(false);
ClientData.isStreamingMode(false);
ClientData.isCheckViewMode(true);
ClientData.isCheckMode(false);
ClientData.storeUrl("");
//confのパラメータセット
ClientData.conf_apiUrl( sysSettings.apiUrl );
ClientData.conf_apiLoginUrl( sysSettings.apiLoginUrl );
ClientData.conf_apiResourceDlUrl( sysSettings. apiResourceDlUrl );
// Check用引数パラメータを取得
var urlPath = COMMON.getUrlParam('urlPath', '');
var pageNo = COMMON.getUrlParam('pageNo', '');
var contentKey = COMMON.getUrlParam('key', '');
//念のため前回までの閲覧ログは削除
ClientData.ContentLogData([]);
//ページ番号指定有り
if( pageNo == "" || pageNo == "0" || pageNo == "1"){
ClientData.common_prePageNo(null)
} else {
ClientData.common_prePageNo(pageNo);
}
setTimeout(function (){
CHECKVIEW.processLogin(urlPath, contentKey);
}, 1000);
};
//Login Process
CHECKVIEW.processLogin = function(urlPath, contentKey) {
//パスワード関連はチェック不要
var requireChangePassword = 0;
var skipPwdDate;
var params = {
urlPath: urlPath,
};
// Get url to login
var apiLoginUrl = ClientData.conf_apiLoginUrl();
$('#main-error-message').html("loading...");
$('#main-error-message').show();
AVWEB.avwCmsApiWithUrl(apiLoginUrl, null, 'webCreateSid', 'GET', params, function (data) {
//requirePasswordChange = data.requirePasswordChange;
LOGIN.userinfo_sid = data.sid;
LOGIN.userInfo_userName = data.userName;
LOGIN.optionList = data.serviceOptionList;
LOGIN.getServiceOptionList();
if (data.result == 'success') {
// set number new push message to 0
ClientData.pushInfo_newMsgNumber(0);
// set info user login
ClientData.userInfo_accountPath(urlPath);
ClientData.userInfo_accountPath_session(urlPath);
//ClientData.userInfo_loginId(loginId);
//ClientData.userInfo_loginId_session(loginId);
ClientData.userInfo_userName(LOGIN.userInfo_userName);
ClientData.userInfo_sid(LOGIN.userinfo_sid);
ClientData.userInfo_sid_local(LOGIN.userinfo_sid);
$('#main-error-message').css('display', 'none');
//contentKey復号化
CHECKVIEW.decodeContentKey(contentKey);
} else {
LOGIN.login_errorMessage = data.errorMessage;
$('#main-error-message').html(AVWEB.format(I18N.i18nText('msgLoginErrWrong'), data.errorMessage).toString());
$('#main-error-message').show();
alert("Open Error1!");
}
}, function (xhr, statusText, errorThrown) {
if (xhr.responseText && xhr.status != 0) {
LOGIN.login_errorMessage = JSON.parse(xhr.responseText).errorMessage;
alert("Open Error21!:" + LOGIN.login_errorMessage);
$('#main-error-message').html(AVWEB.format(I18N.i18nText('msgLoginErrWrong'), JSON.parse(xhr.responseText).errorMessage).toString());
} else {
alert("Open Error22!:E001");
$('#main-error-message').html(AVWEB.format(I18N.i18nText('msgLoginErrWrong'), 'E001'));
}
$('#main-error-message').show();
});
};
//ワンタイムkeyパラメータからcontentIdを取得する
CHECKVIEW.decodeContentKey = function(contentKey) {
var contentType = '';
var result = [];
var params = {
sid : ClientData.userInfo_sid(),
contentKey : contentKey
};
AVWEB.avwCmsApiSync(ClientData.userInfo_accountPath(), "webCheckContent", 'GET', params, function(data) {
if (data.result == 'success') {
// コンテンツIDセット
ClientData.contentInfo_contentId(data.contentId);
CHECKVIEW.showContentView(data.contentId);
}
}, function(xmlHttpRequest, txtStatus, errorThrown) {
// 見つからないかエラー
if (ClientData.isGetitsMode() == true) {
AVWEB.avwScreenMove("abvw/" + COMMON.ScreenIds.Login);
} else {
// アラートメッセージ表示
LOGIN.showAlertScreen(I18N.i18nText('msgContentNotExist'), "");
}
});
};
//直接コンテンツ表示
CHECKVIEW.showContentView = function(strContentId) {
var contentType = '';
var result = [];
var params = {
sid : ClientData.userInfo_sid(),
getType : '1',
contentId : strContentId
};
AVWEB.avwCmsApiSync(ClientData.userInfo_accountPath(), "webGetContent", 'GET', params, function(data) {
// コンテンツIDセット
ClientData.contentInfo_contentId(strContentId);
// コンテツタイプ判定
contentType = data.contentData.contentType;
if (contentType == COMMON.ContentTypeKeys.Type_Others) {
// Download content
COMMON.downloadResourceById(strContentId);
} else if (contentType == COMMON.ContentTypeKeys.Type_Link) {
// link content
COMMON.viewLinkContentById(strContentId, false);
} else {
// Go to Conten view page
// アラート表示組み込めるか
LIMIT_ACCESS_CONTENT.messageLevel[data.contentData.contentId] = {
alertMessageLevel : data.contentData.alertMessageLevel,
alertMessage : data.contentData.alertMessage
};
// check limit of content
LIMIT_ACCESS_CONTENT.checkLimitContent(data.contentData.contentId, function() {
CHECKVIEW.alertMessageOkFunction_callback();
}, function() {
CHECKVIEW.alertMessageCancelFunction_callback();
});
}
}, function(xmlHttpRequest, txtStatus, errorThrown) {
// check エラー時の表示検討
if (ClientData.isGetitsMode() == true) {
AVWEB.avwScreenMove("abvw/" + COMMON.ScreenIds.Login);
} else {
// アラートメッセージ表示
LOGIN.showAlertScreen(I18N.i18nText('msgContentNotExist'), "");
}
});
};
// 警告表示時のOK処理
CHECKVIEW.alertMessageOkFunction_callback = function() {
AVWEB.avwScreenMove("abvw/" + COMMON.ScreenIds.ContentViewCheck);
};
// 警告表示時のキャンセル処理
CHECKVIEW.alertMessageCancelFunction_callback = function() {
//check キャンセル時の表示検討
if (ClientData.isGetitsMode() == true) {
AVWEB.avwScreenMove("abvw/" + COMMON.ScreenIds.Login);
} else {
AVWEB.avwScreenMove("abvw/" + COMMON.ScreenIds.Home);
}
};
CHECKVIEW.debugLog = function(msg){
//$("#debug").html(msg);
};
...@@ -237,7 +237,7 @@ CONTENTSEARCH.renderContent = function(id, text, division, type, order, offset, ...@@ -237,7 +237,7 @@ CONTENTSEARCH.renderContent = function(id, text, division, type, order, offset,
+ ' </a>' + ' </a>'
+ ' <div class="text">' + ' <div class="text">'
+ ' <a id="title' + post.contentId + '" class="name dialog" contentid="' + post.contentId + '">' + ' <a id="title' + post.contentId + '" class="name dialog" contentid="' + post.contentId + '">'
+ ' <img class="listIcon" src="' + COMMON.getIconTypeContent(post.contentType) + '" width="20" height="20">' + ' <img class="listIcon" src="' + HEADER.getIconTypeContent(post.contentType) + '" width="20" height="20">'
+ ' <div class="contentsearch_title">' + post.contentTitle + '</div>' + ' <div class="contentsearch_title">' + post.contentTitle + '</div>'
+ ' </a>' + ' </a>'
+ ' <div class="info">' + ' <div class="info">'
...@@ -760,12 +760,12 @@ CONTENTSEARCH.readSubmenuFunction_callback = function(contentId) { ...@@ -760,12 +760,12 @@ CONTENTSEARCH.readSubmenuFunction_callback = function(contentId) {
// For testing without other Type. // For testing without other Type.
if (contentType == COMMON.ContentTypeKeys.Type_Others) { if (contentType == COMMON.ContentTypeKeys.Type_Others) {
// Download content // Download content
COMMON.downloadResourceById(contentId); HEADER.downloadResourceById(contentId);
// redraw content remove new icon // redraw content remove new icon
CONTENTSEARCH.drawEditImage(contentId); CONTENTSEARCH.drawEditImage(contentId);
} else if (contentType == COMMON.ContentTypeKeys.Type_Link) { } else if (contentType == COMMON.ContentTypeKeys.Type_Link) {
// link content // link content
COMMON.viewLinkContentById(contentId, true); HEADER.viewLinkContentById(contentId);
// redraw content remove new icon // redraw content remove new icon
CONTENTSEARCH.drawEditImage(contentId); CONTENTSEARCH.drawEditImage(contentId);
} else { } else {
...@@ -829,7 +829,7 @@ CONTENTSEARCH.checkUserHasReadContent = function(contId, resourceVer, metaVer, v ...@@ -829,7 +829,7 @@ CONTENTSEARCH.checkUserHasReadContent = function(contId, resourceVer, metaVer, v
if (readArr == null || readArr <= 0 || readArr == 'undefined') { if (readArr == null || readArr <= 0 || readArr == 'undefined') {
imgThumb.onload = function() { imgThumb.onload = function() {
var resizeImg = COMMON.resizeResourceThumbnail(imgThumb, c.width, c.height); var resizeImg = CONTENTSEARCH.resizeResourceThumbnail(imgThumb, c.width, c.height);
ctx.drawImage(imgThumb, (c.width / 2) - (resizeImg[0] / 2) + 4, c.height - resizeImg[1] + 4, resizeImg[0], resizeImg[1]); ctx.drawImage(imgThumb, (c.width / 2) - (resizeImg[0] / 2) + 4, c.height - resizeImg[1] + 4, resizeImg[0], resizeImg[1]);
imgIconNew.onload = function() { imgIconNew.onload = function() {
ctx.drawImage(imgIconNew, c.width / 2 - resizeImg[0] / 2, c.height - resizeImg[1]); ctx.drawImage(imgIconNew, c.width / 2 - resizeImg[0] / 2, c.height - resizeImg[1]);
...@@ -842,7 +842,7 @@ CONTENTSEARCH.checkUserHasReadContent = function(contId, resourceVer, metaVer, v ...@@ -842,7 +842,7 @@ CONTENTSEARCH.checkUserHasReadContent = function(contId, resourceVer, metaVer, v
if (contentThumbnail == '' || contentThumbnail == null) { if (contentThumbnail == '' || contentThumbnail == null) {
if (!COMMON.isPdfContent(contentType)) { if (!COMMON.isPdfContent(contentType)) {
var src = COMMON.getThumbnailForOtherType(contentType); var src = HEADER.getThumbnailForOtherType(contentType);
if (src != '') { if (src != '') {
imgThumb.src = src; imgThumb.src = src;
} }
...@@ -856,7 +856,7 @@ CONTENTSEARCH.checkUserHasReadContent = function(contId, resourceVer, metaVer, v ...@@ -856,7 +856,7 @@ CONTENTSEARCH.checkUserHasReadContent = function(contId, resourceVer, metaVer, v
for ( var nIndex1 = 0; nIndex1 < ClientData.ReadingContentIds().length; nIndex1++) { for ( var nIndex1 = 0; nIndex1 < ClientData.ReadingContentIds().length; nIndex1++) {
if (ClientData.ReadingContentIds()[nIndex1].contentid == contId) { if (ClientData.ReadingContentIds()[nIndex1].contentid == contId) {
imgThumb.onload = function() { imgThumb.onload = function() {
var resizeImg = COMMON.resizeResourceThumbnail(imgThumb, c.width, c.height); var resizeImg = CONTENTSEARCH.resizeResourceThumbnail(imgThumb, c.width, c.height);
ctx.drawImage(imgThumb, (c.width / 2) - (resizeImg[0] / 2) + 4, c.height - resizeImg[1] + 4, resizeImg[0], resizeImg[1]); ctx.drawImage(imgThumb, (c.width / 2) - (resizeImg[0] / 2) + 4, c.height - resizeImg[1] + 4, resizeImg[0], resizeImg[1]);
$("#loadingIcon" + contId).fadeOut('slow', function() { $("#loadingIcon" + contId).fadeOut('slow', function() {
$('#content-thumbnail' + contId).fadeIn('slow'); $('#content-thumbnail' + contId).fadeIn('slow');
...@@ -865,7 +865,7 @@ CONTENTSEARCH.checkUserHasReadContent = function(contId, resourceVer, metaVer, v ...@@ -865,7 +865,7 @@ CONTENTSEARCH.checkUserHasReadContent = function(contId, resourceVer, metaVer, v
if (contentThumbnail == '' || contentThumbnail == null) { if (contentThumbnail == '' || contentThumbnail == null) {
if (!COMMON.isPdfContent(contentType)) { if (!COMMON.isPdfContent(contentType)) {
var src = COMMON.getThumbnailForOtherType(contentType); var src = HEADER.getThumbnailForOtherType(contentType);
if (src != '') { if (src != '') {
imgThumb.src = src; imgThumb.src = src;
} }
...@@ -888,7 +888,7 @@ CONTENTSEARCH.checkUserHasReadContent = function(contId, resourceVer, metaVer, v ...@@ -888,7 +888,7 @@ CONTENTSEARCH.checkUserHasReadContent = function(contId, resourceVer, metaVer, v
if (versionArr[nIndex2].contentid == contId) { if (versionArr[nIndex2].contentid == contId) {
if (versionArr[nIndex2].resourceversion != resourceVer) { if (versionArr[nIndex2].resourceversion != resourceVer) {
imgThumb.onload = function() { imgThumb.onload = function() {
var resizeImg = COMMON.resizeResourceThumbnail(imgThumb, c.width, c.height); var resizeImg = CONTENTSEARCH.resizeResourceThumbnail(imgThumb, c.width, c.height);
ctx.drawImage(imgThumb, (c.width / 2) - (resizeImg[0] / 2) + 4, c.height - resizeImg[1] + 4, resizeImg[0], resizeImg[1]); ctx.drawImage(imgThumb, (c.width / 2) - (resizeImg[0] / 2) + 4, c.height - resizeImg[1] + 4, resizeImg[0], resizeImg[1]);
imgIconEdit.onload = function() { imgIconEdit.onload = function() {
ctx.drawImage(imgIconEdit, c.width / 2 - resizeImg[0] / 2, c.height - resizeImg[1]); ctx.drawImage(imgIconEdit, c.width / 2 - resizeImg[0] / 2, c.height - resizeImg[1]);
...@@ -903,7 +903,7 @@ CONTENTSEARCH.checkUserHasReadContent = function(contId, resourceVer, metaVer, v ...@@ -903,7 +903,7 @@ CONTENTSEARCH.checkUserHasReadContent = function(contId, resourceVer, metaVer, v
if (contentThumbnail == '' || contentThumbnail == null) { if (contentThumbnail == '' || contentThumbnail == null) {
if (!COMMON.isPdfContent(contentType)) { if (!COMMON.isPdfContent(contentType)) {
var src = COMMON.getThumbnailForOtherType(contentType); var src = HEADER.getThumbnailForOtherType(contentType);
if (src != '') { if (src != '') {
imgThumb.src = src; imgThumb.src = src;
} }
...@@ -925,7 +925,7 @@ CONTENTSEARCH.checkUserHasReadContent = function(contId, resourceVer, metaVer, v ...@@ -925,7 +925,7 @@ CONTENTSEARCH.checkUserHasReadContent = function(contId, resourceVer, metaVer, v
if (metaArr[nIndex2].contentid == contId) { if (metaArr[nIndex2].contentid == contId) {
if (metaArr[nIndex2].metaversion != metaVer) { if (metaArr[nIndex2].metaversion != metaVer) {
imgThumb.onload = function() { imgThumb.onload = function() {
var resizeImg = COMMON.resizeResourceThumbnail(imgThumb, c.width, c.height); var resizeImg = CONTENTSEARCH.resizeResourceThumbnail(imgThumb, c.width, c.height);
ctx.drawImage(imgThumb, (c.width / 2) - (resizeImg[0] / 2) + 4, c.height - resizeImg[1] + 4, resizeImg[0], resizeImg[1]); ctx.drawImage(imgThumb, (c.width / 2) - (resizeImg[0] / 2) + 4, c.height - resizeImg[1] + 4, resizeImg[0], resizeImg[1]);
imgIconEdit.onload = function() { imgIconEdit.onload = function() {
ctx.drawImage(imgIconEdit, c.width / 2 - resizeImg[0] / 2, c.height - resizeImg[1]); ctx.drawImage(imgIconEdit, c.width / 2 - resizeImg[0] / 2, c.height - resizeImg[1]);
...@@ -938,7 +938,7 @@ CONTENTSEARCH.checkUserHasReadContent = function(contId, resourceVer, metaVer, v ...@@ -938,7 +938,7 @@ CONTENTSEARCH.checkUserHasReadContent = function(contId, resourceVer, metaVer, v
// thumbnail. // thumbnail.
if (contentThumbnail == '' || contentThumbnail == null) { if (contentThumbnail == '' || contentThumbnail == null) {
if (!COMMON.isPdfContent(contentType)) { if (!COMMON.isPdfContent(contentType)) {
var src = COMMON.getThumbnailForOtherType(contentType); var src = HEADER.getThumbnailForOtherType(contentType);
if (src != '') { if (src != '') {
imgThumb.src = src; imgThumb.src = src;
} }
...@@ -955,7 +955,7 @@ CONTENTSEARCH.checkUserHasReadContent = function(contId, resourceVer, metaVer, v ...@@ -955,7 +955,7 @@ CONTENTSEARCH.checkUserHasReadContent = function(contId, resourceVer, metaVer, v
} }
} else { } else {
imgThumb.onload = function() { imgThumb.onload = function() {
var resizeImg = COMMON.resizeResourceThumbnail(imgThumb, c.width, c.height); var resizeImg = CONTENTSEARCH.resizeResourceThumbnail(imgThumb, c.width, c.height);
ctx.drawImage(imgThumb, (c.width / 2) - (resizeImg[0] / 2) + 4, c.height - resizeImg[1] + 4, resizeImg[0], resizeImg[1]); ctx.drawImage(imgThumb, (c.width / 2) - (resizeImg[0] / 2) + 4, c.height - resizeImg[1] + 4, resizeImg[0], resizeImg[1]);
imgIconNew.onload = function() { imgIconNew.onload = function() {
ctx.drawImage(imgIconNew, c.width / 2 - resizeImg[0] / 2, c.height - resizeImg[1]); ctx.drawImage(imgIconNew, c.width / 2 - resizeImg[0] / 2, c.height - resizeImg[1]);
...@@ -968,7 +968,7 @@ CONTENTSEARCH.checkUserHasReadContent = function(contId, resourceVer, metaVer, v ...@@ -968,7 +968,7 @@ CONTENTSEARCH.checkUserHasReadContent = function(contId, resourceVer, metaVer, v
if (contentThumbnail == '' || contentThumbnail == null) { if (contentThumbnail == '' || contentThumbnail == null) {
if (!COMMON.isPdfContent(contentType)) { if (!COMMON.isPdfContent(contentType)) {
var src = COMMON.getThumbnailForOtherType(contentType); var src = HEADER.getThumbnailForOtherType(contentType);
if (src != '') { if (src != '') {
imgThumb.src = src; imgThumb.src = src;
} }
...@@ -989,7 +989,7 @@ CONTENTSEARCH.drawEditImage = function(id) { ...@@ -989,7 +989,7 @@ CONTENTSEARCH.drawEditImage = function(id) {
} else { } else {
var contentType = CONTENTSEARCH.returnContentType(id); var contentType = CONTENTSEARCH.returnContentType(id);
var src = COMMON.getThumbnailForOtherType(contentType); var src = HEADER.getThumbnailForOtherType(contentType);
if (src != '') { if (src != '') {
imgSrc = src; imgSrc = src;
} }
...@@ -1001,7 +1001,7 @@ CONTENTSEARCH.drawEditImage = function(id) { ...@@ -1001,7 +1001,7 @@ CONTENTSEARCH.drawEditImage = function(id) {
var ctx = c.getContext('2d'); var ctx = c.getContext('2d');
ctx.clearRect(0, 0, c.width, c.height); ctx.clearRect(0, 0, c.width, c.height);
img.onload = function() { img.onload = function() {
var resizeImg = COMMON.resizeResourceThumbnail(img, c.width, c.height); var resizeImg = CONTENTSEARCH.resizeResourceThumbnail(img, c.width, c.height);
ctx.drawImage(img, (c.width / 2) - (resizeImg[0] / 2) + 4, c.height - resizeImg[1] + 4, resizeImg[0], resizeImg[1]); ctx.drawImage(img, (c.width / 2) - (resizeImg[0] / 2) + 4, c.height - resizeImg[1] + 4, resizeImg[0], resizeImg[1]);
$("#loadingIcon" + id).fadeOut('slow', function() { $("#loadingIcon" + id).fadeOut('slow', function() {
$('#content-thumbnail' + id).fadeIn('slow'); $('#content-thumbnail' + id).fadeIn('slow');
...@@ -1219,6 +1219,19 @@ CONTENTSEARCH.enableSort = function() { ...@@ -1219,6 +1219,19 @@ CONTENTSEARCH.enableSort = function() {
} }
}; };
CONTENTSEARCH.resizeResourceThumbnail = function(mg, width, height) {
var newWidth;
var newHeight;
var delta = Math.min(width / mg.width, height / mg.height);
newHeight = parseInt(delta * mg.height);
newWidth = parseInt(delta * mg.width);
var result = [ newWidth, newHeight ];
return result;
};
CONTENTSEARCH.removeHoverCss = function() { CONTENTSEARCH.removeHoverCss = function() {
if (COMMON.isTouchDevice()) { if (COMMON.isTouchDevice()) {
$('#control-sort-title').removeClass('nottouchdevice'); $('#control-sort-title').removeClass('nottouchdevice');
...@@ -1318,6 +1331,6 @@ CONTENTSEARCH.downloadSubmenuFunction = function(e) { ...@@ -1318,6 +1331,6 @@ CONTENTSEARCH.downloadSubmenuFunction = function(e) {
var contentId = $(this).attr('contentid'); var contentId = $(this).attr('contentid');
// Download content // Download content
COMMON.downloadResourceById(contentId); HEADER.downloadResourceById(contentId);
}; };
//名前空間用のオブジェクトを用意する
var CONTENTVIEW_CHECK = {};
CONTENTVIEW_CHECK.ready = function(){
//ビューア、共有表示パーツ読み込み
$("#viewer").load("./inc_contentview.html?__UPDATEID__", function (myData, myStatus, xhr){
//読み込み完了時の処理
I18N.i18nReplaceText();
setTimeout(function(){
CONTENTVIEW_CHECK.showContentView();
}, 200);
});
};
CONTENTVIEW_CHECK.showContentView = function(){
$("#ws-body").hide();
//$("#topcontrol").hide();
CONTENTVIEW_INITOBJECT.clearViewerComponent();
CONTENTVIEW.cssInit();
$("#viewer").show();
CONTENTVIEW.ready();
};
$("document").ready(function () {
//CONTENTVIEW_CHECK.ready();
});
...@@ -1307,12 +1307,26 @@ CONTENTVIEW_EVENTS.imgBack_click = function() { ...@@ -1307,12 +1307,26 @@ CONTENTVIEW_EVENTS.imgBack_click = function() {
CONTENTVIEW.screenMove(); CONTENTVIEW.screenMove();
} else { } else {
/*check back */
//if (ClientData.BookmarkScreen()) {
// AVWEB.avwScreenMove(ClientData.BookmarkScreen());
//} else {
// window.history.back();
//}
//元の画面に戻って画面復帰 //元の画面に戻って画面復帰
CONTENTVIEW.screenBack(); CONTENTVIEW.screenBack();
} }
} else { } else {
/*check back */
//if (ClientData.BookmarkScreen()) {
// AVWEB.avwScreenMove(ClientData.BookmarkScreen());
//} else {
// window.history.back();
//}
//元の画面に戻って画面復帰 //元の画面に戻って画面復帰
CONTENTVIEW.screenBack(); CONTENTVIEW.screenBack();
} }
}; };
...@@ -1332,13 +1346,8 @@ CONTENTVIEW_EVENTS.imgHome_click = function(e) { ...@@ -1332,13 +1346,8 @@ CONTENTVIEW_EVENTS.imgHome_click = function(e) {
COMMON.SetEndLog(CONTENTVIEW_GENERAL.contentID); COMMON.SetEndLog(CONTENTVIEW_GENERAL.contentID);
COMMON.RegisterLog(); COMMON.RegisterLog();
// ホームへ移動 //window.location.href = COMMON.ScreenIds.Home;
if (ClientData.serviceOpt_abook_check() == 'Y') { AVWEB.avwScreenMove(COMMON.ScreenIds.Home);
AVWEB.avwScreenMove(COMMON.ScreenIds.HomeCheck);
} else {
AVWEB.avwScreenMove(COMMON.ScreenIds.Home);
}
}; };
CONTENTVIEW_EVENTS.closePopUpCopyMemo = function() { CONTENTVIEW_EVENTS.closePopUpCopyMemo = function() {
......
...@@ -115,7 +115,6 @@ CONTENTVIEW_GENERAL.disableAllControl = function() { ...@@ -115,7 +115,6 @@ CONTENTVIEW_GENERAL.disableAllControl = function() {
/*enable all control on page */ /*enable all control on page */
CONTENTVIEW_GENERAL.enableAllControl = function() { CONTENTVIEW_GENERAL.enableAllControl = function() {
CONTENTVIEW_GENERAL.disableAllControl(); CONTENTVIEW_GENERAL.disableAllControl();
/* set cursor pointer*/ /* set cursor pointer*/
...@@ -341,7 +340,7 @@ CONTENTVIEW_GENERAL.enableAllControl = function() { ...@@ -341,7 +340,7 @@ CONTENTVIEW_GENERAL.enableAllControl = function() {
} }
} }
if( ClientData.isGetitsMode() == true || ClientData.isCheckViewMode() == true ){ if( ClientData.isGetitsMode() == true ){
$('#imgHome').unbind('click'); $('#imgHome').unbind('click');
$('#imgHome').removeClass(); $('#imgHome').removeClass();
$('#imgHome').addClass('home_off'); $('#imgHome').addClass('home_off');
...@@ -352,38 +351,6 @@ CONTENTVIEW_GENERAL.enableAllControl = function() { ...@@ -352,38 +351,6 @@ CONTENTVIEW_GENERAL.enableAllControl = function() {
$('#imgBack').addClass('back_off'); $('#imgBack').addClass('back_off');
} }
if (ClientData.isCheckViewMode()) {
//checkViewモード対応
/* imgage display memo */
$('#imgmemo').unbind('click');
$('#imgmemo').removeClass();
$('#imgmemo').addClass('memoDisplay_off');
/* image add memo */
$('#imgaddmemo').unbind('click');
$('#imgaddmemo').removeClass();
$('#imgaddmemo').addClass('memoAdd_off');
$('#imgmarking').unbind('click');
$('#imgmarking').removeClass();
$('#imgmarking').addClass('marking_off');
$('#imgmarkingtoolbar').unbind('click');
$('#imgmarkingtoolbar').removeClass();
$('#imgmarkingtoolbar').addClass('markingToolbar_off');
$('#imgbookmark').unbind('click');
$('#imgbookmark').removeClass();
$('#imgbookmark').addClass('bmAdd_off');
/*list bookmark */
$('#listbookmark').unbind('click');
$('#listbookmark').removeClass();
$('#listbookmark').addClass('bmList_off');
}
CONTENTVIEW.checkExistNextPrePage(); CONTENTVIEW.checkExistNextPrePage();
}; };
...@@ -463,7 +430,7 @@ CONTENTVIEW_GENERAL.ready = function(initContentId){ ...@@ -463,7 +430,7 @@ CONTENTVIEW_GENERAL.ready = function(initContentId){
CONTENTVIEW_GENERAL.nAjaxLoad = 0; CONTENTVIEW_GENERAL.nAjaxLoad = 0;
CONTENTVIEW_GENERAL.isClearDrawing = false; CONTENTVIEW_GENERAL.isClearDrawing = false;
CONTENTVIEW_GENERAL.isDrawing = false; CONTENTVIEW_GENERAL.isDrawing = false;
CONTENTVIEW_GENERAL.mediaType4_changeImage = []; CONTENTVIEW_GENERAL.mediaType4_changeImage = 0;
CONTENTVIEW_GENERAL.isLoadingObject = false; CONTENTVIEW_GENERAL.isLoadingObject = false;
CONTENTVIEW_GENERAL.isFirstLoad = true; CONTENTVIEW_GENERAL.isFirstLoad = true;
CONTENTVIEW_GENERAL.nPositionCanvas = []; CONTENTVIEW_GENERAL.nPositionCanvas = [];
......
...@@ -48,7 +48,7 @@ CONTENTVIEW_GETDATA.getPageObjectsByPageIndex = function(contentData, nIndexPage ...@@ -48,7 +48,7 @@ CONTENTVIEW_GETDATA.getPageObjectsByPageIndex = function(contentData, nIndexPage
if (currentPageObjects[nIndex].mediaType == 1) {/*media type = 1 */ if (currentPageObjects[nIndex].mediaType == 1) {/*media type = 1 */
var pageObject = CONTENTVIEW_GETDATA.getMediaType1(currentPageObjects[nIndex]); var pageObject = CONTENTVIEW_GETDATA.getMediaType1(currentPageObjects[nIndex]);
/*add object to page */ /*add object to page */
if (currentPageObjects[nIndex].action.actionType != 13) CONTENTVIEW_GENERAL.pageObjects.push(pageObject); CONTENTVIEW_GENERAL.pageObjects.push(pageObject);
} else if (currentPageObjects[nIndex].mediaType == 2) { /*mediaType = 2 */ } else if (currentPageObjects[nIndex].mediaType == 2) { /*mediaType = 2 */
var pageObject = CONTENTVIEW_GETDATA.getMediaType2(currentPageObjects[nIndex]); var pageObject = CONTENTVIEW_GETDATA.getMediaType2(currentPageObjects[nIndex]);
/*add object to page */ /*add object to page */
...@@ -388,35 +388,6 @@ CONTENTVIEW_GETDATA.getMediaType1 = function(iValueObj) { ...@@ -388,35 +388,6 @@ CONTENTVIEW_GETDATA.getMediaType1 = function(iValueObj) {
pageObject["resourceId"] = iValueObj.action.resourceId; pageObject["resourceId"] = iValueObj.action.resourceId;
pageObject["enquete"] = iValueObj.action.enquete; pageObject["enquete"] = iValueObj.action.enquete;
//pageObject["objectId"] = iValueObj.action.objectId; //pageObject["objectId"] = iValueObj.action.objectId;
} else if(iValueObj.action.actionType == 16) {
/*get mediaInfo */
// プレビューでは表示だけで、クリックしても機能しない
if (iValueObj.mediaInfo) {
/* get image from Json */
pageObject['imageUrl'] = AVWEB.getURL("webResourceDownload") + "&sid=" + CONTENTVIEW.getSessionId() + "&resourceId=" + iValueObj.mediaInfo.resourceId;
} else {
pageObject['imageUrl'] = null;
}
}
else if(iValueObj.action.actionType == 18) {
/*get mediaInfo */
// プレビューでは表示だけで、クリックしても機能しない
if (iValueObj.mediaInfo) {
/* get image from Json */
pageObject['imageUrl'] = AVWEB.getURL("webResourceDownload") + "&sid=" + CONTENTVIEW.getSessionId() + "&resourceId=" + iValueObj.mediaInfo.resourceId;
} else {
pageObject['imageUrl'] = null;
}
else if(iValueObj.action.actionType == 19) {
/*get mediaInfo */
// プレビューでは表示だけで、クリックしても機能しない
if (iValueObj.mediaInfo) {
/* get image from Json */
pageObject['imageUrl'] = AVWEB.getURL("webResourceDownload") + "&sid=" + CONTENTVIEW.getSessionId() + "&resourceId=" + iValueObj.mediaInfo.resourceId;
} else {
pageObject['imageUrl'] = null;
}
} }
//End Function : No.9 - Editor : Long - Date: 08/16/2013 - Summary : //End Function : No.9 - Editor : Long - Date: 08/16/2013 - Summary :
return pageObject; return pageObject;
...@@ -543,12 +514,6 @@ CONTENTVIEW_GETDATA.getMediaType4 = function(iValueObj) { ...@@ -543,12 +514,6 @@ CONTENTVIEW_GETDATA.getMediaType4 = function(iValueObj) {
pageObject['triggerType'] = ''; pageObject['triggerType'] = '';
} }
if (iValueObj.mediaInfo.aspectType) {
pageObject['aspectType'] = iValueObj.mediaInfo.aspectType;
} else {
pageObject['aspectType'] = '';
}
/*get image url */ /*get image url */
if (imageObjects.length > 0) { if (imageObjects.length > 0) {
pageObject['imageUrl'] = imageObjects[0].fileName; pageObject['imageUrl'] = imageObjects[0].fileName;
...@@ -1233,7 +1198,6 @@ CONTENTVIEW_GETDATA.getContentID = function() { ...@@ -1233,7 +1198,6 @@ CONTENTVIEW_GETDATA.getContentID = function() {
if (ClientData.common_preContentId()) { if (ClientData.common_preContentId()) {
CONTENTVIEW_GENERAL.contentID = ClientData.common_preContentId(); CONTENTVIEW_GENERAL.contentID = ClientData.common_preContentId();
ClientData.common_preContentId(null); ClientData.common_preContentId(null);
CONTENTVIEW_GENERAL.prePageNo = ClientData.common_prePageNo();
} else if (ClientData.IsJumpBack() == true) { } else if (ClientData.IsJumpBack() == true) {
var dataJump = ClientData.JumpQueue(); var dataJump = ClientData.JumpQueue();
CONTENTVIEW_GENERAL.contentID = dataJump[dataJump.length - 1].oldContentID; CONTENTVIEW_GENERAL.contentID = dataJump[dataJump.length - 1].oldContentID;
...@@ -1505,7 +1469,7 @@ CONTENTVIEW_GETDATA.getNextPageObjectsByPageIndex = function(contentData, nIndex ...@@ -1505,7 +1469,7 @@ CONTENTVIEW_GETDATA.getNextPageObjectsByPageIndex = function(contentData, nIndex
if (currentPageObjects[nIndex].mediaType == 1) {/*media type = 1 */ if (currentPageObjects[nIndex].mediaType == 1) {/*media type = 1 */
var pageObject = CONTENTVIEW_GETDATA.getMediaType1(currentPageObjects[nIndex]); var pageObject = CONTENTVIEW_GETDATA.getMediaType1(currentPageObjects[nIndex]);
/*add object to page */ /*add object to page */
if (currentPageObjects[nIndex].action.actionType != 13) CONTENTVIEW_GENERAL.nextPageObjects.push(pageObject); CONTENTVIEW_GENERAL.nextPageObjects.push(pageObject);
} else if (currentPageObjects[nIndex].mediaType == 2) { /*mediaType = 2 */ } else if (currentPageObjects[nIndex].mediaType == 2) { /*mediaType = 2 */
var pageObject = CONTENTVIEW_GETDATA.getMediaType2(currentPageObjects[nIndex]); var pageObject = CONTENTVIEW_GETDATA.getMediaType2(currentPageObjects[nIndex]);
/*add object to page */ /*add object to page */
...@@ -1585,7 +1549,7 @@ CONTENTVIEW_GETDATA.getPrevPageObjectsByPageIndex = function(contentData, nIndex ...@@ -1585,7 +1549,7 @@ CONTENTVIEW_GETDATA.getPrevPageObjectsByPageIndex = function(contentData, nIndex
if (currentPageObjects[nIndex].mediaType == 1) {/*media type = 1 */ if (currentPageObjects[nIndex].mediaType == 1) {/*media type = 1 */
var pageObject = CONTENTVIEW_GETDATA.getMediaType1(currentPageObjects[nIndex]); var pageObject = CONTENTVIEW_GETDATA.getMediaType1(currentPageObjects[nIndex]);
/*add object to page */ /*add object to page */
if (currentPageObjects[nIndex].action.actionType != 13) CONTENTVIEW_GENERAL.prevPageObjects.push(pageObject); CONTENTVIEW_GENERAL.prevPageObjects.push(pageObject);
} else if (currentPageObjects[nIndex].mediaType == 2) { /*mediaType = 2 */ } else if (currentPageObjects[nIndex].mediaType == 2) { /*mediaType = 2 */
var pageObject = CONTENTVIEW_GETDATA.getMediaType2(currentPageObjects[nIndex]); var pageObject = CONTENTVIEW_GETDATA.getMediaType2(currentPageObjects[nIndex]);
/*add object to page */ /*add object to page */
...@@ -1810,3 +1774,4 @@ CONTENTVIEW_GETDATA.getPageTransitionConfig = function(){ ...@@ -1810,3 +1774,4 @@ CONTENTVIEW_GETDATA.getPageTransitionConfig = function(){
CONTENTVIEW_GETDATA.ready = function(){ CONTENTVIEW_GETDATA.ready = function(){
}; };
...@@ -4,16 +4,6 @@ var CONTENTVIEW_INITOBJECT = {}; ...@@ -4,16 +4,6 @@ var CONTENTVIEW_INITOBJECT = {};
/* init Image memo */ /* init Image memo */
CONTENTVIEW_INITOBJECT.initImageMemo = function() { CONTENTVIEW_INITOBJECT.initImageMemo = function() {
if (ClientData.isCheckViewMode()) {
//checkViewモード対応
/* imgage display memo */
$('#imgmemo').unbind('click');
$('#imgmemo').removeClass();
$('#imgmemo').addClass('memoDisplay_off');
return;
}
if (ClientData.IsDisplayMemo() == true) { if (ClientData.IsDisplayMemo() == true) {
//change class //change class
$('#imgmemo').removeClass(); $('#imgmemo').removeClass();
...@@ -28,16 +18,6 @@ CONTENTVIEW_INITOBJECT.initImageMemo = function() { ...@@ -28,16 +18,6 @@ CONTENTVIEW_INITOBJECT.initImageMemo = function() {
/* init Image add memo */ /* init Image add memo */
CONTENTVIEW_INITOBJECT.initImageAddMemo = function() { CONTENTVIEW_INITOBJECT.initImageAddMemo = function() {
if (ClientData.isCheckViewMode()) {
//checkViewモード対応
/* image add memo */
$('#imgaddmemo').unbind('click');
$('#imgaddmemo').removeClass();
$('#imgaddmemo').addClass('memoAdd_off');
return;
}
if (ClientData.IsAddingMemo() == true) { if (ClientData.IsAddingMemo() == true) {
//change class //change class
$('#imgaddmemo').removeClass(); $('#imgaddmemo').removeClass();
...@@ -53,19 +33,6 @@ CONTENTVIEW_INITOBJECT.initImageAddMemo = function() { ...@@ -53,19 +33,6 @@ CONTENTVIEW_INITOBJECT.initImageAddMemo = function() {
/*check display marking?? */ /*check display marking?? */
CONTENTVIEW_INITOBJECT.initDisplayMarking = function() { CONTENTVIEW_INITOBJECT.initDisplayMarking = function() {
if (ClientData.isCheckViewMode()) {
//checkViewモード対応
$('#imgmarking').unbind('click');
$('#imgmarking').removeClass();
$('#imgmarking').addClass('marking_off');
$('#imgmarkingtoolbar').unbind('click');
$('#imgmarkingtoolbar').removeClass();
$('#imgmarkingtoolbar').addClass('markingToolbar_off');
return;
}
if (ClientData.IsDisplayMarking() == true) { if (ClientData.IsDisplayMarking() == true) {
// change class // change class
$('#imgmarking').removeClass(); $('#imgmarking').removeClass();
...@@ -108,20 +75,6 @@ CONTENTVIEW_INITOBJECT.initDisplayMarking = function() { ...@@ -108,20 +75,6 @@ CONTENTVIEW_INITOBJECT.initDisplayMarking = function() {
/* init Image bookmark */ /* init Image bookmark */
CONTENTVIEW_INITOBJECT.initImageBookmark = function() { CONTENTVIEW_INITOBJECT.initImageBookmark = function() {
if (ClientData.isCheckViewMode()) {
//checkViewモード対応
$('#imgbookmark').unbind('click');
$('#imgbookmark').removeClass();
$('#imgbookmark').addClass('bmAdd_off');
/*list bookmark */
$('#listbookmark').unbind('click');
$('#listbookmark').removeClass();
$('#listbookmark').addClass('bmList_off');
return;
}
if (CONTENTVIEW.isExistBookmark() == -1) { if (CONTENTVIEW.isExistBookmark() == -1) {
//change class //change class
$('#imgbookmark').removeClass(); $('#imgbookmark').removeClass();
...@@ -642,7 +595,7 @@ CONTENTVIEW_INITOBJECT.initPageMediaAndHtmlType = function(){ ...@@ -642,7 +595,7 @@ CONTENTVIEW_INITOBJECT.initPageMediaAndHtmlType = function(){
} }
//Display overlay dialog for specify content type //Display overlay dialog for specify content type
CONTENTVIEW.displayOverlayForSpecifyContentType(null); CONTENTVIEW.displayOverlayForSpecifyContentType();
//Resize window //Resize window
$(window).resize(function () { $(window).resize(function () {
......
...@@ -204,11 +204,11 @@ DETAIL.contentdetail_dspRead_Click_callback = function(outputId) { ...@@ -204,11 +204,11 @@ DETAIL.contentdetail_dspRead_Click_callback = function(outputId) {
if (ClientData.contentInfo_contentType() == COMMON.ContentTypeKeys.Type_Others) { if (ClientData.contentInfo_contentType() == COMMON.ContentTypeKeys.Type_Others) {
// Get content detail // Get content detail
COMMON.downloadResourceById(ClientData.contentInfo_contentId()); HEADER.downloadResourceById(ClientData.contentInfo_contentId());
} }
else if(ClientData.contentInfo_contentType() == COMMON.ContentTypeKeys.Type_Link){ else if(ClientData.contentInfo_contentType() == COMMON.ContentTypeKeys.Type_Link){
// Get content detail // Get content detail
COMMON.viewLinkContentById(ClientData.contentInfo_contentId(), true); HEADER.viewLinkContentById(ClientData.contentInfo_contentId());
} }
else { else {
//AVWEB.avwScreenMove(COMMON.ScreenIds.ContentView); //AVWEB.avwScreenMove(COMMON.ScreenIds.ContentView);
...@@ -252,7 +252,7 @@ DETAIL.showContentNotPDF = function(displayData) { ...@@ -252,7 +252,7 @@ DETAIL.showContentNotPDF = function(displayData) {
if(displayData.contentThumbnail == '' || displayData.contentThumbnail == null || displayData.contentThumbnail == 'undefined'){ if(displayData.contentThumbnail == '' || displayData.contentThumbnail == null || displayData.contentThumbnail == 'undefined'){
if(!COMMON.isPdfContent(tempContentType)){ if(!COMMON.isPdfContent(tempContentType)){
var src = COMMON.getThumbnailForOtherType(contentType); var src = HEADER.getThumbnailForOtherType(contentType);
if( src != '' ){ if( src != '' ){
displayData.contentThumbnail = src; displayData.contentThumbnail = src;
} }
......
...@@ -1036,3 +1036,195 @@ HEADER.setStatusSort = function(currentid, isAsc) { ...@@ -1036,3 +1036,195 @@ HEADER.setStatusSort = function(currentid, isAsc) {
$('#menu_sort li').removeClass('current'); $('#menu_sort li').removeClass('current');
$(currentid).addClass(isAsc ? 'ascending_sort' : 'descending_sort').parent().addClass("current"); $(currentid).addClass(isAsc ? 'ascending_sort' : 'descending_sort').parent().addClass("current");
}; };
// get icon of content type
HEADER.getIconTypeContent = function(contentType) {
var src = '';
switch (contentType) {
case COMMON.ContentTypeKeys.Type_PDF:
{
src = 'img/bookshelf/icon_01.png';
break;
}
case COMMON.ContentTypeKeys.Type_Enquete:
{
src = 'img/bookshelf/icon_09.png';
break;
}
case COMMON.ContentTypeKeys.Type_Exam:
{
src = 'img/bookshelf/icon_10.png';
break;
}
case COMMON.ContentTypeKeys.Type_Html:
{
src = 'img/bookshelf/icon_05.png';
break;
}
case COMMON.ContentTypeKeys.Type_Image:
{
src = 'img/bookshelf/icon_02.png';
break;
}
case COMMON.ContentTypeKeys.Type_Music:
{
src = 'img/bookshelf/icon_06.png';
break;
}
case COMMON.ContentTypeKeys.Type_NoFile:
{
src = 'img/bookshelf/icon_07.png';
break;
}
case COMMON.ContentTypeKeys.Type_Others:
{
src = 'img/bookshelf/icon_03.png';
break;
}
case COMMON.ContentTypeKeys.Type_Video:
{
src = 'img/bookshelf/icon_04.png';
break;
}
case COMMON.ContentTypeKeys.Type_Link:
{
src = 'img/bookshelf/icon_08.png';
break;
}
case COMMON.ContentTypeKeys.Type_PanoMovie:
{
src = 'img/bookshelf/icon_11.png';
break;
}
case COMMON.ContentTypeKeys.Type_PanoImage:
{
src = 'img/bookshelf/icon_12.png';
break;
}
case COMMON.ContentTypeKeys.Type_ObjectVR:
{
src = 'img/bookshelf/icon_13.png';
break;
}
default: break;
}
return src;
};
// download resouce content id
HEADER.downloadResourceById = function(contentId){
var params = {
sid: ClientData.userInfo_sid(),
contentId: contentId,
getType: '2'
};
AVWEB.avwCmsApiSync(ClientData.userInfo_accountPath(), "webGetContent", "get", params,
function (data) {
//Get resourceurl
if( data.contentData.content ){
var resourceUrl = HEADER.getResourceByIdFromAPI(data.contentData.content.resourceId);
// open url to download file
if (HEADER.isSafariNotOnIpad()) {
window.onbeforeunload = null;
window.open(resourceUrl, "_self"); // open url to download file on safari not for ipad
var toogleTime = setTimeout(function () { COMMON.ToogleLogoutNortice() }, 200);
}
else {
window.open(resourceUrl); //open url to download file on orther browser
}
} else {
alert("ダウンロード出来ません。");
}
},
function (xhr, b, c) { }
);
};
//Download resource
HEADER.getResourceByIdFromAPI = function(resourceId){
return AVWEB.getURL("webResourceDownload") + "&sid=" + ClientData.userInfo_sid() + "&resourceId=" + resourceId + "&isDownload=true";
};
// check is browser safari on Mac and Window devide ( not Ipad )
HEADER.isSafariNotOnIpad = function() {
if (!window.chrome) {
var ua = navigator.userAgent.toLowerCase();
if (!/ipad/.test(ua) && /safari/.test(ua)) {
return true;
}
}
return false;
};
//link content
HEADER.viewLinkContentById = function(contentId){
var params = {
sid: ClientData.userInfo_sid(),
contentId: contentId,
getType: '2'
};
AVWEB.avwCmsApiSync(ClientData.userInfo_accountPath(), "webGetContent", "get", params,
function (data) {
//Get linkUrl
var linkUrl = data.contentData.content.url;
if( !linkUrl ){
return;
}
window.open(linkUrl, "_blank", "new window, scrollbars=yes");
/*
//httpで始まる場合は別ウィンドウで開く
if (linkUrl.toLowerCase().indexOf('http') === 0) {
window.open(linkUrl, "_blank", "new window, scrollbars=yes");
}
else if( linkUrl.toLowerCase().indexOf('mailto') === 0 ){
//window.open(linkUrl, "_self");
location.href=linkUrl;
}
else {
// open url to download file
if (HEADER.isSafariNotOnIpad()) {
window.onbeforeunload = null;
window.open(linkUrl, "_self"); // open url to download file on safari not for ipad
var toogleTime = setTimeout(function () { COMMON.ToogleLogoutNortice() }, 200);
}
else {
window.open(linkUrl); //open url to download file on orther browser
}
}
*/
},
function (xhr, b, c) { });
};
// get ThumbnailForOtherType
HEADER.getThumbnailForOtherType = function(contentType){
var src = '';
if(contentType == COMMON.ContentTypeKeys.Type_Image){
src = COMMON.ThumbnailForOtherType.Thumbnail_ImageType;
}
else if(contentType == COMMON.ContentTypeKeys.Type_Music){
src = COMMON.ThumbnailForOtherType.Thumbnail_MusicType;
}
else if(contentType == COMMON.ContentTypeKeys.Type_Video){
src = COMMON.ThumbnailForOtherType.Thumbnail_VideoType;
}
else if(contentType == COMMON.ContentTypeKeys.Type_NoFile){
src = COMMON.ThumbnailForOtherType.Thumbnail_NoFileType;
}
else if(contentType == COMMON.ContentTypeKeys.Type_Others){
src = COMMON.ThumbnailForOtherType.Thumbnail_OthersType;
}
else if(contentType == COMMON.ContentTypeKeys.Type_Html){
src = COMMON.ThumbnailForOtherType.Thumbnail_HtmlType;
}
else if(contentType == COMMON.ContentTypeKeys.Type_Link){
src = COMMON.ThumbnailForOtherType.Thumbnail_LinkType;
}
return src;
};
...@@ -643,12 +643,12 @@ HISTORY.readSubmenuFunction_callback = function(contentId) { ...@@ -643,12 +643,12 @@ HISTORY.readSubmenuFunction_callback = function(contentId) {
if (contentType == COMMON.ContentTypeKeys.Type_Others) { if (contentType == COMMON.ContentTypeKeys.Type_Others) {
// Download content // Download content
COMMON.downloadResourceById(contentId); HEADER.downloadResourceById(contentId);
// redraw content remove new icon // redraw content remove new icon
HISTORY.drawEditImage(contentId); HISTORY.drawEditImage(contentId);
} else if (contentType == COMMON.ContentTypeKeys.Type_Link) { } else if (contentType == COMMON.ContentTypeKeys.Type_Link) {
// link content // link content
COMMON.viewLinkContentById(contentId, true); HEADER.viewLinkContentById(contentId);
// redraw content remove new icon // redraw content remove new icon
HISTORY.drawEditImage(contentId); HISTORY.drawEditImage(contentId);
} else { } else {
...@@ -709,7 +709,7 @@ HISTORY.checkUserHasReadContent = function(contId, resourceVer, metaVer, version ...@@ -709,7 +709,7 @@ HISTORY.checkUserHasReadContent = function(contId, resourceVer, metaVer, version
if (readArr == null || readArr <= 0 || readArr == 'undefined') { if (readArr == null || readArr <= 0 || readArr == 'undefined') {
imgThumb.onload = function() { imgThumb.onload = function() {
var resizeImg = COMMON.resizeResourceThumbnail(imgThumb, c.width, c.height); var resizeImg = HISTORY.resizeResourceThumbnail(imgThumb, c.width, c.height);
ctx.drawImage(imgThumb, c.width / 2 - resizeImg[0] / 2, 0, resizeImg[0], resizeImg[1]); ctx.drawImage(imgThumb, c.width / 2 - resizeImg[0] / 2, 0, resizeImg[0], resizeImg[1]);
imgIconNew.onload = function() { imgIconNew.onload = function() {
ctx.drawImage(imgIconNew, c.width / 2 - resizeImg[0] / 2, 0); ctx.drawImage(imgIconNew, c.width / 2 - resizeImg[0] / 2, 0);
...@@ -720,7 +720,7 @@ HISTORY.checkUserHasReadContent = function(contId, resourceVer, metaVer, version ...@@ -720,7 +720,7 @@ HISTORY.checkUserHasReadContent = function(contId, resourceVer, metaVer, version
if (contentThumbnail == '' || contentThumbnail == null) { if (contentThumbnail == '' || contentThumbnail == null) {
if (!COMMON.isPdfContent(contentType)) { if (!COMMON.isPdfContent(contentType)) {
var src = COMMON.getThumbnailForOtherType(contentType); var src = HEADER.getThumbnailForOtherType(contentType);
if (src != '') { if (src != '') {
imgThumb.src = src; imgThumb.src = src;
} }
...@@ -734,13 +734,13 @@ HISTORY.checkUserHasReadContent = function(contId, resourceVer, metaVer, version ...@@ -734,13 +734,13 @@ HISTORY.checkUserHasReadContent = function(contId, resourceVer, metaVer, version
for ( var nIndex1 = 0; nIndex1 < ClientData.ReadingContentIds().length; nIndex1++) { for ( var nIndex1 = 0; nIndex1 < ClientData.ReadingContentIds().length; nIndex1++) {
if (ClientData.ReadingContentIds()[nIndex1].contentid == contId) { if (ClientData.ReadingContentIds()[nIndex1].contentid == contId) {
imgThumb.onload = function() { imgThumb.onload = function() {
var resizeImg = COMMON.resizeResourceThumbnail(imgThumb, c.width, c.height); var resizeImg = HISTORY.resizeResourceThumbnail(imgThumb, c.width, c.height);
ctx.drawImage(imgThumb, c.width / 2 - resizeImg[0] / 2, 0, resizeImg[0], resizeImg[1]); ctx.drawImage(imgThumb, c.width / 2 - resizeImg[0] / 2, 0, resizeImg[0], resizeImg[1]);
HISTORY.showContentThumbnail(contId); HISTORY.showContentThumbnail(contId);
}; };
if (contentThumbnail == '' || contentThumbnail == null) { if (contentThumbnail == '' || contentThumbnail == null) {
if (!COMMON.isPdfContent(contentType)) { if (!COMMON.isPdfContent(contentType)) {
var src = COMMON.getThumbnailForOtherType(contentType); var src = HEADER.getThumbnailForOtherType(contentType);
if (src != '') { if (src != '') {
imgThumb.src = src; imgThumb.src = src;
} }
...@@ -762,7 +762,7 @@ HISTORY.checkUserHasReadContent = function(contId, resourceVer, metaVer, version ...@@ -762,7 +762,7 @@ HISTORY.checkUserHasReadContent = function(contId, resourceVer, metaVer, version
if (versionArr[nIndex2].contentid == contId) { if (versionArr[nIndex2].contentid == contId) {
if (versionArr[nIndex2].resourceversion != resourceVer) { if (versionArr[nIndex2].resourceversion != resourceVer) {
imgThumb.onload = function() { imgThumb.onload = function() {
var resizeImg = COMMON.resizeResourceThumbnail(imgThumb, c.width, c.height); var resizeImg = HISTORY.resizeResourceThumbnail(imgThumb, c.width, c.height);
ctx.drawImage(imgThumb, c.width / 2 - resizeImg[0] / 2, 0, resizeImg[0], resizeImg[1]); ctx.drawImage(imgThumb, c.width / 2 - resizeImg[0] / 2, 0, resizeImg[0], resizeImg[1]);
HISTORY.showContentThumbnail(contId); HISTORY.showContentThumbnail(contId);
imgIconEdit.onload = function() { imgIconEdit.onload = function() {
...@@ -773,7 +773,7 @@ HISTORY.checkUserHasReadContent = function(contId, resourceVer, metaVer, version ...@@ -773,7 +773,7 @@ HISTORY.checkUserHasReadContent = function(contId, resourceVer, metaVer, version
// thumbnail. // thumbnail.
if (contentThumbnail == '' || contentThumbnail == null) { if (contentThumbnail == '' || contentThumbnail == null) {
if (!COMMON.isPdfContent(contentType)) { if (!COMMON.isPdfContent(contentType)) {
var src = COMMON.getThumbnailForOtherType(contentType); var src = HEADER.getThumbnailForOtherType(contentType);
if (src != '') { if (src != '') {
imgThumb.src = src; imgThumb.src = src;
} }
...@@ -794,7 +794,7 @@ HISTORY.checkUserHasReadContent = function(contId, resourceVer, metaVer, version ...@@ -794,7 +794,7 @@ HISTORY.checkUserHasReadContent = function(contId, resourceVer, metaVer, version
if (metaArr[nIndex2].contentid == contId) { if (metaArr[nIndex2].contentid == contId) {
if (metaArr[nIndex2].metaversion != metaVer) { if (metaArr[nIndex2].metaversion != metaVer) {
imgThumb.onload = function() { imgThumb.onload = function() {
var resizeImg = COMMON.resizeResourceThumbnail(imgThumb, c.width, c.height); var resizeImg = HISTORY.resizeResourceThumbnail(imgThumb, c.width, c.height);
ctx.drawImage(imgThumb, c.width / 2 - resizeImg[0] / 2, 0, resizeImg[0], resizeImg[1]); ctx.drawImage(imgThumb, c.width / 2 - resizeImg[0] / 2, 0, resizeImg[0], resizeImg[1]);
HISTORY.showContentThumbnail(contId); HISTORY.showContentThumbnail(contId);
imgIconEdit.onload = function() { imgIconEdit.onload = function() {
...@@ -805,7 +805,7 @@ HISTORY.checkUserHasReadContent = function(contId, resourceVer, metaVer, version ...@@ -805,7 +805,7 @@ HISTORY.checkUserHasReadContent = function(contId, resourceVer, metaVer, version
// thumbnail. // thumbnail.
if (contentThumbnail == '' || contentThumbnail == null) { if (contentThumbnail == '' || contentThumbnail == null) {
if (!COMMON.isPdfContent(contentType)) { if (!COMMON.isPdfContent(contentType)) {
var src = COMMON.getThumbnailForOtherType(contentType); var src = HEADER.getThumbnailForOtherType(contentType);
if (src != '') { if (src != '') {
imgThumb.src = src; imgThumb.src = src;
} }
...@@ -831,7 +831,7 @@ HISTORY.checkUserHasReadContent = function(contId, resourceVer, metaVer, version ...@@ -831,7 +831,7 @@ HISTORY.checkUserHasReadContent = function(contId, resourceVer, metaVer, version
}; };
if (contentThumbnail == '' || contentThumbnail == null) { if (contentThumbnail == '' || contentThumbnail == null) {
if (!COMMON.isPdfContent(contentType)) { if (!COMMON.isPdfContent(contentType)) {
var src = COMMON.getThumbnailForOtherType(contentType); var src = HEADER.getThumbnailForOtherType(contentType);
if (src != '') { if (src != '') {
imgThumb.src = src; imgThumb.src = src;
} }
...@@ -852,7 +852,7 @@ HISTORY.drawEditImage = function(id) { ...@@ -852,7 +852,7 @@ HISTORY.drawEditImage = function(id) {
} else { } else {
var contentType = HISTORY.returnContentType(id); var contentType = HISTORY.returnContentType(id);
var src = COMMON.getThumbnailForOtherType(contentType); var src = HEADER.getThumbnailForOtherType(contentType);
if (src != '') { if (src != '') {
imgSrc = src; imgSrc = src;
} }
...@@ -865,7 +865,7 @@ HISTORY.drawEditImage = function(id) { ...@@ -865,7 +865,7 @@ HISTORY.drawEditImage = function(id) {
var ctx = c.getContext('2d'); var ctx = c.getContext('2d');
ctx.clearRect(0, 0, c.width, c.height); ctx.clearRect(0, 0, c.width, c.height);
img.onload = function() { img.onload = function() {
var resizeImg = COMMON.resizeResourceThumbnail(img, c.width, c.height); var resizeImg = HISTORY.resizeResourceThumbnail(img, c.width, c.height);
ctx.drawImage(img, (c.width / 2) - (resizeImg[0] / 2) + 4, c.height - resizeImg[1] + 4, resizeImg[0], resizeImg[1]); ctx.drawImage(img, (c.width / 2) - (resizeImg[0] / 2) + 4, c.height - resizeImg[1] + 4, resizeImg[0], resizeImg[1]);
$("#loadingIcon" + id).fadeOut('slow', function() { $("#loadingIcon" + id).fadeOut('slow', function() {
$('#content-thumbnail' + id).fadeIn('slow'); $('#content-thumbnail' + id).fadeIn('slow');
...@@ -1299,7 +1299,7 @@ HISTORY.renderContentAfterSort = function(contentSortArr) { ...@@ -1299,7 +1299,7 @@ HISTORY.renderContentAfterSort = function(contentSortArr) {
+ ' </a>' + ' </a>'
+ ' <div class="text">' + ' <div class="text">'
+ ' <a id="title' + post.contentid + '" class="name dialog" contentid="' + post.contentid + '">' + ' <a id="title' + post.contentid + '" class="name dialog" contentid="' + post.contentid + '">'
+ ' <img class="listIcon" src="' + COMMON.getIconTypeContent(post.contenttype) + '" width="20" height="20" align="left">' + ' <img class="listIcon" src="' + HEADER.getIconTypeContent(post.contenttype) + '" width="20" height="20" align="left">'
+ ' <div class="history_title">' + COMMON.htmlEncode(post.contenttitle) + '</div>' + ' <div class="history_title">' + COMMON.htmlEncode(post.contenttitle) + '</div>'
+ ' </a>' + ' </a>'
+ ' <div class="info">' + ' <div class="info">'
...@@ -1376,6 +1376,19 @@ HISTORY.formatOriginalPublishDate = function(date) { ...@@ -1376,6 +1376,19 @@ HISTORY.formatOriginalPublishDate = function(date) {
// return titleKana; // return titleKana;
//}; //};
HISTORY.resizeResourceThumbnail = function(mg, width, height) {
var newWidth;
var newHeight;
var delta = Math.min(width / mg.width, height / mg.height);
newHeight = parseInt(delta * mg.height);
newWidth = parseInt(delta * mg.width);
var result = [ newWidth, newHeight ];
return result;
};
HISTORY.removeHoverCss = function() { HISTORY.removeHoverCss = function() {
if (COMMON.isTouchDevice()) { if (COMMON.isTouchDevice()) {
$('#control-sort-title').removeClass('nottouchdevice'); $('#control-sort-title').removeClass('nottouchdevice');
...@@ -1468,7 +1481,7 @@ HISTORY.downloadFunction = function(e) { ...@@ -1468,7 +1481,7 @@ HISTORY.downloadFunction = function(e) {
var contentId = $(this).attr('contentid'); var contentId = $(this).attr('contentid');
// Download content // Download content
COMMON.downloadResourceById(contentId); HEADER.downloadResourceById(contentId);
}; };
...@@ -203,10 +203,6 @@ LOGIN.processLogin = function() { ...@@ -203,10 +203,6 @@ LOGIN.processLogin = function() {
data.requirePasswordChange = 0; data.requirePasswordChange = 0;
} }
console.log("data.requirePasswordChange:" + data.requirePasswordChange);
console.log("ClientData.serviceOpt_abook_check:" + ClientData.serviceOpt_abook_check());
if (data.requirePasswordChange == 0) { if (data.requirePasswordChange == 0) {
ClientData.userInfo_sid(ClientData.userInfo_sid_local()); ClientData.userInfo_sid(ClientData.userInfo_sid_local());
...@@ -215,11 +211,7 @@ LOGIN.processLogin = function() { ...@@ -215,11 +211,7 @@ LOGIN.processLogin = function() {
LOGIN.showContentViewByOpenUrl(paramContentID); LOGIN.showContentViewByOpenUrl(paramContentID);
} else { } else {
// ホームへ移動 // ホームへ移動
if (ClientData.serviceOpt_abook_check() == 'Y') { AVWEB.avwScreenMove("abvw/" + COMMON.ScreenIds.Home);
AVWEB.avwScreenMove("abvw/" + COMMON.ScreenIds.HomeCheck);
} else {
AVWEB.avwScreenMove("abvw/" + COMMON.ScreenIds.Home);
}
} }
} else if (data.requirePasswordChange == 1) { } else if (data.requirePasswordChange == 1) {
...@@ -253,11 +245,7 @@ LOGIN.processLogin = function() { ...@@ -253,11 +245,7 @@ LOGIN.processLogin = function() {
LOGIN.showContentViewByOpenUrl(paramContentID); LOGIN.showContentViewByOpenUrl(paramContentID);
} else { } else {
// ホームへ移動 // ホームへ移動
if (ClientData.serviceOpt_abook_check() == 'Y') { AVWEB.avwScreenMove("abvw/" + COMMON.ScreenIds.Home);
AVWEB.avwScreenMove("abvw/" + COMMON.ScreenIds.HomeCheck);
} else {
AVWEB.avwScreenMove("abvw/" + COMMON.ScreenIds.Home);
}
} }
} else if (numDay > 30) { } else if (numDay > 30) {
LOGIN.OpenChangePasswordDialog(); LOGIN.OpenChangePasswordDialog();
...@@ -273,11 +261,7 @@ LOGIN.processLogin = function() { ...@@ -273,11 +261,7 @@ LOGIN.processLogin = function() {
LOGIN.showContentViewByOpenUrl(paramContentID); LOGIN.showContentViewByOpenUrl(paramContentID);
} else { } else {
// ホームへ移動 // ホームへ移動
if (ClientData.serviceOpt_abook_check() == 'Y') { AVWEB.avwScreenMove("abvw/" + COMMON.ScreenIds.Home);
AVWEB.avwScreenMove("abvw/" + COMMON.ScreenIds.HomeCheck);
} else {
AVWEB.avwScreenMove("abvw/" + COMMON.ScreenIds.Home);
}
} }
} }
...@@ -306,11 +290,7 @@ LOGIN.processLogin = function() { ...@@ -306,11 +290,7 @@ LOGIN.processLogin = function() {
LOGIN.showContentViewByOpenUrl(paramContentID); LOGIN.showContentViewByOpenUrl(paramContentID);
} else { } else {
// ホームへ移動 // ホームへ移動
if (ClientData.serviceOpt_abook_check() == 'Y') { AVWEB.avwScreenMove("abvw/" + COMMON.ScreenIds.Home);
AVWEB.avwScreenMove("abvw/" + COMMON.ScreenIds.HomeCheck);
} else {
AVWEB.avwScreenMove("abvw/" + COMMON.ScreenIds.Home);
}
} }
} else if (numDay > 30) { } else if (numDay > 30) {
...@@ -333,11 +313,7 @@ LOGIN.processLogin = function() { ...@@ -333,11 +313,7 @@ LOGIN.processLogin = function() {
LOGIN.showContentViewByOpenUrl(paramContentID); LOGIN.showContentViewByOpenUrl(paramContentID);
} else { } else {
// ホームへ移動 // ホームへ移動
if (ClientData.serviceOpt_abook_check() == 'Y') { AVWEB.avwScreenMove("abvw/" + COMMON.ScreenIds.Home);
AVWEB.avwScreenMove("abvw/" + COMMON.ScreenIds.HomeCheck);
} else {
AVWEB.avwScreenMove("abvw/" + COMMON.ScreenIds.Home);
}
} }
} }
...@@ -384,13 +360,7 @@ LOGIN.changePasswordProcess = function() { ...@@ -384,13 +360,7 @@ LOGIN.changePasswordProcess = function() {
$('#dialog-error-message').css('display', 'none'); $('#dialog-error-message').css('display', 'none');
LOGIN.CloseChangePasswordDialog(); LOGIN.CloseChangePasswordDialog();
ClientData.userInfo_sid(ClientData.userInfo_sid_local()); ClientData.userInfo_sid(ClientData.userInfo_sid_local());
AVWEB.avwScreenMove("abvw/" + COMMON.ScreenIds.Home);
if (ClientData.serviceOpt_abook_check() == 'Y') {
AVWEB.avwScreenMove("abvw/" + COMMON.ScreenIds.HomeCheck);
} else {
AVWEB.avwScreenMove("abvw/" + COMMON.ScreenIds.Home);
}
} else { } else {
$('#dialog-error-message').html(I18N.i18nText('msgPwdOldWrong')); $('#dialog-error-message').html(I18N.i18nText('msgPwdOldWrong'));
$('#dialog-error-message').show(); $('#dialog-error-message').show();
...@@ -456,12 +426,7 @@ LOGIN.skipPassFunction = function() { ...@@ -456,12 +426,7 @@ LOGIN.skipPassFunction = function() {
ClientData.userInfo_pwdSkipDt(date); ClientData.userInfo_pwdSkipDt(date);
ClientData.userInfo_sid(ClientData.userInfo_sid_local()); ClientData.userInfo_sid(ClientData.userInfo_sid_local());
AVWEB.avwScreenMove("abvw/" + COMMON.ScreenIds.Home);
if (ClientData.serviceOpt_abook_check() == 'Y') {
AVWEB.avwScreenMove("abvw/" + COMMON.ScreenIds.HomeCheck);
} else {
AVWEB.avwScreenMove("abvw/" + COMMON.ScreenIds.Home);
}
}; };
...@@ -521,8 +486,6 @@ LOGIN.saveServiceUserOption = function() { ...@@ -521,8 +486,6 @@ LOGIN.saveServiceUserOption = function() {
ClientData.serviceOpt_encryption(option.value); ClientData.serviceOpt_encryption(option.value);
} else if (option.serviceOptionId == 137) { } else if (option.serviceOptionId == 137) {
ClientData.serviceOpt_html_custom_log(option.value); ClientData.serviceOpt_html_custom_log(option.value);
} else if (option.serviceOptionId == 161) {
ClientData.serviceOpt_abook_check(option.value);
} }
}); });
}; };
...@@ -650,19 +613,11 @@ LOGIN.initLoginAnonymousUser = function() { ...@@ -650,19 +613,11 @@ LOGIN.initLoginAnonymousUser = function() {
LOGIN.showContentViewByOpenUrl(paramContentID); LOGIN.showContentViewByOpenUrl(paramContentID);
} else { } else {
// ホームへ移動 // ホームへ移動
if (ClientData.serviceOpt_abook_check() == 'Y') { AVWEB.avwScreenMove("abvw/" + COMMON.ScreenIds.Home);
AVWEB.avwScreenMove("abvw/" + COMMON.ScreenIds.HomeCheck);
} else {
AVWEB.avwScreenMove("abvw/" + COMMON.ScreenIds.Home);
}
} }
} else { } else {
// ホームへ移動 // ホームへ移動
if (ClientData.serviceOpt_abook_check() == 'Y') { AVWEB.avwScreenMove("abvw/" + COMMON.ScreenIds.Home);
AVWEB.avwScreenMove("abvw/" + COMMON.ScreenIds.HomeCheck);
} else {
AVWEB.avwScreenMove("abvw/" + COMMON.ScreenIds.Home);
}
} }
}); });
...@@ -792,7 +747,7 @@ LOGIN.showContentViewByOpenUrl = function(strContentId) { ...@@ -792,7 +747,7 @@ LOGIN.showContentViewByOpenUrl = function(strContentId) {
contentType = data.contentData.contentType; contentType = data.contentData.contentType;
if (contentType == COMMON.ContentTypeKeys.Type_Others) { if (contentType == COMMON.ContentTypeKeys.Type_Others) {
// Download content // Download content
COMMON.downloadResourceById(strContentId); HEADER.downloadResourceById(strContentId);
} else { } else {
// Go to Conten view page // Go to Conten view page
if(ClientData.isGetitsMode()){ if(ClientData.isGetitsMode()){
...@@ -836,11 +791,7 @@ LOGIN.showContentViewByOpenUrl = function(strContentId) { ...@@ -836,11 +791,7 @@ LOGIN.showContentViewByOpenUrl = function(strContentId) {
AVWEB.avwScreenMove("abvw/" + COMMON.ScreenIds.Login); AVWEB.avwScreenMove("abvw/" + COMMON.ScreenIds.Login);
} else { } else {
// アラートメッセージ表示 // アラートメッセージ表示
if (ClientData.serviceOpt_abook_check() == 'Y') { LOGIN.showAlertScreen(I18N.i18nText('msgContentNotExist'), "abvw/" + COMMON.ScreenIds.Home);
LOGIN.showAlertScreen(I18N.i18nText('msgContentNotExist'), "abvw/" + COMMON.ScreenIds.HomeCheck);
} else {
LOGIN.showAlertScreen(I18N.i18nText('msgContentNotExist'), "abvw/" + COMMON.ScreenIds.Home);
}
} }
}); });
...@@ -859,11 +810,7 @@ LOGIN.alertMessageCancelFunction_callback = function() { ...@@ -859,11 +810,7 @@ LOGIN.alertMessageCancelFunction_callback = function() {
if (ClientData.isGetitsMode() == true) { if (ClientData.isGetitsMode() == true) {
AVWEB.avwScreenMove("abvw/" + COMMON.ScreenIds.Login); AVWEB.avwScreenMove("abvw/" + COMMON.ScreenIds.Login);
} else { } else {
if (ClientData.serviceOpt_abook_check() == 'Y') { AVWEB.avwScreenMove("abvw/" + COMMON.ScreenIds.Home);
AVWEB.avwScreenMove("abvw/" + COMMON.ScreenIds.HomeCheck);
} else {
AVWEB.avwScreenMove("abvw/" + COMMON.ScreenIds.Home);
}
} }
}; };
...@@ -959,8 +906,6 @@ LOGIN.ready = function() { ...@@ -959,8 +906,6 @@ LOGIN.ready = function() {
// モード初期化 // モード初期化
ClientData.isGetitsMode(false); ClientData.isGetitsMode(false);
ClientData.isStreamingMode(false); ClientData.isStreamingMode(false);
ClientData.isCheckViewMode(false);
ClientData.isCheckMode(false);
ClientData.storeUrl(""); ClientData.storeUrl("");
// getitsサーバー設定確認 // getitsサーバー設定確認
......
...@@ -12,7 +12,7 @@ $(document).ready(function () { ...@@ -12,7 +12,7 @@ $(document).ready(function () {
COMMON.LockScreen(); COMMON.LockScreen();
} }
// document.title = I18N.i18nText('dspSetting') + ' | ' + I18N.i18nText('sysAppTitle'); document.title = I18N.i18nText('dspSetting') + ' | ' + I18N.i18nText('sysAppTitle');
// Set bookmark screen // Set bookmark screen
ClientData.BookmarkScreen(COMMON.ScreenIds.Setting); ClientData.BookmarkScreen(COMMON.ScreenIds.Setting);
...@@ -126,7 +126,7 @@ $(document).ready(function () { ...@@ -126,7 +126,7 @@ $(document).ready(function () {
event of changing language event of changing language
*/ */
function changeLanguageCallBackFunction() { function changeLanguageCallBackFunction() {
// document.title = I18N.i18nText('dspSetting') + ' | ' + I18N.i18nText('sysAppTitle'); document.title = I18N.i18nText('dspSetting') + ' | ' + I18N.i18nText('sysAppTitle');
}; };
......
...@@ -217,8 +217,7 @@ SHARE.sendContentShare = function() { ...@@ -217,8 +217,7 @@ SHARE.sendContentShare = function() {
//$(":button:contains('Ok')").prop("disabled", true).addClass("ui-state-disabled"); //$(":button:contains('Ok')").prop("disabled", true).addClass("ui-state-disabled");
} else { } else {
$('#dlgContentShare_error').show(); $('#dlgContentShare_error').show();console.log(data.errorMessage);
//console.log(data.errorMessage);
$('#dlgContentShare_error').html(data.errorMessage); $('#dlgContentShare_error').html(data.errorMessage);
} }
}, },
......
...@@ -168,7 +168,6 @@ STVIEW.ready = function(){ ...@@ -168,7 +168,6 @@ STVIEW.ready = function(){
//モード初期化 //モード初期化
ClientData.isGetitsMode(false); ClientData.isGetitsMode(false);
ClientData.isStreamingMode(false); ClientData.isStreamingMode(false);
ClientData.isCheckViewMode(false);
//confのパラメータセット //confのパラメータセット
ClientData.conf_apiUrl( sysSettings.apiUrl ); ClientData.conf_apiUrl( sysSettings.apiUrl );
......
#SetEnvIf Referer "^http://web3\.agentec\.jp/web_test/" RefererCheck
#Order deny,allow
#Deny from all
#Allow from env=RefererCheck
<Files ~ "\.(js|json)$">
Header add Pragma "no-cache"
Header set Cache-Control no-cache
</Files>
<div class="modal fade" id="category-modal" tabindex="-1" role="dialog">
<div class="modal-dialog modal-dialog-centered modal-dialog-scrollable overflow-auto" role="document">
<div class="modal-content">
<div class="modal-header bg-dark10">
<h5 class="modal-title lang" lang="categorySelection"></h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">&times;</span>
</button>
</div>
<div class="modal-body">
<ul class="list-menu" id="categoryListMenu">
<!-- <ul>
<li>
<label>
<input type="radio" name="category" checked>
<span class="lang" lang="categoryAll"></span>
</label>
</li>
</ul>
<li class="accordion" id="accordion1">
<div id="heading1">
<a href="#" class="list-menu-link">
<button type="button" class="collapsed" data-toggle="collapse" data-target="#collapse1" aria-expanded="true" aria-controls="collapse1">
<div class="arrow-icon"></div>
</button>
<label>
<input type="radio" name="category">
<span class="lang" lang="">全社</span>
</label>
</a>
</div>
<div id="collapse1" class="collapse" aria-labelledby="heading1" data-parent="#accordion1">
<ul>
<li>
<label>
<input type="radio" name="category">
<span>カテゴリー</span>
</label>
</li>
<li>
<label>
<input type="radio" name="category">
<span>カテゴリー</span>
</label>
</li>
<li class="accordion" id="accordion1-1">
<div id="heading1-1">
<a href="#" class="list-menu-link">
<button type="button" class="collapsed" data-toggle="collapse" data-target="#collapse1-1" aria-expanded="true" aria-controls="collapse1-1">
<div class="arrow-icon"></div>
</button>
<label>
<input type="radio" name="category">
<span>カテゴリー</span>
</label>
</a>
</div>
<div id="collapse1-1" class="collapse" aria-labelledby="heading1-1" data-parent="#accordion1-1">
<ul>
<li class="accordion" id="accordion1-2">
<div id="heading1-2">
<a href="#" class="list-menu-link">
<button type="button" class="collapsed" data-toggle="collapse" data-target="#collapse1-2" aria-expanded="true" aria-controls="collapse1-2">
<div class="arrow-icon"></div>
</button>
<label>
<input type="radio" name="category">
<span>カテゴリー</span>
</label>
</a>
</div>
<div id="collapse1-2" class="collapse" aria-labelledby="heading1-2" data-parent="#accordion1-2">
<ul>
<li class="accordion" id="accordion1-3">
<div id="heading1-3">
<a href="#" class="list-menu-link">
<button type="button" class="collapsed" data-toggle="collapse" data-target="#collapse1-3" aria-expanded="true" aria-controls="collapse1-3">
<div class="arrow-icon"></div>
</button>
<label>
<input type="radio" name="category">
<span>カテゴリー</span>
</label>
</a>
</div>
</li>
</ul>
</div>
</li>
</ul>
</div>
</li>
</ul>
</div>
</li> -->
</ul>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-primary lang" lang="selection" onclick="OL.onClickCategorySelection();"></button>
<button type="button" class="btn btn-tertiary lang" lang="dspCancel" data-dismiss="modal"></button>
</div>
</div>
</div>
</div>
This source diff could not be displayed because it is too large. You can view the blob instead.
@font-face{
font-family:"Font Awesome 5 Brands";
font-style:normal;
font-weight:400;
font-display:block;
src:url(../fonts/vendor/@fortawesome/fontawesome-free/webfa-brands-400.eot);
src:url(../fonts/vendor/@fortawesome/fontawesome-free/webfa-brands-400.eot)
format("embedded-opentype"),url(../fonts/vendor/@fortawesome/fontawesome-free/webfa-brands-400.woff2)
format("woff2"),url(../fonts/vendor/@fortawesome/fontawesome-free/webfa-brands-400.woff)
format("woff"),url(../fonts/vendor/@fortawesome/fontawesome-free/webfa-brands-400.ttf)
format("truetype"),url(../fonts/vendor/@fortawesome/fontawesome-free/webfa-brands-400.svg#fontawesome)
format("svg")}.fab{font-family:"Font Awesome 5 Brands"}
@font-face{
font-family:"Font Awesome 5 Free";
font-style:normal;
font-weight:400;
font-display:block;
src:url(../fonts/vendor/@fortawesome/fontawesome-free/webfa-regular-400.eot);
src:url(../fonts/vendor/@fortawesome/fontawesome-free/webfa-regular-400.eot)
format("embedded-opentype"),url(../fonts/vendor/@fortawesome/fontawesome-free/webfa-regular-400.woff2)
format("woff2"),url(../fonts/vendor/@fortawesome/fontawesome-free/webfa-regular-400.woff)
format("woff"),url(../fonts/vendor/@fortawesome/fontawesome-free/webfa-regular-400.ttf)
format("truetype"),url(../fonts/vendor/@fortawesome/fontawesome-free/webfa-regular-400.svg#fontawesome)
format("svg")}.fab,.far{font-weight:400}
@font-face{
font-family:"Font Awesome 5 Free";
font-style:normal;
font-weight:900;
font-display:block;
src:url(../fonts/vendor/@fortawesome/fontawesome-free/webfa-solid-900.eot);
src:url(../fonts/vendor/@fortawesome/fontawesome-free/webfa-solid-900.eot)
format("embedded-opentype"),url(../fonts/vendor/@fortawesome/fontawesome-free/webfa-solid-900.woff2)
format("woff2"),url(../fonts/vendor/@fortawesome/fontawesome-free/webfa-solid-900.woff)
format("woff"),url(../fonts/vendor/@fortawesome/fontawesome-free/webfa-solid-900.ttf)
format("truetype"),url(../fonts/vendor/@fortawesome/fontawesome-free/webfa-solid-900.svg#fontawesome)
format("svg")}.fa,.far,.fas{font-family:"Font Awesome 5 Free"}.fa,.fas{font-weight:900}
\ No newline at end of file
@charset "UTF-8";
header .navbar-brand img{
height: 35px!important;
}
header .nav-link img {
height: 30px!important;
}
@media (max-width: 575px) {
header .navbar-brand img{
height: 30px!important;
}
header .nav-link img {
height: 22px!important;
}
}
header nav a,header nav a:hover{
color: #69707A;
}
header li.active.nav-link a{
color: var(--primary);
}
header li.active.nav-link img {
filter: brightness(0) saturate(100%) invert(17%) sepia(94%) saturate(4792%) hue-rotate(219deg) brightness(98%) contrast(100%);
}
.toast-container {
width: 280px;
z-index: 9999;
}
* html .toast-container {
position: absolute;
}
.toast-item {
height: auto;
background: #333;
opacity: 0.9;
-moz-border-radius: 10px;
-webkit-border-radius: 10px;
color: #eee;
padding-top: 20px;
padding-bottom: 20px;
padding-left: 6px;
padding-right: 6px;
font-family: lucida Grande;
font-size: 14px;
border: 2px solid #999;
display: block;
position: relative;
margin: 0 0 12px 0;
}
.toast-item p {
text-align: left;
margin-left: 50px;
}
.toast-item-close {
background:url(./images/close.gif);
width:22px;
height:22px;
position: absolute;
top:7px;
right:7px;
}
.toast-item-image {
width:32px;
height: 32px;
position: absolute;
top: 50%;
margin-top: -16px;
left: 10px;
}
.toast-item-image-notice {
background:url(./images/notice.png);
}
.toast-item-image-success {
background:url(./images/success.png);
}
.toast-item-image-warning {
background:url(./images/warning.png);
}
.toast-item-image-error {
background:url(./images/error.png);
}
/* add for multiline */
.toast-item-message
{
background-position:left center;
padding-left:44px;
height: 32px;
background-repeat:no-repeat;
line-height:32px;
font-size:14px;
margin:5px 10px;
}
/**
* toast types
*
* pattern: toast-type-[value]
* where 'value' is the real value of the plugin option 'type'
*
*/
.toast-type-notice {
color: white;
}
.toast-type-success {
color: white;
}
.toast-type-warning {
color: white;
border-color: #FCBD57;
}
.toast-type-error {
color: white;
border-color: #B32B2B;
}
/**
* positions
*
* pattern: toast-position-[value]
* where 'value' is the real value of the plugin option 'position'
*
*/
.toast-position-top-left {
position: fixed;
left: 20px;
top: 20px;
}
.toast-position-top-center {
position: fixed;
top: 20px;
left: 50%;
margin-left: -140px;
}
.toast-position-top-right {
position: fixed;
top: 20px;
right: 20px;
}
.toast-position-middle-left {
position: fixed;
left: 20px;
top: 50%;
margin-top: -40px;
}
.toast-position-middle-center {
position: fixed;
left: 50%;
margin-left: -140px;
margin-top: -40px;
top: 50%;
}
.toast-position-middle-right {
position: fixed;
right: 20px;
margin-left: -140px;
margin-top: -40px;
top: 50%;
}
#loader {
position: fixed;
top: 0;
z-index: 999;
height: 100vh;
width: 100vw;
display: block;
background: rgb(255, 255, 255);
background-position: center;
background-image: url("../img/loading.gif");
background-repeat: no-repeat;
background-size:200px;
display: none;
}
\ No newline at end of file
@charset "UTF-8";
#main-ttl{
margin-top: 80px;
}
@media screen and (max-width: 575px) {
#main-ttl {
margin-top: 60px;
}
}
/* no image */
.not-found-img{
max-width: 100px;
}
/* dashboard */
ul.dashboard-menu li:hover{
background-color: #f8f9fa;
}
ul.dashboard-menu li img{
width: 50px;
}
@media screen and (max-width: 575px) {
ul.dashboard-menu li img{
width: 40px;
}
}
/* dashboard setting */
.setting-table-wrap table {
width: 100%;
}
.setting-table-wrap th {
padding: 0.8rem;
}
.setting-table-wrap td {
width: 80px;
padding: 0.8rem;
}
/* message list */
ul.message-list li.unread{
font-weight: bold;
}
ul.message-list li.read{
background-color: #f8f9fa;
}
/* task list */
.task-list li a > div:nth-of-type(2){
min-height: 45px;
}
.view-block {
display: grid;
grid-template-columns: repeat(3,1fr);
column-gap: 10px;
}
@media screen and (max-width: 767px) {
.view-block {
grid-template-columns: repeat(2,1fr);
}
}
.error {
font-size: 13px;
color: #FF0000;
font-weight: bolder;
}
\ No newline at end of file
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
<button type="button" id="showConfirmModalButton" class="btn btn-sm btn-tertiary d-none" data-toggle="modal" data-target="#confirm-modal"></button>
<div class="modal fade" id="confirm-modal" tabindex="-1" role="dialog">
<div class="modal-dialog modal-dialog-centered" role="document">
<div class="modal-content">
<div class="modal-header bg-dark10">
<h5 class="modal-title lang" lang="confirmation" id="modalTitle"></h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">&times;</span>
</button>
</div>
<div class="modal-body" id="msgModel">
</div>
<div class="modal-footer">
<button type="button" class="btn btn-primary lang" id="confirmYes" lang="confirmYes"></button>
<button type="button" class="btn btn-tertiary lang" id="confirmNo" lang="confirmNo" data-dismiss="modal"></button>
</div>
</div>
</div>
</div>
\ No newline at end of file
<header>
<style type="text/css">
.ml-web {
margin-left: 8px!important;
}
</style>
<nav class="navbar navbar-dark shadow-sm px-sm-auto px-0 position-fixed fixed-top bg-white">
<div class="container-wrap">
<a href="dashboard.html" class="navbar-brand">
<img src="../common/img/logo.svg" type="image" alt="" class="img-fluid lang" lang="logo">
</a>
<ul class="mr-sm-auto ml-sm-0 ml-auto mb-0 pl-0 d-flex ml-web">
<li class="active nav-link" id="iconHomeDashboard">
<a href="dashboard.html" class="d-block text-center text-decoration-none">
<img src="../common/img/nav_icon_dashboard.svg" type="image" alt="" class="p-sm-1 p-0 img-fluid lang" lang="dashboard">
<div class="fs-7 d-sm-block d-none lang" lang="dashboard"></div>
</a>
</li>
<li class="nav-link" id="iconHomeWorkList">
<a href="index.html?pageId=workList" class="d-block text-center text-decoration-none">
<img src="../common/img/nav_icon_task.svg" type="image" alt="" class="p-sm-1 p-0 img-fluid lang" lang="workList">
<div class="fs-7 d-sm-block d-none lang" lang="workList"></div>
</a>
</li>
</ul>
<div class="dropdown">
<a href="#" class="nav-link text-center" id="dropdown-profile" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
<img src="../common/img/nav_icon_profile.svg" type="image" alt="" class="p-sm-1 p-0 img-fluid profile-img lang" lang="profile">
<div class="fs-7 d-sm-block d-none lang" lang="profile"></div>
</a>
<div class="dropdown-menu dropdown-menu-right" data-animation="true" aria-labelledby="dropdown-profile">
<h6 class="dropdown-header" id="dspLoginId" ></h6>
<a class="dropdown-item " href="accountSetting.html" >
<img src="../common/img/menu_icon_account_setting.svg" type="image" alt="" class="navbar-dropdown-icon lang" lang="accountSetting">
<span class="lang" style=" color: #6c757d;" lang="accountSetting"></span>
</a>
<a class="dropdown-item " href="#" data-toggle="modal" data-target="#confirm-modal" id="btnLogout">
<img src="../common/img/menu_icon_logout.svg" type="image" alt="" class="navbar-dropdown-icon lang" lang="dspLogout">
<span class="lang" style=" color: #6c757d;" lang="dspLogout"></span>
</a>
</div>
</div>
</div>
</nav>
</header>
<div id="main-ttl">
<div class="container-wrap" id="mainNavTitleDiv">
<!-- breadcrumb -->
<nav id="mainTitleNavs" aria-label="breadcrumb">
<ol class="breadcrumb px-0 mb-0"></ol>
</nav>
<!-- title -->
<div class="d-flex align-items-center">
<h1 id="mainTitleHeader" class="fs-14 font-weight-bold pt-sm-4 pt-2 pb-3 mb-0 mr-auto lang"></h1>
</div>
</div>
</div>
\ No newline at end of file
<div id="main-ttl">
<div class="container-wrap">
<!-- title -->
<div class="d-flex align-items-center">
<h1 id="mainTitleHeader" class="fs-14 font-weight-bold pt-4 pb-3 mb-0 mr-auto lang"></h1>
</div>
</div>
</div>
\ No newline at end of file
<?xml version="1.0" encoding="UTF-8"?><svg id="_レイヤー_2" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><style>.cls-1{fill:none;}.cls-2{fill:#0053f0;}.cls-3{fill:#4280e2;}</style></defs><g id="_レイヤー_1-2"><g><rect class="cls-1" width="100" height="100"/><g><path class="cls-3" d="M65.19,66.38c.45,0,.83-.15,1.13-.45,.3-.3,.45-.67,.45-1.13v-10.17c0-.42-.16-.78-.47-1.07-.31-.3-.68-.45-1.1-.45-.45,0-.83,.15-1.13,.45-.3,.3-.45,.67-.45,1.13v10.17c0,.42,.16,.78,.47,1.07,.31,.3,.68,.45,1.1,.45Zm-.16,8.02c.49,0,.9-.17,1.23-.5s.5-.74,.5-1.23-.17-.9-.5-1.23c-.33-.33-.74-.5-1.23-.5-.49,0-.9,.17-1.23,.5-.33,.33-.5,.74-.5,1.23s.17,.9,.5,1.23,.74,.5,1.23,.5Zm0,10.48c-2.97,0-5.73-.53-8.28-1.6-2.55-1.07-4.77-2.54-6.66-4.43-1.89-1.89-3.36-4.11-4.43-6.66-1.07-2.55-1.6-5.31-1.6-8.28s.53-5.68,1.6-8.23c1.07-2.55,2.54-4.77,4.43-6.66,1.89-1.89,4.11-3.37,6.66-4.46,2.55-1.08,5.31-1.62,8.28-1.62s5.68,.54,8.23,1.62c2.55,1.08,4.77,2.57,6.66,4.46,1.89,1.89,3.37,4.11,4.46,6.66,1.08,2.55,1.62,5.29,1.62,8.23s-.54,5.73-1.62,8.28-2.57,4.77-4.46,6.66c-1.89,1.89-4.11,3.36-6.66,4.43-2.55,1.07-5.29,1.6-8.23,1.6Z"/><g><path class="cls-2" d="M29.28,55.61c-.65,0-1.21,.24-1.7,.73-.48,.48-.73,1.05-.73,1.7s.24,1.21,.73,1.7c.48,.48,1.05,.73,1.7,.73s1.21-.24,1.7-.73c.48-.48,.73-1.05,.73-1.7s-.24-1.21-.73-1.7-1.05-.73-1.7-.73Z"/><path class="cls-2" d="M29.28,27.97c-.65,0-1.21,.24-1.7,.73-.48,.48-.73,1.05-.73,1.7s.24,1.21,.73,1.7c.48,.48,1.05,.73,1.7,.73s1.21-.24,1.7-.73,.73-1.05,.73-1.7-.24-1.21-.73-1.7c-.48-.48-1.05-.73-1.7-.73Z"/><path class="cls-2" d="M18.85,68.46V19.97H53.52v11.4c0,.7,.23,1.28,.69,1.74,.46,.46,1.04,.69,1.74,.69h11.4v6.24c1.67,.07,3.29,.29,4.85,.66v-9.56L56.19,15.12H18.85c-1.29,0-2.42,.48-3.39,1.45-.97,.97-1.45,2.1-1.45,3.39v48.5c0,1.29,.48,2.42,1.45,3.39,.97,.97,2.1,1.45,3.39,1.45h23.17c-.49-1.56-.83-3.17-1.02-4.85H18.85Z"/><path class="cls-2" d="M29.28,41.79c-.65,0-1.21,.24-1.7,.73-.48,.48-.73,1.05-.73,1.7s.24,1.21,.73,1.7c.48,.48,1.05,.73,1.7,.73s1.21-.24,1.7-.73c.48-.48,.73-1.05,.73-1.7s-.24-1.21-.73-1.7-1.05-.73-1.7-.73Z"/></g></g></g></g></svg>
\ No newline at end of file
<?xml version="1.0" encoding="UTF-8"?><svg id="_レイヤー_2" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><style>.cls-1{fill:none;}.cls-2{fill:#0053f0;}.cls-3{fill:#4280e2;}</style></defs><g id="_レイヤー_1-2"><g><rect class="cls-1" width="100" height="100"/><g><path class="cls-3" d="M14,65.23V17.99c0-.84,.39-1.69,1.18-2.53s1.6-1.27,2.44-1.27h46.97c.9,0,1.75,.41,2.53,1.22,.78,.81,1.18,1.67,1.18,2.58V50.21c0,.84-.39,1.69-1.18,2.53s-1.63,1.27-2.53,1.27H28.48l-12.13,12.13c-.42,.42-.92,.53-1.49,.32s-.86-.62-.86-1.22Zm5.43-45.61v0Zm43.44,0H19.43v28.96H62.87V19.62Z"/><path class="cls-2" d="M31.8,73.35c-.84,0-1.67-.42-2.49-1.27-.81-.84-1.22-1.69-1.22-2.53v-8.87h45.25V29.92h9.05c.84,0,1.66,.42,2.44,1.27,.78,.84,1.18,1.72,1.18,2.62v50.68c0,.6-.29,1.01-.86,1.22-.57,.21-1.07,.11-1.49-.32l-12.04-12.04H31.8Z"/></g></g></g></svg>
\ No newline at end of file
<?xml version="1.0" encoding="UTF-8"?><svg id="_レイヤー_2" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><style>.cls-1{fill:none;}.cls-2{fill:#0053f0;}.cls-3{fill:#4280e2;}</style></defs><g id="_レイヤー_1-2"><g><rect class="cls-1" width="100" height="100"/><g><path class="cls-2" d="M52.94,50.52v25.22H22.82V36.03h13.61v-4.11h-13.61v-2.05h13.61v-4.11h-13.61c-1.1,0-2.05,.41-2.88,1.23s-1.23,1.78-1.23,2.88v52.02c0,1.1,.41,2.05,1.23,2.88s1.78,1.23,2.88,1.23h30.12c1.1,0,2.05-.41,2.88-1.23s1.23-1.78,1.23-2.88v-31.38h-4.11Zm0,31.38H22.82v-2.05h30.12v2.05Z"/><path class="cls-3" d="M49.47,39.09h13.25c.42,0,.77-.15,1.07-.44s.44-.67,.44-1.12-.15-.83-.44-1.12-.67-.44-1.12-.44h-13.25c-.42,0-.77,.15-1.07,.44-.3,.3-.44,.67-.44,1.12s.15,.83,.44,1.12c.3,.3,.67,.44,1.12,.44Zm0-6.78h21.96c.42,0,.77-.15,1.07-.44s.44-.67,.44-1.12-.15-.83-.44-1.12c-.3-.3-.67-.44-1.12-.44h-21.96c-.42,0-.77,.15-1.07,.44-.3,.3-.44,.67-.44,1.12s.15,.83,.44,1.12c.3,.3,.67,.44,1.12,.44Zm0-6.78h21.96c.42,0,.77-.15,1.07-.44,.3-.3,.44-.67,.44-1.12s-.15-.83-.44-1.12-.67-.44-1.12-.44h-21.96c-.42,0-.77,.15-1.07,.44-.3,.3-.44,.67-.44,1.12s.15,.83,.44,1.12c.3,.3,.67,.44,1.12,.44Zm-9.91,26.45V17.13c0-.8,.31-1.52,.94-2.16,.63-.64,1.36-.97,2.19-.97h35.47c.8,0,1.52,.32,2.16,.97,.64,.64,.97,1.36,.97,2.16v27.13c0,.8-.32,1.52-.97,2.16-.64,.64-1.36,.97-2.16,.97h-30.26l-5.69,5.69c-.49,.49-1.05,.6-1.7,.34-.64-.26-.97-.74-.97-1.43Zm3.13-3.81l3.91-3.91h31.56V17.13H42.69v31.04Zm0-31.04v0Z"/></g></g></g></svg>
\ No newline at end of file
<?xml version="1.0" encoding="UTF-8"?><svg id="_レイヤー_2" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><style>.cls-1{fill:none;}.cls-2{fill:#0053f0;}.cls-3{fill:#4280e2;}</style></defs><g id="_レイヤー_1-2"><g><rect class="cls-1" width="100" height="100"/><g><path class="cls-3" d="M39.3,73.88h4.55v-12.88h12.88v-4.55h-12.88v-12.88h-4.55v12.88h-12.88v4.55h12.88v12.88Zm-20.45,12.12c-1.21,0-2.27-.45-3.18-1.36-.91-.91-1.36-1.97-1.36-3.18V36c0-1.21,.45-2.27,1.36-3.18,.91-.91,1.97-1.36,3.18-1.36h45.45c1.21,0,2.27,.45,3.18,1.36,.91,.91,1.36,1.97,1.36,3.18v45.45c0,1.21-.45,2.27-1.36,3.18-.91,.91-1.97,1.36-3.18,1.36H18.84Zm0-4.55h45.45V36H18.84v45.45Zm0-45.45v0Z"/><path class="cls-2" d="M84.34,15.36c-.91-.91-1.97-1.36-3.18-1.36H35.71c-1.21,0-2.27,.45-3.18,1.36-.91,.91-1.36,1.97-1.36,3.18v7.58h4.55v-7.58h45.45V64h-7.58v4.55h7.58c1.21,0,2.27-.45,3.18-1.36s1.36-1.97,1.36-3.18V18.55c0-1.21-.45-2.27-1.36-3.18Z"/></g></g></g></svg>
\ No newline at end of file
<?xml version="1.0" encoding="UTF-8"?><svg id="_レイヤー_2" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><style>.cls-1{fill:none;}.cls-2{fill:#0053f0;}.cls-3{fill:#4280e2;}</style></defs><g id="_レイヤー_1-2"><g><rect class="cls-1" width="100" height="100"/><g><path class="cls-3" d="M39.42,34c.17,.61,.31,1.23,.41,1.88,.1,.65,.15,1.31,.15,1.98,0,1.84-.34,3.55-1.01,5.13s-1.59,2.95-2.76,4.12c-1.17,1.17-2.54,2.08-4.12,2.74-1.58,.66-3.28,.99-5.1,.99s-3.55-.33-5.13-.99c-1.58-.66-2.95-1.57-4.12-2.74-1.17-1.17-2.08-2.54-2.74-4.12-.66-1.58-.99-3.29-.99-5.13s.33-3.52,.99-5.1c.66-1.58,1.57-2.95,2.74-4.12,1.17-1.17,2.54-2.09,4.12-2.76,1.58-.67,3.29-1.01,5.13-1.01,1.41,0,2.73,.21,3.98,.62,1.24,.41,2.41,.96,3.49,1.66,.24,.15,.37,.36,.41,.62s-.04,.5-.21,.71c-.17,.22-.39,.35-.65,.39-.26,.04-.51-.01-.75-.16-.91-.56-1.89-1.02-2.94-1.36-1.05-.35-2.16-.52-3.33-.52-3.14,0-5.76,1.06-7.87,3.17s-3.17,4.73-3.17,7.87,1.06,5.76,3.17,7.87,4.73,3.17,7.87,3.17,5.76-1.06,7.87-3.17,3.17-4.73,3.17-7.87c0-.54-.03-1.06-.1-1.56s-.16-1-.29-1.49c-.06-.26-.05-.52,.05-.78,.1-.26,.27-.44,.5-.55s.48-.12,.73-.03,.42,.27,.5,.55Zm-15.03,9.09l-3.96-3.99c-.19-.19-.29-.43-.29-.71s.11-.53,.32-.75c.19-.19,.43-.29,.71-.29s.53,.1,.75,.29l3.15,3.18,12.73-12.73c.19-.19,.43-.3,.71-.31,.28-.01,.53,.09,.75,.31,.22,.22,.32,.47,.32,.75,0,.28-.11,.53-.32,.75l-13.51,13.51c-.19,.19-.43,.29-.7,.29s-.49-.1-.67-.29Z"/><path class="cls-2" d="M47.48,75.13c-.48,0-.88-.16-1.2-.47-.32-.32-.47-.72-.47-1.2s.16-.88,.47-1.2c.32-.32,.72-.47,1.2-.47h36.85c.48,0,.88,.16,1.2,.47,.32,.32,.47,.72,.47,1.2s-.16,.88-.47,1.2c-.32,.32-.72,.47-1.2,.47H47.48Z"/><path class="cls-2" d="M47.48,57.99c-.48,0-.88-.16-1.2-.47-.32-.32-.47-.72-.47-1.2s.16-.88,.47-1.2c.32-.32,.72-.47,1.2-.47h36.85c.48,0,.88,.16,1.2,.47s.47,.72,.47,1.2-.16,.88-.47,1.2c-.32,.32-.72,.47-1.2,.47H47.48Z"/><path class="cls-2" d="M47.48,40.85c-.48,0-.88-.16-1.2-.47-.32-.32-.47-.72-.47-1.2s.16-.88,.47-1.2c.32-.32,.72-.47,1.2-.47h36.85c.48,0,.88,.16,1.2,.47s.47,.72,.47,1.2-.16,.88-.47,1.2-.72,.47-1.2,.47H47.48Z"/></g></g></g></svg>
\ No newline at end of file
<?xml version="1.0" encoding="UTF-8"?><svg id="_レイヤー_2" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><style>.cls-1{fill:none;}.cls-2{fill:#0053f0;}.cls-3{fill:#4280e2;}</style></defs><g id="_レイヤー_1-2"><g><rect class="cls-1" width="100" height="100"/><g><path class="cls-2" d="M69.22,75.29c.54-.11,.98-.39,1.3-.86,.33-.46,.49-1.05,.49-1.75v-5.05c0-3.42-.87-6.23-2.61-8.43s-4.02-3.98-6.84-5.33c3.75,.43,7.28,1.07,10.59,1.91s6,1.81,8.06,2.89c1.79,1.03,3.2,2.31,4.24,3.83,1.03,1.52,1.55,3.23,1.55,5.13v5.21c0,.71-.23,1.29-.69,1.75-.46,.46-1.05,.69-1.75,.69h-14.33Z"/><path class="cls-2" d="M69.38,36.93c0,3.58-1.14,6.52-3.42,8.8-2.28,2.28-5.21,3.42-8.8,3.42-.6,0-1.26-.04-2-.12s-1.4-.23-2-.45c1.3-1.36,2.29-3.03,2.97-5.01s1.02-4.19,1.02-6.64-.34-4.6-1.02-6.48c-.68-1.87-1.67-3.6-2.97-5.17,.6-.16,1.26-.3,2-.41,.73-.11,1.4-.16,2-.16,3.58,0,6.52,1.14,8.8,3.42,2.28,2.28,3.42,5.21,3.42,8.8Z"/><path class="cls-3" d="M64.62,62.46c-1-1.55-2.38-2.7-4.11-3.46-3.96-1.74-7.52-2.99-10.67-3.75-3.15-.76-6.41-1.14-9.77-1.14s-6.64,.38-9.81,1.14c-3.18,.76-6.75,2.01-10.71,3.75-1.74,.76-3.09,1.91-4.07,3.46-.98,1.55-1.47,3.27-1.47,5.17v5.21c0,.71,.23,1.29,.69,1.75,.46,.46,1.05,.69,1.75,.69H63.68c.71,0,1.29-.23,1.75-.69,.46-.46,.69-1.05,.69-1.75v-5.21c0-1.9-.5-3.62-1.51-5.17Zm-3.38,7.94H18.89v-2.77c0-.87,.24-1.71,.73-2.52,.49-.81,1.11-1.38,1.87-1.71,3.91-1.74,7.21-2.91,9.9-3.5s5.58-.9,8.67-.9,5.97,.3,8.63,.9,5.95,1.76,9.86,3.5c.76,.33,1.4,.9,1.91,1.71,.52,.81,.77,1.66,.77,2.52v2.77Z"/><path class="cls-3" d="M48.86,28.13c-2.28-2.28-5.21-3.42-8.8-3.42s-6.52,1.14-8.8,3.42c-2.28,2.28-3.42,5.21-3.42,8.8s1.14,6.52,3.42,8.8,5.21,3.42,8.8,3.42,6.52-1.14,8.8-3.42c2.28-2.28,3.42-5.21,3.42-8.8s-1.14-6.52-3.42-8.8Zm-3.54,14.05c-1.38,1.38-3.14,2.08-5.25,2.08s-3.87-.69-5.25-2.08c-1.38-1.38-2.08-3.14-2.08-5.25s.69-3.87,2.08-5.25c1.38-1.38,3.14-2.08,5.25-2.08s3.87,.69,5.25,2.08,2.08,3.14,2.08,5.25-.69,3.87-2.08,5.25Z"/></g></g></g></svg>
\ No newline at end of file
<?xml version="1.0" encoding="UTF-8"?><svg id="_レイヤー_2" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><style>.cls-1{fill:none;}.cls-2{fill:#0053f0;}.cls-3{fill:#4280e2;}</style></defs><g id="_レイヤー_1-2"><g><rect class="cls-1" width="100" height="100"/><g><path class="cls-3" d="M54.42,55.61h13.98c.44,0,.82-.16,1.13-.47s.47-.71,.47-1.18-.16-.87-.47-1.18-.71-.47-1.18-.47h-13.98c-.44,0-.82,.16-1.13,.47-.31,.31-.47,.71-.47,1.18s.16,.87,.47,1.18c.31,.31,.71,.47,1.18,.47Zm0-7.16h23.18c.44,0,.82-.16,1.13-.47s.47-.71,.47-1.18-.16-.87-.47-1.18c-.31-.31-.71-.47-1.18-.47h-23.18c-.44,0-.82,.16-1.13,.47-.31,.31-.47,.71-.47,1.18s.16,.87,.47,1.18c.31,.31,.71,.47,1.18,.47Zm0-7.16h23.18c.44,0,.82-.16,1.13-.47,.31-.31,.47-.71,.47-1.18s-.16-.87-.47-1.18-.71-.47-1.18-.47h-23.18c-.44,0-.82,.16-1.13,.47-.31,.31-.47,.71-.47,1.18s.16,.87,.47,1.18c.31,.31,.71,.47,1.18,.47Zm-10.46,27.91V32.44c0-.84,.33-1.61,.99-2.28,.66-.68,1.43-1.02,2.31-1.02h37.43c.84,0,1.61,.34,2.28,1.02,.68,.68,1.02,1.44,1.02,2.28v28.63c0,.84-.34,1.61-1.02,2.28-.68,.68-1.44,1.02-2.28,1.02h-31.93l-6,6c-.51,.51-1.11,.63-1.79,.36-.68-.28-1.02-.78-1.02-1.51Zm3.3-4.02l4.13-4.13h33.31v-28.63H47.26v32.75Zm0-32.75v0Z"/><path class="cls-2" d="M29.63,62.74c-.2-.31-.31-.71-.31-1.18,0-.48,.1-.87,.31-1.18,.2-.31,.46-.47,.78-.47h6.5c.31,0,.57,.16,.78,.47,.2,.31,.31,.71,.31,1.18,0,.48-.1,.87-.31,1.18-.2,.31-.46,.47-.78,.47h-6.5c-.31,0-.57-.16-.78-.47ZM12.31,39.62c-.2-.31-.31-.71-.31-1.18,0-.48,.1-.87,.31-1.18,.2-.31,.46-.47,.78-.47h23.82c.31,0,.57,.16,.78,.47,.2,.31,.31,.71,.31,1.18,0,.48-.1,.87-.31,1.18-.2,.31-.46,.47-.78,.47H13.08c-.31,0-.57-.16-.78-.47Zm8.66,11.56c-.2-.31-.31-.71-.31-1.18,0-.48,.1-.87,.31-1.18,.2-.31,.46-.47,.78-.47h15.16c.31,0,.57,.16,.78,.47,.2,.31,.31,.71,.31,1.18,0,.48-.1,.87-.31,1.18-.2,.31-.46,.47-.78,.47h-15.16c-.31,0-.57-.16-.78-.47Z"/></g></g></g></svg>
\ No newline at end of file
<?xml version="1.0" encoding="UTF-8"?><svg id="_レイヤー_2" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 30 29.63"><defs><style>.cls-1{fill:#6c757d;}.cls-2{fill:none;}</style></defs><g id="_レイヤー_1-2"><g id="_レイヤー_1-2"><g><rect class="cls-2" width="30" height="29.63"/><path class="cls-1" d="M15,23.55L0,8.73l2.69-2.65,12.31,12.22L27.31,6.14l2.69,2.65-15,14.75h0Z"/></g></g></g></svg>
\ No newline at end of file
<?xml version="1.0" encoding="UTF-8"?><svg id="_レイヤー_2" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 29.63 30"><defs><style>.cls-1{fill:#6c757d;}.cls-2{fill:none;}</style></defs><g id="_レイヤー_1-2"><g><rect class="cls-2" x="-.19" y=".19" width="30" height="29.63" transform="translate(-.19 29.81) rotate(-90)"/><path class="cls-1" d="M23.55,15l-14.81,15-2.65-2.69,12.22-12.31L6.14,2.69,8.8,0l14.75,15Z"/></g></g></svg>
\ No newline at end of file
<?xml version="1.0" encoding="UTF-8"?><svg id="_レイヤー_2" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><style>.cls-1{fill:#6c757d;}.cls-2{fill:none;}</style></defs><g id="_レイヤー_1-2"><g><path class="cls-1" d="M18.73,91.7c-1.67,0-3.13-.63-4.38-1.88-1.25-1.25-1.88-2.71-1.88-4.38V20.81c0-1.67,.63-3.13,1.88-4.38,1.25-1.25,2.71-1.88,4.38-1.88h6.78v-6.25h6.78v6.25h35.44v-6.25h6.78v6.25h6.78c1.67,0,3.13,.63,4.38,1.88,1.25,1.25,1.88,2.71,1.88,4.38V85.44c0,1.67-.63,3.13-1.88,4.38-1.25,1.25-2.71,1.88-4.38,1.88H18.73Zm0-6.25h62.54V40.62H18.73v44.82Zm0-51.08h62.54v-13.55H18.73v13.55Zm0,0v0Zm31.27,23.97c-1.18,0-2.17-.4-2.97-1.2-.8-.8-1.2-1.79-1.2-2.97s.4-2.17,1.2-2.97c.8-.8,1.79-1.2,2.97-1.2s2.17,.4,2.97,1.2c.8,.8,1.2,1.79,1.2,2.97s-.4,2.17-1.2,2.97c-.8,.8-1.79,1.2-2.97,1.2Zm-16.68,0c-1.18,0-2.17-.4-2.97-1.2-.8-.8-1.2-1.79-1.2-2.97s.4-2.17,1.2-2.97c.8-.8,1.79-1.2,2.97-1.2s2.17,.4,2.97,1.2c.8,.8,1.2,1.79,1.2,2.97s-.4,2.17-1.2,2.97c-.8,.8-1.79,1.2-2.97,1.2Zm33.36,0c-1.18,0-2.17-.4-2.97-1.2-.8-.8-1.2-1.79-1.2-2.97s.4-2.17,1.2-2.97c.8-.8,1.79-1.2,2.97-1.2s2.17,.4,2.97,1.2c.8,.8,1.2,1.79,1.2,2.97s-.4,2.17-1.2,2.97c-.8,.8-1.79,1.2-2.97,1.2Zm-16.68,16.68c-1.18,0-2.17-.4-2.97-1.2-.8-.8-1.2-1.79-1.2-2.97s.4-2.17,1.2-2.97c.8-.8,1.79-1.2,2.97-1.2s2.17,.4,2.97,1.2c.8,.8,1.2,1.79,1.2,2.97s-.4,2.17-1.2,2.97c-.8,.8-1.79,1.2-2.97,1.2Zm-16.68,0c-1.18,0-2.17-.4-2.97-1.2-.8-.8-1.2-1.79-1.2-2.97s.4-2.17,1.2-2.97c.8-.8,1.79-1.2,2.97-1.2s2.17,.4,2.97,1.2c.8,.8,1.2,1.79,1.2,2.97s-.4,2.17-1.2,2.97c-.8,.8-1.79,1.2-2.97,1.2Zm33.36,0c-1.18,0-2.17-.4-2.97-1.2-.8-.8-1.2-1.79-1.2-2.97s.4-2.17,1.2-2.97c.8-.8,1.79-1.2,2.97-1.2s2.17,.4,2.97,1.2c.8,.8,1.2,1.79,1.2,2.97s-.4,2.17-1.2,2.97c-.8,.8-1.79,1.2-2.97,1.2Z"/><rect class="cls-2" width="100" height="100"/></g></g></svg>
\ No newline at end of file
<?xml version="1.0" encoding="UTF-8"?><svg id="_レイヤー_2" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><style>.cls-1{fill:#6c757d;}.cls-2{fill:none;}</style></defs><g id="_レイヤー_1-2"><g><path class="cls-1" d="M22.48,82.52l-5-5,27.52-27.52L17.48,22.48l5-5,27.52,27.52,27.52-27.52,5,5-27.52,27.52,27.52,27.52-5,5-27.52-27.52-27.52,27.52Z"/><rect class="cls-2" width="100" height="100"/></g></g></svg>
\ No newline at end of file
<?xml version="1.0" encoding="UTF-8"?><svg id="_レイヤー_2" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><style>.cls-1{fill:#6c757d;}.cls-2{fill:none;}</style></defs><g id="_レイヤー_1-2"><g><rect class="cls-2" width="100" height="100"/><g><path class="cls-1" d="M73.16,73.88c2.22,0,4.13-.79,5.71-2.38,1.58-1.58,2.38-3.49,2.38-5.71s-.79-4.13-2.38-5.71c-1.58-1.58-3.49-2.38-5.71-2.38-2.22,0-4.13,.79-5.71,2.38s-2.38,3.49-2.38,5.71c0,2.22,.79,4.13,2.38,5.71s3.49,2.38,5.71,2.38Zm-3.74,5.56c-1.15-.34-2.31-.83-3.49-1.47-1.18-.64-2.17-1.36-2.98-2.17l-4.45,1.01c-.34,.13-.67,.13-1.01,0-.34-.13-.57-.37-.71-.71l-1.31-2.33c-.2-.27-.27-.57-.2-.91,.07-.34,.24-.64,.51-.91l3.84-3.64c-.13-.61-.2-1.45-.2-2.53s.07-1.92,.2-2.53l-3.84-3.64c-.27-.27-.44-.57-.51-.91-.07-.34,0-.64,.2-.91l1.31-2.33c.13-.34,.37-.57,.71-.71,.34-.13,.67-.13,1.01,0l4.45,1.01c.81-.81,1.8-1.53,2.98-2.17s2.34-1.13,3.49-1.47l.81-5.36c.07-.4,.24-.72,.51-.96,.27-.24,.61-.35,1.01-.35h2.83c.4,0,.74,.12,1.01,.35,.27,.24,.44,.56,.51,.96l.81,5.36c1.15,.34,2.31,.83,3.49,1.47,1.18,.64,2.17,1.36,2.98,2.17l4.45-1.01c.34-.13,.67-.13,1.01,0s.57,.37,.71,.71l1.31,2.33c.2,.27,.27,.57,.2,.91-.07,.34-.24,.64-.51,.91l-3.84,3.64c.13,.61,.2,1.45,.2,2.53s-.07,1.92-.2,2.53l3.84,3.64c.27,.27,.44,.57,.51,.91,.07,.34,0,.64-.2,.91l-1.31,2.33c-.13,.34-.37,.57-.71,.71s-.67,.13-1.01,0l-4.45-1.01c-.81,.81-1.8,1.53-2.98,2.17-1.18,.64-2.34,1.13-3.49,1.47l-.81,5.36c-.07,.4-.24,.72-.51,.96-.27,.24-.61,.35-1.01,.35h-2.83c-.4,0-.74-.12-1.01-.35-.27-.24-.44-.56-.51-.96l-.81-5.36Z"/><path class="cls-1" d="M44.29,38.38V13.89h29.93v24.49h-29.93ZM8.92,49.26V13.89h29.93V49.26H8.92Zm0,29.93v-24.49h29.93v24.49H8.92Zm5.44-35.37h19.05V19.33H14.36v24.49Zm29.93,26.07v-26.07h16.8v5.44h-11.36v20.63h-5.44Zm5.44-36.95h19.05v-13.61h-19.05v13.61ZM14.36,73.75h19.05v-13.61H14.36v13.61Z"/></g></g></g></svg>
\ No newline at end of file
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment