Your ROOT_URL in app.ini is https://scm.trinitydesktop.org/gitea/ but you are visiting https://scm.trinitydesktop.net/gitea/TDE/tdevelop/src/commit/c7a22f699ea0a8dedc2403617e83f6eeb7f6acc6/languages/ruby/debugger/kdevrbdebugger.rc You should set ROOT_URL correctly, otherwise the web may not work correctly.
tdevelop/languages/ruby/debugger/kdevrbdebugger.rc

69 lines
1.8 KiB

<!DOCTYPE kpartgui SYSTEM "kpartgui.dtd">
<kpartgui name="KDevRbDebugger" version="10">
<MenuBar>
<Menu name="debug">
<text>&amp;Debug</text>
<Action name="debug_run" group="debug"/>
<Action name="debug_stop" group="debug"/>
<Action name="debug_pause" group="debug"/>
<Action name="debug_runtocursor" group="debug"/>
<Separator group="debug"/>
<Action name="debug_stepover" group="debug"/>
<Action name="debug_stepinto" group="debug"/>
<Action name="debug_stepout" group="debug"/>
<Separator group="debug"/>
<Action name="debug_toggle_breakpoint" group="debug"/>
<Action name="debug_disable_breakpoint" group="debug"/>
<Separator group="debug"/>
</Menu>
</MenuBar>
<ToolBar name="debugToolBar">
<text>Debugger Toolbar</text>
<Action name="debug_run"/>
<Action name="debug_stepover"/>
<Action name="debug_stepinto"/>
<Action name="debug_stepout"/>
<WeakSeparator/>
</ToolBar>
<State name="stopped">
<enable>
<Action name="debug_run"/>
</enable>
<disable>
<Action name="debug_stop"/>
<Action name="debug_pause"/>
<Action name="debug_runtocursor"/>
<Action name="debug_stepover"/>
<Action name="debug_stepinto"/>
<Action name="debug_stepout"/>
</disable>
</State>
<State name="paused">
<enable>
<Action name="debug_run"/>
<Action name="debug_stop"/>
<Action name="debug_runtocursor"/>
<Action name="debug_stepover"/>
<Action name="debug_stepinto"/>
<Action name="debug_stepout"/>
</enable>
<disable>
<Action name="debug_pause"/>
</disable>
</State>
<State name="active">
<enable>
<Action name="debug_pause"/>
<Action name="debug_stop"/>
</enable>
<disable>
<Action name="debug_run"/>
<Action name="debug_runtocursor"/>
<Action name="debug_stepover"/>
<Action name="debug_stepinto"/>
<Action name="debug_stepout"/>
</disable>
</State>
</kpartgui>