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
112674f4
Commit
112674f4
authored
Sep 01, 2020
by
Kim Eunchul
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
#39415 【KDDIオーサリングHTML5 CMS 1.8.5.1】プレビュー画面で特定のページを開こうとすると、表示待ちになる
parent
2850e4cb
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
93 additions
and
0 deletions
+93
-0
abvw/js/contentview.js
+26
-0
abvw/js/contentview_CreateObjects.js
+47
-0
abvw/js/contentview_GetData.js
+20
-0
No files found.
abvw/js/contentview.js
View file @
112674f4
...
...
@@ -3106,6 +3106,32 @@ CONTENTVIEW.ContentPage.prototype.addPageObjects = function (pageObjects) {
obj
.
enquete
,
obj
.
objectId
);
}
else
if
(
obj
.
actionType
==
22
){
pageObj
=
new
CONTENTVIEW_CREATEOBJECT
.
backToPage
(
obj
.
mediaType
,
obj
.
actionType
,
obj
.
id
,
obj
.
imageUrl
,
obj
.
x
,
obj
.
y
,
obj
.
width
,
obj
.
height
,
obj
.
visible
,
obj
.
objectId
);
}
else
if
(
obj
.
actionType
==
23
){
pageObj
=
new
CONTENTVIEW_CREATEOBJECT
.
backToContent
(
obj
.
mediaType
,
obj
.
actionType
,
obj
.
id
,
obj
.
imageUrl
,
obj
.
x
,
obj
.
y
,
obj
.
width
,
obj
.
height
,
obj
.
visible
,
obj
.
objectId
);
}
break
;
case
2
:
...
...
abvw/js/contentview_CreateObjects.js
View file @
112674f4
...
...
@@ -1522,6 +1522,53 @@ CONTENTVIEW_CREATEOBJECT.moveToContent = function (mediaType, actionType, id, im
CONTENTVIEW_CREATEOBJECT
.
moveToContent
.
prototype
=
new
CONTENTVIEW_CREATEOBJECT
.
PageObject
();
//START TRB00033 - EDITOR: Long - Date : 09/12/2013 - Summary : limit content
/* mediaType = 1 and actionType = 22 backToPage object*/
CONTENTVIEW_CREATEOBJECT
.
backToPage
=
function
(
mediaType
,
actionType
,
id
,
imageUrl
,
x
,
y
,
w
,
h
,
visible
,
objectId
)
{
this
.
setup
(
mediaType
,
actionType
,
id
,
imageUrl
,
x
,
y
,
w
,
h
,
visible
,
null
,
null
,
objectId
);
this
.
action
=
function
()
{
//詳細ログ作成
var
objectLog
=
new
ObjectLogEntity
();
objectLog
.
contentid
=
CONTENTVIEW_GENERAL
.
contentID
;
objectLog
.
pageNo
=
CONTENTVIEW_GETDATA
.
getPageIndex
()
+
1
;
//0始まりのページ番号
objectLog
.
objectId
=
objectId
;
objectLog
.
resourceId
=
""
;
objectLog
.
mediaType
=
mediaType
;
objectLog
.
actionType
=
actionType
;
objectLog
.
actionTime
=
"0"
;
objectLog
.
locationX
=
x
;
objectLog
.
locationY
=
y
;
objectLog
.
locationHeight
=
h
;
objectLog
.
locationWidth
=
w
;
COMMON
.
SetObjectLog
(
CONTENTVIEW_GENERAL
.
contentID
,
objectLog
);
};
};
CONTENTVIEW_CREATEOBJECT
.
backToPage
.
prototype
=
new
CONTENTVIEW_CREATEOBJECT
.
PageObject
();
/* mediaType = 1 and actionType = 23 backToContent object*/
CONTENTVIEW_CREATEOBJECT
.
backToContent
=
function
(
mediaType
,
actionType
,
id
,
imageUrl
,
x
,
y
,
w
,
h
,
visible
,
objectId
)
{
this
.
setup
(
mediaType
,
actionType
,
id
,
imageUrl
,
x
,
y
,
w
,
h
,
visible
,
null
,
null
,
objectId
);
this
.
action
=
function
()
{
//詳細ログ作成
var
objectLog
=
new
ObjectLogEntity
();
objectLog
.
contentid
=
CONTENTVIEW_GENERAL
.
contentID
;
objectLog
.
pageNo
=
CONTENTVIEW_GETDATA
.
getPageIndex
()
+
1
;
//0始まりのページ番号
objectLog
.
objectId
=
objectId
;
objectLog
.
resourceId
=
""
;
objectLog
.
mediaType
=
mediaType
;
objectLog
.
actionType
=
actionType
;
objectLog
.
actionTime
=
"0"
;
objectLog
.
locationX
=
x
;
objectLog
.
locationY
=
y
;
objectLog
.
locationHeight
=
h
;
objectLog
.
locationWidth
=
w
;
COMMON
.
SetObjectLog
(
CONTENTVIEW_GENERAL
.
contentID
,
objectLog
);
};
};
CONTENTVIEW_CREATEOBJECT
.
backToContent
.
prototype
=
new
CONTENTVIEW_CREATEOBJECT
.
PageObject
();
CONTENTVIEW_CREATEOBJECT
.
showContentConfirmDialog
=
function
(
type
,
msg
,
contentType
)
{
if
(
type
==
CONTENTVIEW_CREATEOBJECT
.
alertMessageLevel
.
ShowAlert
){
...
...
abvw/js/contentview_GetData.js
View file @
112674f4
...
...
@@ -389,6 +389,26 @@ CONTENTVIEW_GETDATA.getMediaType1 = function(iValueObj) {
pageObject
[
"enquete"
]
=
iValueObj
.
action
.
enquete
;
//pageObject["objectId"] = iValueObj.action.objectId;
}
else
if
(
iValueObj
.
action
.
actionType
==
22
){
/*get mediaInfo */
if
(
iValueObj
.
mediaInfo
.
resourceId
)
{
/* 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
==
23
){
/*get mediaInfo */
if
(
iValueObj
.
mediaInfo
.
resourceId
)
{
/* 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 :
return
pageObject
;
};
...
...
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