Your ROOT_URL in app.ini is http://git.osmesh.ru/ but you are visiting http://91.221.70.94:3000/MOS/OpenBoard/commit/569cbb7ab4a9a24a40cd8b80c639f8066ce275ca?style=split&whitespace=show-all
You should set ROOT_URL correctly, otherwise the web may not work correctly.
4 changed files with
6 additions and
6 deletions
resources/forms/mainWindow.ui
resources/forms/trapFlash.ui
src/gui/UBWebToolsPalette.cpp
src/web/UBWebController.cpp
@ -1497,16 +1497,16 @@
<string>Configure Podcast Recording</string>
<string>Configure Podcast Recording</string>
</property>
</property>
</action>
</action>
<action name="actionWebTrapFlash ">
<action name="actionCaptureWebContent ">
<property name="icon">
<property name="icon">
<iconset resource="../OpenBoard.qrc">
<iconset resource="../OpenBoard.qrc">
<normaloff>:/images/toolbar/addToolToLibrary.png</normaloff>:/images/toolbar/addToolToLibrary.png</iconset>
<normaloff>:/images/toolbar/addToolToLibrary.png</normaloff>:/images/toolbar/addToolToLibrary.png</iconset>
</property>
</property>
<property name="text">
<property name="text">
<string>Flash Trap </string>
<string>Capture Wep Content </string>
</property>
</property>
<property name="toolTip">
<property name="toolTip">
<string>Trap Flash Content</string>
<string>Capture Web Content</string>
</property>
</property>
</action>
</action>
<action name="actionWebTrap">
<action name="actionWebTrap">
@ -19,7 +19,7 @@
<item>
<item>
<widget class="QLabel" name="selectFlashLabel">
<widget class="QLabel" name="selectFlashLabel">
<property name="text">
<property name="text">
<string>Select a flash to trap </string>
<string>Select a content to capture </string>
</property>
</property>
</widget>
</widget>
</item>
</item>
@ -49,7 +49,7 @@ UBWebToolsPalette::UBWebToolsPalette(QWidget *parent)
{
{
QList < QAction * > actions ;
QList < QAction * > actions ;
actions < < UBApplication : : mainWindow - > actionWebTrapFlash ;
actions < < UBApplication : : mainWindow - > actionCaptureWebContent ;
actions < < UBApplication : : mainWindow - > actionWebCustomCapture ;
actions < < UBApplication : : mainWindow - > actionWebCustomCapture ;
actions < < UBApplication : : mainWindow - > actionWebWindowCapture ;
actions < < UBApplication : : mainWindow - > actionWebWindowCapture ;
@ -304,7 +304,7 @@ void UBWebController::setupPalettes()
UBApplication : : boardController - > paletteManager ( ) - > mKeyboardPalette , SLOT ( onDeactivated ( ) ) ) ;
UBApplication : : boardController - > paletteManager ( ) - > mKeyboardPalette , SLOT ( onDeactivated ( ) ) ) ;
# endif
# endif
connect ( mMainWindow - > actionWebTrapFlash , SIGNAL ( triggered ( ) ) , this , SLOT ( trapFlash ( ) ) ) ;
connect ( mMainWindow - > actionCaptureWebContent , SIGNAL ( triggered ( ) ) , this , SLOT ( trapFlash ( ) ) ) ;
connect ( mMainWindow - > actionWebCustomCapture , SIGNAL ( triggered ( ) ) , this , SLOT ( customCapture ( ) ) ) ;
connect ( mMainWindow - > actionWebCustomCapture , SIGNAL ( triggered ( ) ) , this , SLOT ( customCapture ( ) ) ) ;
connect ( mMainWindow - > actionWebWindowCapture , SIGNAL ( triggered ( ) ) , this , SLOT ( captureWindow ( ) ) ) ;
connect ( mMainWindow - > actionWebWindowCapture , SIGNAL ( triggered ( ) ) , this , SLOT ( captureWindow ( ) ) ) ;
connect ( mMainWindow - > actionWebOEmbed , SIGNAL ( triggered ( ) ) , this , SLOT ( captureoEmbed ( ) ) ) ;
connect ( mMainWindow - > actionWebOEmbed , SIGNAL ( triggered ( ) ) , this , SLOT ( captureoEmbed ( ) ) ) ;