Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
O
OpenBoard
Project
Project
Details
Activity
Releases
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
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lifo
Nicolas Ollinger
OpenBoard
Commits
0edf49ad
Commit
0edf49ad
authored
Aug 10, 2011
by
Claudio Valerio
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fixed Uniboard to sankore document importation
parent
4302e89c
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
38 additions
and
8 deletions
+38
-8
UniboardSankoreTransition.cpp
src/transition/UniboardSankoreTransition.cpp
+38
-8
No files found.
src/transition/UniboardSankoreTransition.cpp
View file @
0edf49ad
...
@@ -106,11 +106,16 @@ bool UniboardSankoreTransition::checkPage(QString& sankorePagePath)
...
@@ -106,11 +106,16 @@ bool UniboardSankoreTransition::checkPage(QString& sankorePagePath)
sankoreDirectory
=
QUrl
::
fromLocalFile
(
sankoreDirectory
).
toString
();
sankoreDirectory
=
QUrl
::
fromLocalFile
(
sankoreDirectory
).
toString
();
QString
documentString
(
documentByteArray
);
QString
documentString
(
documentByteArray
);
documentString
.
replace
(
"xlink:href=
\"
videos/"
,
"xlink:href=
\"
"
+
sankoreDirectory
+
"/videos/"
);
QRegExp
videoRegExp
(
"<video(.*)xlink:href=
\"
(.*)videos/(.*)/>"
);
videoRegExp
.
setMinimal
(
true
);
documentString
.
replace
(
"xlink:href=
\"
objects/"
,
"xlink:href=
\"
"
+
sankoreDirectory
+
"/objects/
"
);
documentString
.
replace
(
videoRegExp
,
"<video
\\
1xlink:href=
\"
videos/
\\
3/>
"
);
documentString
.
replace
(
"xlink:href=
\"
audios/"
,
"xlink:href=
\"
"
+
sankoreDirectory
+
"/audios/"
);
QRegExp
audioRegExp
(
"<audio(.*)xlink:href=
\"
(.*)audios/(.*)/>"
);
audioRegExp
.
setMinimal
(
true
);
documentString
.
replace
(
audioRegExp
,
"<audio
\\
1xlink:href=
\"
audios/
\\
3/>"
);
if
(
!
file
.
open
(
QIODevice
::
WriteOnly
|
QIODevice
::
Text
))
if
(
!
file
.
open
(
QIODevice
::
WriteOnly
|
QIODevice
::
Text
))
return
false
;
return
false
;
...
@@ -133,7 +138,36 @@ bool UniboardSankoreTransition::checkWidget(QString& sankoreWidgetIndexPath)
...
@@ -133,7 +138,36 @@ bool UniboardSankoreTransition::checkWidget(QString& sankoreWidgetIndexPath)
QString
documentString
(
documentByteArray
);
QString
documentString
(
documentByteArray
);
documentString
.
replace
(
"/Uniboard/interactive content"
,
"/Sankore/interactive content"
);
QRegExp
swfOriginFilePathRegExp
(
"<param name=
\"
movie
\"
value=
\"
(.*)
\"
>"
);
swfOriginFilePathRegExp
.
setMinimal
(
true
);
swfOriginFilePathRegExp
.
indexIn
(
documentString
);
QString
origin
=
swfOriginFilePathRegExp
.
cap
(
1
);
if
(
origin
.
contains
(
"http://"
)){
// an url is the source of the swf. The source is kept as is.
return
true
;
}
//changing the path
QRegExp
swfDataPathRegExp
(
"<object(.*)data=
\"
(.*)interactive content/Web/(.*)
\"
(.*)>"
);
swfDataPathRegExp
.
setMinimal
(
true
);
documentString
.
replace
(
swfDataPathRegExp
,
"<object
\\
1data=
\"\\
3
\"
>"
);
QRegExp
swfMoviePathRegExp
(
"<param name=
\"
movie
\"
value=
\"
(.*)interactive content/Web/(.*)
\"
>"
);
swfMoviePathRegExp
.
setMinimal
(
true
);
documentString
.
replace
(
swfMoviePathRegExp
,
"<param name=
\"
movie
\"
value=
\"\\
2
\"
>"
);
//copy the swf on the right place
QRegExp
swfFileNameRegExp
(
"<param name=
\"
movie
\"
value=
\"
(.*)
\"
>"
);
swfFileNameRegExp
.
setMinimal
(
true
);
swfFileNameRegExp
.
indexIn
(
documentString
);
QString
swfFileName
=
swfFileNameRegExp
.
cap
(
1
);
int
lastDirectoryLevel
=
sankoreWidgetIndexPath
.
lastIndexOf
(
"/"
);
if
(
lastDirectoryLevel
==
-
1
)
lastDirectoryLevel
=
sankoreWidgetIndexPath
.
lastIndexOf
(
"
\\
"
);
QString
destination
(
sankoreWidgetIndexPath
.
left
(
lastDirectoryLevel
)
+
"/"
+
swfFileName
);
QFile
(
origin
).
copy
(
destination
);
if
(
!
file
.
open
(
QIODevice
::
WriteOnly
|
QIODevice
::
Text
))
if
(
!
file
.
open
(
QIODevice
::
WriteOnly
|
QIODevice
::
Text
))
return
false
;
return
false
;
...
@@ -217,10 +251,6 @@ void UniboardSankoreTransition::executeTransition()
...
@@ -217,10 +251,6 @@ void UniboardSankoreTransition::executeTransition()
UBFileSystemUtils
::
deleteDir
(
backupDestinationPath
);
UBFileSystemUtils
::
deleteDir
(
backupDestinationPath
);
}
}
else
{
else
{
QString
sankoreInteractiveAppPath
=
sankoreDocumentDirectory
;
sankoreInteractiveAppPath
=
sankoreInteractiveAppPath
.
replace
(
"document"
,
""
)
+
"interactive content/"
;
UBFileSystemUtils
::
copyDir
(
mOldSankoreDirectory
+
"/interactive content"
,
sankoreInteractiveAppPath
);
UBFileSystemUtils
::
copyDir
(
mUniboardSourceDirectory
+
"/interactive content"
,
sankoreInteractiveAppPath
);
UBFileSystemUtils
::
deleteDir
(
mOldSankoreDirectory
);
UBFileSystemUtils
::
deleteDir
(
mOldSankoreDirectory
);
UBFileSystemUtils
::
deleteDir
(
mUniboardSourceDirectory
);
UBFileSystemUtils
::
deleteDir
(
mUniboardSourceDirectory
);
}
}
...
...
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