Your ROOT_URL in app.ini is http://git.osmesh.ru/ but you are visiting http://91.221.70.94:3000/MOS/OpenBoard/commit/d17db2ec5b60bdea8116936bbcc0052666ea6727?style=split&whitespace=ignore-change
You should set ROOT_URL correctly, otherwise the web may not work correctly.
2 changed files with
2 additions and
1 deletions
src/core/UBApplication.cpp
src/core/UBApplicationController.cpp
@ -237,7 +237,6 @@ int UBApplication::exec(const QString& pFileToImport)
mainWindow - > actionCut - > setShortcuts ( QKeySequence : : Cut ) ;
mainWindow - > actionCut - > setShortcuts ( QKeySequence : : Cut ) ;
connect ( mainWindow - > actionBoard , SIGNAL ( triggered ( ) ) , this , SLOT ( showBoard ( ) ) ) ;
connect ( mainWindow - > actionBoard , SIGNAL ( triggered ( ) ) , this , SLOT ( showBoard ( ) ) ) ;
connect ( mainWindow - > actionBoard , SIGNAL ( triggered ( ) ) , this , SLOT ( startScript ( ) ) ) ;
connect ( mainWindow - > actionWeb , SIGNAL ( triggered ( ) ) , this , SLOT ( showInternet ( ) ) ) ;
connect ( mainWindow - > actionWeb , SIGNAL ( triggered ( ) ) , this , SLOT ( showInternet ( ) ) ) ;
connect ( mainWindow - > actionWeb , SIGNAL ( triggered ( ) ) , this , SLOT ( stopScript ( ) ) ) ;
connect ( mainWindow - > actionWeb , SIGNAL ( triggered ( ) ) , this , SLOT ( stopScript ( ) ) ) ;
connect ( mainWindow - > actionDocument , SIGNAL ( triggered ( ) ) , this , SLOT ( showDocument ( ) ) ) ;
connect ( mainWindow - > actionDocument , SIGNAL ( triggered ( ) ) , this , SLOT ( showDocument ( ) ) ) ;
@ -356,6 +356,8 @@ void UBApplicationController::showBoard()
mDisplayManager - > adjustScreens ( 0 ) ;
mDisplayManager - > adjustScreens ( 0 ) ;
emit mainModeChanged ( Board ) ;
emit mainModeChanged ( Board ) ;
UBApplication : : boardController - > freezeW3CWidgets ( false ) ;
}
}