Your ROOT_URL in app.ini is http://git.osmesh.ru/ but you are visiting https://git.osmesh.ru/MOS/OpenBoard/commit/d452b2dd2856618e034ab09ab85fad69171e3bf7
You should set ROOT_URL correctly, otherwise the web may not work correctly.
2 changed files with
0 additions and
50 deletions
src/core/UBPersistenceManager.cpp
src/core/UBPersistenceManager.h
@ -935,47 +935,3 @@ void UBPersistenceManager::checkIfDocumentRepositoryExists()
UBApplication : : quit ( ) ;
}
}
bool UBPersistenceManager : : mayHaveVideo ( UBDocumentProxy * pDocumentProxy )
{
QDir videoDir ( pDocumentProxy - > persistencePath ( ) + " / " + UBPersistenceManager : : videoDirectory ) ;
return videoDir . exists ( ) & & videoDir . entryInfoList ( ) . length ( ) > 0 ;
}
bool UBPersistenceManager : : mayHaveAudio ( UBDocumentProxy * pDocumentProxy )
{
QDir audioDir ( pDocumentProxy - > persistencePath ( ) + " / " + UBPersistenceManager : : audioDirectory ) ;
return audioDir . exists ( ) & & audioDir . entryInfoList ( ) . length ( ) > 0 ;
}
bool UBPersistenceManager : : mayHavePDF ( UBDocumentProxy * pDocumentProxy )
{
QDir objectDir ( pDocumentProxy - > persistencePath ( ) + " / " + UBPersistenceManager : : objectDirectory ) ;
QStringList filters ;
filters < < " *.pdf " ;
return objectDir . exists ( ) & & objectDir . entryInfoList ( filters ) . length ( ) > 0 ;
}
bool UBPersistenceManager : : mayHaveSVGImages ( UBDocumentProxy * pDocumentProxy )
{
QDir imageDir ( pDocumentProxy - > persistencePath ( ) + " / " + UBPersistenceManager : : imageDirectory ) ;
QStringList filters ;
filters < < " *.svg " ;
return imageDir . exists ( ) & & imageDir . entryInfoList ( filters ) . length ( ) > 0 ;
}
bool UBPersistenceManager : : mayHaveWidget ( UBDocumentProxy * pDocumentProxy )
{
QDir widgetDir ( pDocumentProxy - > persistencePath ( ) + " / " + UBPersistenceManager : : widgetDirectory ) ;
return widgetDir . exists ( ) & & widgetDir . entryInfoList ( QDir : : Dirs ) . length ( ) > 0 ;
}
@ -109,12 +109,6 @@ class UBPersistenceManager : public QObject
bool addGraphicsWidgteToDocument ( UBDocumentProxy * mDocumentProxy , QString path , QUuid objectUuid , QString & destinationPath ) ;
bool addFileToDocument ( UBDocumentProxy * pDocumentProxy , QString path , const QString & subdir , QUuid objectUuid , QString & destinationPath , QByteArray * data = NULL ) ;
bool mayHaveVideo ( UBDocumentProxy * pDocumentProxy ) ;
bool mayHaveAudio ( UBDocumentProxy * pDocumentProxy ) ;
bool mayHavePDF ( UBDocumentProxy * pDocumentProxy ) ;
bool mayHaveSVGImages ( UBDocumentProxy * pDocumentProxy ) ;
bool mayHaveWidget ( UBDocumentProxy * pDocumentProxy ) ;
signals :
void proxyListChanged ( ) ;