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
33644150
Commit
33644150
authored
Aug 09, 2011
by
Didier
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fixed flash problem
parent
816168fb
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
53 additions
and
5 deletions
+53
-5
UniboardSankoreTransition.cpp
src/transition/UniboardSankoreTransition.cpp
+51
-5
UniboardSankoreTransition.h
src/transition/UniboardSankoreTransition.h
+2
-0
No files found.
src/transition/UniboardSankoreTransition.cpp
View file @
33644150
...
...
@@ -105,16 +105,35 @@ bool UniboardSankoreTransition::checkPage(QString& sankorePagePath)
;
sankoreDirectory
=
QUrl
::
fromLocalFile
(
sankoreDirectory
).
toString
();
QString
documentString
(
documentByteArray
);
qDebug
()
<<
documentString
;
documentString
.
replace
(
"xlink:href=
\"
videos/"
,
"xlink:href=
\"
"
+
sankoreDirectory
+
"/videos/"
);
documentString
.
replace
(
"xlink:href=
\"
widgets/"
,
"xlink:href=
\"
"
+
sankoreDirectory
+
"/widget
s/"
);
documentString
.
replace
(
"xlink:href=
\"
videos/"
,
"xlink:href=
\"
"
+
sankoreDirectory
+
"/video
s/"
);
documentString
.
replace
(
"xlink:href=
\"
objects/"
,
"xlink:href=
\"
"
+
sankoreDirectory
+
"/objects/"
);
documentString
.
replace
(
"xlink:href=
\"
audios/"
,
"xlink:href=
\"
"
+
sankoreDirectory
+
"/audios/"
);
qDebug
()
<<
documentString
;
if
(
!
file
.
open
(
QIODevice
::
WriteOnly
|
QIODevice
::
Text
))
return
false
;
file
.
write
(
documentString
.
toAscii
());
file
.
close
();
return
true
;
}
bool
UniboardSankoreTransition
::
checkWidget
(
QString
&
sankoreWidgetIndexPath
)
{
QFile
file
(
sankoreWidgetIndexPath
);
if
(
!
file
.
open
(
QIODevice
::
ReadOnly
|
QIODevice
::
Text
))
return
false
;
QByteArray
documentByteArray
=
file
.
readAll
();
file
.
close
();
QString
documentString
(
documentByteArray
);
documentString
.
replace
(
"/Uniboard/interactive content"
,
"/Sankore/interactive content"
);
if
(
!
file
.
open
(
QIODevice
::
WriteOnly
|
QIODevice
::
Text
))
return
false
;
...
...
@@ -125,6 +144,28 @@ bool UniboardSankoreTransition::checkPage(QString& sankorePagePath)
return
true
;
}
bool
UniboardSankoreTransition
::
updateIndexWidget
(
QString
&
sankoreWidgetPath
)
{
bool
result
=
true
;
QFileInfoList
fileInfoList
=
UBFileSystemUtils
::
allElementsInDirectory
(
sankoreWidgetPath
);
QFileInfoList
::
iterator
fileInfo
;
for
(
fileInfo
=
fileInfoList
.
begin
();
fileInfo
!=
fileInfoList
.
end
()
&&
result
;
fileInfo
+=
1
)
{
if
(
fileInfo
->
fileName
().
endsWith
(
"wgt"
)){
QString
path
=
fileInfo
->
absolutePath
()
+
"/"
+
fileInfo
->
fileName
()
+
"/index.html"
;
if
(
QFile
(
path
).
exists
())
result
=
checkWidget
(
path
);
path
=
fileInfo
->
absolutePath
()
+
"/"
+
fileInfo
->
fileName
()
+
"/index.htm"
;
if
(
QFile
(
path
).
exists
())
result
&=
checkWidget
(
path
);
}
}
return
result
;
}
bool
UniboardSankoreTransition
::
updateSankoreHRef
(
QString
&
sankoreDocumentPath
)
{
bool
result
=
true
;
...
...
@@ -135,7 +176,6 @@ bool UniboardSankoreTransition::updateSankoreHRef(QString& sankoreDocumentPath)
for
(
fileInfo
=
fileInfoList
.
begin
();
fileInfo
!=
fileInfoList
.
end
()
&&
result
;
fileInfo
+=
1
)
{
if
(
fileInfo
->
fileName
().
endsWith
(
"svg"
)){
qDebug
()
<<
fileInfo
->
absolutePath
();
QString
path
=
fileInfo
->
absolutePath
()
+
"/"
+
fileInfo
->
fileName
();
result
=
checkPage
(
path
);
}
...
...
@@ -166,6 +206,8 @@ void UniboardSankoreTransition::executeTransition()
QString
sankoreDocumentPath
=
sankoreDocumentDirectory
+
"/"
+
sankoreDocumentName
;
result
=
UBFileSystemUtils
::
copyDir
(
fileInfo
->
filePath
(),
sankoreDocumentPath
);
result
&=
updateSankoreHRef
(
sankoreDocumentPath
);
QString
sankoreWidgetPath
=
sankoreDocumentDirectory
+
"/"
+
sankoreDocumentName
+
"/widgets"
;
result
&=
updateIndexWidget
(
sankoreWidgetPath
);
}
}
...
...
@@ -175,6 +217,10 @@ void UniboardSankoreTransition::executeTransition()
UBFileSystemUtils
::
deleteDir
(
backupDestinationPath
);
}
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
(
mUniboardSourceDirectory
);
}
...
...
src/transition/UniboardSankoreTransition.h
View file @
33644150
...
...
@@ -41,6 +41,8 @@ public:
void
documentTransition
();
bool
checkPage
(
QString
&
sankorePagePath
);
bool
updateSankoreHRef
(
QString
&
sankoreDocumentPath
);
bool
checkWidget
(
QString
&
sankoreWidgetPath
);
bool
updateIndexWidget
(
QString
&
sankoreWidgetPath
);
void
executeTransition
();
...
...
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