From 4aed2c8219774f5d797760606b8489a92ddc5163 Mon Sep 17 00:00:00 2001 From: toma Date: Wed, 25 Nov 2009 17:56:58 +0000 Subject: Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features. BUG:215923 git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdebase@1054174 283d02a7-25f6-0310-bc7c-ecb5cbfe19da --- kate/data/Makefile.am | 18 +++++ kate/data/externaltools | 77 ++++++++++++++++++++ kate/data/kate-2.4.upd | 7 ++ kate/data/kate.desktop | 95 ++++++++++++++++++++++++ kate/data/kateplugin.desktop | 89 +++++++++++++++++++++++ kate/data/katerc | 2 + kate/data/kateui.rc | 168 +++++++++++++++++++++++++++++++++++++++++++ kate/data/kwrite.desktop | 111 ++++++++++++++++++++++++++++ kate/data/kwriteui.rc | 95 ++++++++++++++++++++++++ kate/data/tips | 122 +++++++++++++++++++++++++++++++ 10 files changed, 784 insertions(+) create mode 100644 kate/data/Makefile.am create mode 100644 kate/data/externaltools create mode 100644 kate/data/kate-2.4.upd create mode 100644 kate/data/kate.desktop create mode 100644 kate/data/kateplugin.desktop create mode 100644 kate/data/katerc create mode 100644 kate/data/kateui.rc create mode 100644 kate/data/kwrite.desktop create mode 100644 kate/data/kwriteui.rc create mode 100644 kate/data/tips (limited to 'kate/data') diff --git a/kate/data/Makefile.am b/kate/data/Makefile.am new file mode 100644 index 000000000..77bba0d1d --- /dev/null +++ b/kate/data/Makefile.am @@ -0,0 +1,18 @@ +servicetypedir = $(kde_servicetypesdir) +servicetype_DATA = kateplugin.desktop + +xdg_apps_DATA = kate.desktop kwrite.desktop + +rckatedir = $(kde_datadir)/kate +rckate_DATA = kateui.rc externaltools + +rckwritedir = $(kde_datadir)/kwrite +rckwrite_DATA = kwriteui.rc + +tipdir = $(kde_datadir)/kate +tip_DATA = tips + +updatedir = $(kde_datadir)/kconf_update +update_DATA = kate-2.4.upd + +kde_conf_DATA = katerc diff --git a/kate/data/externaltools b/kate/data/externaltools new file mode 100644 index 000000000..19d931976 --- /dev/null +++ b/kate/data/externaltools @@ -0,0 +1,77 @@ +[Global] +tools=externaltool_CVSLogforCurrentDocument,externaltool_CervisiaDirectoryofCurrentDocument,externaltool_CompareCurrentDocumenttoCVS,externaltool_CompareDirectoryofCurrentDocumenttoCVS,externaltool_EmailCVSDiffforCurrentDocument,---,externaltool_RunScript,---,externaltool_GoogleSelection + +[Shortcuts] +externaltool_CVSLogforCurrentDocument=Shift+F10 +externaltool_CompareCurrentDocumenttoCVS=Shift+F11 +externaltool_RunScript=Ctrl+Shift+X + +[externaltool_CVSLogforCurrentDocument] +acname=externaltool_CVSLogforCurrentDocument +cmdname=cvs-log +command=if grep %filename %directory/CVS/Entries 2>&1>/dev/null ; then\n cd %directory && cervisia -log %filename\nelse\n kdialog --title Error --msgbox "The file '%filename' is not in CVS."\nfi +executable=cervisia +icon=cervisia +mimetypes= +name=CVS Log for Current Document +save=0 + +[externaltool_CervisiaDirectoryofCurrentDocument] +acname=externaltool_CervisiaDirectoryofCurrentDocument +cmdname=cvs-directory +command=if [ -d %directory/CVS ] ; then\n cervisia %directory\nelse\n kdialog --title Error --msgbox "The directory '%directory' does not appear to be a CVS sandbox."\nfi +executable=cervisia +icon=cervisia +mimetypes= +name=Cervisia (Directory of Current Document) +save=0 + +[externaltool_CompareCurrentDocumenttoCVS] +acname=externaltool_CompareCurrentDocumenttoCVS +cmdname=cvs-diff +command=cd %directory\nif [ -d CVS ] && grep %filename CVS/Entries 2>&1 >/dev/null ; then\n cvs diff %filename|kompare -o -\nelse\n kdialog --title Error --msgbox "The file '%filename' is not in CVS."\nfi +executable=kompare +icon=kompare +mimetypes= +name=Compare Current Document to CVS +save=1 + +[externaltool_EmailCVSDiffforCurrentDocument] +acname=externaltool_EmailCVSDiffforCurrentDocument +cmdname= +command=cd %directory\nif [ -d CVS ] && grep %filename CVS/Entries > /dev/null ; then\n cvs diff -ubB %filename > $(kde-config --path tmp)%filename.diff \n kmail --composer --attach $(kde-config --path tmp)%filename.diff\nelse\n kdialog --title Error -msgbox "The file '%filename' is not in CVS"\nfi +executable=kmail +icon=kmail +mimetypes= +name=Email CVS Diff for Current Document +save=1 + +[externaltool_GoogleSelection] +acname=externaltool_GoogleSelection +cmdname=google-selection +command=[ -n "%selection" ] && kfmclient openURL "gg:%selection" +executable=kfmclient +icon=globe +mimetypes= +name=Google Selection +save=0 + +[externaltool_RunScript] +acname=externaltool_RunScript +cmdname=runscript +command=cd "%directory" && chmod u+x "%filename" && konsole -e "./%filename" +executable=konsole +icon=run +mimetypes= +name=Run Script +save=1 + +[externaltool_CompareDirectoryofCurrentDocumenttoCVS] +acname=externaltool_CompareDirectoryofCurrentDocumenttoCVS +cmdname= +command=cd %directory\nif [ -d CVS ] ; then\n cvs diff -ub |kompare -o -\nelse\n kdialog --title Error --msgbox "The directory '%directory' does not appear to be a cvs sandbox."\nfi +executable=kompare +icon=kompare +mimetypes= +name=Compare Directory of Current Document to CVS +save=0 \ No newline at end of file diff --git a/kate/data/kate-2.4.upd b/kate/data/kate-2.4.upd new file mode 100644 index 000000000..98e4537e1 --- /dev/null +++ b/kate/data/kate-2.4.upd @@ -0,0 +1,7 @@ +# kate-2.4.upd +# Update the katerc config file for v 2.4 +Id=kate2.4 +File=katerc +# Move the file list sort option into the Filelist group +Group=General,Filelist +Key=Sort Type of File List,Sort Type \ No newline at end of file diff --git a/kate/data/kate.desktop b/kate/data/kate.desktop new file mode 100644 index 000000000..4881d70d1 --- /dev/null +++ b/kate/data/kate.desktop @@ -0,0 +1,95 @@ +[Desktop Entry] +GenericName=Advanced Text Editor +GenericName[af]=Gevorderde Teks Redigeerder +GenericName[ar]=محرر النصوص المتقدم +GenericName[az]=Səciyyəvi Mətn Editoru +GenericName[be]=Адмысловы рэдактар тэксту +GenericName[bg]=Текстов редактор +GenericName[bn]=উন্নত টেক্সট সম্পাদক +GenericName[br]=Aozer skrid barek +GenericName[bs]=Napredni editor teksta +GenericName[ca]=Editor de text avançat +GenericName[cs]=Pokročilý textový editor +GenericName[csb]=Awansowóny editora tekstu +GenericName[cy]=Golygydd Testun Uwch +GenericName[da]= Avanceret teksteditor +GenericName[de]=Erweiterter Texteditor +GenericName[el]=Προχωρημένος επεξεργαστής κειμένου +GenericName[eo]=Pli bona Tekstredaktilo +GenericName[es]=Editor de texto avanzado +GenericName[et]=Võimas tekstiredaktor +GenericName[eu]=Testu editore aurreratua +GenericName[fa]=ویرایشگر متن پیشرفته +GenericName[fi]=Kehittynyt tekstieditori +GenericName[fr]=Éditeur de texte avancé +GenericName[fy]=avansearre tekstbewurker +GenericName[ga]=Ardeagarthóir Téacs +GenericName[gl]=Editor Avanzado de Textos +GenericName[he]=עורך טקסט מתקדם +GenericName[hi]=विकसित पाठ संपादक +GenericName[hr]=Napredni uređivač teksta +GenericName[hu]=Szövegszerkesztő +GenericName[is]=Þróaður textaritill +GenericName[it]=Editor di testi avanzato +GenericName[ja]=高度なテキストエディタ +GenericName[ka]=გაუმჯობესებული ტექსტური რედაქტორი +GenericName[kk]=Үздік мәтін редакторы +GenericName[km]=កម្មវិធី​វាយ​អត្ថបទ​កម្រិត​ខ្ពស់ +GenericName[lt]=Sudėtingesnis teksto redaktorius +GenericName[lv]=Teksta Redaktors +GenericName[mk]=Напреден уредувач на текст +GenericName[mn]=Текст боловсруулагч +GenericName[ms]=Editor Teks Lanjutan +GenericName[mt]=Editur tat-test avvanzat +GenericName[nb]=Avansert skriveprogram +GenericName[nds]=Verwiedert Text-Editor +GenericName[ne]=उन्नत पाठ सम्पादक +GenericName[nl]=Geavanceerde teksteditor +GenericName[nn]=Avansert skriveprogram +GenericName[pa]=ਤਕਨੀਕੀ ਪਾਠ ਦਰਸ਼ਕ +GenericName[pl]=Zaawansowany edytor tekstu +GenericName[pt]=Editor de Texto Avançado +GenericName[pt_BR]=Editor de Texto Avançado +GenericName[ro]=Editor avansat de text +GenericName[ru]=Улучшенный текстовый редактор +GenericName[rw]=Muhinduzi Ihanitse y'Umwandiko +GenericName[se]=Erenoamáš čállinprográmma +GenericName[sk]=Pokročilý textový editor +GenericName[sl]=Napredni urejevalnik besedil +GenericName[sr]=Напредни уређивач текста +GenericName[sr@Latn]=Napredni uređivač teksta +GenericName[sv]=Avancerad texteditor +GenericName[ta]=மேம்படுத்த்ப்பட்ட உரை திருத்துபவர் +GenericName[te]=ఆధునిక వచన ఎడిటర్ +GenericName[tg]=Муҳаррири матни пешрафта +GenericName[th]=โปรแกรมแก้ไขข้อความแบบขั้นสูง +GenericName[tr]=Gelişmiş Metin Düzenleyici +GenericName[tt]=Yaqşırtılğan Mäten-Tözätkeç +GenericName[uk]=Редактор текстів +GenericName[uz]=Kengaytirilgan matn tahrirchi +GenericName[uz@cyrillic]=Кенгайтирилган матн таҳрирчи +GenericName[vi]=Trình soạn văn bản nâng cao +GenericName[wa]=Aspougneu di tecse avancî +GenericName[zh_CN]=高级文本编辑器 +GenericName[zh_TW]=進階文字編輯器 +Name=Kate +Name[bn]=কেট +Name[eo]=Kodredaktilo +Name[hi]=के-एटीई +Name[ka]=რედაქტორი Kate +Name[kk]=Kate редакторы +Name[mk]=Кате +Name[ne]=क्येट +Name[pa]=ਕੇਟ +Name[te]=కేట్ +MimeType=text/plain; +Exec=kate %U +X-KDE-StartupNotify=true +X-KDE-HasTempFileOption=true +Icon=kate +Path= +DocPath=kate/index.html +Type=Application +Terminal=false +X-DCOP-ServiceType=Multi +Categories=Qt;KDE;TextEditor; diff --git a/kate/data/kateplugin.desktop b/kate/data/kateplugin.desktop new file mode 100644 index 000000000..ae1ce6abd --- /dev/null +++ b/kate/data/kateplugin.desktop @@ -0,0 +1,89 @@ +[Desktop Entry] +Type=ServiceType +X-KDE-ServiceType=Kate/Plugin +X-KDE-Derived= +Comment=Kate Plugin +Comment[af]=Kate Inplak +Comment[az]=Kate Əlavəsi +Comment[be]=Утулка для Kate +Comment[bg]=Приставка за Kate +Comment[bn]=কেট প্লাগ-ইন +Comment[br]=Lugent Kate +Comment[bs]=Kate dodatak +Comment[ca]=Connector per a Kate +Comment[cs]=Modul aplikace Kate +Comment[csb]=Plugins Kate +Comment[cy]=Ategyn Kate +Comment[da]=Kate-plugin +Comment[de]=Kate-Plugin +Comment[el]=Πρόσθετο Kate +Comment[eo]=Kodredaktila kromaĵo +Comment[es]=Complemento de Kate +Comment[et]=Kate plugin +Comment[eu]=Kate plugina +Comment[fa]=وصلۀ Kate +Comment[fi]=Kate-liitännäinen +Comment[fo]=Kate-ístingur +Comment[fr]=Module de Kate +Comment[fy]=Kate-plugin +Comment[ga]=Breiseán Kate +Comment[gl]=Plugin de Kate +Comment[he]=תוסף ל־Kate +Comment[hi]=के-एटीई प्लगइन +Comment[hr]=Kate dodatak +Comment[hu]=Kate bővítőmodul +Comment[is]=Kate íforrit +Comment[it]=Plugin di Kate +Comment[ja]=Kate プラグイン +Comment[ka]=Kate–ს პლაგინი +Comment[kk]=Kate модулі +Comment[km]=កម្មវិធី​ជំនួយ Kate +Comment[ko]=셸 명령 플러그인 +Comment[lo]=ປັລກອິນຂອງ Kate +Comment[lt]=Kate priedas +Comment[lv]=Kate spraudnis +Comment[mk]=Приклучок за Кате +Comment[mn]=Kate-Plugin +Comment[ms]=Plugin Kate +Comment[mt]=Plagin ta' Kate +Comment[nb]=Kate-programtillegg +Comment[nds]=Kate-Plugin +Comment[ne]=क्येट प्लगइन +Comment[nl]=Kate-plugin +Comment[nn]=Kate-programtillegg +Comment[nso]=Tsenyo ya Kate +Comment[pa]=ਕੇਟ ਪਲੱਗਇਨ +Comment[pl]=Wtyczka Kate +Comment[pt]='Plugin' do Kate +Comment[pt_BR]=Plug-in do Kate +Comment[ro]=Modul Kate +Comment[ru]=Модуль Kate +Comment[rw]=Icomeka rya Kate +Comment[se]=Kate-lassemoduvla +Comment[sk]=Modul Kate +Comment[sl]=Vstavek za Kate +Comment[sr]=Kate-ин прикључак +Comment[sr@Latn]=Kate-in priključak +Comment[ss]=I-plugin ye Kate +Comment[sv]=Kate-insticksprogram +Comment[ta]=Kபதிப்பான் செருகல் +Comment[te]=కేట్ ప్లగిన్ +Comment[tg]=Мутассалкунандаи Kate +Comment[th]=ปลั้กอินของ Kate +Comment[tr]=Kate Eklentisi +Comment[tt]=Kate Östämäse +Comment[uk]=Втулок Kate +Comment[uz]=Kate uchun plagin +Comment[uz@cyrillic]=Kate учун плагин +Comment[vi]=Trình bổ sung cho Kate +Comment[wa]=Tchôke divins di Kate +Comment[xh]=Iplagi efakiweyo ye Kate +Comment[zh_CN]=Kate 插件 +Comment[zh_TW]=Kate 外掛程式 +Comment[zu]=I-Plugin ye-Kate + +[PropertyDef::X-Kate-Version] +Type=QString + +[PropertyDef::X-Kate-PluginName] +Type=QString diff --git a/kate/data/katerc b/kate/data/katerc new file mode 100644 index 000000000..331a30496 --- /dev/null +++ b/kate/data/katerc @@ -0,0 +1,2 @@ +[KNewStuff] +ProvidersUrl=http://kate.kde.org/share/providers.xml \ No newline at end of file diff --git a/kate/data/kateui.rc b/kate/data/kateui.rc new file mode 100644 index 000000000..27df00662 --- /dev/null +++ b/kate/data/kateui.rc @@ -0,0 +1,168 @@ + + + + + &File + + + + + + + + + + + + + + + + + + + + + + + + + + + &Edit + + + + + + + + + + + &Document + + + + + + &View + + + + + + &Tools + + + + + + + Sess&ions + + + + + + + + + + + &Settings + + + + + + + + + + + + &Window + + + + + + + + + + + + + + &Help + + + + + + + + + + + + +Main Toolbar + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/kate/data/kwrite.desktop b/kate/data/kwrite.desktop new file mode 100644 index 000000000..022c6e4ce --- /dev/null +++ b/kate/data/kwrite.desktop @@ -0,0 +1,111 @@ +[Desktop Entry] +GenericName=Text Editor +GenericName[af]=Teks Redigeerder +GenericName[az]=Mətn Editoru +GenericName[be]=Тэкставы рэдактар +GenericName[bg]=Текстов редактор +GenericName[bn]=টেক্সট সম্পাদক +GenericName[br]=Aozer skrid +GenericName[bs]=Tekst editor +GenericName[ca]=Editor de text +GenericName[cs]=Textový editor +GenericName[csb]=Tekstowi editora +GenericName[cy]=Golygydd Testun +GenericName[da]= Teksteditor +GenericName[de]=Texteditor +GenericName[el]=Επεξεργαστής κειμένου +GenericName[eo]=Tekstredaktilo +GenericName[es]=Editor de texto +GenericName[et]=Tekstiredaktor +GenericName[eu]=Testu editorea +GenericName[fa]=ویرایشگر متن +GenericName[fi]=Tekstieditori +GenericName[fo]=Tekstritil +GenericName[fr]=Éditeur de texte +GenericName[fy]=Tekstbewurker +GenericName[ga]=Eagarthóir Téacs +GenericName[gl]=Editor de Textos +GenericName[he]=עורך טקסט +GenericName[hi]=पाठ संपादक +GenericName[hr]=Uređivač teksta +GenericName[hsb]=Wobdźěłar tekstow +GenericName[hu]=Szövegszerkesztő +GenericName[is]=Textaritill +GenericName[it]=Editor di testi +GenericName[ja]=テキストエディタ +GenericName[ka]=ტექსტური რედაქტორი +GenericName[kk]=Мәтін редакторы +GenericName[km]=កម្មវិធី​វាយ​អត្ថបទ +GenericName[ko]=텍스트 편집기 +GenericName[lo]=ເຄື່ອງມືແກ້ໄຂຂໍ້ຄວາມ +GenericName[lt]=Teksto redaktorius +GenericName[lv]=Teksta Redaktors +GenericName[mk]=Уредувач на текст +GenericName[mn]=Текст боловсруулагч +GenericName[ms]=Penyunting Teks +GenericName[mt]=Editur tat-test +GenericName[nb]=Skriveprogram +GenericName[nds]=Texteditor +GenericName[ne]=पाठ सम्पादक +GenericName[nl]=Teksteditor +GenericName[nn]=Skriveprogram +GenericName[nso]=Mofetosi wa Sengwalwana +GenericName[pa]=ਪਾਠ ਸੰਪਾਦਕ +GenericName[pl]=Edytor tekstu +GenericName[pt]=Editor de Texto +GenericName[pt_BR]=Editor de Texto +GenericName[ro]=Editor de text +GenericName[ru]=Текстовый редактор +GenericName[rw]=Muhinduzi Umwandiko +GenericName[se]=Čállinprográmma +GenericName[sk]=Textový editor +GenericName[sl]=Urejevalnik besedil +GenericName[sr]=Уређивач текста +GenericName[sr@Latn]=Uređivač teksta +GenericName[ss]=Sihleli sembhalo +GenericName[sv]=Texteditor +GenericName[ta]=உரை தொகுப்பாளர் +GenericName[te]=వచన ఎడిటర్ +GenericName[tg]=Муҳаррири матн +GenericName[th]=โปรแกรมแก้ไขข้อความ +GenericName[tr]=Metin Düzenleyici +GenericName[tt]=Mäten Tözätkeçe +GenericName[uk]=Редактор текстів +GenericName[uz]=Matn tahrirchi +GenericName[uz@cyrillic]=Матн таҳрирчи +GenericName[ven]=Musengulusi wa Manwalwa +GenericName[vi]=Trình soạn văn bản +GenericName[wa]=Aspougneu di tecse +GenericName[xh]=Umhleli Wombhalo +GenericName[zh_CN]=文本编辑器 +GenericName[zh_TW]=文字編輯器 +GenericName[zu]=Umlungisi wombhalo +Name=KWrite +Name[af]=Kskryf +Name[bn]=কে-রাইট +Name[eo]=Malnova simpla kodredaktilo +Name[fo]=KSkriva +Name[hi]=के-राइट +Name[ka]=რედაქტორი KWrite +Name[kk]=KWrite редакторы +Name[lo]=Kwrite +Name[mn]=Кврайт +Name[ne]=केडीई राइट +Name[nso]=KNgwala +Name[pa]=ਕੇ-ਲੇਖਕ +Name[rw]=K-Kwandika +Name[sv]=Kwrite +Name[te]=కెవ్రైట్ +Name[tg]=Навиштори K +Name[ven]=Nwala ha K +MimeType=text/plain; +Exec=kwrite %U +X-KDE-StartupNotify=true +Icon=kwrite +Path= +DocPath=kwrite/index.html +Type=Application +Terminal=false +InitialPreference=8 +X-DCOP-ServiceType=Multi +Categories=Qt;KDE;TextEditor; diff --git a/kate/data/kwriteui.rc b/kate/data/kwriteui.rc new file mode 100644 index 000000000..7272cb4fa --- /dev/null +++ b/kate/data/kwriteui.rc @@ -0,0 +1,95 @@ + + + + + &File + + + + + + + + + + + + + + + + + + + + + + &Edit + + + + + + + + + + + + &View + + + + + + &Tools + + + + + + &Settings + + + + + + + + + + + + &Help + + + + + + + + + + +Main Toolbar + + + + + + + + + + + + + + + + + + + + + diff --git a/kate/data/tips b/kate/data/tips new file mode 100644 index 000000000..aaee34424 --- /dev/null +++ b/kate/data/tips @@ -0,0 +1,122 @@ + + +

