Your ROOT_URL in app.ini is http://git.osmesh.ru/ but you are visiting http://91.221.70.94:3000/MOS/OpenBoard/commit/812c3cafce538d542da618ec09926ef03f180a85?style=split&whitespace=show-all
You should set ROOT_URL correctly, otherwise the web may not work correctly.
2 changed files with
5 additions and
5 deletions
src/board/UBFeaturesController.h
src/gui/UBFeaturesWidget.h
@ -59,7 +59,7 @@ public:
UBFeaturesController ( QWidget * parentWidget ) ;
UBFeaturesController ( QWidget * parentWidget ) ;
virtual ~ UBFeaturesController ( ) ;
virtual ~ UBFeaturesController ( ) ;
const QList < UBFeature > & getFeatures ( ) const { return featuresList ; }
QList < UBFeature > * getFeatures ( ) const { return featuresList ; }
const QString & getRootPath ( ) const { return rootPath ; }
const QString & getRootPath ( ) const { return rootPath ; }
@ -89,7 +89,7 @@ private:
static UBFeatureElementType fileTypeFromUrl ( const QString & path ) ;
static UBFeatureElementType fileTypeFromUrl ( const QString & path ) ;
QList < UBFeature > featuresList ;
QList < UBFeature > * featuresList ;
UBFeature * rootElement ;
UBFeature * rootElement ;
QString mUserAudioDirectoryPath ;
QString mUserAudioDirectoryPath ;
@ -132,7 +132,7 @@ private:
UBFeature shapesElement ;
UBFeature shapesElement ;
UBFeature searchElement ;
UBFeature searchElement ;
QSet < QString > favoriteSet ;
QSet < QString > * favoriteSet ;
} ;
} ;
@ -205,9 +205,9 @@ public:
Qt : : DropActions supportedDropActions ( ) const { return Qt : : MoveAction | Qt : : CopyAction ; }
Qt : : DropActions supportedDropActions ( ) const { return Qt : : MoveAction | Qt : : CopyAction ; }
void setFeaturesList ( const QList < UBFeature > & flist ) { featuresList = flist ; }
void setFeaturesList ( QList < UBFeature > * flist ) { featuresList = flist ; }
private :
private :
QList < UBFeature > featuresList ;
QList < UBFeature > * featuresList ;
} ;
} ;
class UBFeaturesProxyModel : public QSortFilterProxyModel
class UBFeaturesProxyModel : public QSortFilterProxyModel