Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
C
check
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
abook_web
check
Commits
3853437e
Commit
3853437e
authored
Dec 10, 2014
by
Masaru Abe
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
パフォーマンス対応
スクリーンロックでログアウト対応 ブラウザ閉じるで閲覧ログ送信対応
parent
46d4e2b7
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
12 changed files
with
323 additions
and
115 deletions
+323
-115
abvw/common/js/avweb.js
+28
-11
abvw/common/js/common.js
+35
-9
abvw/common/js/screenLock.js
+21
-1
abvw/contentview.html
+1
-0
abvw/home.html
+1
-0
abvw/js/contentview.js
+0
-0
abvw/js/contentview_CallApi.js
+68
-18
abvw/js/contentview_Events.js
+0
-0
abvw/js/contentview_GetData.js
+133
-44
abvw/js/contentview_InitObjects.js
+6
-10
abvw/js/header.js
+7
-5
abvw/js/home.js
+23
-17
No files found.
abvw/common/js/avweb.js
View file @
3853437e
...
@@ -4,6 +4,9 @@
...
@@ -4,6 +4,9 @@
* Copyright (C) Agentec Co, Ltd. All rights reserved.
* Copyright (C) Agentec Co, Ltd. All rights reserved.
*/
*/
//名前空間用のオブジェクトを用意する
var
AVWEB
=
{};
/*
/*
* User Environment Check Class
* User Environment Check Class
*/
*/
...
@@ -625,6 +628,12 @@ function avwGrabContentPageImage(accountPath, params, success, error) {
...
@@ -625,6 +628,12 @@ function avwGrabContentPageImage(accountPath, params, success, error) {
*/
*/
src
=
'data:image/png;base64,'
+
xmlHttp
.
responseText
;
src
=
'data:image/png;base64,'
+
xmlHttp
.
responseText
;
//フィアルシステムが有効であればキャッシュ
if
(
CONTENTVIEW_FILESYSTEM
.
fs
!=
null
){
var
fileName
=
"page_"
+
params
.
pageNo
+
".dat"
;
CONTENTVIEW_FILESYSTEM
.
saveFile
(
params
.
contentId
,
fileName
,
src
);
}
if
(
success
)
{
if
(
success
)
{
success
(
src
);
success
(
src
);
}
}
...
@@ -791,7 +800,7 @@ function showSystemError( textId ) {
...
@@ -791,7 +800,7 @@ function showSystemError( textId ) {
text
:
errMes
,
text
:
errMes
,
close
:
function
()
{
close
:
function
()
{
//ログアウト時と同じ後始末処理をしてログイン画面に戻す
//ログアウト時と同じ後始末処理をしてログイン画面に戻す
if
(
!
webLogoutEvent
()
){
if
(
!
COMMON
.
webLogoutEvent
()
){
//ログアウト出来なかった
//ログアウト出来なかった
SessionStorageUtils
.
clear
();
SessionStorageUtils
.
clear
();
avwUserSetting
().
remove
(
Keys
.
userInfo_sid
);
avwUserSetting
().
remove
(
Keys
.
userInfo_sid
);
...
@@ -834,14 +843,22 @@ function avwClearError() {
...
@@ -834,14 +843,22 @@ function avwClearError() {
/* ブラウザunload時に警告メッセージの出力設定を行う関数 */
/* ブラウザunload時に警告メッセージの出力設定を行う関数 */
function
avwSetLogoutNortice
()
{
function
avwSetLogoutNortice
()
{
window
.
onbeforeunload
=
function
(
event
)
{
window
.
onbeforeunload
=
function
(
event
)
{
// メッセージ表示
//DHカスタム
// FFでは、https://bugzilla.mozilla.org/show_bug.cgi?id=588292 によりメッセージが出力されない
if
(
ClientData
.
serviceOpt_daihatsu
()
==
'Y'
){
var
message
=
i18nText
(
'sysInfoWithoutLogout'
);
if
(
contentID
!=
null
){
var
e
=
event
||
window
.
event
;
SetEndLog
(
contentID
);
if
(
e
)
{
RegisterLog
();
e
.
returnValue
=
message
;
}
}
}
else
{
return
message
;
// メッセージ表示
// FFでは、https://bugzilla.mozilla.org/show_bug.cgi?id=588292 によりメッセージが出力されない
var
message
=
i18nText
(
'sysInfoWithoutLogout'
);
var
e
=
event
||
window
.
event
;
if
(
e
)
{
e
.
returnValue
=
message
;
}
return
message
;
}
};
};
};
};
/* 警告メッセージを出力しないでページ遷移を行う関数 */
/* 警告メッセージを出力しないでページ遷移を行う関数 */
...
@@ -866,4 +883,5 @@ function getApiUrl(accountPath) {
...
@@ -866,4 +883,5 @@ function getApiUrl(accountPath) {
}
}
return
apiUrl
;
return
apiUrl
;
};
};
\ No newline at end of file
abvw/common/js/common.js
View file @
3853437e
/// <reference path="avweb.js" />
/// <reference path="screenLock.js" />
//名前空間用のオブジェクトを用意する
/// <reference path="common.js" />
var
COMMON
=
{};
/// <reference path="i18n.js" />
/// <reference path="jquery-1.8.1.min.js" />
/// <reference path="jquery-ui-1.8.23.custom.min.js" />
/// <reference path="jquery.toastmessage.js" />
/// <reference path="pageViewer.js" />
/// <reference path="uuid.js" />
// =============================================================================================
// =============================================================================================
// Constants [start]
// Constants [start]
...
@@ -2922,3 +2916,35 @@ function isIE10() {
...
@@ -2922,3 +2916,35 @@ function isIE10() {
*/
*/
return
false
;
return
false
;
};
};
//Web Logout Event
COMMON
.
webLogoutEvent
=
function
(){
var
isExisted
=
false
;
var
params
=
{
sid
:
ClientData
.
userInfo_sid
()
};
avwCmsApiSync
(
ClientData
.
userInfo_accountPath
(),
"webLogout"
,
"GET"
,
params
,
function
(
data
)
{
isExisted
=
true
;
SessionStorageUtils
.
clear
();
avwUserSetting
().
remove
(
Keys
.
userInfo_sid
);
// Move to login screen
//window.location = ScreenIds.Login;
avwScreenMove
(
ScreenIds
.
Login
);
},
function
(
xmlHttpRequest
,
txtStatus
,
errorThrown
)
{
if
(
xmlHttpRequest
.
status
==
403
)
{
isExisted
=
false
;
}
else
{
// Show system error
isExisted
=
true
;
}
});
return
isExisted
;
};
abvw/common/js/screenLock.js
View file @
3853437e
...
@@ -156,6 +156,26 @@ removeLockState();
...
@@ -156,6 +156,26 @@ removeLockState();
/* show lock screen */
/* show lock screen */
function
showLockScreen
()
{
function
showLockScreen
()
{
//DHカスタム
if
(
ClientData
.
serviceOpt_daihatsu
()
==
'Y'
){
if
(
"contentID"
in
window
){
if
(
contentID
!=
null
){
SetEndLog
(
contentID
);
RegisterLog
();
}
}
//ログアウトさせる
//ログアウト時と同じ後始末処理をしてログイン画面に戻す
if
(
!
COMMON
.
webLogoutEvent
()
){
//ログアウト出来なかった
SessionStorageUtils
.
clear
();
avwUserSetting
().
remove
(
Keys
.
userInfo_sid
);
avwScreenMove
(
ScreenIds
.
Login
);
}
}
// show message overlay
// show message overlay
var
tags
=
'<div id="'
+
elmId
+
'" class="screenLock">'
+
var
tags
=
'<div id="'
+
elmId
+
'" class="screenLock">'
+
'<div style="display:table; width:100%; height:100%;">'
+
'<div style="display:table; width:100%; height:100%;">'
+
...
@@ -198,7 +218,7 @@ removeLockState();
...
@@ -198,7 +218,7 @@ removeLockState();
.
keydown
(
function
(
event
)
{
.
keydown
(
function
(
event
)
{
// パスワード入力タイマーを解除
// パスワード入力タイマーを解除
if
(
pwInputTimer
)
{
if
(
pwInputTimer
)
{
clearTimeout
(
pwInputTimer
);
clearTimeout
(
pwInputTimer
);
}
}
pwInputTimer
=
null
;
pwInputTimer
=
null
;
// エンターキーで解除実行
// エンターキーで解除実行
...
...
abvw/contentview.html
View file @
3853437e
...
@@ -49,6 +49,7 @@
...
@@ -49,6 +49,7 @@
<script
type=
"text/javascript"
src=
"./js/contentview_3d.js?#UPDATEID#"
></script>
<script
type=
"text/javascript"
src=
"./js/contentview_3d.js?#UPDATEID#"
></script>
<script
type=
"text/javascript"
src=
"./js/contentview_ContentTypeNone.js?#UPDATEID#"
></script>
<script
type=
"text/javascript"
src=
"./js/contentview_ContentTypeNone.js?#UPDATEID#"
></script>
<script
type=
"text/javascript"
src=
"./js/contentview_ImagePreview.js?#UPDATEID#"
></script>
<script
type=
"text/javascript"
src=
"./js/contentview_ImagePreview.js?#UPDATEID#"
></script>
<script
type=
"text/javascript"
src=
"./js/contentview_FileSystem.js?__UPDATEID__"
></script>
<script
type=
"text/javascript"
src=
"./common/js/zoomDetector.js?#UPDATEID#"
></script>
<script
type=
"text/javascript"
src=
"./common/js/zoomDetector.js?#UPDATEID#"
></script>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"css/reset.css?#UPDATEID#"
/>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"css/reset.css?#UPDATEID#"
/>
...
...
abvw/home.html
View file @
3853437e
...
@@ -45,6 +45,7 @@
...
@@ -45,6 +45,7 @@
<script
type=
"text/javascript"
src=
"./common/js/i18n.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/common.js?#UPDATEID#"
></script>
<script
type=
"text/javascript"
src=
"./common/js/uuid.js?#UPDATEID#"
></script>
<script
type=
"text/javascript"
src=
"./common/js/uuid.js?#UPDATEID#"
></script>
<script
type=
"text/javascript"
src=
"./js/contentview_FileSystem.js?__UPDATEID__"
></script>
<script
type=
"text/javascript"
src=
"./js/Limit_Access_Content.js?#UPDATEID#"
></script>
<script
type=
"text/javascript"
src=
"./js/Limit_Access_Content.js?#UPDATEID#"
></script>
<script
type=
"text/javascript"
src=
"./js/home.js?#UPDATEID#"
></script>
<script
type=
"text/javascript"
src=
"./js/home.js?#UPDATEID#"
></script>
<script
type=
"text/javascript"
src=
"./js/header.js?#UPDATEID#"
></script>
<script
type=
"text/javascript"
src=
"./js/header.js?#UPDATEID#"
></script>
...
...
abvw/js/contentview.js
View file @
3853437e
This diff is collapsed.
Click to expand it.
abvw/js/contentview_CallApi.js
View file @
3853437e
...
@@ -12,24 +12,74 @@ function abapi(name, param, method, callback) {
...
@@ -12,24 +12,74 @@ function abapi(name, param, method, callback) {
//START TRB00097 - Editor: Long - Date: 09/30/2013 - Summary : Get All Page size of content
//START TRB00097 - Editor: Long - Date: 09/30/2013 - Summary : Get All Page size of content
/* get Json stored content info */
/* get Json stored content info */
function
getJsonContentInfo
()
{
function
getJsonContentInfo
()
{
avwGrabContentPageImage
(
ClientData
.
userInfo_accountPath
(),
{
contentId
:
contentID
,
sid
:
ClientData
.
userInfo_sid
(),
pageNo
:
1
},
//ファイルシステムが有効であればキャッシュ確認
function
(
data
)
{
if
(
CONTENTVIEW_FILESYSTEM
.
fs
==
null
){
pageImages
=
data
;
//通常
webGetContentData
();
avwGrabContentPageImage
(
getSearchDataFromJson
();
ClientData
.
userInfo_accountPath
(),
getJsonDataPageTitle
();
{
contentId
:
contentID
,
sid
:
ClientData
.
userInfo_sid
(),
pageNo
:
1
},
getJsonDataType4
();
function
(
data
)
{
getJsonDataType5
();
pageImages
=
data
;
getDataJsonFile
();
webGetContentData
();
//webGetPageImageContentSize();
getSearchDataFromJson
();
webGetContentPageSize
();
getJsonDataPageTitle
();
getJsonDataType4
();
},
getJsonDataType5
();
function
(
xmlHttpRequest
,
txtStatus
,
errorThrown
)
{
getDataJsonFile
();
showErrorScreen
();
webGetContentPageSize
();
});
},
};
function
(
xmlHttpRequest
,
txtStatus
,
errorThrown
)
{
showErrorScreen
();
}
);
}
else
{
// 1ページ目のファイル取得
var
fileName
=
contentID
+
"/page_1.dat"
;
CONTENTVIEW_FILESYSTEM
.
fs
.
root
.
getFile
(
'/abook/'
+
fileName
,
{
create
:
false
},
function
(
fileEntry
){
fileEntry
.
file
(
function
(
file
){
var
reader
=
new
FileReader
();
reader
.
onloadend
=
function
(
e
)
{
console
.
log
(
"read FileSystem"
);
pageImages
=
e
.
target
.
result
;
webGetContentData
();
getSearchDataFromJson
();
getJsonDataPageTitle
();
getJsonDataType4
();
getJsonDataType5
();
getDataJsonFile
();
webGetContentPageSize
();
};
//reader.readAsBinaryString(fileEntry);
reader
.
readAsText
(
file
);
//reader.readAsArrayBuffer(fileEntry);
});
},
function
(
err
){
// 失敗時のコールバック関数
console
.
log
(
"NotRead FileSystem"
);
avwGrabContentPageImage
(
ClientData
.
userInfo_accountPath
(),
{
contentId
:
contentID
,
sid
:
ClientData
.
userInfo_sid
(),
pageNo
:
1
},
function
(
data
)
{
pageImages
=
data
;
webGetContentData
();
getSearchDataFromJson
();
getJsonDataPageTitle
();
getJsonDataType4
();
getJsonDataType5
();
getDataJsonFile
();
webGetContentPageSize
();
},
function
(
xmlHttpRequest
,
txtStatus
,
errorThrown
)
{
CONTENTVIEW
.
showErrorScreen
();
}
);
}
);
}
}
//END TRB00097 - Editor: Long - Date: 09/30/2013 - Summary : Get All Page size of content
//END TRB00097 - Editor: Long - Date: 09/30/2013 - Summary : Get All Page size of content
function
webGetPageImageContentSize
()
{
function
webGetPageImageContentSize
()
{
...
...
abvw/js/contentview_Events.js
View file @
3853437e
This diff is collapsed.
Click to expand it.
abvw/js/contentview_GetData.js
View file @
3853437e
...
@@ -9,24 +9,24 @@
...
@@ -9,24 +9,24 @@
//START TRB00097 - Editor: Long - Date: 09/30/2013 - Summary : Get All Page size of content
//START TRB00097 - Editor: Long - Date: 09/30/2013 - Summary : Get All Page size of content
/* get Json stored content info */
/* get Json stored content info */
function
getJsonContentInfo
()
{
//
function getJsonContentInfo() {
avwGrabContentPageImage
(
ClientData
.
userInfo_accountPath
(),
//
avwGrabContentPageImage(ClientData.userInfo_accountPath(),
{
contentId
:
contentID
,
sid
:
ClientData
.
userInfo_sid
(),
pageNo
:
1
},
//
{ contentId: contentID, sid: ClientData.userInfo_sid(), pageNo: 1 },
function
(
data
)
{
//
function (data) {
pageImages
=
data
;
//
pageImages = data;
webGetContentData
();
//
webGetContentData();
getSearchDataFromJson
();
//
getSearchDataFromJson();
getJsonDataPageTitle
();
//
getJsonDataPageTitle();
getJsonDataType4
();
//
getJsonDataType4();
getJsonDataType5
();
//
getJsonDataType5();
getDataJsonFile
();
//
getDataJsonFile();
//webGetPageImageContentSize();
//
//webGetPageImageContentSize();
webGetContentPageSize
();
//
webGetContentPageSize();
},
//
},
function
(
xmlHttpRequest
,
txtStatus
,
errorThrown
)
{
//
function (xmlHttpRequest, txtStatus, errorThrown) {
showErrorScreen
();
//
showErrorScreen();
});
//
});
};
//
};
//END TRB00097 - Editor: Long - Date: 09/30/2013 - Summary : Get All Page size of content
//END TRB00097 - Editor: Long - Date: 09/30/2013 - Summary : Get All Page size of content
...
@@ -1238,19 +1238,65 @@ function renderNextPage(){
...
@@ -1238,19 +1238,65 @@ function renderNextPage(){
//Get next page background image
//Get next page background image
if
(
contentType
==
ContentTypeKeys
.
Type_PDF
){
if
(
contentType
==
ContentTypeKeys
.
Type_PDF
){
avwGrabContentPageImage
(
ClientData
.
userInfo_accountPath
(),
{
contentId
:
contentID
,
sid
:
ClientData
.
userInfo_sid
(),
pageNo
:
pageNo
},
//ファイルシステムが有効であればキャッシュ確認
function
(
data
)
{
if
(
CONTENTVIEW_FILESYSTEM
.
fs
==
null
){
nextPageImage
=
data
;
avwGrabContentPageImage
(
ClientData
.
userInfo_accountPath
(),
nextContent
.
setPageImages
(
totalPage
,
nextPageImage
)
{
contentId
:
contentID
,
sid
:
ClientData
.
userInfo_sid
(),
pageNo
:
pageNo
},
.
setPageObjects
(
nextPageObjects
)
function
(
data
)
{
.
nextPage
();
nextPageImage
=
data
;
nextContent
.
setPageImages
(
totalPage
,
nextPageImage
)
},
.
setPageObjects
(
nextPageObjects
)
function
(
xmlHttpRequest
,
txtStatus
,
errorThrown
)
{
.
nextPage
();
showErrorScreen
();
},
});
function
(
xmlHttpRequest
,
txtStatus
,
errorThrown
)
{
showErrorScreen
();
}
);
}
else
{
// ファイル取得
var
fileName
=
contentID
+
"/page_"
+
pageNo
+
".dat"
;
CONTENTVIEW_FILESYSTEM
.
fs
.
root
.
getFile
(
'/abook/'
+
fileName
,
{
create
:
false
},
function
(
fileEntry
){
fileEntry
.
file
(
function
(
file
){
var
reader
=
new
FileReader
();
reader
.
onloadend
=
function
(
e
)
{
console
.
log
(
"read FileSystem"
);
nextPageImage
=
e
.
target
.
result
;
nextContent
.
setPageImages
(
totalPage
,
nextPageImage
)
.
setPageObjects
(
nextPageObjects
)
.
nextPage
();
};
reader
.
readAsText
(
file
);
}
);
},
function
(
err
){
// 失敗時のコールバック関数
console
.
log
(
"NotRead FileSystem"
);
avwGrabContentPageImage
(
ClientData
.
userInfo_accountPath
(),
{
contentId
:
contentID
,
sid
:
ClientData
.
userInfo_sid
(),
pageNo
:
pageNo
},
function
(
data
)
{
nextPageImage
=
data
;
nextContent
.
setPageImages
(
totalPage
,
nextPageImage
)
.
setPageObjects
(
nextPageObjects
)
.
nextPage
();
},
function
(
xmlHttpRequest
,
txtStatus
,
errorThrown
)
{
showErrorScreen
();
}
);
}
);
}
}
}
//Start Function : No.12 - Editor : Long - Date : 08/28/2013 - Summary : Render next page content image the same with the current one
//Start Function : No.12 - Editor : Long - Date : 08/28/2013 - Summary : Render next page content image the same with the current one
else
if
(
contentType
==
ContentTypeKeys
.
Type_NoFile
){
else
if
(
contentType
==
ContentTypeKeys
.
Type_NoFile
){
...
@@ -1271,19 +1317,62 @@ function renderPrevPage(){
...
@@ -1271,19 +1317,62 @@ function renderPrevPage(){
//Get prev page background image
//Get prev page background image
if
(
contentType
==
ContentTypeKeys
.
Type_PDF
){
if
(
contentType
==
ContentTypeKeys
.
Type_PDF
){
avwGrabContentPageImage
(
ClientData
.
userInfo_accountPath
(),
{
contentId
:
contentID
,
sid
:
ClientData
.
userInfo_sid
(),
pageNo
:
pageNo
},
//ファイルシステムが有効であればキャッシュ確認
function
(
data
)
{
if
(
CONTENTVIEW_FILESYSTEM
.
fs
==
null
){
prevPageImage
=
data
;
avwGrabContentPageImage
(
ClientData
.
userInfo_accountPath
(),
prevContent
.
setPageImages
(
totalPage
,
prevPageImage
)
{
contentId
:
contentID
,
sid
:
ClientData
.
userInfo_sid
(),
pageNo
:
pageNo
},
.
setPageObjects
(
prevPageObjects
)
function
(
data
)
{
.
previousPage
();
prevPageImage
=
data
;
prevContent
.
setPageImages
(
totalPage
,
prevPageImage
)
},
.
setPageObjects
(
prevPageObjects
)
function
(
xmlHttpRequest
,
txtStatus
,
errorThrown
)
{
.
previousPage
();
showErrorScreen
();
},
});
function
(
xmlHttpRequest
,
txtStatus
,
errorThrown
)
{
showErrorScreen
();
});
}
else
{
// ファイル取得
var
fileName
=
contentID
+
"/page_"
+
pageNo
+
".dat"
;
CONTENTVIEW_FILESYSTEM
.
fs
.
root
.
getFile
(
'/abook/'
+
fileName
,
{
create
:
false
},
function
(
fileEntry
){
fileEntry
.
file
(
function
(
file
){
var
reader
=
new
FileReader
();
reader
.
onloadend
=
function
(
e
)
{
console
.
log
(
"read FileSystem"
);
prevPageImage
=
e
.
target
.
result
;
prevContent
.
setPageImages
(
totalPage
,
prevPageImage
)
.
setPageObjects
(
prevPageObjects
)
.
previousPage
();
};
reader
.
readAsText
(
file
);
}
);
},
function
(
err
){
// 失敗時のコールバック関数
console
.
log
(
"NotRead FileSystem"
);
avwGrabContentPageImage
(
ClientData
.
userInfo_accountPath
(),
{
contentId
:
contentID
,
sid
:
ClientData
.
userInfo_sid
(),
pageNo
:
pageNo
},
function
(
data
)
{
prevPageImage
=
data
;
prevContent
.
setPageImages
(
totalPage
,
prevPageImage
)
.
setPageObjects
(
prevPageObjects
)
.
previousPage
();
},
function
(
xmlHttpRequest
,
txtStatus
,
errorThrown
)
{
showErrorScreen
();
});
}
);
}
}
}
//Start Function : No.12 - Editor : Long - Date : 08/28/2013 - Summary : Render next page content image the same with the current one
//Start Function : No.12 - Editor : Long - Date : 08/28/2013 - Summary : Render next page content image the same with the current one
else
if
(
contentType
==
ContentTypeKeys
.
Type_NoFile
){
else
if
(
contentType
==
ContentTypeKeys
.
Type_NoFile
){
...
...
abvw/js/contentview_InitObjects.js
View file @
3853437e
/// <reference path="../common/js/jquery-ui-1.8.23.custom.min.js" />
//名前空間用のオブジェクトを用意する
var
CONTENTVIEW_INITOBJECTS
=
{};
/// <reference path="../common/js/common.js" />
/// <reference path="contentview_VarDef.js" />
/// <reference path="contentview_CallApi.js" />
/// <reference path="contentview_GetData.js" />
//CONTENTVIEW_INITOBJECTS.initPage = function
/* init Image memo */
/* init Image memo */
function
initImageMemo
()
{
function
initImageMemo
()
{
...
@@ -132,6 +126,8 @@ function initPage() {
...
@@ -132,6 +126,8 @@ function initPage() {
//abe
//abe
//alert("initPage");
//alert("initPage");
console
.
log
(
"initPage"
);
//START : TRB00034 - DATE : 09/11/2013 - Editor : Long - Summary : Fix for center loading image
//START : TRB00034 - DATE : 09/11/2013 - Editor : Long - Summary : Fix for center loading image
setLoadingSize
();
setLoadingSize
();
//END : TRB00034 - DATE : 09/11/2013 - Editor : Long - Summary : Fix for center loading image
//END : TRB00034 - DATE : 09/11/2013 - Editor : Long - Summary : Fix for center loading image
...
@@ -168,7 +164,6 @@ function initPage() {
...
@@ -168,7 +164,6 @@ function initPage() {
}
}
else
{
else
{
getJsonContentInfo
();
getJsonContentInfo
();
//Start Function: No.4 - Editor : Long - Date: 08/20/2013
//Start Function: No.4 - Editor : Long - Date: 08/20/2013
getPageTransitionConfig
();
getPageTransitionConfig
();
//End Function : No.4 - Editor : Long - Date : 08/20/2013
//End Function : No.4 - Editor : Long - Date : 08/20/2013
...
@@ -283,6 +278,7 @@ function initPage() {
...
@@ -283,6 +278,7 @@ function initPage() {
/*Init Page */
/*Init Page */
nAjaxLoad
++
;
nAjaxLoad
++
;
console
.
log
(
"nAjaxLoad:"
+
nAjaxLoad
);
if
(
nAjaxLoad
==
8
)
{
if
(
nAjaxLoad
==
8
)
{
/* handle from bookmark page */
/* handle from bookmark page */
...
...
abvw/js/header.js
View file @
3853437e
...
@@ -403,18 +403,18 @@ function logoutFunction() {
...
@@ -403,18 +403,18 @@ function logoutFunction() {
else
if
(
ClientData
.
userOpt_logoutMode
()
==
1
)
{
// Logout without backup
else
if
(
ClientData
.
userOpt_logoutMode
()
==
1
)
{
// Logout without backup
// Do nothing
// Do nothing
//Logout
//Logout
webLogoutEvent
();
COMMON
.
webLogoutEvent
();
}
}
}
}
}
}
}
}
// In case: user_data_backup != "Y" -> No backup, logout
// In case: user_data_backup != "Y" -> No backup, logout
else
{
else
{
webLogoutEvent
();
COMMON
.
webLogoutEvent
();
}
}
}
}
else
{
else
{
webLogoutEvent
();
COMMON
.
webLogoutEvent
();
}
}
};
};
...
@@ -423,6 +423,7 @@ function historyClickFunction(){
...
@@ -423,6 +423,7 @@ function historyClickFunction(){
avwScreenMove
(
ScreenIds
.
History
);
avwScreenMove
(
ScreenIds
.
History
);
};
};
/*
//Web Logout Event
//Web Logout Event
function webLogoutEvent(){
function webLogoutEvent(){
...
@@ -453,6 +454,7 @@ function webLogoutEvent(){
...
@@ -453,6 +454,7 @@ function webLogoutEvent(){
return isExisted;
return isExisted;
};
};
*/
//Logout Without Backup function
//Logout Without Backup function
function
confirmWithoutBackupFunction
(
e
)
{
function
confirmWithoutBackupFunction
(
e
)
{
...
@@ -468,7 +470,7 @@ function confirmWithoutBackupFunction(e) {
...
@@ -468,7 +470,7 @@ function confirmWithoutBackupFunction(e) {
ClientData
.
userOpt_logoutMode
(
1
);
// In next time, if choose: [do not show dialog], will not backup and logout
ClientData
.
userOpt_logoutMode
(
1
);
// In next time, if choose: [do not show dialog], will not backup and logout
//window.location = ScreenIds.Login;
//window.location = ScreenIds.Login;
webLogoutEvent
();
COMMON
.
webLogoutEvent
();
};
};
//Logout With Backup function
//Logout With Backup function
...
@@ -673,7 +675,7 @@ function DoBackup(isBackupMarking, isBackupMemo, isBackupBookmark,isLogout,funcC
...
@@ -673,7 +675,7 @@ function DoBackup(isBackupMarking, isBackupMemo, isBackupBookmark,isLogout,funcC
else
else
{
{
if
(
isLogout
)
{
if
(
isLogout
)
{
webLogoutEvent
();
COMMON
.
webLogoutEvent
();
}
}
}
}
};
};
...
...
abvw/js/home.js
View file @
3853437e
/// <reference path="../common/js/avweb.js" />
/// <reference path="../common/js/screenLock.js" />
//名前空間用のオブジェクトを用意する
/// <reference path="../common/js/common.js" />
var
HOME
=
{};
/// <reference path="../common/js/i18n.js" />
/// <reference path="../common/js/jquery-1.8.1.min.js" />
/// <reference path="../common/js/jquery-ui-1.8.23.custom.min.js" />
/// <reference path="../common/js/jquery.toastmessage.js" />
/// <reference path="../common/js/pageViewer.js" />
/// <reference path="header.js" />
//Start Declare Variables
//Start Declare Variables
//----Constant-----------//
//----Constant-----------//
...
@@ -53,12 +47,19 @@ var home_isMove = false;
...
@@ -53,12 +47,19 @@ var home_isMove = false;
var
isShowBookShelf
=
null
;
var
isShowBookShelf
=
null
;
var
showNextRecordClickNumber
=
1
;
var
showNextRecordClickNumber
=
1
;
//名前空間用のオブジェクトを用意する
var
home
=
{};
//==========================================================
$
(
document
).
ready
(
function
()
{
$
(
document
).
ready
(
function
()
{
HOME
.
ready
();
});
//==========================================================
//$(document).ready(function () {
HOME
.
ready
=
function
(){
console
.
log
(
"HOME.ready!"
);
if
(
!
avwCheckLogin
(
ScreenIds
.
Login
))
{
if
(
!
avwCheckLogin
(
ScreenIds
.
Login
))
{
return
;
return
;
}
}
...
@@ -231,8 +232,8 @@ $(document).ready(function () {
...
@@ -231,8 +232,8 @@ $(document).ready(function () {
if
(
/msie 9.0/
.
test
(
ua
)
&&
/windows nt 6.1/
.
test
(
ua
)
&&
!
/tablet/
.
test
(
ua
))
{
if
(
/msie 9.0/
.
test
(
ua
)
&&
/windows nt 6.1/
.
test
(
ua
)
&&
!
/tablet/
.
test
(
ua
))
{
$
(
'.tab_bg_color'
).
css
({
"overflow-x"
:
"scroll"
});
$
(
'.tab_bg_color'
).
css
({
"overflow-x"
:
"scroll"
});
}
}
};
});
//
});
//日比谷カスタム ここから
//日比谷カスタム ここから
function
dspHibiyaClickFunction
(){
function
dspHibiyaClickFunction
(){
...
@@ -1216,8 +1217,7 @@ function getDataJsonFileGroup() {
...
@@ -1216,8 +1217,7 @@ function getDataJsonFileGroup() {
for
(
var
nIndex
=
0
;
nIndex
<
tree2
.
ExpandNodes
.
length
;
nIndex
++
)
{
for
(
var
nIndex
=
0
;
nIndex
<
tree2
.
ExpandNodes
.
length
;
nIndex
++
)
{
if
(
$
(
"#"
+
tree2
.
ExpandNodes
[
nIndex
]).
parent
())
{
if
(
$
(
"#"
+
tree2
.
ExpandNodes
[
nIndex
]).
parent
())
{
console
.
log
(
"tree2.ExpandNodes"
);
//console.log("tree2.ExpandNodes");
var
objParent
=
$
(
"#"
+
tree2
.
ExpandNodes
[
nIndex
]).
parent
();
var
objParent
=
$
(
"#"
+
tree2
.
ExpandNodes
[
nIndex
]).
parent
();
var
objChild
=
objParent
.
children
()[
0
];
var
objChild
=
objParent
.
children
()[
0
];
if
(
objChild
)
{
if
(
objChild
)
{
...
@@ -2290,12 +2290,17 @@ function checkUserHasReadContent(contId, resourceVer, metaVer) {
...
@@ -2290,12 +2290,17 @@ function checkUserHasReadContent(contId, resourceVer, metaVer) {
var
resizeImg
=
resizeResourceThumbnail
(
imgThumb
,
c
.
width
,
c
.
height
);
var
resizeImg
=
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
()
{
console
.
log
(
"imgIconNew.onload..1"
);
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
]);
$
(
"#loadingIcon"
+
contId
).
fadeOut
(
'slow'
,
function
()
{
$
(
"#loadingIcon"
+
contId
).
fadeOut
(
'slow'
,
function
()
{
$
(
'#content-thumbnail'
+
contId
).
fadeIn
(
'slow'
);
$
(
'#content-thumbnail'
+
contId
).
fadeIn
(
'slow'
);
});
});
};
};
imgIconNew
.
src
=
DEFAULT_IMG_CONTENT_NEW
;
imgIconNew
.
src
=
DEFAULT_IMG_CONTENT_NEW
;
};
};
//Start Function : No.12 -- Editor : Le Long -- Date : 07/31/2013 -- Summary : Check contentType to set thumbnail.
//Start Function : No.12 -- Editor : Le Long -- Date : 07/31/2013 -- Summary : Check contentType to set thumbnail.
...
@@ -2379,6 +2384,7 @@ function checkUserHasReadContent(contId, resourceVer, metaVer) {
...
@@ -2379,6 +2384,7 @@ function checkUserHasReadContent(contId, resourceVer, metaVer) {
});
});
};
};
imgIconNew
.
src
=
DEFAULT_IMG_CONTENT_NEW
;
imgIconNew
.
src
=
DEFAULT_IMG_CONTENT_NEW
;
};
};
//Start Function : No.12 -- Editor : Le Long -- Date : 07/31/2013 -- Summary : Check contentType to set thumbnail.
//Start Function : No.12 -- Editor : Le Long -- Date : 07/31/2013 -- Summary : Check contentType to set thumbnail.
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment