Your ROOT_URL in app.ini is http://git.osmesh.ru/ but you are visiting http://91.221.70.94:3000/MOS/OpenBoard/commit/43407ddd0cc2bde79261c90e2dbc34e1b45277f1
You should set ROOT_URL correctly, otherwise the web may not work correctly.
3 changed files with
15 additions and
4 deletions
resources/etc/Tutorial/tutorial_en/index.html
resources/etc/Tutorial/tutorial_fr/index.html
src/adaptors/UBSvgSubsetAdaptor.cpp
@ -45,7 +45,7 @@ body {
< div class = "g200" >
< a href = "http://planete.sankore.org/xwiki/bin/view/Pedagogique/User+manual+EN+2.00" target = "_blank" > < img src = "images/manuel.png" style = "width: 188px; border: 1px solid #999" / > < / a >
< br / > < br / > < a href = "http://planete.sankore.org/xwiki/bin/view/Pedagogique/Le+manuel+qui+manquait " target = "_blank" >
< br / > < br / > < a href = "http://planete.sankore.org/xwiki/bin/view/Pedagogique/User+manual+EN+2.00 " target = "_blank" >
< h5 style = "text-align: center;" > The user manual< / h5 > < / a >
< / div >
@ -45,7 +45,7 @@ body {
< div class = "g200" >
< a href = "http://planete.sankore.org/xwiki/bin/view/Pedagogique/Le+manuel+du+logiciel+FR+2.00" target = "_blank" > < img src = "images/manuel.png" style = "width: 188px; border: 1px solid #999" / > < / a >
< br / > < br / > < a href = "http://planete.sankore.org/xwiki/bin/view/Pedagogique/Le+manuel+qui+manquait " target = "_blank" >
< br / > < br / > < a href = "http://planete.sankore.org/xwiki/bin/view/Pedagogique/Le+manuel+du+logiciel+FR+2.00 " target = "_blank" >
< h5 style = "text-align: center;" > Le manuel d'utilisation< / h5 > < / a >
< / div >
@ -1025,6 +1025,8 @@ UBGraphicsGroupContainerItem* UBSvgSubsetAdaptor::UBSvgSubsetReader::readGroup()
UBGraphicsGroupContainerItem * curGroup = readGroup ( ) ;
if ( curGroup )
groupContainer . append ( curGroup ) ;
else
qDebug ( ) < < " this is an error " ;
}
else if ( mXmlReader . name ( ) = = tElement )
{
@ -1042,7 +1044,10 @@ UBGraphicsGroupContainerItem* UBSvgSubsetAdaptor::UBSvgSubsetReader::readGroup()
}
else // item
{
groupContainer . append ( curItem ) ;
if ( curItem )
groupContainer . append ( curItem ) ;
else
qDebug ( ) < < " this is an error " ;
}
} else {
mXmlReader . skipCurrentElement ( ) ;
@ -1078,7 +1083,10 @@ UBGraphicsGroupContainerItem* UBSvgSubsetAdaptor::UBSvgSubsetReader::readGroup()
if ( pStrokesGroup )
{
QGraphicsItem * strokeGroup = qgraphicsitem_cast < QGraphicsItem * > ( pStrokesGroup ) ;
groupContainer . append ( strokeGroup ) ;
if ( strokeGroup )
groupContainer . append ( strokeGroup ) ;
else
qDebug ( ) < < " this is an error " ;
}
}
@ -1126,6 +1134,9 @@ QGraphicsItem *UBSvgSubsetAdaptor::UBSvgSubsetReader::readElementFromGroup()
QString uuid = id . right ( QUuid ( ) . toString ( ) . size ( ) ) ;
result = mScene - > itemForUuid ( QUuid ( uuid ) ) ;
if ( ! result )
qDebug ( ) < < " uuid " < < uuid ;
mXmlReader . skipCurrentElement ( ) ;
mXmlReader . readNext ( ) ;