Kate comes with a nice set of plugins, providing simple +and advanced features of all sorts.

+

You can enable/disable plugins to suit your needs in the configuration dialog, +choose Settings ->configure to launch that.

+ +
+ + +

You can swap the characters on each side of the cursor just by pressing +Ctrl+T

+ +
+ + +

You can export the current document as a HTML file, including +syntax highlighting.

+

Just choose File -> Export -> HTML...

+ +
+ + +

You can split the Kate editor as many times as you like and +in either direction. Each frame has its own status bar and +can display any open document.

+

Just choose
View -> Split [ Horizontal | Vertical ]

+ +
+ + +

You can drag the Tool views (File List and File Selector) +to any side that you want them in Kate, or stack them, or even tear them off the +main window.

+ +
+ + +

Kate has a built-in terminal emulator, just click on "Terminal" at +the bottom to show or hide it as you desire.

+ +
+ + +

Kate can highlight the current line with a +
different +background color.|

+

You can set the color in the Colors page of the configuration +dialog.

+ +
+ + +

You can open the currently edited file in any other application from within +Kate.

+

Choose File -> Open With for the list of programs +configured +for the document type. There is also an option Other... to +choose any application on your system.

+ +
+ + +

You can configure the editor to always display the line numbers and/or +bookmark panes when started from the View Defaults page of the +configuration dialog.

+ +
+ + +

You can download new or updated Syntax highlight definitions from +the Highlighting page in the configuration dialog.

+

Just click the Download... button on the Highlight Modes +tab (You have to be online, of course...).

+ +
+ + +

You can cycle through all open documents by pressing Alt+Left +or Alt+Right. The next/previous document will immediately be displayed +in the active frame.

+ +
+ + +

You can do cool sed-like regular expression replacements using Command Line.

+

For example, press F7 and enter s /oldtext/newtext/g +to replace "oldtext" with "newtext" throughout the current +line.

+ +
+ + +

You can repeat your last search by just pressing F3, or +Shift+F3 if you want to search backwards.

+ +
+ + +

You can filter the files displayed in the File Selector tool view. +

+

Simply enter your filter in the filter entry at the bottom, for example: +*.html *.php if you only want to see HTML and PHP files in the +current folder.

+

The File Selector will even remember your filters for you.

+ +
+ + +

You can have two views - or even more - of the same document in Kate. Editing +in either will be reflected in both.

+

So if you find yourself scrolling up and down to look at text at the other +end of a document, just press Ctrl+Shift+T to split +horizontally.

+ +
+ + +

Press F8 or Shift+F8 to switch to the +next/previous frame.

+ +
-- cgit v1.2.3