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
2a9e0247
Commit
2a9e0247
authored
Aug 09, 2011
by
Anatoly Mihalchenko
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'master' of github.com:Sankore/Sankore-3.1
parents
7c3a440f
80412292
Changes
3
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
346 additions
and
305 deletions
+346
-305
script.js
resources/library/interactive/iCell.wgt/js/script.js
+322
-285
widget.html
resources/library/interactive/iCell.wgt/widget.html
+1
-1
UBDocumentPublisher.cpp
src/adaptors/publishing/UBDocumentPublisher.cpp
+23
-19
No files found.
resources/library/interactive/iCell.wgt/js/script.js
View file @
2a9e0247
This diff is collapsed.
Click to expand it.
resources/library/interactive/iCell.wgt/widget.html
View file @
2a9e0247
...
@@ -76,7 +76,7 @@
...
@@ -76,7 +76,7 @@
</map>
</map>
<map
name=
"mapOrganite"
id=
"mapOrganite"
>
<map
name=
"mapOrganite"
id=
"mapOrganite"
>
<area
shape=
"circle"
coords=
"364,477,19"
onclick=
"
t_div=setInterval(cacherDIV,50
)"
alt=
""
/>
<area
shape=
"circle"
coords=
"364,477,19"
onclick=
"
cacherDivFunction(
)"
alt=
""
/>
<area
shape=
"circle"
coords=
"416,477,19"
onclick=
"infos()"
alt=
""
/>
<area
shape=
"circle"
coords=
"416,477,19"
onclick=
"infos()"
alt=
""
/>
<area
shape=
"circle"
coords=
"469,477,19"
alt=
""
onclick=
"loupe_interact()"
/>
<area
shape=
"circle"
coords=
"469,477,19"
alt=
""
onclick=
"loupe_interact()"
/>
<area
shape=
"poly"
coords=
"328,337,281,311,213,277,159,277,131,228,111,227,83,262,70,193,66,153,120,99,229,104,233,83,328,67,334,81,307,121,350,156,409,220,391,316"
alt=
""
onclick=
"adn()"
/>
<area
shape=
"poly"
coords=
"328,337,281,311,213,277,159,277,131,228,111,227,83,262,70,193,66,153,120,99,229,104,233,83,328,67,334,81,307,121,350,156,409,220,391,316"
alt=
""
onclick=
"adn()"
/>
...
...
src/adaptors/publishing/UBDocumentPublisher.cpp
View file @
2a9e0247
...
@@ -574,27 +574,31 @@ void UBDocumentPublisher::onFinished(QNetworkReply *reply)
...
@@ -574,27 +574,31 @@ void UBDocumentPublisher::onFinished(QNetworkReply *reply)
// Now we isolate every cookie value
// Now we isolate every cookie value
QStringList
qslCookieVals
=
qsCookieValue
.
split
(
"; "
);
QStringList
qslCookieVals
=
qsCookieValue
.
split
(
"; "
);
bool
bTransferOk
=
false
;
bool
bTransferOk
=
false
;
for
(
int
j
=
0
;
j
<=
qslCookieVals
.
size
();
j
++
)
{
for
(
int
j
=
0
;
j
<
qslCookieVals
.
size
();
j
++
)
if
(
qslCookieVals
.
at
(
j
).
startsWith
(
"assetStatus"
))
{
{
qDebug
()
<<
j
;
QStringList
qslAsset
=
qslCookieVals
.
at
(
j
).
split
(
"="
);
if
(
qslCookieVals
.
at
(
j
).
startsWith
(
"assetStatus"
))
if
(
qslAsset
.
at
(
1
)
==
"UPLOADED"
)
{
{
QStringList
qslAsset
=
qslCookieVals
.
at
(
j
).
split
(
"="
);
bTransferOk
=
true
;
if
(
qslAsset
.
at
(
1
)
==
"UPLOADED"
)
break
;
}
}
}
if
(
bTransferOk
)
{
UBApplication
::
showMessage
(
tr
(
"Document uploaded correctly on the web."
));
}
else
{
{
UBApplication
::
showMessage
(
tr
(
"Failed to upload document on the web."
));
bTransferOk
=
true
;
break
;
}
}
}
}
if
(
bTransferOk
)
{
UBApplication
::
showMessage
(
tr
(
"Document uploaded correctly on the web."
));
}
else
{
UBApplication
::
showMessage
(
tr
(
"Failed to upload document on the web."
));
}
reply
->
deleteLater
();
reply
->
deleteLater
();
}
}
...
...
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