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
d7a9054c
Commit
d7a9054c
authored
Dec 07, 2012
by
Motohisa Nakano
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
20121207-1
parent
b9c45397
Hide whitespace changes
Inline
Side-by-side
Showing
13 changed files
with
111 additions
and
59 deletions
+111
-59
abvw/common/json/lang/lang-en.json
+3
-3
abvw/common/json/lang/lang-ja.json
+1
-1
abvw/common/json/lang/lang-ko.json
+1
-1
abvw/contentsearch.html
+1
-1
abvw/history.html
+1
-1
abvw/home.html
+1
-1
abvw/js/bookmark.js
+68
-28
abvw/js/contentsearch.js
+2
-0
abvw/js/contentview.js
+16
-12
abvw/js/header.js
+0
-1
abvw/js/history.js
+3
-1
abvw/js/home.js
+11
-8
abvw/js/settings.js
+3
-1
No files found.
abvw/common/json/lang/lang-en.json
View file @
d7a9054c
...
...
@@ -48,8 +48,8 @@
"dspTitleNm"
:
"Title"
,
"dspTitleNmKn"
:
"Title(Kana)"
,
"txtPubDt"
:
"Released Date"
,
"txtRecordNum"
:
"
"
,
"txtRecordTotal"
:
"
"
,
"txtRecordNum"
:
""
,
"txtRecordTotal"
:
""
,
"dspViewMore"
:
">> Next {0} contents"
,
"txtGen"
:
"Genre"
,
"txtGr"
:
"Group"
,
...
...
@@ -64,7 +64,7 @@
"dspBkCancel"
:
"Logout"
,
"txtSearchResult"
:
"Result"
,
"dspHome"
:
"Home"
,
"txtLoginUser"
:
"(Ver.2012120
6-3
)User:"
,
"txtLoginUser"
:
"(Ver.2012120
7-1
)User:"
,
"txtAll"
:
"All"
,
"txtMkgSize"
:
"Size"
,
"txtMkgS"
:
"S"
,
...
...
abvw/common/json/lang/lang-ja.json
View file @
d7a9054c
...
...
@@ -64,7 +64,7 @@
"dspBkCancel"
:
"バックアップせずにログアウト"
,
"txtSearchResult"
:
"検索結果"
,
"dspHome"
:
"ホーム"
,
"txtLoginUser"
:
"(Ver.2012120
6-3
)ログイン中:"
,
"txtLoginUser"
:
"(Ver.2012120
7-1
)ログイン中:"
,
"txtAll"
:
"すべて"
,
"txtMkgSize"
:
"太さ"
,
"txtMkgS"
:
"小"
,
...
...
abvw/common/json/lang/lang-ko.json
View file @
d7a9054c
...
...
@@ -64,7 +64,7 @@
"dspBkCancel"
:
"로그아웃"
,
"txtSearchResult"
:
"검색 결과"
,
"dspHome"
:
"홈"
,
"txtLoginUser"
:
"(Ver.2012120
6-3
)로그인 중:"
,
"txtLoginUser"
:
"(Ver.2012120
7-1
)로그인 중:"
,
"txtAll"
:
"전체"
,
"txtMkgSize"
:
"두께"
,
"txtMkgS"
:
"소"
,
...
...
abvw/contentsearch.html
View file @
d7a9054c
...
...
@@ -42,7 +42,7 @@
</style>
<!-- script definition -->
<script>
LockScreen
();
//
LockScreen();
</script>
</head>
<body>
...
...
abvw/history.html
View file @
d7a9054c
...
...
@@ -41,7 +41,7 @@
</style>
<!-- script definition -->
<script>
LockScreen
();
//
LockScreen();
</script>
</head>
<body>
...
...
abvw/home.html
View file @
d7a9054c
...
...
@@ -50,7 +50,7 @@
</style>
<!-- script definition -->
<script>
LockScreen
();
//
LockScreen();
</script>
</head>
...
...
abvw/js/bookmark.js
View file @
d7a9054c
...
...
@@ -28,6 +28,8 @@ $(document).ready(function () {
if
(
!
avwCheckLogin
(
ScreenIds
.
Login
))
return
;
LockScreen
();
document
.
title
=
i18nText
(
'dspShiori'
)
+
' | '
+
i18nText
(
'sysAppTitle'
);
// Set bookmark screen
...
...
@@ -258,14 +260,18 @@ function ShowBookmark() {
hasMemo
=
true
;
}
}
if
(
IsErrorPage
(
contentid
,
pageNo
))
{
insertRowError
(
contentid
,
htmlEncode
(
ClientData
.
BookMarkData
()[
nIndex
].
contentTitle
),
pageNo
);
}
else
{
callApi
.
execute
(
contentid
,
ClientData
.
userInfo_sid
(),
pageNo
,
hasMemo
,
hasMarking
,
htmlEncode
(
ClientData
.
BookMarkData
()[
nIndex
].
contentTitle
),
nIndex
);
}
// if (IsErrorPage(contentid, pageNo)) {
// insertRowError(contentid, htmlEncode(ClientData.BookMarkData()[nIndex].contentTitle), pageNo);
// }
// else {
// callApi.execute(contentid, ClientData.userInfo_sid(), pageNo, hasMemo, hasMarking, htmlEncode(ClientData.BookMarkData()[nIndex].contentTitle), nIndex);
// }
callApi
.
execute
(
contentid
,
ClientData
.
userInfo_sid
(),
pageNo
,
hasMemo
,
hasMarking
,
htmlEncode
(
ClientData
.
BookMarkData
()[
nIndex
].
contentTitle
),
nIndex
);
}
$
(
"a[name='dspRead']"
).
unbind
(
'click'
);
$
(
"a[name='dspRead']"
).
click
(
dspRead_Click
);
}
// Hide all sorting symbol
function
HideSorting
()
{
...
...
@@ -484,23 +490,38 @@ var callApi = {
this
.
pageNo
=
pageNo
;
avwCmsApiSync
(
ClientData
.
userInfo_accountPath
(),
"webContentPage"
,
"GET"
,
{
contentId
:
contentid
,
sid
:
sid
,
pageNos
:
pageNo
,
thumbnailFlg
:
1
},
function
(
data
)
{
if
(
data
.
pages
.
length
==
0
)
{
// Page does not exist
AddErrorPage
(
contentid
,
pageNo
);
insertRowError
(
contentid
,
htmlEncode
(
contentTitle
),
pageNo
);
}
else
{
// Update local title to be equal to server
UpdateBookmark
(
contentid
,
pageNo
,
data
.
contentTitle
,
data
.
contentTitleKana
);
contentTitle
=
data
.
contentTitle
;
// Insert to grid
insertRow
(
contentid
,
"data:image/jpeg;base64,"
+
data
.
pages
[
0
].
pageThumbnail
,
htmlEncode
(
contentTitle
),
data
.
pages
[
0
].
pageText
,
pageNo
,
hasMemo
,
hasMarking
,
index
);
}
/*
// Update local title to be equal to server
UpdateBookmark(contentid, pageNo, data.contentTitle, data.contentTitleKana);
contentTitle = data.contentTitle;
for (var nIndex2 = 0; nIndex2 < data.pages.length; nIndex2++) {
if
(
pageNo
==
data
.
pages
[
nIndex2
].
pageNo
)
{
// Update bookmark
if (pageNo == data.pages[nIndex2].pageNo) {
// Update bookmark
// Insert to grid
insertRow
(
contentid
,
"data:image/jpeg;base64,"
+
data
.
pages
[
nIndex2
].
pageThumbnail
,
htmlEncode
(
contentTitle
),
data
.
pages
[
nIndex2
].
pageText
,
pageNo
,
hasMemo
,
hasMarking
,
index
);
//TotalThread--;
break
;
}
// Insert to grid
insertRow(contentid, "data:image/jpeg;base64," + data.pages[nIndex2].pageThumbnail, htmlEncode(contentTitle), data.pages[nIndex2].pageText, pageNo, hasMemo, hasMarking, index);
//TotalThread--;
break;
}
}
$("a[name='dspRead']").unbind('click');
$("a[name='dspRead']").click(dspRead_Click);
*/
},
null
);
...
...
@@ -717,7 +738,7 @@ $(function () {
$
(
"#dspTitleNmKn_Seperate"
).
show
();
}
LockScreen
();
// LockScreen();
});
...
...
@@ -748,6 +769,22 @@ function IsErrorContent(strContentId) {
}
return
isError
;
}
/*
Check a content is checked + ok
*/
function
IsOKCheckedContent
(
strContentId
)
{
var
isOK
=
false
;
for
(
var
nIndex
=
0
;
nIndex
<
collection_contents
.
length
;
nIndex
++
)
{
if
(
strContentId
==
collection_contents
[
nIndex
].
contentid
)
{
isOK
=
true
;
break
;
}
}
return
isOK
;
}
/*
Check a page is error or not (error pages were checked before)
*/
...
...
@@ -907,19 +944,22 @@ function SyncContent() {
// Check existence of content [start]
// ==================================
if
(
IsErrorContent
(
oneBookMark
.
contentid
)
==
false
)
{
if
(
!
IsExistContent
(
oneBookMark
.
contentid
))
{
// Add to list of error content
bookmark_errorContent
.
push
({
contentid
:
oneBookMark
.
contentid
});
// Remove bookmark
arrBookmarks
.
splice
(
nIndex
,
1
);
ClientData
.
isChangedBookmark
(
true
);
}
// ==================================
// Check existence of content [ end ]
// ==================================
else
{
// Add nromal content
AddContent
(
oneBookMark
.
contentid
);
// If content is ok + checked
if
(
IsOKCheckedContent
(
oneBookMark
.
contentid
)
==
false
)
{
if
(
!
IsExistContent
(
oneBookMark
.
contentid
))
{
// Add to list of error content
bookmark_errorContent
.
push
({
contentid
:
oneBookMark
.
contentid
});
// Remove bookmark
arrBookmarks
.
splice
(
nIndex
,
1
);
ClientData
.
isChangedBookmark
(
true
);
}
// ==================================
// Check existence of content [ end ]
// ==================================
else
{
// Add nromal content
AddContent
(
oneBookMark
.
contentid
);
}
}
}
else
{
...
...
@@ -931,7 +971,7 @@ function SyncContent() {
ClientData
.
BookMarkData
(
arrBookmarks
);
// Call sync pages
SyncPages
();
//
SyncPages();
}
/*
...
...
abvw/js/contentsearch.js
View file @
d7a9054c
...
...
@@ -45,6 +45,8 @@ $(document).ready(function(){
return
;
}
LockScreen
();
document
.
title
=
i18nText
(
'txtSearchResult'
)
+
' | '
+
i18nText
(
'sysAppTitle'
);
// Set bookmark screen ClientData.BookmarkScreen(ScreenIds.ContentSearch);
...
...
abvw/js/contentview.js
View file @
d7a9054c
...
...
@@ -558,7 +558,7 @@ PageObject.prototype.drawPageObject = function(context) {
// }
//
// }
// flip();
// flip();
/* draw marking */
drawMarkingOnScreen
();
...
...
@@ -1145,7 +1145,7 @@ function onClick_CanvasMain(event){
var
hitPageObj
=
getContent
().
currentPage
.
hitTest
(
imagePt
.
x
,
imagePt
.
y
);
if
(
hitPageObj
)
{
//console.log("PageObject Hit!! Id: " + hitPageObj.id);
//console.log("PageObject Hit!! Id: " + hitPageObj.id);
hitPageObj
.
action
();
}
else
{
...
...
@@ -1209,7 +1209,7 @@ function mouseMove_canvasMain(event){
// scaling
// var sx = (destRect.right - destRect.left) / (srcRect.right - srcRect.left);
// var sy = (destRect.bottom - destRect.top) / (srcRect.bottom - srcRect.top);
// var sy = (destRect.bottom - destRect.top) / (srcRect.bottom - srcRect.top);
var
sx
=
1
/
userScale
;
...
...
@@ -1264,7 +1264,7 @@ function mouseMove_canvasMain(event){
//
//
//
// }
// }
}
...
...
@@ -1308,7 +1308,7 @@ function mouseMove_canvasMain(event){
}
}
else
{
$
(
'#button_next_canvas'
).
css
(
'opacity'
,
'0'
);
}
}
}
function
mouseDown_CanvasMain
(
event
){
...
...
@@ -1341,7 +1341,7 @@ function mouseDown_CanvasMain(event){
// document.body.style.mozUserSelect = document.body.style.webkitUserSelect = document.body.style.userSelect = 'none';
// lastX = event.offsetX || (event.pageX - canvas_main.offsetLeft);
// lastY = event.offsetY || (event.pageY - canvas_main.offsetTop);
// dragStart = context_main.transformedPoint(lastX,lastY);
// dragStart = context_main.transformedPoint(lastX,lastY);
}
...
...
@@ -1901,7 +1901,7 @@ function flip() {
context
.
drawImage
(
offscreen
,
srcRect
.
left
,
srcRect
.
top
,
srcRect
.
right
-
srcRect
.
left
,
srcRect
.
bottom
-
srcRect
.
top
,
destRect
.
left
,
destRect
.
top
,
width
,
height
);
destRect
.
left
,
destRect
.
top
,
width
,
height
);
context
.
restore
();
};
...
...
@@ -2204,6 +2204,9 @@ var audioType3 = function(mediaType, actionType, id, imageUrl, x, y, w, h, visib
}
else
{
createAudio
(
audioFile
,
playType
);
this
.
setup
(
mediaType
,
actionType
,
id
,
null
,
x
,
y
,
w
,
h
,
visible
,
null
,
null
);
this
.
action
=
function
(){
}
}
};
audioType3
.
prototype
=
new
PageObject
();
...
...
@@ -2300,8 +2303,7 @@ function createAudio(audio,type){
if
(
document
.
getElementById
(
"play_audio_1"
)
!=
undefined
){
//document.getElementById("play_audio_1").load();
}
else
{
}
else
{
if
(
ClientData
.
userOpt_musicMode
()
==
"1"
){
if
(
avwUserEnvObj
.
browser
==
'firefox'
){
$
(
'#playaudioallpage'
).
html
(
...
...
@@ -2312,7 +2314,7 @@ function createAudio(audio,type){
' <audio id="play_audio_1" loop="loop" autoplay ="autoplay">'
+
' <source src="'
+
audio
+
'&key='
+
(
new
Date
()).
toIdString
()
+
'" type="audio/mpeg" />'
+
' </audio>'
);
);
}
}
else
{
if
(
avwUserEnvObj
.
browser
==
'firefox'
){
...
...
@@ -2454,11 +2456,13 @@ function changeImageType4(objTarget,nIndex,nIndex1){
imageObj
.
src
=
objTarget
[
nIndex
].
dataObjects
[
nIndex1
].
fileName
;
}
/* mediaType =
1
write text object*/
/* mediaType =
7
write text object*/
var
text
=
function
(
mediaType
,
actionType
,
id
,
x
,
y
,
w
,
h
,
visible
,
actionFunction
,
content
)
{
//var imageUrl = displayText(x,y,w,h,id,content);
var
imageUrl
=
getTextObjectImage
(
w
,
h
,
content
)
this
.
setup
(
mediaType
,
actionType
,
id
,
imageUrl
,
x
,
y
,
w
,
h
,
visible
,
actionFunction
,
null
);
this
.
setup
(
mediaType
,
actionType
,
id
,
imageUrl
,
x
,
y
,
w
,
h
,
visible
,
actionFunction
,
null
);
this
.
action
=
function
()
{
}
};
text
.
prototype
=
new
PageObject
();
...
...
abvw/js/header.js
View file @
d7a9054c
...
...
@@ -43,7 +43,6 @@ $(document).ready(function () {
$
(
'div#header-searchbox'
).
css
(
'display'
,
'none'
);
//Display user name
//$('#login-username').html(ClientData.userInfo_loginId());
$
(
'#login-username'
).
text
(
ClientData
.
userInfo_userName
());
...
...
abvw/js/history.js
View file @
d7a9054c
...
...
@@ -44,6 +44,8 @@ $(document).ready(function(){
if
(
!
avwCheckLogin
(
ScreenIds
.
Login
)){
return
;
}
LockScreen
();
document
.
title
=
i18nText
(
'dspViewHistory'
)
+
' | '
+
i18nText
(
'sysAppTitle'
);
...
...
@@ -249,7 +251,7 @@ function renderGridView(){
handleSortDisp
();
//Display user name
$
(
'#login-username'
).
html
(
ClientData
.
userInfo_loginId
());
$
(
'#login-username'
).
html
(
ClientData
.
userInfo_loginId
_session
());
//Refresh GridView
refreshGrid
();
...
...
abvw/js/home.js
View file @
d7a9054c
...
...
@@ -76,8 +76,11 @@ $(document).ready(function () {
//Render Genre
getDataJsonFileGenre
();
getDataJsonFileGroup
();
getDataJsonFileGroup
();
// Lock screen is here, because of in getDataJsonFileGroup() called click to expand speified nodes of treeview
LockScreen
();
//Change display type to bookshelf type
$
(
'#control-bookshelf-type'
).
click
(
changeDispBookShelfFunction
);
...
...
@@ -697,18 +700,18 @@ function getDataJsonFileGroup(){
arrData
.
push
(
node
);
}
});
var
tree
1
=
new
TreeView
();
var
tree
2
=
new
TreeView
();
//tree1.TotalCount = totalCount;
if
(
group_totalcontent
!=
-
1
)
{
tree
1
.
TotalCount
=
group_totalcontent
;
tree
2
.
TotalCount
=
group_totalcontent
;
}
tree
1
.
Show
(
"list_1"
,
arrData
,
"AddGroup_Callback"
);
tree
2
.
Show
(
"list_1"
,
arrData
,
"AddGroup_Callback"
);
$
(
"#list_1"
).
treeview
();
// Expand nodes
for
(
var
nIndex
=
0
;
nIndex
<
tree
1
.
ExpandNodes
.
length
;
nIndex
++
)
{
if
(
$
(
"#"
+
tree
1
.
ExpandNodes
[
nIndex
]).
parent
())
{
var
objParent
=
$
(
"#"
+
tree
1
.
ExpandNodes
[
nIndex
]).
parent
();
for
(
var
nIndex
=
0
;
nIndex
<
tree
2
.
ExpandNodes
.
length
;
nIndex
++
)
{
if
(
$
(
"#"
+
tree
2
.
ExpandNodes
[
nIndex
]).
parent
())
{
var
objParent
=
$
(
"#"
+
tree
2
.
ExpandNodes
[
nIndex
]).
parent
();
var
objChild
=
objParent
.
children
()[
0
];
if
(
objChild
)
{
try
{
...
...
abvw/js/settings.js
View file @
d7a9054c
...
...
@@ -19,6 +19,8 @@
$
(
document
).
ready
(
function
()
{
if
(
!
avwCheckLogin
(
ScreenIds
.
Login
))
return
;
LockScreen
();
document
.
title
=
i18nText
(
'dspSetting'
)
+
' | '
+
i18nText
(
'sysAppTitle'
);
...
...
@@ -643,7 +645,7 @@ $(function () {
// height: 450
// });
LockScreen
();
// LockScreen();
});
function
openBackup
()
{
...
...
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