Your ROOT_URL in app.ini is http://git.osmesh.ru/ but you are visiting http://91.221.70.94:3000/MOS/OpenBoard/commit/dcf9d3bed54c0a83c878c50518e55ffa965aef82?style=unified&whitespace=ignore-change
You should set ROOT_URL correctly, otherwise the web may not work correctly.
3 changed files with
4 additions and
4 deletions
src/board/UBFeaturesController.cpp
src/board/UBFeaturesController.h
src/gui/UBFeaturesWidget.cpp
@ -101,8 +101,8 @@ void UBFeaturesController::initDirectoryTree()
featuresList - > append ( trashElement ) ;
favoriteElement = UBFeature ( rootPath , QPixmap ( " :images/libpalette/FavoritesCategory.svg " ) , " Favorites " , " favorites " , FEATURE_FAVORITE ) ;
featuresList - > append ( favoriteElement ) ;
s earchElement = UBFeature ( rootPath , QPixmap ( " :images/libpalette/WebSearchCategory.svg " ) , " Web search " , mLibSearchDirectoryPath ) ;
featuresList - > append ( s earchElement ) ;
webS earchElement = UBFeature ( rootPath , QPixmap ( " :images/libpalette/WebSearchCategory.svg " ) , " Web search " , mLibSearchDirectoryPath ) ;
featuresList - > append ( webS earchElement ) ;
loadFavoriteList ( ) ;
foreach ( UBToolsManager : : UBToolDescriptor tool , tools )
@ -130,7 +130,7 @@ private:
UBFeature interactElement ;
UBFeature flashElement ;
UBFeature shapesElement ;
UBFeature s earchElement;
UBFeature webS earchElement;
QSet < QString > * favoriteSet ;
} ;
@ -116,7 +116,7 @@ UBFeaturesWidget::UBFeaturesWidget(QWidget *parent, const char *name):UBDockPale
this , SLOT ( currentSelected ( const QModelIndex & ) ) ) ; */
connect ( featuresListView , SIGNAL ( clicked ( const QModelIndex & ) ) ,
this , SLOT ( currentSelected ( const QModelIndex & ) ) ) ;
connect ( mActionBar , SIGNAL ( searchElement ( const QString & ) ) , this , SLOT ( const searchStarted ( QString & ) ) ) ;
connect ( mActionBar , SIGNAL ( searchElement ( const QString & ) ) , this , SLOT ( searchStarted ( const QString & ) ) ) ;
connect ( mActionBar , SIGNAL ( newFolderToCreate ( ) ) , this , SLOT ( createNewFolder ( ) ) ) ;
connect ( mActionBar , SIGNAL ( deleteElements ( const QMimeData & ) ) , this , SLOT ( deleteElements ( const QMimeData & ) ) ) ;
connect ( mActionBar , SIGNAL ( addToFavorite ( const QMimeData & ) ) , this , SLOT ( addToFavorite ( const QMimeData & ) ) ) ;