├── LICENSE ├── Organon Handbuch.pdf ├── Organon Manual.pdf ├── README.md ├── Screenshots ├── 00 LibreOffice Design Dark.png ├── 01 LibreOffice Design Greyscale.png ├── 01 Organon Organizer.png ├── 02 OpenOffice Design OO Blue.png ├── 03 LibreOffice Design Sand.png ├── 04 Tabs Dialog.png ├── 05 Tagging in Sidebar.png ├── 06 Export Dialog.png ├── 07 Find Quotations Result.png ├── 08 Html Export Office and Firefox.png └── 09 Html Export Results.png ├── create_oxt.py ├── organon.oxt └── source ├── Addons.xcu ├── META-INF └── manifest.xml ├── description.xml ├── description ├── Handbuecher │ ├── de │ │ └── Organon Handbuch.organon │ │ │ ├── Files │ │ │ ├── odt │ │ │ │ ├── empty_file.odt │ │ │ │ ├── nr0.odt │ │ │ │ ├── nr1.odt │ │ │ │ ├── nr10.odt │ │ │ │ ├── nr11.odt │ │ │ │ ├── nr12.odt │ │ │ │ ├── nr13.odt │ │ │ │ ├── nr15.odt │ │ │ │ ├── nr16.odt │ │ │ │ ├── nr17.odt │ │ │ │ ├── nr18.odt │ │ │ │ ├── nr19.odt │ │ │ │ ├── nr2.odt │ │ │ │ ├── nr20.odt │ │ │ │ ├── nr21.odt │ │ │ │ ├── nr22.odt │ │ │ │ ├── nr23.odt │ │ │ │ ├── nr24.odt │ │ │ │ ├── nr25.odt │ │ │ │ ├── nr26.odt │ │ │ │ ├── nr27.odt │ │ │ │ ├── nr28.odt │ │ │ │ ├── nr3.odt │ │ │ │ ├── nr30.odt │ │ │ │ ├── nr31.odt │ │ │ │ ├── nr32.odt │ │ │ │ ├── nr33.odt │ │ │ │ ├── nr34.odt │ │ │ │ ├── nr36.odt │ │ │ │ ├── nr37.odt │ │ │ │ ├── nr38.odt │ │ │ │ ├── nr39.odt │ │ │ │ ├── nr4.odt │ │ │ │ ├── nr40.odt │ │ │ │ ├── nr41.odt │ │ │ │ ├── nr42.odt │ │ │ │ ├── nr43.odt │ │ │ │ ├── nr44.odt │ │ │ │ ├── nr45.odt │ │ │ │ ├── nr46.odt │ │ │ │ ├── nr47.odt │ │ │ │ ├── nr48.odt │ │ │ │ ├── nr49.odt │ │ │ │ ├── nr5.odt │ │ │ │ ├── nr50.odt │ │ │ │ ├── nr52.odt │ │ │ │ ├── nr53.odt │ │ │ │ ├── nr54.odt │ │ │ │ ├── nr55.odt │ │ │ │ ├── nr59.odt │ │ │ │ ├── nr6.odt │ │ │ │ ├── nr60.odt │ │ │ │ ├── nr61.odt │ │ │ │ ├── nr63.odt │ │ │ │ ├── nr64.odt │ │ │ │ ├── nr66.odt │ │ │ │ ├── nr69.odt │ │ │ │ ├── nr7.odt │ │ │ │ ├── nr70.odt │ │ │ │ ├── nr71.odt │ │ │ │ ├── nr72.odt │ │ │ │ ├── nr73.odt │ │ │ │ ├── nr75.odt │ │ │ │ ├── nr76.odt │ │ │ │ ├── nr77.odt │ │ │ │ ├── nr79.odt │ │ │ │ ├── nr8.odt │ │ │ │ ├── nr80.odt │ │ │ │ └── nr9.odt │ │ │ └── plain_txt │ │ │ │ ├── nr0.txt │ │ │ │ ├── nr1.txt │ │ │ │ ├── nr10.txt │ │ │ │ ├── nr11.txt │ │ │ │ ├── nr12.txt │ │ │ │ ├── nr13.txt │ │ │ │ ├── nr15.txt │ │ │ │ ├── nr16.txt │ │ │ │ ├── nr17.txt │ │ │ │ ├── nr18.txt │ │ │ │ ├── nr19.txt │ │ │ │ ├── nr2.txt │ │ │ │ ├── nr20.txt │ │ │ │ ├── nr21.txt │ │ │ │ ├── nr22.txt │ │ │ │ ├── nr23.txt │ │ │ │ ├── nr24.txt │ │ │ │ ├── nr25.txt │ │ │ │ ├── nr26.txt │ │ │ │ ├── nr27.txt │ │ │ │ ├── nr28.txt │ │ │ │ ├── nr3.txt │ │ │ │ ├── nr30.txt │ │ │ │ ├── nr31.txt │ │ │ │ ├── nr32.txt │ │ │ │ ├── nr33.txt │ │ │ │ ├── nr34.txt │ │ │ │ ├── nr36.txt │ │ │ │ ├── nr37.txt │ │ │ │ ├── nr38.txt │ │ │ │ ├── nr39.txt │ │ │ │ ├── nr4.txt │ │ │ │ ├── nr40.txt │ │ │ │ ├── nr41.txt │ │ │ │ ├── nr42.txt │ │ │ │ ├── nr43.txt │ │ │ │ ├── nr44.txt │ │ │ │ ├── nr45.txt │ │ │ │ ├── nr46.txt │ │ │ │ ├── nr47.txt │ │ │ │ ├── nr48.txt │ │ │ │ ├── nr49.txt │ │ │ │ ├── nr5.txt │ │ │ │ ├── nr50.txt │ │ │ │ ├── nr52.txt │ │ │ │ ├── nr53.txt │ │ │ │ ├── nr54.txt │ │ │ │ ├── nr55.txt │ │ │ │ ├── nr59.txt │ │ │ │ ├── nr6.txt │ │ │ │ ├── nr60.txt │ │ │ │ ├── nr61.txt │ │ │ │ ├── nr63.txt │ │ │ │ ├── nr64.txt │ │ │ │ ├── nr66.txt │ │ │ │ ├── nr69.txt │ │ │ │ ├── nr7.txt │ │ │ │ ├── nr70.txt │ │ │ │ ├── nr71.txt │ │ │ │ ├── nr72.txt │ │ │ │ ├── nr73.txt │ │ │ │ ├── nr75.txt │ │ │ │ ├── nr76.txt │ │ │ │ ├── nr77.txt │ │ │ │ ├── nr79.txt │ │ │ │ ├── nr8.txt │ │ │ │ ├── nr80.txt │ │ │ │ └── nr9.txt │ │ │ ├── Organon Handbuch.organon │ │ │ └── Settings │ │ │ ├── ElementTree.xml │ │ │ ├── error_log.txt │ │ │ ├── export_settings.txt │ │ │ ├── import_settings.txt │ │ │ ├── project_settings.txt │ │ │ └── tags.pkl │ └── en │ │ └── Organon Manual.organon │ │ ├── Files │ │ ├── odt │ │ │ ├── empty_file.odt │ │ │ ├── nr0.odt │ │ │ ├── nr1.odt │ │ │ ├── nr10.odt │ │ │ ├── nr11.odt │ │ │ ├── nr12.odt │ │ │ ├── nr13.odt │ │ │ ├── nr15.odt │ │ │ ├── nr16.odt │ │ │ ├── nr17.odt │ │ │ ├── nr18.odt │ │ │ ├── nr19.odt │ │ │ ├── nr2.odt │ │ │ ├── nr20.odt │ │ │ ├── nr21.odt │ │ │ ├── nr22.odt │ │ │ ├── nr23.odt │ │ │ ├── nr24.odt │ │ │ ├── nr25.odt │ │ │ ├── nr26.odt │ │ │ ├── nr27.odt │ │ │ ├── nr28.odt │ │ │ ├── nr29.odt │ │ │ ├── nr3.odt │ │ │ ├── nr30.odt │ │ │ ├── nr31.odt │ │ │ ├── nr32.odt │ │ │ ├── nr34.odt │ │ │ ├── nr35.odt │ │ │ ├── nr36.odt │ │ │ ├── nr37.odt │ │ │ ├── nr38.odt │ │ │ ├── nr39.odt │ │ │ ├── nr4.odt │ │ │ ├── nr40.odt │ │ │ ├── nr41.odt │ │ │ ├── nr42.odt │ │ │ ├── nr43.odt │ │ │ ├── nr45.odt │ │ │ ├── nr46.odt │ │ │ ├── nr47.odt │ │ │ ├── nr48.odt │ │ │ ├── nr5.odt │ │ │ ├── nr51.odt │ │ │ ├── nr52.odt │ │ │ ├── nr53.odt │ │ │ ├── nr54.odt │ │ │ ├── nr55.odt │ │ │ ├── nr57.odt │ │ │ ├── nr58.odt │ │ │ ├── nr59.odt │ │ │ ├── nr6.odt │ │ │ ├── nr60.odt │ │ │ ├── nr61.odt │ │ │ ├── nr63.odt │ │ │ ├── nr64.odt │ │ │ ├── nr67.odt │ │ │ ├── nr68.odt │ │ │ ├── nr69.odt │ │ │ ├── nr7.odt │ │ │ ├── nr72.odt │ │ │ ├── nr73.odt │ │ │ ├── nr74.odt │ │ │ ├── nr76.odt │ │ │ ├── nr77.odt │ │ │ ├── nr78.odt │ │ │ ├── nr79.odt │ │ │ ├── nr8.odt │ │ │ ├── nr80.odt │ │ │ ├── nr81.odt │ │ │ ├── nr83.odt │ │ │ ├── nr84.odt │ │ │ ├── nr85.odt │ │ │ └── nr9.odt │ │ └── plain_txt │ │ │ ├── nr0.txt │ │ │ ├── nr1.txt │ │ │ ├── nr10.txt │ │ │ ├── nr11.txt │ │ │ ├── nr12.txt │ │ │ ├── nr13.txt │ │ │ ├── nr15.txt │ │ │ ├── nr16.txt │ │ │ ├── nr17.txt │ │ │ ├── nr18.txt │ │ │ ├── nr19.txt │ │ │ ├── nr2.txt │ │ │ ├── nr20.txt │ │ │ ├── nr21.txt │ │ │ ├── nr22.txt │ │ │ ├── nr23.txt │ │ │ ├── nr24.txt │ │ │ ├── nr25.txt │ │ │ ├── nr26.txt │ │ │ ├── nr27.txt │ │ │ ├── nr28.txt │ │ │ ├── nr29.txt │ │ │ ├── nr3.txt │ │ │ ├── nr30.txt │ │ │ ├── nr31.txt │ │ │ ├── nr32.txt │ │ │ ├── nr34.txt │ │ │ ├── nr35.txt │ │ │ ├── nr36.txt │ │ │ ├── nr37.txt │ │ │ ├── nr38.txt │ │ │ ├── nr39.txt │ │ │ ├── nr4.txt │ │ │ ├── nr40.txt │ │ │ ├── nr41.txt │ │ │ ├── nr42.txt │ │ │ ├── nr43.txt │ │ │ ├── nr45.txt │ │ │ ├── nr46.txt │ │ │ ├── nr47.txt │ │ │ ├── nr48.txt │ │ │ ├── nr5.txt │ │ │ ├── nr51.txt │ │ │ ├── nr52.txt │ │ │ ├── nr53.txt │ │ │ ├── nr54.txt │ │ │ ├── nr55.txt │ │ │ ├── nr57.txt │ │ │ ├── nr58.txt │ │ │ ├── nr59.txt │ │ │ ├── nr6.txt │ │ │ ├── nr60.txt │ │ │ ├── nr61.txt │ │ │ ├── nr63.txt │ │ │ ├── nr64.txt │ │ │ ├── nr67.txt │ │ │ ├── nr68.txt │ │ │ ├── nr69.txt │ │ │ ├── nr7.txt │ │ │ ├── nr72.txt │ │ │ ├── nr73.txt │ │ │ ├── nr74.txt │ │ │ ├── nr76.txt │ │ │ ├── nr77.txt │ │ │ ├── nr78.txt │ │ │ ├── nr79.txt │ │ │ ├── nr8.txt │ │ │ ├── nr80.txt │ │ │ ├── nr81.txt │ │ │ ├── nr82.txt │ │ │ ├── nr83.txt │ │ │ ├── nr84.txt │ │ │ ├── nr85.txt │ │ │ └── nr9.txt │ │ ├── Organon Manual.organon │ │ └── Settings │ │ ├── ElementTree.xml │ │ ├── error_log.txt │ │ ├── export_settings.txt │ │ ├── import_settings.txt │ │ ├── project_settings.txt │ │ └── tags.pkl ├── desc_de.txt └── desc_en.txt ├── factory ├── Dialog1.xdl ├── Dialog_Sidebar.xdl ├── Factory_Sidebar.xcu ├── Sidebar.xcu ├── WindowContentFactories.xcu └── WriterWindowState.xcu ├── img ├── OrdnerGeoeffnet_16.png ├── OrdnerNeu_24.png ├── OrdnerVoll_16.png ├── Ordner_16.png ├── Organon Icons │ ├── callout.png │ ├── cancel.png │ ├── create.png │ ├── cross.png │ ├── graphic.png │ ├── info.png │ ├── knife.png │ ├── mailto.png │ ├── minus.png │ ├── plus.png │ ├── question mark.png │ ├── sc_graphicfilterpopart.png │ └── time.png ├── error.png ├── help.png ├── icon-set-colorarrows-same.png ├── icon-set-colorarrows-slightly-down.png ├── icon-set-colorarrows-slightly-up.png ├── idea.png ├── lc_save.png ├── neueDatei_24.png ├── organon icon_120.png ├── organon icon_24.png ├── organon icon_30.png ├── organon icon_30_2.png ├── organon icon_48.png ├── organon_icon_suche_30.png ├── papierkorb_leer.png ├── papierkorb_offen.png ├── punkt_blau.png ├── punkt_braun.png ├── punkt_creme.png ├── punkt_gelb.png ├── punkt_grau.png ├── punkt_gruen.png ├── punkt_hellblau.png ├── punkt_hellgrau.png ├── punkt_leer.png ├── punkt_lila.png ├── punkt_ocker.png ├── punkt_orange.png ├── punkt_pink.png ├── punkt_rostrot.png ├── punkt_rot.png ├── punkt_schwarz.png ├── punkt_tuerkis.png ├── punkt_weiss.png ├── sc_helpindex.png ├── slidezoomin_10.png ├── slidezoomout_10.png ├── trenner.png └── warning.png ├── languages ├── lang_de.py ├── lang_en.py ├── lang_it.py └── lang_it.txt ├── libs ├── libGetWheel.so └── src │ ├── getwheel.c │ └── getwheel.h ├── organon_settings.json ├── personas ├── Dark │ ├── footer.png │ └── header.png ├── Greyscale │ ├── footer.png │ └── header.png ├── OO Blue │ ├── footer.png │ └── header.png └── Sand │ ├── footer.png │ └── header.png ├── py ├── baum.py ├── bereiche.py ├── design.py ├── einstellungen.py ├── export.py ├── export2html.py ├── factory.py ├── fenster.py ├── funktionen.py ├── importX.py ├── index.py ├── konstanten.py ├── latex_export.py ├── log_organon.py ├── mausrad.py ├── menu_bar.py ├── menu_start.py ├── organizer.py ├── projects.py ├── querverweise.py ├── rawinputdata.py ├── schalter.py ├── shortcuts.py ├── sidebar.py ├── suche.py ├── tabs.py ├── tags.py ├── tools.py ├── version.py ├── werkzeug_wListe.py ├── xml_m.py └── zitate.py └── registration ├── LICENSE_af.txt ├── LICENSE_ar.txt ├── LICENSE_as.txt ├── LICENSE_ast.txt ├── LICENSE_be-BY.txt ├── LICENSE_bg.txt ├── LICENSE_bn.txt ├── LICENSE_bo.txt ├── LICENSE_br.txt ├── LICENSE_brx.txt ├── LICENSE_bs.txt ├── LICENSE_ca-XV.txt ├── LICENSE_ca.txt ├── LICENSE_cs.txt ├── LICENSE_cy.txt ├── LICENSE_da.txt ├── LICENSE_dgo.txt ├── LICENSE_dz.txt ├── LICENSE_el.txt ├── LICENSE_en-ZA.txt ├── LICENSE_eo.txt ├── LICENSE_es.txt ├── LICENSE_et.txt ├── LICENSE_eu.txt ├── LICENSE_fa.txt ├── LICENSE_fi.txt ├── LICENSE_fr.txt ├── LICENSE_ga.txt ├── LICENSE_gl.txt ├── LICENSE_gu.txt ├── LICENSE_he.txt ├── LICENSE_hi.txt ├── LICENSE_hr.txt ├── LICENSE_hu.txt ├── LICENSE_id.txt ├── LICENSE_is.txt ├── LICENSE_it.txt ├── LICENSE_ja.txt ├── LICENSE_ka.txt ├── LICENSE_kid.txt ├── LICENSE_kk.txt ├── LICENSE_km.txt ├── LICENSE_kn.txt ├── LICENSE_ko.txt ├── LICENSE_kok.txt ├── LICENSE_ks.txt ├── LICENSE_ku.txt ├── LICENSE_lt.txt ├── LICENSE_lv.txt ├── LICENSE_mai.txt ├── LICENSE_mk.txt ├── LICENSE_ml.txt ├── LICENSE_mn.txt ├── LICENSE_mni.txt ├── LICENSE_mr.txt ├── LICENSE_my.txt ├── LICENSE_nb.txt ├── LICENSE_ne.txt ├── LICENSE_nl.txt ├── LICENSE_nn.txt ├── LICENSE_nr.txt ├── LICENSE_ns.txt ├── LICENSE_oc.txt ├── LICENSE_om.txt ├── LICENSE_or.txt ├── LICENSE_pa-IN.txt ├── LICENSE_pap.txt ├── LICENSE_pl.txt ├── LICENSE_pt-BR.txt ├── LICENSE_pt.txt ├── LICENSE_ro.txt ├── LICENSE_ru.txt ├── LICENSE_rw.txt ├── LICENSE_sa-IN.txt ├── LICENSE_sat.txt ├── LICENSE_sd.txt ├── LICENSE_sh.txt ├── LICENSE_si.txt ├── LICENSE_sk.txt ├── LICENSE_sl.txt ├── LICENSE_sr.txt ├── LICENSE_ss.txt ├── LICENSE_st.txt ├── LICENSE_sv.txt ├── LICENSE_sw-TZ.txt ├── LICENSE_ta.txt ├── LICENSE_te.txt ├── LICENSE_tg.txt ├── LICENSE_th.txt ├── LICENSE_tn.txt ├── LICENSE_tr.txt ├── LICENSE_ts.txt ├── LICENSE_ug.txt ├── LICENSE_uk.txt ├── LICENSE_ur.txt ├── LICENSE_uz.txt ├── LICENSE_ve.txt ├── LICENSE_vi.txt ├── LICENSE_xh.txt ├── LICENSE_zh-CN.txt ├── LICENSE_zh-TW.txt ├── LICENSE_zu.txt ├── license_de-DE.txt ├── license_en-GB.txt └── license_en-US.txt /Organon Handbuch.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRoemer/Organon/f11cb975197fe1e37889dd6f030b13cf5c074e69/Organon Handbuch.pdf -------------------------------------------------------------------------------- /Organon Manual.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRoemer/Organon/f11cb975197fe1e37889dd6f030b13cf5c074e69/Organon Manual.pdf -------------------------------------------------------------------------------- /Screenshots/00 LibreOffice Design Dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRoemer/Organon/f11cb975197fe1e37889dd6f030b13cf5c074e69/Screenshots/00 LibreOffice Design Dark.png -------------------------------------------------------------------------------- /Screenshots/01 LibreOffice Design Greyscale.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRoemer/Organon/f11cb975197fe1e37889dd6f030b13cf5c074e69/Screenshots/01 LibreOffice Design Greyscale.png -------------------------------------------------------------------------------- /Screenshots/01 Organon Organizer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRoemer/Organon/f11cb975197fe1e37889dd6f030b13cf5c074e69/Screenshots/01 Organon Organizer.png -------------------------------------------------------------------------------- /Screenshots/02 OpenOffice Design OO Blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRoemer/Organon/f11cb975197fe1e37889dd6f030b13cf5c074e69/Screenshots/02 OpenOffice Design OO Blue.png -------------------------------------------------------------------------------- /Screenshots/03 LibreOffice Design Sand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRoemer/Organon/f11cb975197fe1e37889dd6f030b13cf5c074e69/Screenshots/03 LibreOffice Design Sand.png -------------------------------------------------------------------------------- /Screenshots/04 Tabs Dialog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRoemer/Organon/f11cb975197fe1e37889dd6f030b13cf5c074e69/Screenshots/04 Tabs Dialog.png -------------------------------------------------------------------------------- /Screenshots/05 Tagging in Sidebar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRoemer/Organon/f11cb975197fe1e37889dd6f030b13cf5c074e69/Screenshots/05 Tagging in Sidebar.png -------------------------------------------------------------------------------- /Screenshots/06 Export Dialog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRoemer/Organon/f11cb975197fe1e37889dd6f030b13cf5c074e69/Screenshots/06 Export Dialog.png -------------------------------------------------------------------------------- /Screenshots/07 Find Quotations Result.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRoemer/Organon/f11cb975197fe1e37889dd6f030b13cf5c074e69/Screenshots/07 Find Quotations Result.png -------------------------------------------------------------------------------- /Screenshots/08 Html Export Office and Firefox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRoemer/Organon/f11cb975197fe1e37889dd6f030b13cf5c074e69/Screenshots/08 Html Export Office and Firefox.png -------------------------------------------------------------------------------- /Screenshots/09 Html Export Results.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRoemer/Organon/f11cb975197fe1e37889dd6f030b13cf5c074e69/Screenshots/09 Html Export Results.png -------------------------------------------------------------------------------- /organon.oxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRoemer/Organon/f11cb975197fe1e37889dd6f030b13cf5c074e69/organon.oxt -------------------------------------------------------------------------------- /source/description/Handbuecher/de/Organon Handbuch.organon/Files/odt/empty_file.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRoemer/Organon/f11cb975197fe1e37889dd6f030b13cf5c074e69/source/description/Handbuecher/de/Organon Handbuch.organon/Files/odt/empty_file.odt -------------------------------------------------------------------------------- /source/description/Handbuecher/de/Organon Handbuch.organon/Files/odt/nr0.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRoemer/Organon/f11cb975197fe1e37889dd6f030b13cf5c074e69/source/description/Handbuecher/de/Organon Handbuch.organon/Files/odt/nr0.odt -------------------------------------------------------------------------------- /source/description/Handbuecher/de/Organon Handbuch.organon/Files/odt/nr1.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRoemer/Organon/f11cb975197fe1e37889dd6f030b13cf5c074e69/source/description/Handbuecher/de/Organon Handbuch.organon/Files/odt/nr1.odt -------------------------------------------------------------------------------- /source/description/Handbuecher/de/Organon Handbuch.organon/Files/odt/nr10.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRoemer/Organon/f11cb975197fe1e37889dd6f030b13cf5c074e69/source/description/Handbuecher/de/Organon Handbuch.organon/Files/odt/nr10.odt -------------------------------------------------------------------------------- /source/description/Handbuecher/de/Organon Handbuch.organon/Files/odt/nr11.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRoemer/Organon/f11cb975197fe1e37889dd6f030b13cf5c074e69/source/description/Handbuecher/de/Organon Handbuch.organon/Files/odt/nr11.odt -------------------------------------------------------------------------------- /source/description/Handbuecher/de/Organon Handbuch.organon/Files/odt/nr12.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRoemer/Organon/f11cb975197fe1e37889dd6f030b13cf5c074e69/source/description/Handbuecher/de/Organon Handbuch.organon/Files/odt/nr12.odt -------------------------------------------------------------------------------- /source/description/Handbuecher/de/Organon Handbuch.organon/Files/odt/nr13.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRoemer/Organon/f11cb975197fe1e37889dd6f030b13cf5c074e69/source/description/Handbuecher/de/Organon Handbuch.organon/Files/odt/nr13.odt -------------------------------------------------------------------------------- /source/description/Handbuecher/de/Organon Handbuch.organon/Files/odt/nr15.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRoemer/Organon/f11cb975197fe1e37889dd6f030b13cf5c074e69/source/description/Handbuecher/de/Organon Handbuch.organon/Files/odt/nr15.odt -------------------------------------------------------------------------------- /source/description/Handbuecher/de/Organon Handbuch.organon/Files/odt/nr16.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRoemer/Organon/f11cb975197fe1e37889dd6f030b13cf5c074e69/source/description/Handbuecher/de/Organon Handbuch.organon/Files/odt/nr16.odt -------------------------------------------------------------------------------- /source/description/Handbuecher/de/Organon Handbuch.organon/Files/odt/nr17.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRoemer/Organon/f11cb975197fe1e37889dd6f030b13cf5c074e69/source/description/Handbuecher/de/Organon Handbuch.organon/Files/odt/nr17.odt -------------------------------------------------------------------------------- /source/description/Handbuecher/de/Organon Handbuch.organon/Files/odt/nr18.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRoemer/Organon/f11cb975197fe1e37889dd6f030b13cf5c074e69/source/description/Handbuecher/de/Organon Handbuch.organon/Files/odt/nr18.odt -------------------------------------------------------------------------------- /source/description/Handbuecher/de/Organon Handbuch.organon/Files/odt/nr19.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRoemer/Organon/f11cb975197fe1e37889dd6f030b13cf5c074e69/source/description/Handbuecher/de/Organon Handbuch.organon/Files/odt/nr19.odt -------------------------------------------------------------------------------- /source/description/Handbuecher/de/Organon Handbuch.organon/Files/odt/nr2.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRoemer/Organon/f11cb975197fe1e37889dd6f030b13cf5c074e69/source/description/Handbuecher/de/Organon Handbuch.organon/Files/odt/nr2.odt -------------------------------------------------------------------------------- /source/description/Handbuecher/de/Organon Handbuch.organon/Files/odt/nr20.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRoemer/Organon/f11cb975197fe1e37889dd6f030b13cf5c074e69/source/description/Handbuecher/de/Organon Handbuch.organon/Files/odt/nr20.odt -------------------------------------------------------------------------------- /source/description/Handbuecher/de/Organon Handbuch.organon/Files/odt/nr21.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRoemer/Organon/f11cb975197fe1e37889dd6f030b13cf5c074e69/source/description/Handbuecher/de/Organon Handbuch.organon/Files/odt/nr21.odt -------------------------------------------------------------------------------- /source/description/Handbuecher/de/Organon Handbuch.organon/Files/odt/nr22.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRoemer/Organon/f11cb975197fe1e37889dd6f030b13cf5c074e69/source/description/Handbuecher/de/Organon Handbuch.organon/Files/odt/nr22.odt -------------------------------------------------------------------------------- /source/description/Handbuecher/de/Organon Handbuch.organon/Files/odt/nr23.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRoemer/Organon/f11cb975197fe1e37889dd6f030b13cf5c074e69/source/description/Handbuecher/de/Organon Handbuch.organon/Files/odt/nr23.odt -------------------------------------------------------------------------------- /source/description/Handbuecher/de/Organon Handbuch.organon/Files/odt/nr24.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRoemer/Organon/f11cb975197fe1e37889dd6f030b13cf5c074e69/source/description/Handbuecher/de/Organon Handbuch.organon/Files/odt/nr24.odt -------------------------------------------------------------------------------- /source/description/Handbuecher/de/Organon Handbuch.organon/Files/odt/nr25.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRoemer/Organon/f11cb975197fe1e37889dd6f030b13cf5c074e69/source/description/Handbuecher/de/Organon Handbuch.organon/Files/odt/nr25.odt -------------------------------------------------------------------------------- /source/description/Handbuecher/de/Organon Handbuch.organon/Files/odt/nr26.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRoemer/Organon/f11cb975197fe1e37889dd6f030b13cf5c074e69/source/description/Handbuecher/de/Organon Handbuch.organon/Files/odt/nr26.odt -------------------------------------------------------------------------------- /source/description/Handbuecher/de/Organon Handbuch.organon/Files/odt/nr27.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRoemer/Organon/f11cb975197fe1e37889dd6f030b13cf5c074e69/source/description/Handbuecher/de/Organon Handbuch.organon/Files/odt/nr27.odt -------------------------------------------------------------------------------- /source/description/Handbuecher/de/Organon Handbuch.organon/Files/odt/nr28.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRoemer/Organon/f11cb975197fe1e37889dd6f030b13cf5c074e69/source/description/Handbuecher/de/Organon Handbuch.organon/Files/odt/nr28.odt -------------------------------------------------------------------------------- /source/description/Handbuecher/de/Organon Handbuch.organon/Files/odt/nr3.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRoemer/Organon/f11cb975197fe1e37889dd6f030b13cf5c074e69/source/description/Handbuecher/de/Organon Handbuch.organon/Files/odt/nr3.odt -------------------------------------------------------------------------------- /source/description/Handbuecher/de/Organon Handbuch.organon/Files/odt/nr30.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRoemer/Organon/f11cb975197fe1e37889dd6f030b13cf5c074e69/source/description/Handbuecher/de/Organon Handbuch.organon/Files/odt/nr30.odt -------------------------------------------------------------------------------- /source/description/Handbuecher/de/Organon Handbuch.organon/Files/odt/nr31.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRoemer/Organon/f11cb975197fe1e37889dd6f030b13cf5c074e69/source/description/Handbuecher/de/Organon Handbuch.organon/Files/odt/nr31.odt -------------------------------------------------------------------------------- /source/description/Handbuecher/de/Organon Handbuch.organon/Files/odt/nr32.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRoemer/Organon/f11cb975197fe1e37889dd6f030b13cf5c074e69/source/description/Handbuecher/de/Organon Handbuch.organon/Files/odt/nr32.odt -------------------------------------------------------------------------------- /source/description/Handbuecher/de/Organon Handbuch.organon/Files/odt/nr33.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRoemer/Organon/f11cb975197fe1e37889dd6f030b13cf5c074e69/source/description/Handbuecher/de/Organon Handbuch.organon/Files/odt/nr33.odt -------------------------------------------------------------------------------- /source/description/Handbuecher/de/Organon Handbuch.organon/Files/odt/nr34.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRoemer/Organon/f11cb975197fe1e37889dd6f030b13cf5c074e69/source/description/Handbuecher/de/Organon Handbuch.organon/Files/odt/nr34.odt -------------------------------------------------------------------------------- /source/description/Handbuecher/de/Organon Handbuch.organon/Files/odt/nr36.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRoemer/Organon/f11cb975197fe1e37889dd6f030b13cf5c074e69/source/description/Handbuecher/de/Organon Handbuch.organon/Files/odt/nr36.odt -------------------------------------------------------------------------------- /source/description/Handbuecher/de/Organon Handbuch.organon/Files/odt/nr37.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRoemer/Organon/f11cb975197fe1e37889dd6f030b13cf5c074e69/source/description/Handbuecher/de/Organon Handbuch.organon/Files/odt/nr37.odt -------------------------------------------------------------------------------- /source/description/Handbuecher/de/Organon Handbuch.organon/Files/odt/nr38.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRoemer/Organon/f11cb975197fe1e37889dd6f030b13cf5c074e69/source/description/Handbuecher/de/Organon Handbuch.organon/Files/odt/nr38.odt -------------------------------------------------------------------------------- /source/description/Handbuecher/de/Organon Handbuch.organon/Files/odt/nr39.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRoemer/Organon/f11cb975197fe1e37889dd6f030b13cf5c074e69/source/description/Handbuecher/de/Organon Handbuch.organon/Files/odt/nr39.odt -------------------------------------------------------------------------------- /source/description/Handbuecher/de/Organon Handbuch.organon/Files/odt/nr4.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRoemer/Organon/f11cb975197fe1e37889dd6f030b13cf5c074e69/source/description/Handbuecher/de/Organon Handbuch.organon/Files/odt/nr4.odt -------------------------------------------------------------------------------- /source/description/Handbuecher/de/Organon Handbuch.organon/Files/odt/nr40.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRoemer/Organon/f11cb975197fe1e37889dd6f030b13cf5c074e69/source/description/Handbuecher/de/Organon Handbuch.organon/Files/odt/nr40.odt -------------------------------------------------------------------------------- /source/description/Handbuecher/de/Organon Handbuch.organon/Files/odt/nr41.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRoemer/Organon/f11cb975197fe1e37889dd6f030b13cf5c074e69/source/description/Handbuecher/de/Organon Handbuch.organon/Files/odt/nr41.odt -------------------------------------------------------------------------------- /source/description/Handbuecher/de/Organon Handbuch.organon/Files/odt/nr42.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRoemer/Organon/f11cb975197fe1e37889dd6f030b13cf5c074e69/source/description/Handbuecher/de/Organon Handbuch.organon/Files/odt/nr42.odt -------------------------------------------------------------------------------- /source/description/Handbuecher/de/Organon Handbuch.organon/Files/odt/nr43.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRoemer/Organon/f11cb975197fe1e37889dd6f030b13cf5c074e69/source/description/Handbuecher/de/Organon Handbuch.organon/Files/odt/nr43.odt -------------------------------------------------------------------------------- /source/description/Handbuecher/de/Organon Handbuch.organon/Files/odt/nr44.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRoemer/Organon/f11cb975197fe1e37889dd6f030b13cf5c074e69/source/description/Handbuecher/de/Organon Handbuch.organon/Files/odt/nr44.odt -------------------------------------------------------------------------------- /source/description/Handbuecher/de/Organon Handbuch.organon/Files/odt/nr45.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRoemer/Organon/f11cb975197fe1e37889dd6f030b13cf5c074e69/source/description/Handbuecher/de/Organon Handbuch.organon/Files/odt/nr45.odt -------------------------------------------------------------------------------- /source/description/Handbuecher/de/Organon Handbuch.organon/Files/odt/nr46.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRoemer/Organon/f11cb975197fe1e37889dd6f030b13cf5c074e69/source/description/Handbuecher/de/Organon Handbuch.organon/Files/odt/nr46.odt -------------------------------------------------------------------------------- /source/description/Handbuecher/de/Organon Handbuch.organon/Files/odt/nr47.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRoemer/Organon/f11cb975197fe1e37889dd6f030b13cf5c074e69/source/description/Handbuecher/de/Organon Handbuch.organon/Files/odt/nr47.odt -------------------------------------------------------------------------------- /source/description/Handbuecher/de/Organon Handbuch.organon/Files/odt/nr48.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRoemer/Organon/f11cb975197fe1e37889dd6f030b13cf5c074e69/source/description/Handbuecher/de/Organon Handbuch.organon/Files/odt/nr48.odt -------------------------------------------------------------------------------- /source/description/Handbuecher/de/Organon Handbuch.organon/Files/odt/nr49.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRoemer/Organon/f11cb975197fe1e37889dd6f030b13cf5c074e69/source/description/Handbuecher/de/Organon Handbuch.organon/Files/odt/nr49.odt -------------------------------------------------------------------------------- /source/description/Handbuecher/de/Organon Handbuch.organon/Files/odt/nr5.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRoemer/Organon/f11cb975197fe1e37889dd6f030b13cf5c074e69/source/description/Handbuecher/de/Organon Handbuch.organon/Files/odt/nr5.odt -------------------------------------------------------------------------------- /source/description/Handbuecher/de/Organon Handbuch.organon/Files/odt/nr50.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRoemer/Organon/f11cb975197fe1e37889dd6f030b13cf5c074e69/source/description/Handbuecher/de/Organon Handbuch.organon/Files/odt/nr50.odt -------------------------------------------------------------------------------- /source/description/Handbuecher/de/Organon Handbuch.organon/Files/odt/nr52.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRoemer/Organon/f11cb975197fe1e37889dd6f030b13cf5c074e69/source/description/Handbuecher/de/Organon Handbuch.organon/Files/odt/nr52.odt -------------------------------------------------------------------------------- /source/description/Handbuecher/de/Organon Handbuch.organon/Files/odt/nr53.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRoemer/Organon/f11cb975197fe1e37889dd6f030b13cf5c074e69/source/description/Handbuecher/de/Organon Handbuch.organon/Files/odt/nr53.odt -------------------------------------------------------------------------------- /source/description/Handbuecher/de/Organon Handbuch.organon/Files/odt/nr54.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRoemer/Organon/f11cb975197fe1e37889dd6f030b13cf5c074e69/source/description/Handbuecher/de/Organon Handbuch.organon/Files/odt/nr54.odt -------------------------------------------------------------------------------- /source/description/Handbuecher/de/Organon Handbuch.organon/Files/odt/nr55.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRoemer/Organon/f11cb975197fe1e37889dd6f030b13cf5c074e69/source/description/Handbuecher/de/Organon Handbuch.organon/Files/odt/nr55.odt -------------------------------------------------------------------------------- /source/description/Handbuecher/de/Organon Handbuch.organon/Files/odt/nr59.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRoemer/Organon/f11cb975197fe1e37889dd6f030b13cf5c074e69/source/description/Handbuecher/de/Organon Handbuch.organon/Files/odt/nr59.odt -------------------------------------------------------------------------------- /source/description/Handbuecher/de/Organon Handbuch.organon/Files/odt/nr6.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRoemer/Organon/f11cb975197fe1e37889dd6f030b13cf5c074e69/source/description/Handbuecher/de/Organon Handbuch.organon/Files/odt/nr6.odt -------------------------------------------------------------------------------- /source/description/Handbuecher/de/Organon Handbuch.organon/Files/odt/nr60.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRoemer/Organon/f11cb975197fe1e37889dd6f030b13cf5c074e69/source/description/Handbuecher/de/Organon Handbuch.organon/Files/odt/nr60.odt -------------------------------------------------------------------------------- /source/description/Handbuecher/de/Organon Handbuch.organon/Files/odt/nr61.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRoemer/Organon/f11cb975197fe1e37889dd6f030b13cf5c074e69/source/description/Handbuecher/de/Organon Handbuch.organon/Files/odt/nr61.odt -------------------------------------------------------------------------------- /source/description/Handbuecher/de/Organon Handbuch.organon/Files/odt/nr63.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRoemer/Organon/f11cb975197fe1e37889dd6f030b13cf5c074e69/source/description/Handbuecher/de/Organon Handbuch.organon/Files/odt/nr63.odt -------------------------------------------------------------------------------- /source/description/Handbuecher/de/Organon Handbuch.organon/Files/odt/nr64.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRoemer/Organon/f11cb975197fe1e37889dd6f030b13cf5c074e69/source/description/Handbuecher/de/Organon Handbuch.organon/Files/odt/nr64.odt -------------------------------------------------------------------------------- /source/description/Handbuecher/de/Organon Handbuch.organon/Files/odt/nr66.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRoemer/Organon/f11cb975197fe1e37889dd6f030b13cf5c074e69/source/description/Handbuecher/de/Organon Handbuch.organon/Files/odt/nr66.odt -------------------------------------------------------------------------------- /source/description/Handbuecher/de/Organon Handbuch.organon/Files/odt/nr69.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRoemer/Organon/f11cb975197fe1e37889dd6f030b13cf5c074e69/source/description/Handbuecher/de/Organon Handbuch.organon/Files/odt/nr69.odt -------------------------------------------------------------------------------- /source/description/Handbuecher/de/Organon Handbuch.organon/Files/odt/nr7.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRoemer/Organon/f11cb975197fe1e37889dd6f030b13cf5c074e69/source/description/Handbuecher/de/Organon Handbuch.organon/Files/odt/nr7.odt -------------------------------------------------------------------------------- /source/description/Handbuecher/de/Organon Handbuch.organon/Files/odt/nr70.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRoemer/Organon/f11cb975197fe1e37889dd6f030b13cf5c074e69/source/description/Handbuecher/de/Organon Handbuch.organon/Files/odt/nr70.odt -------------------------------------------------------------------------------- /source/description/Handbuecher/de/Organon Handbuch.organon/Files/odt/nr71.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRoemer/Organon/f11cb975197fe1e37889dd6f030b13cf5c074e69/source/description/Handbuecher/de/Organon Handbuch.organon/Files/odt/nr71.odt -------------------------------------------------------------------------------- /source/description/Handbuecher/de/Organon Handbuch.organon/Files/odt/nr72.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRoemer/Organon/f11cb975197fe1e37889dd6f030b13cf5c074e69/source/description/Handbuecher/de/Organon Handbuch.organon/Files/odt/nr72.odt -------------------------------------------------------------------------------- /source/description/Handbuecher/de/Organon Handbuch.organon/Files/odt/nr73.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRoemer/Organon/f11cb975197fe1e37889dd6f030b13cf5c074e69/source/description/Handbuecher/de/Organon Handbuch.organon/Files/odt/nr73.odt -------------------------------------------------------------------------------- /source/description/Handbuecher/de/Organon Handbuch.organon/Files/odt/nr75.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRoemer/Organon/f11cb975197fe1e37889dd6f030b13cf5c074e69/source/description/Handbuecher/de/Organon Handbuch.organon/Files/odt/nr75.odt -------------------------------------------------------------------------------- /source/description/Handbuecher/de/Organon Handbuch.organon/Files/odt/nr76.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRoemer/Organon/f11cb975197fe1e37889dd6f030b13cf5c074e69/source/description/Handbuecher/de/Organon Handbuch.organon/Files/odt/nr76.odt -------------------------------------------------------------------------------- /source/description/Handbuecher/de/Organon Handbuch.organon/Files/odt/nr77.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRoemer/Organon/f11cb975197fe1e37889dd6f030b13cf5c074e69/source/description/Handbuecher/de/Organon Handbuch.organon/Files/odt/nr77.odt -------------------------------------------------------------------------------- /source/description/Handbuecher/de/Organon Handbuch.organon/Files/odt/nr79.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRoemer/Organon/f11cb975197fe1e37889dd6f030b13cf5c074e69/source/description/Handbuecher/de/Organon Handbuch.organon/Files/odt/nr79.odt -------------------------------------------------------------------------------- /source/description/Handbuecher/de/Organon Handbuch.organon/Files/odt/nr8.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRoemer/Organon/f11cb975197fe1e37889dd6f030b13cf5c074e69/source/description/Handbuecher/de/Organon Handbuch.organon/Files/odt/nr8.odt -------------------------------------------------------------------------------- /source/description/Handbuecher/de/Organon Handbuch.organon/Files/odt/nr80.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRoemer/Organon/f11cb975197fe1e37889dd6f030b13cf5c074e69/source/description/Handbuecher/de/Organon Handbuch.organon/Files/odt/nr80.odt -------------------------------------------------------------------------------- /source/description/Handbuecher/de/Organon Handbuch.organon/Files/odt/nr9.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRoemer/Organon/f11cb975197fe1e37889dd6f030b13cf5c074e69/source/description/Handbuecher/de/Organon Handbuch.organon/Files/odt/nr9.odt -------------------------------------------------------------------------------- /source/description/Handbuecher/de/Organon Handbuch.organon/Files/plain_txt/nr0.txt: -------------------------------------------------------------------------------- 1 | Organon Handbuch 2 | 3 | Ein navigierbares Handbuch kann nach der Installation 4 | in Organon geöffnet werden. 5 | 6 | 7 | Extension für LibreOffice (LO) und OpenOffice (OO) 8 | Hinweis: Dies ist eine Beta Version. 9 | 10 | 11 | 12 | Organon ist ein Werkzeug zur Organisation von Texten. 13 | 14 | Organon ermöglicht: 15 | die Aufteilung längerer Texte in kürzere Abschnitte 16 | das Vergeben und Organisieren anhand von Schlagworten 17 | das Öffnen von Teilbereichen in Tabs 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | Der Quellcode des Projektes findet sich unter: 34 | https://github.com/XRoemer/Organon 35 | Bekannte Fehler sind hier gelistet: 36 | https://github.com/XRoemer/Organon/issues 37 | -------------------------------------------------------------------------------- /source/description/Handbuecher/de/Organon Handbuch.organon/Files/plain_txt/nr10.txt: -------------------------------------------------------------------------------- 1 | Export Hauptfenster 2 | 3 | Alles/Sichtbare/Auswahl 4 | „Alles“ wählt alles aus dem Projektordner aus. Ordner, die nicht im Projektordner enthalten sind, werden nicht exportiert. 5 | „Sichtbare“ wählt im Dokumentenfenster sichtbare Dateien und Ordner aus. 6 | „Auswahl“ läßt Sie eine Auswahl aus allen Dateien/Ordnern im Projektordner treffen. Die Auswahl wird gespeichert und ist beim nächsten Aufruf wieder vorhanden. 7 | Im Auswahlfenster: „Klick auf Ordner wählt Untereinträge aus“: 8 | Aktiviert, werden Untereinträge automatisch ausgewählt. 9 | 10 | exportieren als 11 | Ein Dokument: Die getroffene Dateiauswahl wird in ein Dokument exportiert 12 | Trenner: zwischen jeder Datei wird ein Trenner eingefügt. Siehe Trennerfenster 13 | einzelne Dateien: Alle ausgewählte Dateien werden wieder in einzelne Dateien exportiert. 14 | Ordnerstruktur beibehalten: Die Ordnerstruktur im Dokument wird beim Export beibehalten. 15 | 16 | Dateityp (Filter) 17 | Die Dateien werden als entsprechender Typ exportiert. (Beim Export funktioniert pdf) 18 | 19 | -------------------------------------------------------------------------------- /source/description/Handbuecher/de/Organon Handbuch.organon/Files/plain_txt/nr11.txt: -------------------------------------------------------------------------------- 1 | Anleitung laden 2 | Wenn Sie dieses Dokument sehen, haben Sie den Menupunkt „Anleitung laden“ schon erfolgreich gemeistert. -------------------------------------------------------------------------------- /source/description/Handbuecher/de/Organon Handbuch.organon/Files/plain_txt/nr12.txt: -------------------------------------------------------------------------------- 1 | Neues Projekt -------------------------------------------------------------------------------- /source/description/Handbuecher/de/Organon Handbuch.organon/Files/plain_txt/nr13.txt: -------------------------------------------------------------------------------- 1 | Tags 2 | Tags werden durch Setzen des Hakens unter Organon/Optionen/Tag eingeblendet. Ein leerer Bereich zwischen dem Symbol und dem Ordner/Datei-Namen wird angezeigt. Durch Doppelklick können Tags gesetzt werden. 3 | Tag2 (eigenes Symbol) und Tag3 (wissenschaftliche Zählung) sind noch nicht implementiert. -------------------------------------------------------------------------------- /source/description/Handbuecher/de/Organon Handbuch.organon/Files/plain_txt/nr16.txt: -------------------------------------------------------------------------------- 1 | Navigation 2 | Um Dateien/Ordner im Baum durch Ziehen zu verschieben, müssen Sie mit gedrückter linker Maustaste am Text des Eintrages ziehen. Ein Pfeil zeigt den Ort, an dem die Dateien/Ordner eingefügt werden. Ein Ordner kann nicht in sich selbst verschoben werden (es erscheint ein roter Punkt). 3 | 4 | Um einen Ordner zu öffnen oder zu schließen, klicken sie doppelt auf sein Icon. -------------------------------------------------------------------------------- /source/description/Handbuecher/de/Organon Handbuch.organon/Files/plain_txt/nr17.txt: -------------------------------------------------------------------------------- 1 | Allgemein 2 | 3 | -------------------------------------------------------------------------------- /source/description/Handbuecher/de/Organon Handbuch.organon/Files/plain_txt/nr18.txt: -------------------------------------------------------------------------------- 1 | Dateien / Ordner umbenennen 2 | Durch Doppelklick auf ihren Namen können Dateien/Ordner umbenannt werden. Der Text wird mit einer anderen Farbe unterlegt. 3 | Der Projektordner und der Papierkorb können weder umbenannt noch verschoben werden. 4 | 5 | Es kann ein Shortcut für diese Funktion gesetzt werden. -------------------------------------------------------------------------------- /source/description/Handbuecher/de/Organon Handbuch.organon/Files/plain_txt/nr19.txt: -------------------------------------------------------------------------------- 1 | Anzeige von Ordnern / Dateien 2 | Bei Klick auf eine Datei wird nur die Datei angezeigt. 3 | Bei Klick auf einen geschlossenen Ordner wird nur der Ordner selbst angezeigt. 4 | Bei Klick auf einen ausgeklappten Ordner werden alle Dateien und Ordner, die er beinhaltet, angezeigt. Von geschlossenen Ordnern in geöffneten Ordner werden wiederum nur die Ordner selbst angezeigt. 5 | Um sich den gesamten Projektordner anzeigen zu lassen, kann der Projektordner unter Optionen/Projektordner ausklappen zur Gänze entfaltet werden. 6 | 7 | Ein Doppelklick auf das Ordnersymbol schließt/öffnet den Ordner. -------------------------------------------------------------------------------- /source/description/Handbuecher/de/Organon Handbuch.organon/Files/plain_txt/nr2.txt: -------------------------------------------------------------------------------- 1 | Start -------------------------------------------------------------------------------- /source/description/Handbuecher/de/Organon Handbuch.organon/Files/plain_txt/nr20.txt: -------------------------------------------------------------------------------- 1 | Speichern 2 | Organon speichert Textänderungen von allein. Nach Textänderungen muss also nie gespeichert werden. Nach Wechsel der Ansicht oder beim Schließen wird automatisch gespeichert. Wenn OO oder LO beim Beenden fragen, ob gespeichert werden soll, kann man das getrost wegklicken. Frei nach Duchamp, der ja auch nie ne Schraube anzog, wenn er nicht musste – laut Paul Matisse. Aber naja … 3 | 4 | Ausnahme: Eingefügte Bilder/Grafiken/Textbereiche/Formatierungen werden nicht automatisch gespeichert. Um diese zu Speichern, einmal in die Datei klicken und ein Leerzeichen einfügen und wieder löschen. -------------------------------------------------------------------------------- /source/description/Handbuecher/de/Organon Handbuch.organon/Files/plain_txt/nr21.txt: -------------------------------------------------------------------------------- 1 | Scrollen 2 | Wenn Dateien und Ordner den Anzeigenumfang des Organonfensters übersteigen, wird eine Scrollleiste eingeblendet. 3 | 4 | Scrollen mit dem Mausrad 5 | Das Scrollen per Mausrad kann in den Einstellungen aktivert werden (nur Windows und Linux). 6 | Datei / Einstellungen / Mausrad 7 | Das Mausrad kann dann in der Baumansicht und den Dialogen, wenn eine Scrollleiste existiert, verwendet werden. Das Rad kann auch während des Drag und Drops verwendet werden, um Teile der Baumansicht zu erreichen, die außerhalb der Anzeige liegen. 8 | 9 | In Linux muss die Bibliothek X11 installiert sein. (Unter Ubuntu ist sie standardmäßg installiert.) 10 | Wenn Sie Probleme haben (Verlangsamte Anzeige, Fehlermeldungen) deaktivieren Sie das Mausrad wieder. -------------------------------------------------------------------------------- /source/description/Handbuecher/de/Organon Handbuch.organon/Files/plain_txt/nr22.txt: -------------------------------------------------------------------------------- 1 | Leeren des Papierkorbs 2 | Der Papierkorb wird durch einen Klick auf das Symbol in der Menuleiste geleert. 3 | Oder den Eintrag Bearbeiten / Papierkorb leeren klicken. 4 | 5 | Vorsicht: Diese Aktion kann nicht rückgängig gemacht werden. (Aber Vorsicht war ja noch die Mother of Invention) 6 | Zum Wiederherstellen von Dateien und Ordnern im Papierkorb, können diese einfach wieder in das Projekt gezogen werden. -------------------------------------------------------------------------------- /source/description/Handbuecher/de/Organon Handbuch.organon/Files/plain_txt/nr23.txt: -------------------------------------------------------------------------------- 1 | Undo 2 | Es können Aktionen rückgängig gemacht werden, solange nur innerhalb eines Textbereiches bearbeitet wurde. Mit Wechsel in einen anderen Bereich oder einer anderen Nutzung von Organon, wird der geänderte Text gespeichert und der UndoManager zurückgesetzt, so dass keine Aktion mehr rückgängig gemacht werden kann. 3 | -------------------------------------------------------------------------------- /source/description/Handbuecher/de/Organon Handbuch.organon/Files/plain_txt/nr24.txt: -------------------------------------------------------------------------------- 1 | Diverses -------------------------------------------------------------------------------- /source/description/Handbuecher/de/Organon Handbuch.organon/Files/plain_txt/nr25.txt: -------------------------------------------------------------------------------- 1 | Zeige Textbereiche 2 | Für eine bessere Darstellung kann die Anzeige der Bereichsumrandungen an- und abgestellt werden. 3 | In LO werden mit der Funktion sowohl Textbegrenzungen als auch Bereichsumrandungen ausgeschaltet. 4 | In OO müssen die Bereichsumrandungen unter: 5 | Extras > Einstellungen > OpenOffice > Darstellung > Bereichsumrandungen 6 | separat abgeschaltet werden. 7 | 8 | Die Funktion ist standardmäßig auch in Writer unter Ansicht / Textbegrenzungen erreichbar. -------------------------------------------------------------------------------- /source/description/Handbuecher/de/Organon Handbuch.organon/Files/plain_txt/nr26.txt: -------------------------------------------------------------------------------- 1 | Copy und Paste von Internetinhalten 2 | Es sollte beliebig per Drag 'n' Drop oder Copy 'n' Paste aus anderen Dateien eingefügt werden können. Etwaige Bilder aus dem Internet werden in die Datei übernommen und mit ihr gespeichert. Wenn die Internetverbindung sehr langsam sein sollte, kann OO/LO für die Dauer des Imports einfrieren oder dabei abstürzen. -------------------------------------------------------------------------------- /source/description/Handbuecher/de/Organon Handbuch.organon/Files/plain_txt/nr27.txt: -------------------------------------------------------------------------------- 1 | Export -------------------------------------------------------------------------------- /source/description/Handbuecher/de/Organon Handbuch.organon/Files/plain_txt/nr28.txt: -------------------------------------------------------------------------------- 1 | Trennerfenster 2 | Formatierung des Trenners, der zwischen jeder Datei eingefügt werden soll. 3 | Im exportierten Dokument entspricht die Abfolge der Darstellung im Trennerfenster: 4 | 5 | Ordner- oder Dateititel 6 | Dokument 7 | Leerzeichen 8 | eingefügtes Benutzerdokument 9 | Seitenumbruch 10 | 11 | 12 | Ordnertitel/Dateititel: Wenn aktiviert, werden die Namen von Ordnern/Dateien ins exportierte Dokument eingefügt. Sie können formatiert werden. Zur Verfügung stehen die Standardformatierungen und die im Dokument verwendeten Formatierungen. 13 | 14 | Seitenumbruch vor Ordner/Datei: 15 | Vor jedem/r Ordner/Datei wird ein Umbruch eingefügt. 16 | 17 | -------------------------------------------------------------------------------- /source/description/Handbuecher/de/Organon Handbuch.organon/Files/plain_txt/nr30.txt: -------------------------------------------------------------------------------- 1 | Seitenleiste: Tags -------------------------------------------------------------------------------- /source/description/Handbuecher/de/Organon Handbuch.organon/Files/plain_txt/nr31.txt: -------------------------------------------------------------------------------- 1 | Öffnen / Schließen 2 | Die Seitenleiste wird mit Menu > Ansicht > Seitenleiste geöffnet. 3 | Unter LO muss sie eventuell noch aktiviert werden: 4 | Extras > Optionen > LibreOffice > Erweitert > Experimentelle Funktionen aktivieren 5 | 6 | Wenn Organon geschlossen wird, wird auch die Seitenleiste von Organon geschlossen. Andernfalls könnten in der Seitenleiste Funktionen aktiviert bleiben, die die Arbeit an anderen Dokumenten ungewollt beeinflussen. -------------------------------------------------------------------------------- /source/description/Handbuecher/de/Organon Handbuch.organon/Files/plain_txt/nr33.txt: -------------------------------------------------------------------------------- 1 | Interne Versions Kontrolle 2 | Für Projekt, die von einer älteren Version Organons erzeugt wurden, gibt es eine interne Versionskontrolle, die die Projekte beim Öffnen mit einer neueren Version entsprechend anpasst. Mit einer älteren Version können sie danach wahrscheinlich nicht mehr geöffnet werden. -------------------------------------------------------------------------------- /source/description/Handbuecher/de/Organon Handbuch.organon/Files/plain_txt/nr34.txt: -------------------------------------------------------------------------------- 1 | Homepage und Feedback 2 | 3 | Die Einträge Homepage und Feedback öffnen die entsprechenden Seiten im Browser. 4 | Homepage: https://github.com/XRoemer/Organon 5 | Feedback: http://organon4office.wordpress.com/ 6 | 7 | -------------------------------------------------------------------------------- /source/description/Handbuecher/de/Organon Handbuch.organon/Files/plain_txt/nr36.txt: -------------------------------------------------------------------------------- 1 | Einstellungen -------------------------------------------------------------------------------- /source/description/Handbuecher/de/Organon Handbuch.organon/Files/plain_txt/nr37.txt: -------------------------------------------------------------------------------- 1 | Trenner 2 | Formatierung 3 | Es gibt vier Möglichkeiten für die Formatierung des Trenners: 4 | Linie 5 | Farbe mit Beschriftung 6 | Benutzerdefiniert 7 | kein Trenner 8 | 9 | Farbe: 10 | Die Farbe von Schrift und Hintergrund können gewählt werden. Der Wert muss ein Hexadezimalwert sein. Einen Farbwähler finden Sie im Web z.B. unter: http://www.colorpicker.com/ 11 | Oder in Writer unter Extras / Einstellungen / Libre-, OpenOffice / Farben / Bearbeiten 12 | Sie können eine Farbe wählen oder mit der Pipette anklicken und bekommen den Hexadezimalwert unter den Farbwerten mit Hex# angezeigt. 13 | 14 | Benutzerdefiniert: 15 | Sie können ein Icon oder ein Bild als Trenner wählen. Ein Icon wird mittig angezeigt. Ein Bild sollte etwa die Maße des Trenners besitzen, den man mit der Auswahl Farbe angezeigt bekommt, um nicht zu stark verzerrt zu werden. Ausprobieren! 16 | 17 | -------------------------------------------------------------------------------- /source/description/Handbuecher/de/Organon Handbuch.organon/Files/plain_txt/nr38.txt: -------------------------------------------------------------------------------- 1 | Html Export 2 | Organons Html Export ist eine Alternative zum Html Export von OO / LO. Organons Html Export erzeugt eine wesentlich reduziertere und besser gesetzte Ausgabe. 3 | Die Idee war, eine Ausgabe zu erhalten, die per Copy und Paste in eigene Html Projekte schnell und einfach einzufügen ist. 4 | 5 | Folgende Formatierungen können für die Ausgabe wahlweise ein- bzw. ausgeschaltet werden: 6 | Fett 7 | Kursiv 8 | Ausrichtung (links, rechts, zentriert, block) 9 | Überschriften 10 | Fußnoten 11 | Farben 12 | Hyperlinks 13 | 14 | Andere Formatierungen (Zitate) oder Bilder werden (noch) nicht exportiert. -------------------------------------------------------------------------------- /source/description/Handbuecher/de/Organon Handbuch.organon/Files/plain_txt/nr39.txt: -------------------------------------------------------------------------------- 1 | Logging 2 | Für das Loggen Organons. Nur interessant für Entwickler und bei der Fehlersuche im Programm. 3 | 4 | Wird Office über eine Python Konsole gestartet, kann bei Aktivierung der Konsolenausgabe ebendiese aktiviert werden. Zusätzlich können alle Argumente, die beim Aufruf der Methoden und Klassen übergeben werden, angezeigt werden. 5 | 6 | Die Konsolenausgabe kann auch in einer Datei gespeichert werden. -------------------------------------------------------------------------------- /source/description/Handbuecher/de/Organon Handbuch.organon/Files/plain_txt/nr4.txt: -------------------------------------------------------------------------------- 1 | Projekt laden 2 | Datei/Projekt laden → Projektordner aussuchen. Im Projektordner befindet sich eine Projektdatei mit der Endung „.organon“: 3 | .organon. 4 | Diese auswählen und das Projekt wird geladen. -------------------------------------------------------------------------------- /source/description/Handbuecher/de/Organon Handbuch.organon/Files/plain_txt/nr40.txt: -------------------------------------------------------------------------------- 1 | Mausrad 2 | Siehe: Allgemein / Scrollen mit dem Mausrad -------------------------------------------------------------------------------- /source/description/Handbuecher/de/Organon Handbuch.organon/Files/plain_txt/nr41.txt: -------------------------------------------------------------------------------- 1 | Backup 2 | Benutzen Sie die Backup Funktion von Organon (Datei / Backup ). Eine Kopie des Projektes wird im Projektordner unter Backups angelegt. Der Name des Projektes wird mit Datum und Zeit versehen. Das Backup kann aus diesem Ordner wie jedes andere Organon Projekt geöffnet werden. 3 | Eine andere Möglichkeit, ein Backup anzulegen, ist das Kopieren des Projektes an einen anderen Ort. Der Projektordner darf nicht umbenannt werden! -------------------------------------------------------------------------------- /source/description/Handbuecher/de/Organon Handbuch.organon/Files/plain_txt/nr42.txt: -------------------------------------------------------------------------------- 1 | Menu: Bearbeiten -------------------------------------------------------------------------------- /source/description/Handbuecher/de/Organon Handbuch.organon/Files/plain_txt/nr44.txt: -------------------------------------------------------------------------------- 1 | Teile Text 2 | Bei Klick wird der aktuelle Text an der aktuellen Cursorposition getrennt und in zwei neue Texte aufgeteilt. 3 | Achtung: Diese Funktion kann nicht rückgängig gemacht werden. 4 | Wollen Sie zwei Texte wieder verbinden, müssen sie per Copy und Paste ineinander eingefügt werden. (Eine entsprechende Funktion ist geplant.) -------------------------------------------------------------------------------- /source/description/Handbuecher/de/Organon Handbuch.organon/Files/plain_txt/nr45.txt: -------------------------------------------------------------------------------- 1 | Textwerkzeuge -------------------------------------------------------------------------------- /source/description/Handbuecher/de/Organon Handbuch.organon/Files/plain_txt/nr46.txt: -------------------------------------------------------------------------------- 1 | Papierkorb leeren 2 | Siehe: Allgemein / Löschen des Papierkorbs -------------------------------------------------------------------------------- /source/description/Handbuecher/de/Organon Handbuch.organon/Files/plain_txt/nr47.txt: -------------------------------------------------------------------------------- 1 | Projektordner ausklappen 2 | Mit Klick auf den Eintrag wird der gesamte Projektordner inklusive aller Unterordner ausgeklappt. 3 | Andere Ordner, die nicht im Projektordner enthalten sind, werden nicht ausgeklappt. 4 | Einzelne Ordner können auch mit einem Rechtsklick auf ihr Icon ausgeklappt werden. Im aufpoppenden Fenster „Ordner ausklappen“ wählen. -------------------------------------------------------------------------------- /source/description/Handbuecher/de/Organon Handbuch.organon/Files/plain_txt/nr48.txt: -------------------------------------------------------------------------------- 1 | In einem Tab -------------------------------------------------------------------------------- /source/description/Handbuecher/de/Organon Handbuch.organon/Files/plain_txt/nr49.txt: -------------------------------------------------------------------------------- 1 | Importiere in Tab 2 | Gleicher Dialog wie „Neuer Tab“. 3 | Es können Dateien / Ordner aus dem Haupttab (ORGANON) importiert werden. -------------------------------------------------------------------------------- /source/description/Handbuecher/de/Organon Handbuch.organon/Files/plain_txt/nr5.txt: -------------------------------------------------------------------------------- 1 | nr. 5 Papierkorb -------------------------------------------------------------------------------- /source/description/Handbuecher/de/Organon Handbuch.organon/Files/plain_txt/nr50.txt: -------------------------------------------------------------------------------- 1 | Schließe aktive Tab 2 | Schließt aktiven Tab -------------------------------------------------------------------------------- /source/description/Handbuecher/de/Organon Handbuch.organon/Files/plain_txt/nr52.txt: -------------------------------------------------------------------------------- 1 | Löschen von Dateien / Ordnern 2 | Um Dateien oder ganze Ordner zu löschen, kann man sie: 3 | in den Papierkorb ziehen oder 4 | auf ihr Icon einen Rechtsklick ausführen und „In den Papierkorb verschieben“ wählen. 5 | 6 | Solange die Dateien im Papierkorb sind, können sie noch in das Projekt per Drag und Drop zurückgeholt werden. Erst das Leeren des Papierkorbs löscht sie unwiderruflich. -------------------------------------------------------------------------------- /source/description/Handbuecher/de/Organon Handbuch.organon/Files/plain_txt/nr54.txt: -------------------------------------------------------------------------------- 1 | Erzeuge Index 2 | Ein sehr spezialisiertes Werkzeug, um einen Index für eine Übersetzung mit Zählung anzulegen. Texte mit Zählungen sind etwa die antiken Texte oder Texte in kritischen Ausgaben. Die Zählung muss die Form „Eckige öffnende Klammer / Zahl / Komma / Zahl / eckige schließende Klammer“ haben ( [102,15] ) 3 | (Geplant für eine zukünftige Implementierung ist ein regulärer Ausdruck, mit der die Form der Zählung vom Benutzer bestimmt werden kann.) 4 | 5 | Das Textwerkzeug erzeugt ein Browser-Dokument mit drei Spalten: 6 | In der ersten Spalte befindet sich die Navigation, die alle im Quelltext vorkommenden Wörter alphabetisch oder chronologisch auflistet. Mit Hilfe der Navigation kann zu den entsprechenden Stellen in der Zählung gesprungen werden. (Das Werkzeug funktioniert auch ohne Zählungen in Quelltext und Übersetzung, macht aber aus diesem Grund wenig Sinn.) 7 | In der zweiten Spalte ist der Quelltext. 8 | In der dritten Spalte ist die Übersetzung. -------------------------------------------------------------------------------- /source/description/Handbuecher/de/Organon Handbuch.organon/Files/plain_txt/nr55.txt: -------------------------------------------------------------------------------- 1 | Wörterliste erstellen 2 | Dieses Textwerkzeug erstellt eine einfache Liste aller im ausgewählten Text vorkommender Worte und speichert diese in chronologischer oder alphabetischer Reihenfolge in ein Calc Dokument. -------------------------------------------------------------------------------- /source/description/Handbuecher/de/Organon Handbuch.organon/Files/plain_txt/nr6.txt: -------------------------------------------------------------------------------- 1 | Menu: Datei -------------------------------------------------------------------------------- /source/description/Handbuecher/de/Organon Handbuch.organon/Files/plain_txt/nr61.txt: -------------------------------------------------------------------------------- 1 | Personas (nur LO) 2 | Unter dem Reiter „Design: Personas“ in den Organon Einstellungen können schnell und einfach Personas erstellt und diese sowie bereits vorhandene gesetzt oder gelöscht werden. 3 | 4 | Um ein Persona zu setzen, muss ein Persona in der linken Spalte ausgewählt werden. Die Schriftfarbe richtet sich nach angezeigten Schriftfarbe in der mittleren Spalte. „Persona anwenden“ klicken. 5 | Um ein Persona zu löschen, Persona aussuchen und den „Persona löschen“ Button klicken. 6 | Um ein neues Persona zu erstellen, muss in das Textfeld der rechten Spalte ein Name eingegeben werden. Es bestehen folgende Möglichkeiten der Erstellung: 7 | einfarbig: nur „Hintergrund Farbe“ anwählen 8 | Verlauf: „Hintergrund Verlauf“ anwählen. Organon erstellt aus Hintergrund Farbe und Hintergrund Verlauf einen einfachen vertikalen Verlauf. 9 | Nutzer: Organon erstellt aus dem vom Nutzer ausgewählten Bild ein neues Persona. Die Bilddatei muss die Mindestmaße 2500px * 200px haben , da sie ansonsten später nicht mehr gefunden und damit benutzt werden kann. 10 | 11 | -------------------------------------------------------------------------------- /source/description/Handbuecher/de/Organon Handbuch.organon/Files/plain_txt/nr64.txt: -------------------------------------------------------------------------------- 1 | Shortcuts 2 | Shortcuts können in den Einstellungen vom Benutzer selbst festgelegt werden. 3 | Hat ein Shortcut keinen Eintrag, so ist er nicht aktiv. 4 | 5 | Folgende Funktionen können nur im Projekttab ('ORGANON') verwendet werden: 6 | teile Text 7 | erzeuge neue Datei 8 | erzeuge neuen Ordner 9 | 10 | Alle anderen Shortcuts können in jedem Tab verwendet werden 11 | -------------------------------------------------------------------------------- /source/description/Handbuecher/de/Organon Handbuch.organon/Files/plain_txt/nr7.txt: -------------------------------------------------------------------------------- 1 | Menu: Ansicht -------------------------------------------------------------------------------- /source/description/Handbuecher/de/Organon Handbuch.organon/Files/plain_txt/nr70.txt: -------------------------------------------------------------------------------- 1 | Dateien vereinen 2 | Dateien können miteinander vereint werden. Die ausgewählte Datei oder der ausgewählte Ordner wird dabei mit dem Eintrag unter ihm (Datei oder Ordner) kombiniert. 3 | 4 | In folgenden Fällen können Dateien nicht vereint werden: 5 | Der Selektierte befindet sich im Papierkorbs. 6 | Der Selektierte ist der Projektordner. 7 | Die zu kombinierende Datei ist ein Ordner und besitzt Einträge. 8 | Die zu kombinierende Datei ist in der Hierarchie an höherer Stelle 9 | 10 | Der zu kombinierende Ordner/Datei wird nach der Vereinigung in den Papierkorb verschoben. 11 | 12 | Es kann ein Shortcut für diese Funktion gesetzt werden. 13 | -------------------------------------------------------------------------------- /source/description/Handbuecher/de/Organon Handbuch.organon/Files/plain_txt/nr72.txt: -------------------------------------------------------------------------------- 1 | Vorlagen 2 | 3 | Ordner aussuchen 4 | Um überhaupt Organon Vorlagen nutzen zu können, muss ein Vorlagenordner ausgesucht werden. Der Ordner kann frei auf der Festplatte des Nutzers bestimmt werden. Organon erkennt alle Ordner mit den Namen: „.organon“ als Organon Vorlagen. 5 | 6 | Aktuelles Projekt als Vorlage speichern 7 | Speichert das aktuelle Projekt mit dem Namen, der in das Textfeld eingegeben worden ist, in den Vorlagenordner. 8 | Vorlagen sind gewöhnliche Organon Projekte. Es können daher auch einfach Organon Projekte, die als Vorlage genutzt werden sollen, in den Vorlagenordner kopiert werden. 9 | 10 | Vorlage löschen 11 | Löscht die ausgesuchte Vorlage von der Festplatte. Endgültig. 12 | Wird die Vorlage nicht über Organon aus dem Ordner entfernt, steht sie ebenfalls nicht mehr zur Verfügung. 13 | 14 | 15 | Wurde die Vorlage aus einem Projekt mit einer Writer Vorlage erstellt, so enthält die Organon Vorlage die Writer vorlage ebenfalls. -------------------------------------------------------------------------------- /source/description/Handbuecher/de/Organon Handbuch.organon/Files/plain_txt/nr79.txt: -------------------------------------------------------------------------------- 1 | Seitenleiste: Suche -------------------------------------------------------------------------------- /source/description/Handbuecher/de/Organon Handbuch.organon/Files/plain_txt/nr8.txt: -------------------------------------------------------------------------------- 1 | Neues Dokument / Neuer Ordner 2 | Neue Dateien oder Ordner werden mit den Datei/Ordner-Symbolen in der ORGANON-Menüleiste oder unter dem Reiter Datei erzeugt. Die neuen Einträge entstehen unter der ausgewählten Zeile und auf dem gleichen Einrücklevel. Bei ausgewählten Ordnern, die Inhalte besitzen, wird der neue Eintrag daher erst nach dem Inhalt der Ordner eingefügt. 3 | 4 | Für neu erzeugte Dateien werden die Tags aus der Baumansicht aus der aktivierten Datei übernommen. -------------------------------------------------------------------------------- /source/description/Handbuecher/de/Organon Handbuch.organon/Files/plain_txt/nr9.txt: -------------------------------------------------------------------------------- 1 | Import 2 | 3 | Auswahl 4 | Datei oder Ordner importieren 5 | 6 | Ordnerstruktur beibehalten 7 | Wenn ein Ordner mit Unterordnern importiert werden soll, kann das in einer flachen Hierarchie geschehen, indem alle Dateien der Unterordner in den importierten Ordner gesetzt werden. (Ordnerstruktur nicht beibehalten) 8 | 9 | Oder Organon legt die Verzeichnisse entsprechend der Einträge im zu importierenden Ordner an.(Ordnerstruktur beibehalten) 10 | 11 | Filter 12 | Nur Dateien, die den ausgewählten Filtern entsprechen, werden importiert. (nur bei Ordnerimport) 13 | 14 | Filter, eigene Auswahl 15 | Diese Funktion ist experimentell und einige Filter funktionieren nicht (etwa pdf, da der Filter in ein Draw Dokument importiert). Da OO und (vor allem) LO aber eine ganze Reihe von Filtern anbieten, kann hier versucht werden, sie bei Bedarf zu nutzen. 16 | Writer kann beim Gebrauch der Funktion abstürzen oder das Projekt zerstören. 17 | Empfehlenswert ist der Import in ein neues Projekt, dann Export als .odt Datei, um diese dann in das eigentliche Zielprojekt zu importieren. -------------------------------------------------------------------------------- /source/description/Handbuecher/de/Organon Handbuch.organon/Organon Handbuch.organon: -------------------------------------------------------------------------------- 1 | Dies ist eine Organon Datei. Goennen Sie ihr ihre Existenz. -------------------------------------------------------------------------------- /source/description/Handbuecher/de/Organon Handbuch.organon/Settings/error_log.txt: -------------------------------------------------------------------------------- 1 | ### ERROR ### 2 | Traceback (most recent call last): 3 | File "C:\Users\Homer\AppData\Roaming\OpenOffice\4\user\uno_packages\cache\uno_packages\sv85nl1.tmp_\organon.oxt\py\sidebar.py", line 238, in lade_Backup 4 | with open(pfad_Backup, 'rb') as f: 5 | IOError: [Errno 2] No such file or directory: u'C:\\Users\\Homer\\Documents\\organon projekte\\Organon Handbuch.organon\\Files\\sidebar_content.pkl.Backup' 6 | 7 | -------------------------------------------------------------------------------- /source/description/Handbuecher/de/Organon Handbuch.organon/Settings/export_settings.txt: -------------------------------------------------------------------------------- 1 | {'alles': 1, 2 | 'anz_drunter': 2, 3 | 'ausgewaehlte': {}, 4 | 'auswahl': 1, 5 | 'dateititel': 0, 6 | 'dok_einfuegen': 0, 7 | 'eigene_ausw': 0, 8 | 'einz_dat': 0, 9 | 'einz_dok': 1, 10 | 'format_dat': 0, 11 | 'format_ord': 0, 12 | 'hoehe_auswahlfenster': 200, 13 | 'html_export': {'AUSRICHTUNG': 1, 14 | 'CSS': 0, 15 | 'FARBEN': 1, 16 | 'FETT': 1, 17 | 'FUSSNOTE': 1, 18 | 'KURSIV': 1, 19 | 'LINKS': 1, 20 | 'SCHRIFTART': 0, 21 | 'SCHRIFTGROESSE': 0, 22 | 'UEBERSCHRIFT': 1, 23 | 'ZITATE': 0}, 24 | 'leerzeilen_drunter': 1, 25 | 'neues_proj': 0, 26 | 'ordner_strukt': 0, 27 | 'ordnertitel': 0, 28 | 'seitenumbruch_dat': 0, 29 | 'seitenumbruch_ord': 1, 30 | 'sichtbar': 0, 31 | 'speicherort': 'file:///C:/Users/Homer/Desktop/Neuer%20Ordner', 32 | 'style_dat': 'Heading', 33 | 'style_ord': 'Heading 1', 34 | 'trenner': 1, 35 | 'typ': 'writer_pdf_Export', 36 | 'url': ''} -------------------------------------------------------------------------------- /source/description/Handbuecher/de/Organon Handbuch.organon/Settings/project_settings.txt: -------------------------------------------------------------------------------- 1 | {'datum_format': ['dd', 'mm', 'yyyy'], 2 | 'datum_trenner': '.', 3 | 'formatierung': 'Standard', 4 | 'nutze_mausrad': True, 5 | 'tag1': 1, 6 | 'tag2': 0, 7 | 'tag3': True, 8 | 'trenner': 'farbe', 9 | 'trenner_farbe_hintergrund': 15658734, 10 | 'trenner_farbe_schrift': 10066329, 11 | 'trenner_user_url': '', 12 | 'use_template': [1, 13 | 'C:\\Users\\Homer\\Documents\\organon projekte\\Orga Handbu.organon\\Files\\odt\\template.ott'], 14 | 'user_styles': ()} -------------------------------------------------------------------------------- /source/description/Handbuecher/de/Organon Handbuch.organon/Settings/tags.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRoemer/Organon/f11cb975197fe1e37889dd6f030b13cf5c074e69/source/description/Handbuecher/de/Organon Handbuch.organon/Settings/tags.pkl -------------------------------------------------------------------------------- /source/description/Handbuecher/en/Organon Manual.organon/Files/odt/empty_file.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRoemer/Organon/f11cb975197fe1e37889dd6f030b13cf5c074e69/source/description/Handbuecher/en/Organon Manual.organon/Files/odt/empty_file.odt -------------------------------------------------------------------------------- /source/description/Handbuecher/en/Organon Manual.organon/Files/odt/nr0.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRoemer/Organon/f11cb975197fe1e37889dd6f030b13cf5c074e69/source/description/Handbuecher/en/Organon Manual.organon/Files/odt/nr0.odt -------------------------------------------------------------------------------- /source/description/Handbuecher/en/Organon Manual.organon/Files/odt/nr1.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRoemer/Organon/f11cb975197fe1e37889dd6f030b13cf5c074e69/source/description/Handbuecher/en/Organon Manual.organon/Files/odt/nr1.odt -------------------------------------------------------------------------------- /source/description/Handbuecher/en/Organon Manual.organon/Files/odt/nr10.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRoemer/Organon/f11cb975197fe1e37889dd6f030b13cf5c074e69/source/description/Handbuecher/en/Organon Manual.organon/Files/odt/nr10.odt -------------------------------------------------------------------------------- /source/description/Handbuecher/en/Organon Manual.organon/Files/odt/nr11.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRoemer/Organon/f11cb975197fe1e37889dd6f030b13cf5c074e69/source/description/Handbuecher/en/Organon Manual.organon/Files/odt/nr11.odt -------------------------------------------------------------------------------- /source/description/Handbuecher/en/Organon Manual.organon/Files/odt/nr12.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRoemer/Organon/f11cb975197fe1e37889dd6f030b13cf5c074e69/source/description/Handbuecher/en/Organon Manual.organon/Files/odt/nr12.odt -------------------------------------------------------------------------------- /source/description/Handbuecher/en/Organon Manual.organon/Files/odt/nr13.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRoemer/Organon/f11cb975197fe1e37889dd6f030b13cf5c074e69/source/description/Handbuecher/en/Organon Manual.organon/Files/odt/nr13.odt -------------------------------------------------------------------------------- /source/description/Handbuecher/en/Organon Manual.organon/Files/odt/nr15.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRoemer/Organon/f11cb975197fe1e37889dd6f030b13cf5c074e69/source/description/Handbuecher/en/Organon Manual.organon/Files/odt/nr15.odt -------------------------------------------------------------------------------- /source/description/Handbuecher/en/Organon Manual.organon/Files/odt/nr16.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRoemer/Organon/f11cb975197fe1e37889dd6f030b13cf5c074e69/source/description/Handbuecher/en/Organon Manual.organon/Files/odt/nr16.odt -------------------------------------------------------------------------------- /source/description/Handbuecher/en/Organon Manual.organon/Files/odt/nr17.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRoemer/Organon/f11cb975197fe1e37889dd6f030b13cf5c074e69/source/description/Handbuecher/en/Organon Manual.organon/Files/odt/nr17.odt -------------------------------------------------------------------------------- /source/description/Handbuecher/en/Organon Manual.organon/Files/odt/nr18.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRoemer/Organon/f11cb975197fe1e37889dd6f030b13cf5c074e69/source/description/Handbuecher/en/Organon Manual.organon/Files/odt/nr18.odt -------------------------------------------------------------------------------- /source/description/Handbuecher/en/Organon Manual.organon/Files/odt/nr19.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRoemer/Organon/f11cb975197fe1e37889dd6f030b13cf5c074e69/source/description/Handbuecher/en/Organon Manual.organon/Files/odt/nr19.odt -------------------------------------------------------------------------------- /source/description/Handbuecher/en/Organon Manual.organon/Files/odt/nr2.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRoemer/Organon/f11cb975197fe1e37889dd6f030b13cf5c074e69/source/description/Handbuecher/en/Organon Manual.organon/Files/odt/nr2.odt -------------------------------------------------------------------------------- /source/description/Handbuecher/en/Organon Manual.organon/Files/odt/nr20.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRoemer/Organon/f11cb975197fe1e37889dd6f030b13cf5c074e69/source/description/Handbuecher/en/Organon Manual.organon/Files/odt/nr20.odt -------------------------------------------------------------------------------- /source/description/Handbuecher/en/Organon Manual.organon/Files/odt/nr21.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRoemer/Organon/f11cb975197fe1e37889dd6f030b13cf5c074e69/source/description/Handbuecher/en/Organon Manual.organon/Files/odt/nr21.odt -------------------------------------------------------------------------------- /source/description/Handbuecher/en/Organon Manual.organon/Files/odt/nr22.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRoemer/Organon/f11cb975197fe1e37889dd6f030b13cf5c074e69/source/description/Handbuecher/en/Organon Manual.organon/Files/odt/nr22.odt -------------------------------------------------------------------------------- /source/description/Handbuecher/en/Organon Manual.organon/Files/odt/nr23.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRoemer/Organon/f11cb975197fe1e37889dd6f030b13cf5c074e69/source/description/Handbuecher/en/Organon Manual.organon/Files/odt/nr23.odt -------------------------------------------------------------------------------- /source/description/Handbuecher/en/Organon Manual.organon/Files/odt/nr24.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRoemer/Organon/f11cb975197fe1e37889dd6f030b13cf5c074e69/source/description/Handbuecher/en/Organon Manual.organon/Files/odt/nr24.odt -------------------------------------------------------------------------------- /source/description/Handbuecher/en/Organon Manual.organon/Files/odt/nr25.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRoemer/Organon/f11cb975197fe1e37889dd6f030b13cf5c074e69/source/description/Handbuecher/en/Organon Manual.organon/Files/odt/nr25.odt -------------------------------------------------------------------------------- /source/description/Handbuecher/en/Organon Manual.organon/Files/odt/nr26.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRoemer/Organon/f11cb975197fe1e37889dd6f030b13cf5c074e69/source/description/Handbuecher/en/Organon Manual.organon/Files/odt/nr26.odt -------------------------------------------------------------------------------- /source/description/Handbuecher/en/Organon Manual.organon/Files/odt/nr27.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRoemer/Organon/f11cb975197fe1e37889dd6f030b13cf5c074e69/source/description/Handbuecher/en/Organon Manual.organon/Files/odt/nr27.odt -------------------------------------------------------------------------------- /source/description/Handbuecher/en/Organon Manual.organon/Files/odt/nr28.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRoemer/Organon/f11cb975197fe1e37889dd6f030b13cf5c074e69/source/description/Handbuecher/en/Organon Manual.organon/Files/odt/nr28.odt -------------------------------------------------------------------------------- /source/description/Handbuecher/en/Organon Manual.organon/Files/odt/nr29.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRoemer/Organon/f11cb975197fe1e37889dd6f030b13cf5c074e69/source/description/Handbuecher/en/Organon Manual.organon/Files/odt/nr29.odt -------------------------------------------------------------------------------- /source/description/Handbuecher/en/Organon Manual.organon/Files/odt/nr3.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRoemer/Organon/f11cb975197fe1e37889dd6f030b13cf5c074e69/source/description/Handbuecher/en/Organon Manual.organon/Files/odt/nr3.odt -------------------------------------------------------------------------------- /source/description/Handbuecher/en/Organon Manual.organon/Files/odt/nr30.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRoemer/Organon/f11cb975197fe1e37889dd6f030b13cf5c074e69/source/description/Handbuecher/en/Organon Manual.organon/Files/odt/nr30.odt -------------------------------------------------------------------------------- /source/description/Handbuecher/en/Organon Manual.organon/Files/odt/nr31.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRoemer/Organon/f11cb975197fe1e37889dd6f030b13cf5c074e69/source/description/Handbuecher/en/Organon Manual.organon/Files/odt/nr31.odt -------------------------------------------------------------------------------- /source/description/Handbuecher/en/Organon Manual.organon/Files/odt/nr32.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRoemer/Organon/f11cb975197fe1e37889dd6f030b13cf5c074e69/source/description/Handbuecher/en/Organon Manual.organon/Files/odt/nr32.odt -------------------------------------------------------------------------------- /source/description/Handbuecher/en/Organon Manual.organon/Files/odt/nr34.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRoemer/Organon/f11cb975197fe1e37889dd6f030b13cf5c074e69/source/description/Handbuecher/en/Organon Manual.organon/Files/odt/nr34.odt -------------------------------------------------------------------------------- /source/description/Handbuecher/en/Organon Manual.organon/Files/odt/nr35.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRoemer/Organon/f11cb975197fe1e37889dd6f030b13cf5c074e69/source/description/Handbuecher/en/Organon Manual.organon/Files/odt/nr35.odt -------------------------------------------------------------------------------- /source/description/Handbuecher/en/Organon Manual.organon/Files/odt/nr36.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRoemer/Organon/f11cb975197fe1e37889dd6f030b13cf5c074e69/source/description/Handbuecher/en/Organon Manual.organon/Files/odt/nr36.odt -------------------------------------------------------------------------------- /source/description/Handbuecher/en/Organon Manual.organon/Files/odt/nr37.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRoemer/Organon/f11cb975197fe1e37889dd6f030b13cf5c074e69/source/description/Handbuecher/en/Organon Manual.organon/Files/odt/nr37.odt -------------------------------------------------------------------------------- /source/description/Handbuecher/en/Organon Manual.organon/Files/odt/nr38.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRoemer/Organon/f11cb975197fe1e37889dd6f030b13cf5c074e69/source/description/Handbuecher/en/Organon Manual.organon/Files/odt/nr38.odt -------------------------------------------------------------------------------- /source/description/Handbuecher/en/Organon Manual.organon/Files/odt/nr39.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRoemer/Organon/f11cb975197fe1e37889dd6f030b13cf5c074e69/source/description/Handbuecher/en/Organon Manual.organon/Files/odt/nr39.odt -------------------------------------------------------------------------------- /source/description/Handbuecher/en/Organon Manual.organon/Files/odt/nr4.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRoemer/Organon/f11cb975197fe1e37889dd6f030b13cf5c074e69/source/description/Handbuecher/en/Organon Manual.organon/Files/odt/nr4.odt -------------------------------------------------------------------------------- /source/description/Handbuecher/en/Organon Manual.organon/Files/odt/nr40.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRoemer/Organon/f11cb975197fe1e37889dd6f030b13cf5c074e69/source/description/Handbuecher/en/Organon Manual.organon/Files/odt/nr40.odt -------------------------------------------------------------------------------- /source/description/Handbuecher/en/Organon Manual.organon/Files/odt/nr41.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRoemer/Organon/f11cb975197fe1e37889dd6f030b13cf5c074e69/source/description/Handbuecher/en/Organon Manual.organon/Files/odt/nr41.odt -------------------------------------------------------------------------------- /source/description/Handbuecher/en/Organon Manual.organon/Files/odt/nr42.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRoemer/Organon/f11cb975197fe1e37889dd6f030b13cf5c074e69/source/description/Handbuecher/en/Organon Manual.organon/Files/odt/nr42.odt -------------------------------------------------------------------------------- /source/description/Handbuecher/en/Organon Manual.organon/Files/odt/nr43.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRoemer/Organon/f11cb975197fe1e37889dd6f030b13cf5c074e69/source/description/Handbuecher/en/Organon Manual.organon/Files/odt/nr43.odt -------------------------------------------------------------------------------- /source/description/Handbuecher/en/Organon Manual.organon/Files/odt/nr45.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRoemer/Organon/f11cb975197fe1e37889dd6f030b13cf5c074e69/source/description/Handbuecher/en/Organon Manual.organon/Files/odt/nr45.odt -------------------------------------------------------------------------------- /source/description/Handbuecher/en/Organon Manual.organon/Files/odt/nr46.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRoemer/Organon/f11cb975197fe1e37889dd6f030b13cf5c074e69/source/description/Handbuecher/en/Organon Manual.organon/Files/odt/nr46.odt -------------------------------------------------------------------------------- /source/description/Handbuecher/en/Organon Manual.organon/Files/odt/nr47.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRoemer/Organon/f11cb975197fe1e37889dd6f030b13cf5c074e69/source/description/Handbuecher/en/Organon Manual.organon/Files/odt/nr47.odt -------------------------------------------------------------------------------- /source/description/Handbuecher/en/Organon Manual.organon/Files/odt/nr48.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRoemer/Organon/f11cb975197fe1e37889dd6f030b13cf5c074e69/source/description/Handbuecher/en/Organon Manual.organon/Files/odt/nr48.odt -------------------------------------------------------------------------------- /source/description/Handbuecher/en/Organon Manual.organon/Files/odt/nr5.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRoemer/Organon/f11cb975197fe1e37889dd6f030b13cf5c074e69/source/description/Handbuecher/en/Organon Manual.organon/Files/odt/nr5.odt -------------------------------------------------------------------------------- /source/description/Handbuecher/en/Organon Manual.organon/Files/odt/nr51.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRoemer/Organon/f11cb975197fe1e37889dd6f030b13cf5c074e69/source/description/Handbuecher/en/Organon Manual.organon/Files/odt/nr51.odt -------------------------------------------------------------------------------- /source/description/Handbuecher/en/Organon Manual.organon/Files/odt/nr52.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRoemer/Organon/f11cb975197fe1e37889dd6f030b13cf5c074e69/source/description/Handbuecher/en/Organon Manual.organon/Files/odt/nr52.odt -------------------------------------------------------------------------------- /source/description/Handbuecher/en/Organon Manual.organon/Files/odt/nr53.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRoemer/Organon/f11cb975197fe1e37889dd6f030b13cf5c074e69/source/description/Handbuecher/en/Organon Manual.organon/Files/odt/nr53.odt -------------------------------------------------------------------------------- /source/description/Handbuecher/en/Organon Manual.organon/Files/odt/nr54.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRoemer/Organon/f11cb975197fe1e37889dd6f030b13cf5c074e69/source/description/Handbuecher/en/Organon Manual.organon/Files/odt/nr54.odt -------------------------------------------------------------------------------- /source/description/Handbuecher/en/Organon Manual.organon/Files/odt/nr55.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRoemer/Organon/f11cb975197fe1e37889dd6f030b13cf5c074e69/source/description/Handbuecher/en/Organon Manual.organon/Files/odt/nr55.odt -------------------------------------------------------------------------------- /source/description/Handbuecher/en/Organon Manual.organon/Files/odt/nr57.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRoemer/Organon/f11cb975197fe1e37889dd6f030b13cf5c074e69/source/description/Handbuecher/en/Organon Manual.organon/Files/odt/nr57.odt -------------------------------------------------------------------------------- /source/description/Handbuecher/en/Organon Manual.organon/Files/odt/nr58.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRoemer/Organon/f11cb975197fe1e37889dd6f030b13cf5c074e69/source/description/Handbuecher/en/Organon Manual.organon/Files/odt/nr58.odt -------------------------------------------------------------------------------- /source/description/Handbuecher/en/Organon Manual.organon/Files/odt/nr59.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRoemer/Organon/f11cb975197fe1e37889dd6f030b13cf5c074e69/source/description/Handbuecher/en/Organon Manual.organon/Files/odt/nr59.odt -------------------------------------------------------------------------------- /source/description/Handbuecher/en/Organon Manual.organon/Files/odt/nr6.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRoemer/Organon/f11cb975197fe1e37889dd6f030b13cf5c074e69/source/description/Handbuecher/en/Organon Manual.organon/Files/odt/nr6.odt -------------------------------------------------------------------------------- /source/description/Handbuecher/en/Organon Manual.organon/Files/odt/nr60.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRoemer/Organon/f11cb975197fe1e37889dd6f030b13cf5c074e69/source/description/Handbuecher/en/Organon Manual.organon/Files/odt/nr60.odt -------------------------------------------------------------------------------- /source/description/Handbuecher/en/Organon Manual.organon/Files/odt/nr61.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRoemer/Organon/f11cb975197fe1e37889dd6f030b13cf5c074e69/source/description/Handbuecher/en/Organon Manual.organon/Files/odt/nr61.odt -------------------------------------------------------------------------------- /source/description/Handbuecher/en/Organon Manual.organon/Files/odt/nr63.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRoemer/Organon/f11cb975197fe1e37889dd6f030b13cf5c074e69/source/description/Handbuecher/en/Organon Manual.organon/Files/odt/nr63.odt -------------------------------------------------------------------------------- /source/description/Handbuecher/en/Organon Manual.organon/Files/odt/nr64.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRoemer/Organon/f11cb975197fe1e37889dd6f030b13cf5c074e69/source/description/Handbuecher/en/Organon Manual.organon/Files/odt/nr64.odt -------------------------------------------------------------------------------- /source/description/Handbuecher/en/Organon Manual.organon/Files/odt/nr67.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRoemer/Organon/f11cb975197fe1e37889dd6f030b13cf5c074e69/source/description/Handbuecher/en/Organon Manual.organon/Files/odt/nr67.odt -------------------------------------------------------------------------------- /source/description/Handbuecher/en/Organon Manual.organon/Files/odt/nr68.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRoemer/Organon/f11cb975197fe1e37889dd6f030b13cf5c074e69/source/description/Handbuecher/en/Organon Manual.organon/Files/odt/nr68.odt -------------------------------------------------------------------------------- /source/description/Handbuecher/en/Organon Manual.organon/Files/odt/nr69.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRoemer/Organon/f11cb975197fe1e37889dd6f030b13cf5c074e69/source/description/Handbuecher/en/Organon Manual.organon/Files/odt/nr69.odt -------------------------------------------------------------------------------- /source/description/Handbuecher/en/Organon Manual.organon/Files/odt/nr7.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRoemer/Organon/f11cb975197fe1e37889dd6f030b13cf5c074e69/source/description/Handbuecher/en/Organon Manual.organon/Files/odt/nr7.odt -------------------------------------------------------------------------------- /source/description/Handbuecher/en/Organon Manual.organon/Files/odt/nr72.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRoemer/Organon/f11cb975197fe1e37889dd6f030b13cf5c074e69/source/description/Handbuecher/en/Organon Manual.organon/Files/odt/nr72.odt -------------------------------------------------------------------------------- /source/description/Handbuecher/en/Organon Manual.organon/Files/odt/nr73.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRoemer/Organon/f11cb975197fe1e37889dd6f030b13cf5c074e69/source/description/Handbuecher/en/Organon Manual.organon/Files/odt/nr73.odt -------------------------------------------------------------------------------- /source/description/Handbuecher/en/Organon Manual.organon/Files/odt/nr74.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRoemer/Organon/f11cb975197fe1e37889dd6f030b13cf5c074e69/source/description/Handbuecher/en/Organon Manual.organon/Files/odt/nr74.odt -------------------------------------------------------------------------------- /source/description/Handbuecher/en/Organon Manual.organon/Files/odt/nr76.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRoemer/Organon/f11cb975197fe1e37889dd6f030b13cf5c074e69/source/description/Handbuecher/en/Organon Manual.organon/Files/odt/nr76.odt -------------------------------------------------------------------------------- /source/description/Handbuecher/en/Organon Manual.organon/Files/odt/nr77.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRoemer/Organon/f11cb975197fe1e37889dd6f030b13cf5c074e69/source/description/Handbuecher/en/Organon Manual.organon/Files/odt/nr77.odt -------------------------------------------------------------------------------- /source/description/Handbuecher/en/Organon Manual.organon/Files/odt/nr78.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRoemer/Organon/f11cb975197fe1e37889dd6f030b13cf5c074e69/source/description/Handbuecher/en/Organon Manual.organon/Files/odt/nr78.odt -------------------------------------------------------------------------------- /source/description/Handbuecher/en/Organon Manual.organon/Files/odt/nr79.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRoemer/Organon/f11cb975197fe1e37889dd6f030b13cf5c074e69/source/description/Handbuecher/en/Organon Manual.organon/Files/odt/nr79.odt -------------------------------------------------------------------------------- /source/description/Handbuecher/en/Organon Manual.organon/Files/odt/nr8.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRoemer/Organon/f11cb975197fe1e37889dd6f030b13cf5c074e69/source/description/Handbuecher/en/Organon Manual.organon/Files/odt/nr8.odt -------------------------------------------------------------------------------- /source/description/Handbuecher/en/Organon Manual.organon/Files/odt/nr80.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRoemer/Organon/f11cb975197fe1e37889dd6f030b13cf5c074e69/source/description/Handbuecher/en/Organon Manual.organon/Files/odt/nr80.odt -------------------------------------------------------------------------------- /source/description/Handbuecher/en/Organon Manual.organon/Files/odt/nr81.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRoemer/Organon/f11cb975197fe1e37889dd6f030b13cf5c074e69/source/description/Handbuecher/en/Organon Manual.organon/Files/odt/nr81.odt -------------------------------------------------------------------------------- /source/description/Handbuecher/en/Organon Manual.organon/Files/odt/nr83.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRoemer/Organon/f11cb975197fe1e37889dd6f030b13cf5c074e69/source/description/Handbuecher/en/Organon Manual.organon/Files/odt/nr83.odt -------------------------------------------------------------------------------- /source/description/Handbuecher/en/Organon Manual.organon/Files/odt/nr84.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRoemer/Organon/f11cb975197fe1e37889dd6f030b13cf5c074e69/source/description/Handbuecher/en/Organon Manual.organon/Files/odt/nr84.odt -------------------------------------------------------------------------------- /source/description/Handbuecher/en/Organon Manual.organon/Files/odt/nr85.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRoemer/Organon/f11cb975197fe1e37889dd6f030b13cf5c074e69/source/description/Handbuecher/en/Organon Manual.organon/Files/odt/nr85.odt -------------------------------------------------------------------------------- /source/description/Handbuecher/en/Organon Manual.organon/Files/odt/nr9.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRoemer/Organon/f11cb975197fe1e37889dd6f030b13cf5c074e69/source/description/Handbuecher/en/Organon Manual.organon/Files/odt/nr9.odt -------------------------------------------------------------------------------- /source/description/Handbuecher/en/Organon Manual.organon/Files/plain_txt/nr0.txt: -------------------------------------------------------------------------------- 1 | Organon Manual 2 | 3 | After installation a browseable manual 4 | can be opened in Writer. 5 | 6 | 7 | Extension for LibreOffice (LO) and OpenOffice (OO) 8 | 9 | Please note: This is a beta version. 10 | 11 | 12 | Organon is an organisation 13 | and navigation-tool for 14 | OpenOffice and LibreOffice. 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | The source code of Organon can be found at: 26 | https://github.com/XRoemer/Organon 27 | Known issues are listed here: 28 | https://github.com/XRoemer/Organon/issues 29 | -------------------------------------------------------------------------------- /source/description/Handbuecher/en/Organon Manual.organon/Files/plain_txt/nr10.txt: -------------------------------------------------------------------------------- 1 | Main Window and Selection Window 2 | 3 | All / Visible / Selection 4 | „All“ selects all nodes of the project folder. Files or Folders, which are not included in the project folder, won't be selected. 5 | „Visible“ selects all nodes, which are visible in the document window. 6 | „Selection“ lets you choose a selection from the project folder. The selection will be saved an shown on the call of the selection window . 7 | Selection Window: „Click on Folder selects Folder Entry“: 8 | If activated, folder entries will be selected by clicking on a folder. 9 | 10 | Export as: 11 | One Document: The selected nodes will be exported into one document 12 | Separator: between each node a separator will be inserted. See Separator Window 13 | Single Files: All selected nodes will be exported into separat files. 14 | Keep Folder Structure: The folder structure resolve into a folder structure on disk. 15 | 16 | Type (Filter) 17 | Files will be converted by the selected filter. (In opposite to import, pdf works with export) 18 | 19 | -------------------------------------------------------------------------------- /source/description/Handbuecher/en/Organon Manual.organon/Files/plain_txt/nr11.txt: -------------------------------------------------------------------------------- 1 | Load Manual 2 | If you see this text, you already managed it. -------------------------------------------------------------------------------- /source/description/Handbuecher/en/Organon Manual.organon/Files/plain_txt/nr12.txt: -------------------------------------------------------------------------------- 1 | New project -------------------------------------------------------------------------------- /source/description/Handbuecher/en/Organon Manual.organon/Files/plain_txt/nr13.txt: -------------------------------------------------------------------------------- 1 | Tags 2 | Tags will be shown by activating the checkbox. Empty space will be shown between the symbol and the text of a node. By doubleclick the tags can be edited. -------------------------------------------------------------------------------- /source/description/Handbuecher/en/Organon Manual.organon/Files/plain_txt/nr16.txt: -------------------------------------------------------------------------------- 1 | Navigation 2 | To use drag and drop, click on the text of the node, hold the mouse button and drag. An arrow will be shown. A folder can't be dragged on himself (indicated by a red point). 3 | 4 | To open and close a folder, double click on its icon. -------------------------------------------------------------------------------- /source/description/Handbuecher/en/Organon Manual.organon/Files/plain_txt/nr17.txt: -------------------------------------------------------------------------------- 1 | General -------------------------------------------------------------------------------- /source/description/Handbuecher/en/Organon Manual.organon/Files/plain_txt/nr18.txt: -------------------------------------------------------------------------------- 1 | Renaming Files and Folders 2 | By double clicking the text entry the background colour of the text will change. Files and Folder can than be renamed. 3 | The project folder and the waste bin can't neither be renamed nor moved. 4 | 5 | A shortcut for this function is available. -------------------------------------------------------------------------------- /source/description/Handbuecher/en/Organon Manual.organon/Files/plain_txt/nr19.txt: -------------------------------------------------------------------------------- 1 | Display of Files and Folders 2 | On click on a file only the file will be shown. 3 | On click on a closed folder only the folder himself will be shown. 4 | On click on a open folder all files and contained folders will be shown. Closed folders inside will only show themselves 5 | To show the whole project folder click “Unfold Project Folder” in Organon/Options and click on the project folder. 6 | 7 | A doubleclick on the symbol of a folder opens or closes the folder. -------------------------------------------------------------------------------- /source/description/Handbuecher/en/Organon Manual.organon/Files/plain_txt/nr2.txt: -------------------------------------------------------------------------------- 1 | Start -------------------------------------------------------------------------------- /source/description/Handbuecher/en/Organon Manual.organon/Files/plain_txt/nr20.txt: -------------------------------------------------------------------------------- 1 | Saving 2 | Organon saves on his own. You will never have to save by yourself. After you have made changes on your text and click on another text section or on another node in Organon or close the whole document, your changes will be saved before. 3 | It can be ignored, when writer asks, if the document should be saved. 4 | 5 | Exception: Inserted images/graphics/text sections/formattings won't be saved automatically. To save processed sections, one keyboard has to be made. -------------------------------------------------------------------------------- /source/description/Handbuecher/en/Organon Manual.organon/Files/plain_txt/nr21.txt: -------------------------------------------------------------------------------- 1 | Scrolling / Mouse Wheel Scrolling 2 | If files and folders need more space than the Organon window offers, a scrollbar will be shown. 3 | 4 | Unfortunately the scrollbar can't be moved by the mousewheel. I couldn't find an (easy) solution for using the mousewheel with Office. 5 | 6 | Scrolling the mouse wheel : 7 | Scrolling the mouse wheel can be activated in the preferences (Windows and Linux) . 8 | File / Preferences / Mouse Wheel 9 | The mouse wheel can be used in the tree view and the dialogs, when a scrollbar exists. The wheel can also be used during the drag and drops to reach parts of the tree that are outside of the display. 10 | 11 | The library X11 must be installed in Linux. (In Ubuntu its part of the standard install .) 12 | If you have problems (Slow display or error messages ) disable the mouse wheel again. -------------------------------------------------------------------------------- /source/description/Handbuecher/en/Organon Manual.organon/Files/plain_txt/nr22.txt: -------------------------------------------------------------------------------- 1 | Clear recycle bin 2 | The recycle bin will be cleared by clicking on the recycle bin symbol in the menu bar of Organon. 3 | Please note: This action can't be undone. 4 | To restore files and folders in the Recycle Bin, they can simply be pulled back into the project. -------------------------------------------------------------------------------- /source/description/Handbuecher/en/Organon Manual.organon/Files/plain_txt/nr23.txt: -------------------------------------------------------------------------------- 1 | Undo 2 | You can undo sections as long as you only work within one node / file. 3 | As soon as you change the node, the text will be saved and the UndoManager will be resetted, so no action can be undone anymore. -------------------------------------------------------------------------------- /source/description/Handbuecher/en/Organon Manual.organon/Files/plain_txt/nr24.txt: -------------------------------------------------------------------------------- 1 | Miscellaneous -------------------------------------------------------------------------------- /source/description/Handbuecher/en/Organon Manual.organon/Files/plain_txt/nr25.txt: -------------------------------------------------------------------------------- 1 | Show Text Sections 2 | For a better user experience the text section boundaries can be toggled. 3 | 4 | In LO the function turns off of both text boundaries and area boundaries . 5 | In OO , the area boundaries need to be switched off separately: 6 | Tools / Settings / OpenOffice / Appearance / Area Borders 7 | 8 | The function is accessible in Writer as View / Text Boundaries also. 9 | -------------------------------------------------------------------------------- /source/description/Handbuecher/en/Organon Manual.organon/Files/plain_txt/nr26.txt: -------------------------------------------------------------------------------- 1 | Copy and Paste from the Internet 2 | It should be possible to paste arbitrary content from internet files. Images will be saved to the project. If your internet connection is very slow, Organon/Writer might freeze or even crash, when Organon tries to import images. -------------------------------------------------------------------------------- /source/description/Handbuecher/en/Organon Manual.organon/Files/plain_txt/nr27.txt: -------------------------------------------------------------------------------- 1 | Export -------------------------------------------------------------------------------- /source/description/Handbuecher/en/Organon Manual.organon/Files/plain_txt/nr28.txt: -------------------------------------------------------------------------------- 1 | Separator Window 2 | Formatting of the separator, which will be inserted between each node. 3 | In the exported file the order corresponds to the separator window: 4 | 5 | File or Folder Title 6 | Document 7 | Empty Rows 8 | Inserted User Document 9 | Pagebreak 10 | 11 | 12 | Folder / File Title: 13 | If activated, the titles will be inserted into the exported document. They might be formatted. At disposal are standard formattings plus formattings used in the actual document. 14 | 15 | Pagebreak before File / Folder: 16 | A Pagebreak before each File / Folder will be inserted. 17 | 18 | -------------------------------------------------------------------------------- /source/description/Handbuecher/en/Organon Manual.organon/Files/plain_txt/nr29.txt: -------------------------------------------------------------------------------- 1 | Sidebar: Tags -------------------------------------------------------------------------------- /source/description/Handbuecher/en/Organon Manual.organon/Files/plain_txt/nr30.txt: -------------------------------------------------------------------------------- 1 | Open / close 2 | To open or close the sidebar in OO / LO: 3 | View > Sidebar 4 | To enable the sidebar in LO: 5 | Tools > Options > Advanced > Enable Experimental Features/Sidebar 6 | 7 | By closing Organon the sidebar will be closed, too. Otherwise the sidebar would keep references to Organon and might cause unwanted effects. -------------------------------------------------------------------------------- /source/description/Handbuecher/en/Organon Manual.organon/Files/plain_txt/nr31.txt: -------------------------------------------------------------------------------- 1 | Tags 2 | See: Menu / File / Preferences -------------------------------------------------------------------------------- /source/description/Handbuecher/en/Organon Manual.organon/Files/plain_txt/nr32.txt: -------------------------------------------------------------------------------- 1 | Internal Version Control 2 | For projects created by an older version of Organon exists an internal version control to adapt the changes to the project. Probably the project can't be opened by an older version of Organon afterwards. -------------------------------------------------------------------------------- /source/description/Handbuecher/en/Organon Manual.organon/Files/plain_txt/nr34.txt: -------------------------------------------------------------------------------- 1 | Homepage and Feedback 2 | 3 | The entries Homepage and Feedback will open the related sites in a browser. 4 | Homepage: https://github.com/XRoemer/Organon 5 | Feedback: http://organon4office.wordpress.com/ 6 | 7 | -------------------------------------------------------------------------------- /source/description/Handbuecher/en/Organon Manual.organon/Files/plain_txt/nr35.txt: -------------------------------------------------------------------------------- 1 | Menu: Edit -------------------------------------------------------------------------------- /source/description/Handbuecher/en/Organon Manual.organon/Files/plain_txt/nr36.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRoemer/Organon/f11cb975197fe1e37889dd6f030b13cf5c074e69/source/description/Handbuecher/en/Organon Manual.organon/Files/plain_txt/nr36.txt -------------------------------------------------------------------------------- /source/description/Handbuecher/en/Organon Manual.organon/Files/plain_txt/nr37.txt: -------------------------------------------------------------------------------- 1 | New Tab -------------------------------------------------------------------------------- /source/description/Handbuecher/en/Organon Manual.organon/Files/plain_txt/nr38.txt: -------------------------------------------------------------------------------- 1 | Dialog 2 | A new tab can be created using this dialog. The new tab can only contain files or folders from the project tab. When you edit files in the tab, the changes will be assumed in the project folder. 3 | When you delete files in a tab, they won't be deleted in the project folder. 4 | It ain't possible to delete files in the project folder, when they are still opened in a tab – they have to be deleted in the tab first. 5 | 6 | In the dialog multiple selections are possible. Each selection from 'own selection', 'tags sidebar', 'tags treeview', 'search' ('search' isn't implemented yet) will create its own results, which will be combined, when you choose more than one entry. 7 | 8 | The tab name can freely be chosen. Double entries for names are not allowed. 9 | -------------------------------------------------------------------------------- /source/description/Handbuecher/en/Organon Manual.organon/Files/plain_txt/nr39.txt: -------------------------------------------------------------------------------- 1 | Logic 2 | The way the results are combined can be controlled by the logic signs to the right. 3 | 4 | ˅ = OR 5 | ˄ = AND 6 | (Default is OR) 7 | 8 | ˅: The results of each selection will be added. 9 | Example: The results of 'tags sidebar' are: Scene 1, Scene 2 10 | The results of 'tags treeview' are: Scene 2, Scene 3 11 | The total result will be: Scene 1, Scene 2, Scene 3 12 | 13 | ˄: Only results which appear in both selections will be added. 14 | Example: The results of 'tags sidebar' are: Scene 1, Scene 2, Scene 3 15 | The results of 'tags treeview' are: Scene 3, Scene 4, Scene 5 16 | The total result will be: Scene 3 17 | 18 | 'tags sidebar' does have the same logic sign. So you can also choose between: 19 | select all files which hold one of the selected tags (OR) 20 | select all files which hold all of the selected tags (AND) 21 | 22 | For instance: This logic might be useful to find either all scenes where at least one of two characters appear, or only the scenes where both characters appear. -------------------------------------------------------------------------------- /source/description/Handbuecher/en/Organon Manual.organon/Files/plain_txt/nr4.txt: -------------------------------------------------------------------------------- 1 | Load Project 2 | Load project → Choose project folder. The project folder contains a file with the ending “.organon”: 3 | .organon. 4 | Choose it and the project will be loaded. -------------------------------------------------------------------------------- /source/description/Handbuecher/en/Organon Manual.organon/Files/plain_txt/nr40.txt: -------------------------------------------------------------------------------- 1 | Sort By Time Tag 2 | If chosen, the results will be sorted by time and/or date. 3 | Files, which don't hold a tag for your selection (time, date, time and date), will be left out unless you select 'use untagged files'. These files will be added after the sorted. 4 | 5 | Time is sorted from 00:00 to 23:59 6 | Date can be entered from 0.0.0 to 31.12.9999 (DDMMYYYY) 7 | (sorted by YYYYMMDD) 8 | Using date and time the files will be sorted by date and for each date by time. 9 | 10 | Entering the date format MMDDYYYY or YYYYMMDD will be added to future versions of Organon. 11 | -------------------------------------------------------------------------------- /source/description/Handbuecher/en/Organon Manual.organon/Files/plain_txt/nr41.txt: -------------------------------------------------------------------------------- 1 | Tags Treeview: 2 | Select the colors. 3 | Colors will be shown in the dialog window as well. -------------------------------------------------------------------------------- /source/description/Handbuecher/en/Organon Manual.organon/Files/plain_txt/nr42.txt: -------------------------------------------------------------------------------- 1 | Tags Sidebar: 2 | By clicking on 'Selection' a new window will be opened. All tag categories are shown in the top row, all tags below them. By clicking on a tag button the tag will be selected and will show up in the column 'selected'. To unselect, click on it. 3 | Tags will be shown in the dialog window as well. -------------------------------------------------------------------------------- /source/description/Handbuecher/en/Organon Manual.organon/Files/plain_txt/nr43.txt: -------------------------------------------------------------------------------- 1 | Own Selection: 2 | Select from the project whatever you like. -------------------------------------------------------------------------------- /source/description/Handbuecher/en/Organon Manual.organon/Files/plain_txt/nr45.txt: -------------------------------------------------------------------------------- 1 | Divide Text 2 | Using this function the current file will be divided at cursor position. A new file will be created and will keep the second half of the text. Formattings, pictures, etc. are preserved. -------------------------------------------------------------------------------- /source/description/Handbuecher/en/Organon Manual.organon/Files/plain_txt/nr46.txt: -------------------------------------------------------------------------------- 1 | Backup 2 | A copy of the project is created inside / Backups. The name of the project will be provided with date and time. The backup can be opened from this folder like any other Organon project. 3 | Another option to create a backup is to copy the project to another location. The project folder 4 | must not be renamed! -------------------------------------------------------------------------------- /source/description/Handbuecher/en/Organon Manual.organon/Files/plain_txt/nr47.txt: -------------------------------------------------------------------------------- 1 | Close active Tab: 2 | The current tab will be closed. 3 | The project tab can't be closed. -------------------------------------------------------------------------------- /source/description/Handbuecher/en/Organon Manual.organon/Files/plain_txt/nr48.txt: -------------------------------------------------------------------------------- 1 | Import to Tab: 2 | The dialog works exactly like the one for 'New Tab'. 3 | The results will be inserted below the selected file/folder. -------------------------------------------------------------------------------- /source/description/Handbuecher/en/Organon Manual.organon/Files/plain_txt/nr5.txt: -------------------------------------------------------------------------------- 1 | nr. 5 Papierkorb -------------------------------------------------------------------------------- /source/description/Handbuecher/en/Organon Manual.organon/Files/plain_txt/nr51.txt: -------------------------------------------------------------------------------- 1 | Preferences -------------------------------------------------------------------------------- /source/description/Handbuecher/en/Organon Manual.organon/Files/plain_txt/nr52.txt: -------------------------------------------------------------------------------- 1 | Separator 2 | There are four options for the formatting of the separator : 3 | Line 4 | Color with inscription 5 | User Defined 6 | No Separator 7 | 8 | 9 | Color: 10 | The color of font and background can be selected. The value must be a hexadecimal value. For a color picker, see the Web as under : 11 | http://www.colorpicker.com/ 12 | Or in Writer under Extras / Settings / Libre- , OpenOffice / Colors / Edit 13 | You can choose a color or click the eyedropper and get the hexadecimal color values displayed​​among the Hex #. 14 | 15 | Custom: 16 | You can choose an icon or an image as a separator . An icon appears in the center of the line. A picture should have approximately the dimensions of the separator, wich gets displayed with the selection color, to be not too distorted . Try yourself! 17 | -------------------------------------------------------------------------------- /source/description/Handbuecher/en/Organon Manual.organon/Files/plain_txt/nr53.txt: -------------------------------------------------------------------------------- 1 | Logging 2 | For logging Organon. Only interesting for developers and for troubleshooting in the program . 3 | 4 | If Office is launched in a Python console, output can be activated by activation of the console output. In addition, all the arguments that are passed when the methods and classes are displayed, can be shown, too. 5 | 6 | The console output can also be saved to a file. -------------------------------------------------------------------------------- /source/description/Handbuecher/en/Organon Manual.organon/Files/plain_txt/nr54.txt: -------------------------------------------------------------------------------- 1 | Html Export 2 | Organon's HTML Export is an alternative to the HTML Export of OO / LO . Organon's HTML Export creates a much more reduced and better set outlay. 3 | The idea was to obtain an output to be inserted quickly and easily by using copy and paste into your own HTML projects. 4 | 5 | The following formats can optionally be used for the output: 6 | bold 7 | italic 8 | Alignment (left , right, center , block) 9 | headings 10 | footnotes 11 | colors 12 | hyperlinks 13 | 14 | Other formats (quotes) or images are not (yet) be exported. -------------------------------------------------------------------------------- /source/description/Handbuecher/en/Organon Manual.organon/Files/plain_txt/nr55.txt: -------------------------------------------------------------------------------- 1 | Mouse Wheel 2 | See: General / Mouse Wheel Scrolling -------------------------------------------------------------------------------- /source/description/Handbuecher/en/Organon Manual.organon/Files/plain_txt/nr57.txt: -------------------------------------------------------------------------------- 1 | Inside a Tab -------------------------------------------------------------------------------- /source/description/Handbuecher/en/Organon Manual.organon/Files/plain_txt/nr58.txt: -------------------------------------------------------------------------------- 1 | Texttools -------------------------------------------------------------------------------- /source/description/Handbuecher/en/Organon Manual.organon/Files/plain_txt/nr59.txt: -------------------------------------------------------------------------------- 1 | Create Index 2 | A very specialized tool to create an index on a translation with counting. Texts with counts are about the ancient texts or texts in critical editions. The census has the form "Square opening bracket / number / comma / number / square closing bracket" e.g [102.15] 3 | (Planned for a future implementation is a regular expression, where the shape of the count can be determined by the user.) 4 | 5 | The text tool creates a browser-document with three columns: 6 | 7 | The first column is the navigation that lists all occurring in the source code words alphabetically or chronologically. Using the Navigation You can jump to the corresponding locations in the count. (The tool will work without counting in the source text and translation, but it makes little sense for this reason.) 8 | The second column is the source code. 9 | The third column is the translation. -------------------------------------------------------------------------------- /source/description/Handbuecher/en/Organon Manual.organon/Files/plain_txt/nr6.txt: -------------------------------------------------------------------------------- 1 | Menu: File -------------------------------------------------------------------------------- /source/description/Handbuecher/en/Organon Manual.organon/Files/plain_txt/nr60.txt: -------------------------------------------------------------------------------- 1 | Create Words List 2 | This text tool creates a simple list of all occurring words in the selected text and stores them in chronological or alphabetical order in a Calc document. 3 | -------------------------------------------------------------------------------- /source/description/Handbuecher/en/Organon Manual.organon/Files/plain_txt/nr63.txt: -------------------------------------------------------------------------------- 1 | Unfold Project Folder 2 | By clicking on the entry the entire project folder, including all collapsed subfolders, is unfolded. 3 | Individual folders can be expanded also by right-clicking on their icon. Select the window pop up "unfold folder". -------------------------------------------------------------------------------- /source/description/Handbuecher/en/Organon Manual.organon/Files/plain_txt/nr64.txt: -------------------------------------------------------------------------------- 1 | Clear Waste Bin 2 | See: General / Clear Waste Bin -------------------------------------------------------------------------------- /source/description/Handbuecher/en/Organon Manual.organon/Files/plain_txt/nr69.txt: -------------------------------------------------------------------------------- 1 | Personas (only LO) 2 | Under "Design: Personas" in the Organon settings Personas can quickly and easily be created, as well as existing ones can be set or cleared. 3 | 4 | To set a Persona, a persona has to be selected in the left column. The font color is determined by font color displayed in the middle column. Press "use Persona". 5 | To remove a Persona, select a Persona and choose "Delete Persona". 6 | To create a new persona, a name must be entered in the text box in the right column. There are the following possibilities of creation: 7 | Monochrome: select "Background Color" only. 8 | Gradient: Select "Background Gradient". Organon creates a simple vertical gradient from the background color and the background gradient. 9 | User: Organon creates a Persona from the image selected by the user. The image file must have the minimum dimensions 2500px * 200px, since it otherwise won't be found and used later on. 10 | -------------------------------------------------------------------------------- /source/description/Handbuecher/en/Organon Manual.organon/Files/plain_txt/nr7.txt: -------------------------------------------------------------------------------- 1 | Menu: Options -------------------------------------------------------------------------------- /source/description/Handbuecher/en/Organon Manual.organon/Files/plain_txt/nr73.txt: -------------------------------------------------------------------------------- 1 | Shortcuts 2 | Shortcuts can be set by choosing entries from the dropdown list boxes. They offer possible shortcuts which are not in use by Writer. -------------------------------------------------------------------------------- /source/description/Handbuecher/en/Organon Manual.organon/Files/plain_txt/nr77.txt: -------------------------------------------------------------------------------- 1 | Combine Files 2 | 3 | Files and Folders can be combined. The selected will be combined with the entry below him. 4 | 5 | In following cases files and folders can't be combined: 6 | The selected is inside the waste bin. 7 | The selected is the project folder. 8 | The to be combined file / folder is a folder and has entries. 9 | The to be combined file / folder is at a higher level of the hierarchie. 10 | 11 | The combined file will be moved to the waste bin. 12 | 13 | A shortcut is available for this function. -------------------------------------------------------------------------------- /source/description/Handbuecher/en/Organon Manual.organon/Files/plain_txt/nr79.txt: -------------------------------------------------------------------------------- 1 | Templates 2 | 3 | Choose Folder 4 | To make Organon templates available, a template folder has to be selected. The folder can freely be chosen on the users disk. Organon recognizes all folders inside this folder with the name: “.organon” as Organon templates. 5 | 6 | Save current project as template 7 | Saves the current project under the name, which was entered into the textfield, to the template folder. 8 | Organon Templates are usual Organon projects. Therefor it's possible, simply to copy Organon projects, the user wishes to use as a template, into this folder. 9 | 10 | Delete Template 11 | Deletes the selected template. Forever. 12 | If the template is removed outwards of Organon from the template folder, it isn't available anymore as well. 13 | 14 | 15 | If the Organon Template has been created from a project with a Writer template, the Organon template will contain the Writer template also. -------------------------------------------------------------------------------- /source/description/Handbuecher/en/Organon Manual.organon/Files/plain_txt/nr8.txt: -------------------------------------------------------------------------------- 1 | New Document / New Folder 2 | New files or folders will be created by clicking on the corresponding symbols in the menu bar of Organon. They will be created beneath the selected node on the same level as the node. Therefore upon selected folders with entries, the new node will appear beneath the folder entries. 3 | 4 | For newly created files, the tags from the treeview will be taken from the activated file. 5 | -------------------------------------------------------------------------------- /source/description/Handbuecher/en/Organon Manual.organon/Files/plain_txt/nr80.txt: -------------------------------------------------------------------------------- 1 | Tags 2 | 3 | Tags Categories are freely configurable. 4 | Name and width (in the Organizer view in cm) existing categories will be changed by changing the entry and then clicking on "Apply". 5 | For a new category, enter the name and width and choose a category type. There are five types: 6 | Text (body text) 7 | Tag (Classical tag, collection of single words or short phrases) 8 | Image (only one image per category) 9 | Date 10 | Time 11 | To change the order of categories, select a category and use the arrow keys. 12 | The selected category is deleted by "Delete Category". 13 | The representation of the date can be changed by selecting the Date Format. A date must always be entered according to the date format. 14 | 15 | By clicking "Apply" the changes take effect. 16 | 17 | Each type of category can be created several times. 18 | 19 | Picture Categories slow down Organon and the Organizer, particularly if large images are used. At the moment no thumbnails for images are created, which would speed up the display. 20 | -------------------------------------------------------------------------------- /source/description/Handbuecher/en/Organon Manual.organon/Files/plain_txt/nr82.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /source/description/Handbuecher/en/Organon Manual.organon/Files/plain_txt/nr85.txt: -------------------------------------------------------------------------------- 1 | Sidebar: Search -------------------------------------------------------------------------------- /source/description/Handbuecher/en/Organon Manual.organon/Files/plain_txt/nr9.txt: -------------------------------------------------------------------------------- 1 | Import 2 | 3 | Selection 4 | Import File or Folder 5 | 6 | Keep Folder Structure 7 | Folders can be imported in two ways: 8 | without folder structure: 9 | Organon will set all imported files into one folder 10 | with folder structure: 11 | Organon will reflect the folder structure of the imported folder 12 | 13 | Filter 14 | Only Files with the corresponding filter will be imported. (Only upon folder import) 15 | 16 | Filter, User Selection 17 | This is an experimental feature and some of the filters don't work (pdf for instance, as the filter imports to a Draw document). As OO and LO offer a lot of filters, you can try to use them on demand. 18 | Writer might crash or destroy your project. 19 | It is recommended to import to a newly created project, export from there to .odt and reimport to the target project. -------------------------------------------------------------------------------- /source/description/Handbuecher/en/Organon Manual.organon/Organon Manual.organon: -------------------------------------------------------------------------------- 1 | Dies ist eine Organon Datei. Goennen Sie ihr ihre Existenz. -------------------------------------------------------------------------------- /source/description/Handbuecher/en/Organon Manual.organon/Settings/error_log.txt: -------------------------------------------------------------------------------- 1 | ### ERROR ### 2 | Traceback (most recent call last): 3 | File "C:\Users\Homer\AppData\Roaming\OpenOffice\4\user\uno_packages\cache\uno_packages\sv85nl1.tmp_\organon.oxt\py\projects.py", line 712, in lade_Projekt 4 | self.mb.doc.storeAsURL(Path2,()) 5 | com.sun.star.task.ErrorCodeIOException 6 | 7 | -------------------------------------------------------------------------------- /source/description/Handbuecher/en/Organon Manual.organon/Settings/export_settings.txt: -------------------------------------------------------------------------------- 1 | {'alles': 1, 2 | 'anz_drunter': 2, 3 | 'ausgewaehlte': {}, 4 | 'auswahl': 1, 5 | 'dateititel': 0, 6 | 'dok_einfuegen': 0, 7 | 'eigene_ausw': 0, 8 | 'einz_dat': 0, 9 | 'einz_dok': 1, 10 | 'format_dat': 1, 11 | 'format_ord': 0, 12 | 'hoehe_auswahlfenster': 200, 13 | 'html_export': {'AUSRICHTUNG': 1, 14 | 'CSS': 0, 15 | 'FARBEN': 1, 16 | 'FETT': 1, 17 | 'FUSSNOTE': 1, 18 | 'KURSIV': 1, 19 | 'LINKS': 1, 20 | 'SCHRIFTART': 0, 21 | 'SCHRIFTGROESSE': 0, 22 | 'UEBERSCHRIFT': 1, 23 | 'ZITATE': 0}, 24 | 'leerzeilen_drunter': 1, 25 | 'neues_proj': 0, 26 | 'ordner_strukt': 0, 27 | 'ordnertitel': 0, 28 | 'seitenumbruch_dat': 0, 29 | 'seitenumbruch_ord': 1, 30 | 'sichtbar': 0, 31 | 'speicherort': 'file:///C:/Users/Homer/Desktop/Neuer%20Ordner', 32 | 'style_dat': 'Heading', 33 | 'style_ord': 'Heading 1', 34 | 'trenner': 1, 35 | 'typ': 'writer_pdf_Export', 36 | 'url': ''} -------------------------------------------------------------------------------- /source/description/Handbuecher/en/Organon Manual.organon/Settings/project_settings.txt: -------------------------------------------------------------------------------- 1 | {'datum_format': ['dd', 'mm', 'yyyy'], 2 | 'datum_trenner': '.', 3 | 'formatierung': 'Standard', 4 | 'nutze_mausrad': True, 5 | 'tag1': 1, 6 | 'tag2': 0, 7 | 'tag3': 0, 8 | 'trenner': 'farbe', 9 | 'trenner_farbe_hintergrund': 15658734, 10 | 'trenner_farbe_schrift': 10066329, 11 | 'trenner_user_url': '', 12 | 'use_template': [1, 13 | 'C:\\Users\\Homer\\Documents\\organon projekte\\Orga Manu.organon\\Files\\odt\\template.ott'], 14 | 'user_styles': ()} -------------------------------------------------------------------------------- /source/description/Handbuecher/en/Organon Manual.organon/Settings/tags.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRoemer/Organon/f11cb975197fe1e37889dd6f030b13cf5c074e69/source/description/Handbuecher/en/Organon Manual.organon/Settings/tags.pkl -------------------------------------------------------------------------------- /source/description/desc_de.txt: -------------------------------------------------------------------------------- 1 | Organon ist ein Werkzeug für eine übersichtliche Navigation zwischen Texten in OpenOffice und LibreOffice. 2 | 3 | Organon legt Textdateien in einem Verzeichnisbaum an. 4 | 5 | Texte/Verzeichnisse können: 6 | 7 | - per Drag and Drop verschoben werden 8 | - mit Tags in der Baumansicht versehen werden 9 | - mit Tags in der Seitenleiste versehen werden 10 | - ex- und 11 | - importiert werden 12 | - in Tabs organisiert werden 13 | 14 | Bei Auswahl eines Ordners oder einer Datei springt Organon an die entsprechende Textstelle. 15 | 16 | -------------------------------------------------------------------------------- /source/description/desc_en.txt: -------------------------------------------------------------------------------- 1 | Organon is an organisation and navigation-tool for OpenOffice and LibreOffice. 2 | 3 | Organon creates a navigation-tree for folders and files 4 | 5 | It's possible to: 6 | 7 | - use drag and drop 8 | - create tags in treeview and sidebar 9 | - import and export files 10 | - organize the project in tabs 11 | 12 | While working within folders Organon keeps the reference to the edited file in the navigation-tree. 13 | 14 | -------------------------------------------------------------------------------- /source/factory/Dialog_Sidebar.xdl: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 7 | 8 | 9 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /source/factory/WriterWindowState.xcu: -------------------------------------------------------------------------------- 1 | 2 | 8 | 9 | 10 | 11 | 12 | 13 | Organon: dockable window 14 | 15 | 16 | true 17 | 18 | 19 | true 20 | 21 | 22 | 23 | 24 | 25 | -------------------------------------------------------------------------------- /source/img/OrdnerGeoeffnet_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRoemer/Organon/f11cb975197fe1e37889dd6f030b13cf5c074e69/source/img/OrdnerGeoeffnet_16.png -------------------------------------------------------------------------------- /source/img/OrdnerNeu_24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRoemer/Organon/f11cb975197fe1e37889dd6f030b13cf5c074e69/source/img/OrdnerNeu_24.png -------------------------------------------------------------------------------- /source/img/OrdnerVoll_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRoemer/Organon/f11cb975197fe1e37889dd6f030b13cf5c074e69/source/img/OrdnerVoll_16.png -------------------------------------------------------------------------------- /source/img/Ordner_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRoemer/Organon/f11cb975197fe1e37889dd6f030b13cf5c074e69/source/img/Ordner_16.png -------------------------------------------------------------------------------- /source/img/Organon Icons/callout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRoemer/Organon/f11cb975197fe1e37889dd6f030b13cf5c074e69/source/img/Organon Icons/callout.png -------------------------------------------------------------------------------- /source/img/Organon Icons/cancel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRoemer/Organon/f11cb975197fe1e37889dd6f030b13cf5c074e69/source/img/Organon Icons/cancel.png -------------------------------------------------------------------------------- /source/img/Organon Icons/create.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRoemer/Organon/f11cb975197fe1e37889dd6f030b13cf5c074e69/source/img/Organon Icons/create.png -------------------------------------------------------------------------------- /source/img/Organon Icons/cross.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRoemer/Organon/f11cb975197fe1e37889dd6f030b13cf5c074e69/source/img/Organon Icons/cross.png -------------------------------------------------------------------------------- /source/img/Organon Icons/graphic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRoemer/Organon/f11cb975197fe1e37889dd6f030b13cf5c074e69/source/img/Organon Icons/graphic.png -------------------------------------------------------------------------------- /source/img/Organon Icons/info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRoemer/Organon/f11cb975197fe1e37889dd6f030b13cf5c074e69/source/img/Organon Icons/info.png -------------------------------------------------------------------------------- /source/img/Organon Icons/knife.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRoemer/Organon/f11cb975197fe1e37889dd6f030b13cf5c074e69/source/img/Organon Icons/knife.png -------------------------------------------------------------------------------- /source/img/Organon Icons/mailto.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRoemer/Organon/f11cb975197fe1e37889dd6f030b13cf5c074e69/source/img/Organon Icons/mailto.png -------------------------------------------------------------------------------- /source/img/Organon Icons/minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRoemer/Organon/f11cb975197fe1e37889dd6f030b13cf5c074e69/source/img/Organon Icons/minus.png -------------------------------------------------------------------------------- /source/img/Organon Icons/plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRoemer/Organon/f11cb975197fe1e37889dd6f030b13cf5c074e69/source/img/Organon Icons/plus.png -------------------------------------------------------------------------------- /source/img/Organon Icons/question mark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRoemer/Organon/f11cb975197fe1e37889dd6f030b13cf5c074e69/source/img/Organon Icons/question mark.png -------------------------------------------------------------------------------- /source/img/Organon Icons/sc_graphicfilterpopart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRoemer/Organon/f11cb975197fe1e37889dd6f030b13cf5c074e69/source/img/Organon Icons/sc_graphicfilterpopart.png -------------------------------------------------------------------------------- /source/img/Organon Icons/time.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRoemer/Organon/f11cb975197fe1e37889dd6f030b13cf5c074e69/source/img/Organon Icons/time.png -------------------------------------------------------------------------------- /source/img/error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRoemer/Organon/f11cb975197fe1e37889dd6f030b13cf5c074e69/source/img/error.png -------------------------------------------------------------------------------- /source/img/help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRoemer/Organon/f11cb975197fe1e37889dd6f030b13cf5c074e69/source/img/help.png -------------------------------------------------------------------------------- /source/img/icon-set-colorarrows-same.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRoemer/Organon/f11cb975197fe1e37889dd6f030b13cf5c074e69/source/img/icon-set-colorarrows-same.png -------------------------------------------------------------------------------- /source/img/icon-set-colorarrows-slightly-down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRoemer/Organon/f11cb975197fe1e37889dd6f030b13cf5c074e69/source/img/icon-set-colorarrows-slightly-down.png -------------------------------------------------------------------------------- /source/img/icon-set-colorarrows-slightly-up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRoemer/Organon/f11cb975197fe1e37889dd6f030b13cf5c074e69/source/img/icon-set-colorarrows-slightly-up.png -------------------------------------------------------------------------------- /source/img/idea.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRoemer/Organon/f11cb975197fe1e37889dd6f030b13cf5c074e69/source/img/idea.png -------------------------------------------------------------------------------- /source/img/lc_save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRoemer/Organon/f11cb975197fe1e37889dd6f030b13cf5c074e69/source/img/lc_save.png -------------------------------------------------------------------------------- /source/img/neueDatei_24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRoemer/Organon/f11cb975197fe1e37889dd6f030b13cf5c074e69/source/img/neueDatei_24.png -------------------------------------------------------------------------------- /source/img/organon icon_120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRoemer/Organon/f11cb975197fe1e37889dd6f030b13cf5c074e69/source/img/organon icon_120.png -------------------------------------------------------------------------------- /source/img/organon icon_24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRoemer/Organon/f11cb975197fe1e37889dd6f030b13cf5c074e69/source/img/organon icon_24.png -------------------------------------------------------------------------------- /source/img/organon icon_30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRoemer/Organon/f11cb975197fe1e37889dd6f030b13cf5c074e69/source/img/organon icon_30.png -------------------------------------------------------------------------------- /source/img/organon icon_30_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRoemer/Organon/f11cb975197fe1e37889dd6f030b13cf5c074e69/source/img/organon icon_30_2.png -------------------------------------------------------------------------------- /source/img/organon icon_48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRoemer/Organon/f11cb975197fe1e37889dd6f030b13cf5c074e69/source/img/organon icon_48.png -------------------------------------------------------------------------------- /source/img/organon_icon_suche_30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRoemer/Organon/f11cb975197fe1e37889dd6f030b13cf5c074e69/source/img/organon_icon_suche_30.png -------------------------------------------------------------------------------- /source/img/papierkorb_leer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRoemer/Organon/f11cb975197fe1e37889dd6f030b13cf5c074e69/source/img/papierkorb_leer.png -------------------------------------------------------------------------------- /source/img/papierkorb_offen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRoemer/Organon/f11cb975197fe1e37889dd6f030b13cf5c074e69/source/img/papierkorb_offen.png -------------------------------------------------------------------------------- /source/img/punkt_blau.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRoemer/Organon/f11cb975197fe1e37889dd6f030b13cf5c074e69/source/img/punkt_blau.png -------------------------------------------------------------------------------- /source/img/punkt_braun.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRoemer/Organon/f11cb975197fe1e37889dd6f030b13cf5c074e69/source/img/punkt_braun.png -------------------------------------------------------------------------------- /source/img/punkt_creme.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRoemer/Organon/f11cb975197fe1e37889dd6f030b13cf5c074e69/source/img/punkt_creme.png -------------------------------------------------------------------------------- /source/img/punkt_gelb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRoemer/Organon/f11cb975197fe1e37889dd6f030b13cf5c074e69/source/img/punkt_gelb.png -------------------------------------------------------------------------------- /source/img/punkt_grau.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRoemer/Organon/f11cb975197fe1e37889dd6f030b13cf5c074e69/source/img/punkt_grau.png -------------------------------------------------------------------------------- /source/img/punkt_gruen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRoemer/Organon/f11cb975197fe1e37889dd6f030b13cf5c074e69/source/img/punkt_gruen.png -------------------------------------------------------------------------------- /source/img/punkt_hellblau.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRoemer/Organon/f11cb975197fe1e37889dd6f030b13cf5c074e69/source/img/punkt_hellblau.png -------------------------------------------------------------------------------- /source/img/punkt_hellgrau.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRoemer/Organon/f11cb975197fe1e37889dd6f030b13cf5c074e69/source/img/punkt_hellgrau.png -------------------------------------------------------------------------------- /source/img/punkt_leer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRoemer/Organon/f11cb975197fe1e37889dd6f030b13cf5c074e69/source/img/punkt_leer.png -------------------------------------------------------------------------------- /source/img/punkt_lila.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRoemer/Organon/f11cb975197fe1e37889dd6f030b13cf5c074e69/source/img/punkt_lila.png -------------------------------------------------------------------------------- /source/img/punkt_ocker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRoemer/Organon/f11cb975197fe1e37889dd6f030b13cf5c074e69/source/img/punkt_ocker.png -------------------------------------------------------------------------------- /source/img/punkt_orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRoemer/Organon/f11cb975197fe1e37889dd6f030b13cf5c074e69/source/img/punkt_orange.png -------------------------------------------------------------------------------- /source/img/punkt_pink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRoemer/Organon/f11cb975197fe1e37889dd6f030b13cf5c074e69/source/img/punkt_pink.png -------------------------------------------------------------------------------- /source/img/punkt_rostrot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRoemer/Organon/f11cb975197fe1e37889dd6f030b13cf5c074e69/source/img/punkt_rostrot.png -------------------------------------------------------------------------------- /source/img/punkt_rot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRoemer/Organon/f11cb975197fe1e37889dd6f030b13cf5c074e69/source/img/punkt_rot.png -------------------------------------------------------------------------------- /source/img/punkt_schwarz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRoemer/Organon/f11cb975197fe1e37889dd6f030b13cf5c074e69/source/img/punkt_schwarz.png -------------------------------------------------------------------------------- /source/img/punkt_tuerkis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRoemer/Organon/f11cb975197fe1e37889dd6f030b13cf5c074e69/source/img/punkt_tuerkis.png -------------------------------------------------------------------------------- /source/img/punkt_weiss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRoemer/Organon/f11cb975197fe1e37889dd6f030b13cf5c074e69/source/img/punkt_weiss.png -------------------------------------------------------------------------------- /source/img/sc_helpindex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRoemer/Organon/f11cb975197fe1e37889dd6f030b13cf5c074e69/source/img/sc_helpindex.png -------------------------------------------------------------------------------- /source/img/slidezoomin_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRoemer/Organon/f11cb975197fe1e37889dd6f030b13cf5c074e69/source/img/slidezoomin_10.png -------------------------------------------------------------------------------- /source/img/slidezoomout_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRoemer/Organon/f11cb975197fe1e37889dd6f030b13cf5c074e69/source/img/slidezoomout_10.png -------------------------------------------------------------------------------- /source/img/trenner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRoemer/Organon/f11cb975197fe1e37889dd6f030b13cf5c074e69/source/img/trenner.png -------------------------------------------------------------------------------- /source/img/warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRoemer/Organon/f11cb975197fe1e37889dd6f030b13cf5c074e69/source/img/warning.png -------------------------------------------------------------------------------- /source/languages/lang_it.txt: -------------------------------------------------------------------------------- 1 | Translation by Alessandro Bugliazzini 2 | 3 | # IMPORTANT WORDS understandable by Italian user also in English. I TRANSLATED THEY, BUT IF NECESSARY THEY CAN WRITE ENGLISH: 4 | # Tag: IT=Etichetta; Tab: IT=Scheda; Treeview: IT=Vista ad Albero; Sidebar: IT=Barra laterale 5 | 6 | 7 | Thanks for your support, 8 | Xaver -------------------------------------------------------------------------------- /source/libs/libGetWheel.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRoemer/Organon/f11cb975197fe1e37889dd6f030b13cf5c074e69/source/libs/libGetWheel.so -------------------------------------------------------------------------------- /source/libs/src/getwheel.h: -------------------------------------------------------------------------------- 1 | //#include 2 | //#include 3 | 4 | #ifndef GETWHEEL_H_ 5 | #define GETWHEEL_H_ 6 | 7 | //int mult(int,int); 8 | 9 | 10 | int grab_wheel(); 11 | 12 | 13 | 14 | 15 | #endif /* GETWHEEL_H_ */ 16 | 17 | -------------------------------------------------------------------------------- /source/personas/Dark/footer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRoemer/Organon/f11cb975197fe1e37889dd6f030b13cf5c074e69/source/personas/Dark/footer.png -------------------------------------------------------------------------------- /source/personas/Dark/header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRoemer/Organon/f11cb975197fe1e37889dd6f030b13cf5c074e69/source/personas/Dark/header.png -------------------------------------------------------------------------------- /source/personas/Greyscale/footer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRoemer/Organon/f11cb975197fe1e37889dd6f030b13cf5c074e69/source/personas/Greyscale/footer.png -------------------------------------------------------------------------------- /source/personas/Greyscale/header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRoemer/Organon/f11cb975197fe1e37889dd6f030b13cf5c074e69/source/personas/Greyscale/header.png -------------------------------------------------------------------------------- /source/personas/OO Blue/footer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRoemer/Organon/f11cb975197fe1e37889dd6f030b13cf5c074e69/source/personas/OO Blue/footer.png -------------------------------------------------------------------------------- /source/personas/OO Blue/header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRoemer/Organon/f11cb975197fe1e37889dd6f030b13cf5c074e69/source/personas/OO Blue/header.png -------------------------------------------------------------------------------- /source/personas/Sand/footer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRoemer/Organon/f11cb975197fe1e37889dd6f030b13cf5c074e69/source/personas/Sand/footer.png -------------------------------------------------------------------------------- /source/personas/Sand/header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRoemer/Organon/f11cb975197fe1e37889dd6f030b13cf5c074e69/source/personas/Sand/header.png -------------------------------------------------------------------------------- /source/py/schalter.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | 3 | import unohelper 4 | import sys 5 | 6 | class Test(unohelper.Base): 7 | 8 | IMPLE_NAME = "com.open.office.roemers.schalter" 9 | SERVICE_NAMES = IMPLE_NAME, 10 | 11 | @classmethod 12 | def get_imple(klass): 13 | return klass, klass.IMPLE_NAME, klass.SERVICE_NAMES 14 | 15 | def __init__(self, ctx): 16 | smgr = ctx.ServiceManager 17 | desktop = smgr.createInstanceWithContext( "com.sun.star.frame.Desktop",ctx) 18 | doc = desktop.getCurrentComponent() 19 | RESOURCE_URL = "private:resource/dockingwindow/9809" 20 | 21 | layoutmgr = doc.getCurrentController().getFrame().LayoutManager 22 | if layoutmgr.isElementVisible(RESOURCE_URL): 23 | layoutmgr.hideElement(RESOURCE_URL) 24 | else: 25 | layoutmgr.showElement(RESOURCE_URL) 26 | 27 | 28 | g_ImplementationHelper = unohelper.ImplementationHelper() 29 | g_ImplementationHelper.addImplementation(*Test.get_imple()) 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | -------------------------------------------------------------------------------- /source/registration/LICENSE_af.txt: -------------------------------------------------------------------------------- 1 | Copyright [2014] [Xaver Roemer] 2 | 3 | Licensed under the Apache License, Version 2.0 (the "License"); 4 | you may not use this file except in compliance with the License. 5 | You may obtain a copy of the License at 6 | 7 | http://www.apache.org/licenses/LICENSE-2.0 8 | 9 | Unless required by applicable law or agreed to in writing, software 10 | distributed under the License is distributed on an "AS IS" BASIS, 11 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | See the License for the specific language governing permissions and 13 | limitations under the License. -------------------------------------------------------------------------------- /source/registration/LICENSE_ar.txt: -------------------------------------------------------------------------------- 1 | Copyright [2014] [Xaver Roemer] 2 | 3 | Licensed under the Apache License, Version 2.0 (the "License"); 4 | you may not use this file except in compliance with the License. 5 | You may obtain a copy of the License at 6 | 7 | http://www.apache.org/licenses/LICENSE-2.0 8 | 9 | Unless required by applicable law or agreed to in writing, software 10 | distributed under the License is distributed on an "AS IS" BASIS, 11 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | See the License for the specific language governing permissions and 13 | limitations under the License. -------------------------------------------------------------------------------- /source/registration/LICENSE_as.txt: -------------------------------------------------------------------------------- 1 | Copyright [2014] [Xaver Roemer] 2 | 3 | Licensed under the Apache License, Version 2.0 (the "License"); 4 | you may not use this file except in compliance with the License. 5 | You may obtain a copy of the License at 6 | 7 | http://www.apache.org/licenses/LICENSE-2.0 8 | 9 | Unless required by applicable law or agreed to in writing, software 10 | distributed under the License is distributed on an "AS IS" BASIS, 11 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | See the License for the specific language governing permissions and 13 | limitations under the License. -------------------------------------------------------------------------------- /source/registration/LICENSE_ast.txt: -------------------------------------------------------------------------------- 1 | Copyright [2014] [Xaver Roemer] 2 | 3 | Licensed under the Apache License, Version 2.0 (the "License"); 4 | you may not use this file except in compliance with the License. 5 | You may obtain a copy of the License at 6 | 7 | http://www.apache.org/licenses/LICENSE-2.0 8 | 9 | Unless required by applicable law or agreed to in writing, software 10 | distributed under the License is distributed on an "AS IS" BASIS, 11 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | See the License for the specific language governing permissions and 13 | limitations under the License. -------------------------------------------------------------------------------- /source/registration/LICENSE_be-BY.txt: -------------------------------------------------------------------------------- 1 | Copyright [2014] [Xaver Roemer] 2 | 3 | Licensed under the Apache License, Version 2.0 (the "License"); 4 | you may not use this file except in compliance with the License. 5 | You may obtain a copy of the License at 6 | 7 | http://www.apache.org/licenses/LICENSE-2.0 8 | 9 | Unless required by applicable law or agreed to in writing, software 10 | distributed under the License is distributed on an "AS IS" BASIS, 11 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | See the License for the specific language governing permissions and 13 | limitations under the License. -------------------------------------------------------------------------------- /source/registration/LICENSE_bg.txt: -------------------------------------------------------------------------------- 1 | Copyright [2014] [Xaver Roemer] 2 | 3 | Licensed under the Apache License, Version 2.0 (the "License"); 4 | you may not use this file except in compliance with the License. 5 | You may obtain a copy of the License at 6 | 7 | http://www.apache.org/licenses/LICENSE-2.0 8 | 9 | Unless required by applicable law or agreed to in writing, software 10 | distributed under the License is distributed on an "AS IS" BASIS, 11 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | See the License for the specific language governing permissions and 13 | limitations under the License. -------------------------------------------------------------------------------- /source/registration/LICENSE_bn.txt: -------------------------------------------------------------------------------- 1 | Copyright [2014] [Xaver Roemer] 2 | 3 | Licensed under the Apache License, Version 2.0 (the "License"); 4 | you may not use this file except in compliance with the License. 5 | You may obtain a copy of the License at 6 | 7 | http://www.apache.org/licenses/LICENSE-2.0 8 | 9 | Unless required by applicable law or agreed to in writing, software 10 | distributed under the License is distributed on an "AS IS" BASIS, 11 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | See the License for the specific language governing permissions and 13 | limitations under the License. -------------------------------------------------------------------------------- /source/registration/LICENSE_bo.txt: -------------------------------------------------------------------------------- 1 | Copyright [2014] [Xaver Roemer] 2 | 3 | Licensed under the Apache License, Version 2.0 (the "License"); 4 | you may not use this file except in compliance with the License. 5 | You may obtain a copy of the License at 6 | 7 | http://www.apache.org/licenses/LICENSE-2.0 8 | 9 | Unless required by applicable law or agreed to in writing, software 10 | distributed under the License is distributed on an "AS IS" BASIS, 11 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | See the License for the specific language governing permissions and 13 | limitations under the License. -------------------------------------------------------------------------------- /source/registration/LICENSE_br.txt: -------------------------------------------------------------------------------- 1 | Copyright [2014] [Xaver Roemer] 2 | 3 | Licensed under the Apache License, Version 2.0 (the "License"); 4 | you may not use this file except in compliance with the License. 5 | You may obtain a copy of the License at 6 | 7 | http://www.apache.org/licenses/LICENSE-2.0 8 | 9 | Unless required by applicable law or agreed to in writing, software 10 | distributed under the License is distributed on an "AS IS" BASIS, 11 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | See the License for the specific language governing permissions and 13 | limitations under the License. -------------------------------------------------------------------------------- /source/registration/LICENSE_brx.txt: -------------------------------------------------------------------------------- 1 | Copyright [2014] [Xaver Roemer] 2 | 3 | Licensed under the Apache License, Version 2.0 (the "License"); 4 | you may not use this file except in compliance with the License. 5 | You may obtain a copy of the License at 6 | 7 | http://www.apache.org/licenses/LICENSE-2.0 8 | 9 | Unless required by applicable law or agreed to in writing, software 10 | distributed under the License is distributed on an "AS IS" BASIS, 11 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | See the License for the specific language governing permissions and 13 | limitations under the License. -------------------------------------------------------------------------------- /source/registration/LICENSE_bs.txt: -------------------------------------------------------------------------------- 1 | Copyright [2014] [Xaver Roemer] 2 | 3 | Licensed under the Apache License, Version 2.0 (the "License"); 4 | you may not use this file except in compliance with the License. 5 | You may obtain a copy of the License at 6 | 7 | http://www.apache.org/licenses/LICENSE-2.0 8 | 9 | Unless required by applicable law or agreed to in writing, software 10 | distributed under the License is distributed on an "AS IS" BASIS, 11 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | See the License for the specific language governing permissions and 13 | limitations under the License. -------------------------------------------------------------------------------- /source/registration/LICENSE_ca-XV.txt: -------------------------------------------------------------------------------- 1 | Copyright [2014] [Xaver Roemer] 2 | 3 | Licensed under the Apache License, Version 2.0 (the "License"); 4 | you may not use this file except in compliance with the License. 5 | You may obtain a copy of the License at 6 | 7 | http://www.apache.org/licenses/LICENSE-2.0 8 | 9 | Unless required by applicable law or agreed to in writing, software 10 | distributed under the License is distributed on an "AS IS" BASIS, 11 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | See the License for the specific language governing permissions and 13 | limitations under the License. -------------------------------------------------------------------------------- /source/registration/LICENSE_ca.txt: -------------------------------------------------------------------------------- 1 | Copyright [2014] [Xaver Roemer] 2 | 3 | Licensed under the Apache License, Version 2.0 (the "License"); 4 | you may not use this file except in compliance with the License. 5 | You may obtain a copy of the License at 6 | 7 | http://www.apache.org/licenses/LICENSE-2.0 8 | 9 | Unless required by applicable law or agreed to in writing, software 10 | distributed under the License is distributed on an "AS IS" BASIS, 11 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | See the License for the specific language governing permissions and 13 | limitations under the License. -------------------------------------------------------------------------------- /source/registration/LICENSE_cs.txt: -------------------------------------------------------------------------------- 1 | Copyright [2014] [Xaver Roemer] 2 | 3 | Licensed under the Apache License, Version 2.0 (the "License"); 4 | you may not use this file except in compliance with the License. 5 | You may obtain a copy of the License at 6 | 7 | http://www.apache.org/licenses/LICENSE-2.0 8 | 9 | Unless required by applicable law or agreed to in writing, software 10 | distributed under the License is distributed on an "AS IS" BASIS, 11 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | See the License for the specific language governing permissions and 13 | limitations under the License. -------------------------------------------------------------------------------- /source/registration/LICENSE_cy.txt: -------------------------------------------------------------------------------- 1 | Copyright [2014] [Xaver Roemer] 2 | 3 | Licensed under the Apache License, Version 2.0 (the "License"); 4 | you may not use this file except in compliance with the License. 5 | You may obtain a copy of the License at 6 | 7 | http://www.apache.org/licenses/LICENSE-2.0 8 | 9 | Unless required by applicable law or agreed to in writing, software 10 | distributed under the License is distributed on an "AS IS" BASIS, 11 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | See the License for the specific language governing permissions and 13 | limitations under the License. -------------------------------------------------------------------------------- /source/registration/LICENSE_da.txt: -------------------------------------------------------------------------------- 1 | Copyright [2014] [Xaver Roemer] 2 | 3 | Licensed under the Apache License, Version 2.0 (the "License"); 4 | you may not use this file except in compliance with the License. 5 | You may obtain a copy of the License at 6 | 7 | http://www.apache.org/licenses/LICENSE-2.0 8 | 9 | Unless required by applicable law or agreed to in writing, software 10 | distributed under the License is distributed on an "AS IS" BASIS, 11 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | See the License for the specific language governing permissions and 13 | limitations under the License. -------------------------------------------------------------------------------- /source/registration/LICENSE_dgo.txt: -------------------------------------------------------------------------------- 1 | Copyright [2014] [Xaver Roemer] 2 | 3 | Licensed under the Apache License, Version 2.0 (the "License"); 4 | you may not use this file except in compliance with the License. 5 | You may obtain a copy of the License at 6 | 7 | http://www.apache.org/licenses/LICENSE-2.0 8 | 9 | Unless required by applicable law or agreed to in writing, software 10 | distributed under the License is distributed on an "AS IS" BASIS, 11 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | See the License for the specific language governing permissions and 13 | limitations under the License. -------------------------------------------------------------------------------- /source/registration/LICENSE_dz.txt: -------------------------------------------------------------------------------- 1 | Copyright [2014] [Xaver Roemer] 2 | 3 | Licensed under the Apache License, Version 2.0 (the "License"); 4 | you may not use this file except in compliance with the License. 5 | You may obtain a copy of the License at 6 | 7 | http://www.apache.org/licenses/LICENSE-2.0 8 | 9 | Unless required by applicable law or agreed to in writing, software 10 | distributed under the License is distributed on an "AS IS" BASIS, 11 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | See the License for the specific language governing permissions and 13 | limitations under the License. -------------------------------------------------------------------------------- /source/registration/LICENSE_el.txt: -------------------------------------------------------------------------------- 1 | Copyright [2014] [Xaver Roemer] 2 | 3 | Licensed under the Apache License, Version 2.0 (the "License"); 4 | you may not use this file except in compliance with the License. 5 | You may obtain a copy of the License at 6 | 7 | http://www.apache.org/licenses/LICENSE-2.0 8 | 9 | Unless required by applicable law or agreed to in writing, software 10 | distributed under the License is distributed on an "AS IS" BASIS, 11 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | See the License for the specific language governing permissions and 13 | limitations under the License. -------------------------------------------------------------------------------- /source/registration/LICENSE_en-ZA.txt: -------------------------------------------------------------------------------- 1 | Copyright [2014] [Xaver Roemer] 2 | 3 | Licensed under the Apache License, Version 2.0 (the "License"); 4 | you may not use this file except in compliance with the License. 5 | You may obtain a copy of the License at 6 | 7 | http://www.apache.org/licenses/LICENSE-2.0 8 | 9 | Unless required by applicable law or agreed to in writing, software 10 | distributed under the License is distributed on an "AS IS" BASIS, 11 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | See the License for the specific language governing permissions and 13 | limitations under the License. -------------------------------------------------------------------------------- /source/registration/LICENSE_eo.txt: -------------------------------------------------------------------------------- 1 | Copyright [2014] [Xaver Roemer] 2 | 3 | Licensed under the Apache License, Version 2.0 (the "License"); 4 | you may not use this file except in compliance with the License. 5 | You may obtain a copy of the License at 6 | 7 | http://www.apache.org/licenses/LICENSE-2.0 8 | 9 | Unless required by applicable law or agreed to in writing, software 10 | distributed under the License is distributed on an "AS IS" BASIS, 11 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | See the License for the specific language governing permissions and 13 | limitations under the License. -------------------------------------------------------------------------------- /source/registration/LICENSE_es.txt: -------------------------------------------------------------------------------- 1 | Copyright [2014] [Xaver Roemer] 2 | 3 | Licensed under the Apache License, Version 2.0 (the "License"); 4 | you may not use this file except in compliance with the License. 5 | You may obtain a copy of the License at 6 | 7 | http://www.apache.org/licenses/LICENSE-2.0 8 | 9 | Unless required by applicable law or agreed to in writing, software 10 | distributed under the License is distributed on an "AS IS" BASIS, 11 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | See the License for the specific language governing permissions and 13 | limitations under the License. -------------------------------------------------------------------------------- /source/registration/LICENSE_et.txt: -------------------------------------------------------------------------------- 1 | Copyright [2014] [Xaver Roemer] 2 | 3 | Licensed under the Apache License, Version 2.0 (the "License"); 4 | you may not use this file except in compliance with the License. 5 | You may obtain a copy of the License at 6 | 7 | http://www.apache.org/licenses/LICENSE-2.0 8 | 9 | Unless required by applicable law or agreed to in writing, software 10 | distributed under the License is distributed on an "AS IS" BASIS, 11 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | See the License for the specific language governing permissions and 13 | limitations under the License. -------------------------------------------------------------------------------- /source/registration/LICENSE_eu.txt: -------------------------------------------------------------------------------- 1 | Copyright [2014] [Xaver Roemer] 2 | 3 | Licensed under the Apache License, Version 2.0 (the "License"); 4 | you may not use this file except in compliance with the License. 5 | You may obtain a copy of the License at 6 | 7 | http://www.apache.org/licenses/LICENSE-2.0 8 | 9 | Unless required by applicable law or agreed to in writing, software 10 | distributed under the License is distributed on an "AS IS" BASIS, 11 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | See the License for the specific language governing permissions and 13 | limitations under the License. -------------------------------------------------------------------------------- /source/registration/LICENSE_fa.txt: -------------------------------------------------------------------------------- 1 | Copyright [2014] [Xaver Roemer] 2 | 3 | Licensed under the Apache License, Version 2.0 (the "License"); 4 | you may not use this file except in compliance with the License. 5 | You may obtain a copy of the License at 6 | 7 | http://www.apache.org/licenses/LICENSE-2.0 8 | 9 | Unless required by applicable law or agreed to in writing, software 10 | distributed under the License is distributed on an "AS IS" BASIS, 11 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | See the License for the specific language governing permissions and 13 | limitations under the License. -------------------------------------------------------------------------------- /source/registration/LICENSE_fi.txt: -------------------------------------------------------------------------------- 1 | Copyright [2014] [Xaver Roemer] 2 | 3 | Licensed under the Apache License, Version 2.0 (the "License"); 4 | you may not use this file except in compliance with the License. 5 | You may obtain a copy of the License at 6 | 7 | http://www.apache.org/licenses/LICENSE-2.0 8 | 9 | Unless required by applicable law or agreed to in writing, software 10 | distributed under the License is distributed on an "AS IS" BASIS, 11 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | See the License for the specific language governing permissions and 13 | limitations under the License. -------------------------------------------------------------------------------- /source/registration/LICENSE_fr.txt: -------------------------------------------------------------------------------- 1 | Copyright [2014] [Xaver Roemer] 2 | 3 | Licensed under the Apache License, Version 2.0 (the "License"); 4 | you may not use this file except in compliance with the License. 5 | You may obtain a copy of the License at 6 | 7 | http://www.apache.org/licenses/LICENSE-2.0 8 | 9 | Unless required by applicable law or agreed to in writing, software 10 | distributed under the License is distributed on an "AS IS" BASIS, 11 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | See the License for the specific language governing permissions and 13 | limitations under the License. -------------------------------------------------------------------------------- /source/registration/LICENSE_ga.txt: -------------------------------------------------------------------------------- 1 | Copyright [2014] [Xaver Roemer] 2 | 3 | Licensed under the Apache License, Version 2.0 (the "License"); 4 | you may not use this file except in compliance with the License. 5 | You may obtain a copy of the License at 6 | 7 | http://www.apache.org/licenses/LICENSE-2.0 8 | 9 | Unless required by applicable law or agreed to in writing, software 10 | distributed under the License is distributed on an "AS IS" BASIS, 11 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | See the License for the specific language governing permissions and 13 | limitations under the License. -------------------------------------------------------------------------------- /source/registration/LICENSE_gl.txt: -------------------------------------------------------------------------------- 1 | Copyright [2014] [Xaver Roemer] 2 | 3 | Licensed under the Apache License, Version 2.0 (the "License"); 4 | you may not use this file except in compliance with the License. 5 | You may obtain a copy of the License at 6 | 7 | http://www.apache.org/licenses/LICENSE-2.0 8 | 9 | Unless required by applicable law or agreed to in writing, software 10 | distributed under the License is distributed on an "AS IS" BASIS, 11 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | See the License for the specific language governing permissions and 13 | limitations under the License. -------------------------------------------------------------------------------- /source/registration/LICENSE_gu.txt: -------------------------------------------------------------------------------- 1 | Copyright [2014] [Xaver Roemer] 2 | 3 | Licensed under the Apache License, Version 2.0 (the "License"); 4 | you may not use this file except in compliance with the License. 5 | You may obtain a copy of the License at 6 | 7 | http://www.apache.org/licenses/LICENSE-2.0 8 | 9 | Unless required by applicable law or agreed to in writing, software 10 | distributed under the License is distributed on an "AS IS" BASIS, 11 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | See the License for the specific language governing permissions and 13 | limitations under the License. -------------------------------------------------------------------------------- /source/registration/LICENSE_he.txt: -------------------------------------------------------------------------------- 1 | Copyright [2014] [Xaver Roemer] 2 | 3 | Licensed under the Apache License, Version 2.0 (the "License"); 4 | you may not use this file except in compliance with the License. 5 | You may obtain a copy of the License at 6 | 7 | http://www.apache.org/licenses/LICENSE-2.0 8 | 9 | Unless required by applicable law or agreed to in writing, software 10 | distributed under the License is distributed on an "AS IS" BASIS, 11 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | See the License for the specific language governing permissions and 13 | limitations under the License. -------------------------------------------------------------------------------- /source/registration/LICENSE_hi.txt: -------------------------------------------------------------------------------- 1 | Copyright [2014] [Xaver Roemer] 2 | 3 | Licensed under the Apache License, Version 2.0 (the "License"); 4 | you may not use this file except in compliance with the License. 5 | You may obtain a copy of the License at 6 | 7 | http://www.apache.org/licenses/LICENSE-2.0 8 | 9 | Unless required by applicable law or agreed to in writing, software 10 | distributed under the License is distributed on an "AS IS" BASIS, 11 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | See the License for the specific language governing permissions and 13 | limitations under the License. -------------------------------------------------------------------------------- /source/registration/LICENSE_hr.txt: -------------------------------------------------------------------------------- 1 | Copyright [2014] [Xaver Roemer] 2 | 3 | Licensed under the Apache License, Version 2.0 (the "License"); 4 | you may not use this file except in compliance with the License. 5 | You may obtain a copy of the License at 6 | 7 | http://www.apache.org/licenses/LICENSE-2.0 8 | 9 | Unless required by applicable law or agreed to in writing, software 10 | distributed under the License is distributed on an "AS IS" BASIS, 11 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | See the License for the specific language governing permissions and 13 | limitations under the License. -------------------------------------------------------------------------------- /source/registration/LICENSE_hu.txt: -------------------------------------------------------------------------------- 1 | Copyright [2014] [Xaver Roemer] 2 | 3 | Licensed under the Apache License, Version 2.0 (the "License"); 4 | you may not use this file except in compliance with the License. 5 | You may obtain a copy of the License at 6 | 7 | http://www.apache.org/licenses/LICENSE-2.0 8 | 9 | Unless required by applicable law or agreed to in writing, software 10 | distributed under the License is distributed on an "AS IS" BASIS, 11 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | See the License for the specific language governing permissions and 13 | limitations under the License. -------------------------------------------------------------------------------- /source/registration/LICENSE_id.txt: -------------------------------------------------------------------------------- 1 | Copyright [2014] [Xaver Roemer] 2 | 3 | Licensed under the Apache License, Version 2.0 (the "License"); 4 | you may not use this file except in compliance with the License. 5 | You may obtain a copy of the License at 6 | 7 | http://www.apache.org/licenses/LICENSE-2.0 8 | 9 | Unless required by applicable law or agreed to in writing, software 10 | distributed under the License is distributed on an "AS IS" BASIS, 11 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | See the License for the specific language governing permissions and 13 | limitations under the License. -------------------------------------------------------------------------------- /source/registration/LICENSE_is.txt: -------------------------------------------------------------------------------- 1 | Copyright [2014] [Xaver Roemer] 2 | 3 | Licensed under the Apache License, Version 2.0 (the "License"); 4 | you may not use this file except in compliance with the License. 5 | You may obtain a copy of the License at 6 | 7 | http://www.apache.org/licenses/LICENSE-2.0 8 | 9 | Unless required by applicable law or agreed to in writing, software 10 | distributed under the License is distributed on an "AS IS" BASIS, 11 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | See the License for the specific language governing permissions and 13 | limitations under the License. -------------------------------------------------------------------------------- /source/registration/LICENSE_it.txt: -------------------------------------------------------------------------------- 1 | Copyright [2014] [Xaver Roemer] 2 | 3 | Licensed under the Apache License, Version 2.0 (the "License"); 4 | you may not use this file except in compliance with the License. 5 | You may obtain a copy of the License at 6 | 7 | http://www.apache.org/licenses/LICENSE-2.0 8 | 9 | Unless required by applicable law or agreed to in writing, software 10 | distributed under the License is distributed on an "AS IS" BASIS, 11 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | See the License for the specific language governing permissions and 13 | limitations under the License. -------------------------------------------------------------------------------- /source/registration/LICENSE_ja.txt: -------------------------------------------------------------------------------- 1 | Copyright [2014] [Xaver Roemer] 2 | 3 | Licensed under the Apache License, Version 2.0 (the "License"); 4 | you may not use this file except in compliance with the License. 5 | You may obtain a copy of the License at 6 | 7 | http://www.apache.org/licenses/LICENSE-2.0 8 | 9 | Unless required by applicable law or agreed to in writing, software 10 | distributed under the License is distributed on an "AS IS" BASIS, 11 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | See the License for the specific language governing permissions and 13 | limitations under the License. -------------------------------------------------------------------------------- /source/registration/LICENSE_ka.txt: -------------------------------------------------------------------------------- 1 | Copyright [2014] [Xaver Roemer] 2 | 3 | Licensed under the Apache License, Version 2.0 (the "License"); 4 | you may not use this file except in compliance with the License. 5 | You may obtain a copy of the License at 6 | 7 | http://www.apache.org/licenses/LICENSE-2.0 8 | 9 | Unless required by applicable law or agreed to in writing, software 10 | distributed under the License is distributed on an "AS IS" BASIS, 11 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | See the License for the specific language governing permissions and 13 | limitations under the License. -------------------------------------------------------------------------------- /source/registration/LICENSE_kid.txt: -------------------------------------------------------------------------------- 1 | Copyright [2014] [Xaver Roemer] 2 | 3 | Licensed under the Apache License, Version 2.0 (the "License"); 4 | you may not use this file except in compliance with the License. 5 | You may obtain a copy of the License at 6 | 7 | http://www.apache.org/licenses/LICENSE-2.0 8 | 9 | Unless required by applicable law or agreed to in writing, software 10 | distributed under the License is distributed on an "AS IS" BASIS, 11 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | See the License for the specific language governing permissions and 13 | limitations under the License. -------------------------------------------------------------------------------- /source/registration/LICENSE_kk.txt: -------------------------------------------------------------------------------- 1 | Copyright [2014] [Xaver Roemer] 2 | 3 | Licensed under the Apache License, Version 2.0 (the "License"); 4 | you may not use this file except in compliance with the License. 5 | You may obtain a copy of the License at 6 | 7 | http://www.apache.org/licenses/LICENSE-2.0 8 | 9 | Unless required by applicable law or agreed to in writing, software 10 | distributed under the License is distributed on an "AS IS" BASIS, 11 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | See the License for the specific language governing permissions and 13 | limitations under the License. -------------------------------------------------------------------------------- /source/registration/LICENSE_km.txt: -------------------------------------------------------------------------------- 1 | Copyright [2014] [Xaver Roemer] 2 | 3 | Licensed under the Apache License, Version 2.0 (the "License"); 4 | you may not use this file except in compliance with the License. 5 | You may obtain a copy of the License at 6 | 7 | http://www.apache.org/licenses/LICENSE-2.0 8 | 9 | Unless required by applicable law or agreed to in writing, software 10 | distributed under the License is distributed on an "AS IS" BASIS, 11 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | See the License for the specific language governing permissions and 13 | limitations under the License. -------------------------------------------------------------------------------- /source/registration/LICENSE_kn.txt: -------------------------------------------------------------------------------- 1 | Copyright [2014] [Xaver Roemer] 2 | 3 | Licensed under the Apache License, Version 2.0 (the "License"); 4 | you may not use this file except in compliance with the License. 5 | You may obtain a copy of the License at 6 | 7 | http://www.apache.org/licenses/LICENSE-2.0 8 | 9 | Unless required by applicable law or agreed to in writing, software 10 | distributed under the License is distributed on an "AS IS" BASIS, 11 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | See the License for the specific language governing permissions and 13 | limitations under the License. -------------------------------------------------------------------------------- /source/registration/LICENSE_ko.txt: -------------------------------------------------------------------------------- 1 | Copyright [2014] [Xaver Roemer] 2 | 3 | Licensed under the Apache License, Version 2.0 (the "License"); 4 | you may not use this file except in compliance with the License. 5 | You may obtain a copy of the License at 6 | 7 | http://www.apache.org/licenses/LICENSE-2.0 8 | 9 | Unless required by applicable law or agreed to in writing, software 10 | distributed under the License is distributed on an "AS IS" BASIS, 11 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | See the License for the specific language governing permissions and 13 | limitations under the License. -------------------------------------------------------------------------------- /source/registration/LICENSE_kok.txt: -------------------------------------------------------------------------------- 1 | Copyright [2014] [Xaver Roemer] 2 | 3 | Licensed under the Apache License, Version 2.0 (the "License"); 4 | you may not use this file except in compliance with the License. 5 | You may obtain a copy of the License at 6 | 7 | http://www.apache.org/licenses/LICENSE-2.0 8 | 9 | Unless required by applicable law or agreed to in writing, software 10 | distributed under the License is distributed on an "AS IS" BASIS, 11 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | See the License for the specific language governing permissions and 13 | limitations under the License. -------------------------------------------------------------------------------- /source/registration/LICENSE_ks.txt: -------------------------------------------------------------------------------- 1 | Copyright [2014] [Xaver Roemer] 2 | 3 | Licensed under the Apache License, Version 2.0 (the "License"); 4 | you may not use this file except in compliance with the License. 5 | You may obtain a copy of the License at 6 | 7 | http://www.apache.org/licenses/LICENSE-2.0 8 | 9 | Unless required by applicable law or agreed to in writing, software 10 | distributed under the License is distributed on an "AS IS" BASIS, 11 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | See the License for the specific language governing permissions and 13 | limitations under the License. -------------------------------------------------------------------------------- /source/registration/LICENSE_ku.txt: -------------------------------------------------------------------------------- 1 | Copyright [2014] [Xaver Roemer] 2 | 3 | Licensed under the Apache License, Version 2.0 (the "License"); 4 | you may not use this file except in compliance with the License. 5 | You may obtain a copy of the License at 6 | 7 | http://www.apache.org/licenses/LICENSE-2.0 8 | 9 | Unless required by applicable law or agreed to in writing, software 10 | distributed under the License is distributed on an "AS IS" BASIS, 11 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | See the License for the specific language governing permissions and 13 | limitations under the License. -------------------------------------------------------------------------------- /source/registration/LICENSE_lt.txt: -------------------------------------------------------------------------------- 1 | Copyright [2014] [Xaver Roemer] 2 | 3 | Licensed under the Apache License, Version 2.0 (the "License"); 4 | you may not use this file except in compliance with the License. 5 | You may obtain a copy of the License at 6 | 7 | http://www.apache.org/licenses/LICENSE-2.0 8 | 9 | Unless required by applicable law or agreed to in writing, software 10 | distributed under the License is distributed on an "AS IS" BASIS, 11 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | See the License for the specific language governing permissions and 13 | limitations under the License. -------------------------------------------------------------------------------- /source/registration/LICENSE_lv.txt: -------------------------------------------------------------------------------- 1 | Copyright [2014] [Xaver Roemer] 2 | 3 | Licensed under the Apache License, Version 2.0 (the "License"); 4 | you may not use this file except in compliance with the License. 5 | You may obtain a copy of the License at 6 | 7 | http://www.apache.org/licenses/LICENSE-2.0 8 | 9 | Unless required by applicable law or agreed to in writing, software 10 | distributed under the License is distributed on an "AS IS" BASIS, 11 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | See the License for the specific language governing permissions and 13 | limitations under the License. -------------------------------------------------------------------------------- /source/registration/LICENSE_mai.txt: -------------------------------------------------------------------------------- 1 | Copyright [2014] [Xaver Roemer] 2 | 3 | Licensed under the Apache License, Version 2.0 (the "License"); 4 | you may not use this file except in compliance with the License. 5 | You may obtain a copy of the License at 6 | 7 | http://www.apache.org/licenses/LICENSE-2.0 8 | 9 | Unless required by applicable law or agreed to in writing, software 10 | distributed under the License is distributed on an "AS IS" BASIS, 11 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | See the License for the specific language governing permissions and 13 | limitations under the License. -------------------------------------------------------------------------------- /source/registration/LICENSE_mk.txt: -------------------------------------------------------------------------------- 1 | Copyright [2014] [Xaver Roemer] 2 | 3 | Licensed under the Apache License, Version 2.0 (the "License"); 4 | you may not use this file except in compliance with the License. 5 | You may obtain a copy of the License at 6 | 7 | http://www.apache.org/licenses/LICENSE-2.0 8 | 9 | Unless required by applicable law or agreed to in writing, software 10 | distributed under the License is distributed on an "AS IS" BASIS, 11 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | See the License for the specific language governing permissions and 13 | limitations under the License. -------------------------------------------------------------------------------- /source/registration/LICENSE_ml.txt: -------------------------------------------------------------------------------- 1 | Copyright [2014] [Xaver Roemer] 2 | 3 | Licensed under the Apache License, Version 2.0 (the "License"); 4 | you may not use this file except in compliance with the License. 5 | You may obtain a copy of the License at 6 | 7 | http://www.apache.org/licenses/LICENSE-2.0 8 | 9 | Unless required by applicable law or agreed to in writing, software 10 | distributed under the License is distributed on an "AS IS" BASIS, 11 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | See the License for the specific language governing permissions and 13 | limitations under the License. -------------------------------------------------------------------------------- /source/registration/LICENSE_mn.txt: -------------------------------------------------------------------------------- 1 | Copyright [2014] [Xaver Roemer] 2 | 3 | Licensed under the Apache License, Version 2.0 (the "License"); 4 | you may not use this file except in compliance with the License. 5 | You may obtain a copy of the License at 6 | 7 | http://www.apache.org/licenses/LICENSE-2.0 8 | 9 | Unless required by applicable law or agreed to in writing, software 10 | distributed under the License is distributed on an "AS IS" BASIS, 11 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | See the License for the specific language governing permissions and 13 | limitations under the License. -------------------------------------------------------------------------------- /source/registration/LICENSE_mni.txt: -------------------------------------------------------------------------------- 1 | Copyright [2014] [Xaver Roemer] 2 | 3 | Licensed under the Apache License, Version 2.0 (the "License"); 4 | you may not use this file except in compliance with the License. 5 | You may obtain a copy of the License at 6 | 7 | http://www.apache.org/licenses/LICENSE-2.0 8 | 9 | Unless required by applicable law or agreed to in writing, software 10 | distributed under the License is distributed on an "AS IS" BASIS, 11 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | See the License for the specific language governing permissions and 13 | limitations under the License. -------------------------------------------------------------------------------- /source/registration/LICENSE_mr.txt: -------------------------------------------------------------------------------- 1 | Copyright [2014] [Xaver Roemer] 2 | 3 | Licensed under the Apache License, Version 2.0 (the "License"); 4 | you may not use this file except in compliance with the License. 5 | You may obtain a copy of the License at 6 | 7 | http://www.apache.org/licenses/LICENSE-2.0 8 | 9 | Unless required by applicable law or agreed to in writing, software 10 | distributed under the License is distributed on an "AS IS" BASIS, 11 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | See the License for the specific language governing permissions and 13 | limitations under the License. -------------------------------------------------------------------------------- /source/registration/LICENSE_my.txt: -------------------------------------------------------------------------------- 1 | Copyright [2014] [Xaver Roemer] 2 | 3 | Licensed under the Apache License, Version 2.0 (the "License"); 4 | you may not use this file except in compliance with the License. 5 | You may obtain a copy of the License at 6 | 7 | http://www.apache.org/licenses/LICENSE-2.0 8 | 9 | Unless required by applicable law or agreed to in writing, software 10 | distributed under the License is distributed on an "AS IS" BASIS, 11 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | See the License for the specific language governing permissions and 13 | limitations under the License. -------------------------------------------------------------------------------- /source/registration/LICENSE_nb.txt: -------------------------------------------------------------------------------- 1 | Copyright [2014] [Xaver Roemer] 2 | 3 | Licensed under the Apache License, Version 2.0 (the "License"); 4 | you may not use this file except in compliance with the License. 5 | You may obtain a copy of the License at 6 | 7 | http://www.apache.org/licenses/LICENSE-2.0 8 | 9 | Unless required by applicable law or agreed to in writing, software 10 | distributed under the License is distributed on an "AS IS" BASIS, 11 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | See the License for the specific language governing permissions and 13 | limitations under the License. -------------------------------------------------------------------------------- /source/registration/LICENSE_ne.txt: -------------------------------------------------------------------------------- 1 | Copyright [2014] [Xaver Roemer] 2 | 3 | Licensed under the Apache License, Version 2.0 (the "License"); 4 | you may not use this file except in compliance with the License. 5 | You may obtain a copy of the License at 6 | 7 | http://www.apache.org/licenses/LICENSE-2.0 8 | 9 | Unless required by applicable law or agreed to in writing, software 10 | distributed under the License is distributed on an "AS IS" BASIS, 11 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | See the License for the specific language governing permissions and 13 | limitations under the License. -------------------------------------------------------------------------------- /source/registration/LICENSE_nl.txt: -------------------------------------------------------------------------------- 1 | Copyright [2014] [Xaver Roemer] 2 | 3 | Licensed under the Apache License, Version 2.0 (the "License"); 4 | you may not use this file except in compliance with the License. 5 | You may obtain a copy of the License at 6 | 7 | http://www.apache.org/licenses/LICENSE-2.0 8 | 9 | Unless required by applicable law or agreed to in writing, software 10 | distributed under the License is distributed on an "AS IS" BASIS, 11 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | See the License for the specific language governing permissions and 13 | limitations under the License. -------------------------------------------------------------------------------- /source/registration/LICENSE_nn.txt: -------------------------------------------------------------------------------- 1 | Copyright [2014] [Xaver Roemer] 2 | 3 | Licensed under the Apache License, Version 2.0 (the "License"); 4 | you may not use this file except in compliance with the License. 5 | You may obtain a copy of the License at 6 | 7 | http://www.apache.org/licenses/LICENSE-2.0 8 | 9 | Unless required by applicable law or agreed to in writing, software 10 | distributed under the License is distributed on an "AS IS" BASIS, 11 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | See the License for the specific language governing permissions and 13 | limitations under the License. -------------------------------------------------------------------------------- /source/registration/LICENSE_nr.txt: -------------------------------------------------------------------------------- 1 | Copyright [2014] [Xaver Roemer] 2 | 3 | Licensed under the Apache License, Version 2.0 (the "License"); 4 | you may not use this file except in compliance with the License. 5 | You may obtain a copy of the License at 6 | 7 | http://www.apache.org/licenses/LICENSE-2.0 8 | 9 | Unless required by applicable law or agreed to in writing, software 10 | distributed under the License is distributed on an "AS IS" BASIS, 11 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | See the License for the specific language governing permissions and 13 | limitations under the License. -------------------------------------------------------------------------------- /source/registration/LICENSE_ns.txt: -------------------------------------------------------------------------------- 1 | Copyright [2014] [Xaver Roemer] 2 | 3 | Licensed under the Apache License, Version 2.0 (the "License"); 4 | you may not use this file except in compliance with the License. 5 | You may obtain a copy of the License at 6 | 7 | http://www.apache.org/licenses/LICENSE-2.0 8 | 9 | Unless required by applicable law or agreed to in writing, software 10 | distributed under the License is distributed on an "AS IS" BASIS, 11 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | See the License for the specific language governing permissions and 13 | limitations under the License. -------------------------------------------------------------------------------- /source/registration/LICENSE_oc.txt: -------------------------------------------------------------------------------- 1 | Copyright [2014] [Xaver Roemer] 2 | 3 | Licensed under the Apache License, Version 2.0 (the "License"); 4 | you may not use this file except in compliance with the License. 5 | You may obtain a copy of the License at 6 | 7 | http://www.apache.org/licenses/LICENSE-2.0 8 | 9 | Unless required by applicable law or agreed to in writing, software 10 | distributed under the License is distributed on an "AS IS" BASIS, 11 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | See the License for the specific language governing permissions and 13 | limitations under the License. -------------------------------------------------------------------------------- /source/registration/LICENSE_om.txt: -------------------------------------------------------------------------------- 1 | Copyright [2014] [Xaver Roemer] 2 | 3 | Licensed under the Apache License, Version 2.0 (the "License"); 4 | you may not use this file except in compliance with the License. 5 | You may obtain a copy of the License at 6 | 7 | http://www.apache.org/licenses/LICENSE-2.0 8 | 9 | Unless required by applicable law or agreed to in writing, software 10 | distributed under the License is distributed on an "AS IS" BASIS, 11 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | See the License for the specific language governing permissions and 13 | limitations under the License. -------------------------------------------------------------------------------- /source/registration/LICENSE_or.txt: -------------------------------------------------------------------------------- 1 | Copyright [2014] [Xaver Roemer] 2 | 3 | Licensed under the Apache License, Version 2.0 (the "License"); 4 | you may not use this file except in compliance with the License. 5 | You may obtain a copy of the License at 6 | 7 | http://www.apache.org/licenses/LICENSE-2.0 8 | 9 | Unless required by applicable law or agreed to in writing, software 10 | distributed under the License is distributed on an "AS IS" BASIS, 11 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | See the License for the specific language governing permissions and 13 | limitations under the License. -------------------------------------------------------------------------------- /source/registration/LICENSE_pa-IN.txt: -------------------------------------------------------------------------------- 1 | Copyright [2014] [Xaver Roemer] 2 | 3 | Licensed under the Apache License, Version 2.0 (the "License"); 4 | you may not use this file except in compliance with the License. 5 | You may obtain a copy of the License at 6 | 7 | http://www.apache.org/licenses/LICENSE-2.0 8 | 9 | Unless required by applicable law or agreed to in writing, software 10 | distributed under the License is distributed on an "AS IS" BASIS, 11 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | See the License for the specific language governing permissions and 13 | limitations under the License. -------------------------------------------------------------------------------- /source/registration/LICENSE_pap.txt: -------------------------------------------------------------------------------- 1 | Copyright [2014] [Xaver Roemer] 2 | 3 | Licensed under the Apache License, Version 2.0 (the "License"); 4 | you may not use this file except in compliance with the License. 5 | You may obtain a copy of the License at 6 | 7 | http://www.apache.org/licenses/LICENSE-2.0 8 | 9 | Unless required by applicable law or agreed to in writing, software 10 | distributed under the License is distributed on an "AS IS" BASIS, 11 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | See the License for the specific language governing permissions and 13 | limitations under the License. -------------------------------------------------------------------------------- /source/registration/LICENSE_pl.txt: -------------------------------------------------------------------------------- 1 | Copyright [2014] [Xaver Roemer] 2 | 3 | Licensed under the Apache License, Version 2.0 (the "License"); 4 | you may not use this file except in compliance with the License. 5 | You may obtain a copy of the License at 6 | 7 | http://www.apache.org/licenses/LICENSE-2.0 8 | 9 | Unless required by applicable law or agreed to in writing, software 10 | distributed under the License is distributed on an "AS IS" BASIS, 11 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | See the License for the specific language governing permissions and 13 | limitations under the License. -------------------------------------------------------------------------------- /source/registration/LICENSE_pt-BR.txt: -------------------------------------------------------------------------------- 1 | Copyright [2014] [Xaver Roemer] 2 | 3 | Licensed under the Apache License, Version 2.0 (the "License"); 4 | you may not use this file except in compliance with the License. 5 | You may obtain a copy of the License at 6 | 7 | http://www.apache.org/licenses/LICENSE-2.0 8 | 9 | Unless required by applicable law or agreed to in writing, software 10 | distributed under the License is distributed on an "AS IS" BASIS, 11 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | See the License for the specific language governing permissions and 13 | limitations under the License. -------------------------------------------------------------------------------- /source/registration/LICENSE_pt.txt: -------------------------------------------------------------------------------- 1 | Copyright [2014] [Xaver Roemer] 2 | 3 | Licensed under the Apache License, Version 2.0 (the "License"); 4 | you may not use this file except in compliance with the License. 5 | You may obtain a copy of the License at 6 | 7 | http://www.apache.org/licenses/LICENSE-2.0 8 | 9 | Unless required by applicable law or agreed to in writing, software 10 | distributed under the License is distributed on an "AS IS" BASIS, 11 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | See the License for the specific language governing permissions and 13 | limitations under the License. -------------------------------------------------------------------------------- /source/registration/LICENSE_ro.txt: -------------------------------------------------------------------------------- 1 | Copyright [2014] [Xaver Roemer] 2 | 3 | Licensed under the Apache License, Version 2.0 (the "License"); 4 | you may not use this file except in compliance with the License. 5 | You may obtain a copy of the License at 6 | 7 | http://www.apache.org/licenses/LICENSE-2.0 8 | 9 | Unless required by applicable law or agreed to in writing, software 10 | distributed under the License is distributed on an "AS IS" BASIS, 11 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | See the License for the specific language governing permissions and 13 | limitations under the License. -------------------------------------------------------------------------------- /source/registration/LICENSE_ru.txt: -------------------------------------------------------------------------------- 1 | Copyright [2014] [Xaver Roemer] 2 | 3 | Licensed under the Apache License, Version 2.0 (the "License"); 4 | you may not use this file except in compliance with the License. 5 | You may obtain a copy of the License at 6 | 7 | http://www.apache.org/licenses/LICENSE-2.0 8 | 9 | Unless required by applicable law or agreed to in writing, software 10 | distributed under the License is distributed on an "AS IS" BASIS, 11 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | See the License for the specific language governing permissions and 13 | limitations under the License. -------------------------------------------------------------------------------- /source/registration/LICENSE_rw.txt: -------------------------------------------------------------------------------- 1 | Copyright [2014] [Xaver Roemer] 2 | 3 | Licensed under the Apache License, Version 2.0 (the "License"); 4 | you may not use this file except in compliance with the License. 5 | You may obtain a copy of the License at 6 | 7 | http://www.apache.org/licenses/LICENSE-2.0 8 | 9 | Unless required by applicable law or agreed to in writing, software 10 | distributed under the License is distributed on an "AS IS" BASIS, 11 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | See the License for the specific language governing permissions and 13 | limitations under the License. -------------------------------------------------------------------------------- /source/registration/LICENSE_sa-IN.txt: -------------------------------------------------------------------------------- 1 | Copyright [2014] [Xaver Roemer] 2 | 3 | Licensed under the Apache License, Version 2.0 (the "License"); 4 | you may not use this file except in compliance with the License. 5 | You may obtain a copy of the License at 6 | 7 | http://www.apache.org/licenses/LICENSE-2.0 8 | 9 | Unless required by applicable law or agreed to in writing, software 10 | distributed under the License is distributed on an "AS IS" BASIS, 11 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | See the License for the specific language governing permissions and 13 | limitations under the License. -------------------------------------------------------------------------------- /source/registration/LICENSE_sat.txt: -------------------------------------------------------------------------------- 1 | Copyright [2014] [Xaver Roemer] 2 | 3 | Licensed under the Apache License, Version 2.0 (the "License"); 4 | you may not use this file except in compliance with the License. 5 | You may obtain a copy of the License at 6 | 7 | http://www.apache.org/licenses/LICENSE-2.0 8 | 9 | Unless required by applicable law or agreed to in writing, software 10 | distributed under the License is distributed on an "AS IS" BASIS, 11 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | See the License for the specific language governing permissions and 13 | limitations under the License. -------------------------------------------------------------------------------- /source/registration/LICENSE_sd.txt: -------------------------------------------------------------------------------- 1 | Copyright [2014] [Xaver Roemer] 2 | 3 | Licensed under the Apache License, Version 2.0 (the "License"); 4 | you may not use this file except in compliance with the License. 5 | You may obtain a copy of the License at 6 | 7 | http://www.apache.org/licenses/LICENSE-2.0 8 | 9 | Unless required by applicable law or agreed to in writing, software 10 | distributed under the License is distributed on an "AS IS" BASIS, 11 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | See the License for the specific language governing permissions and 13 | limitations under the License. -------------------------------------------------------------------------------- /source/registration/LICENSE_sh.txt: -------------------------------------------------------------------------------- 1 | Copyright [2014] [Xaver Roemer] 2 | 3 | Licensed under the Apache License, Version 2.0 (the "License"); 4 | you may not use this file except in compliance with the License. 5 | You may obtain a copy of the License at 6 | 7 | http://www.apache.org/licenses/LICENSE-2.0 8 | 9 | Unless required by applicable law or agreed to in writing, software 10 | distributed under the License is distributed on an "AS IS" BASIS, 11 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | See the License for the specific language governing permissions and 13 | limitations under the License. -------------------------------------------------------------------------------- /source/registration/LICENSE_si.txt: -------------------------------------------------------------------------------- 1 | Copyright [2014] [Xaver Roemer] 2 | 3 | Licensed under the Apache License, Version 2.0 (the "License"); 4 | you may not use this file except in compliance with the License. 5 | You may obtain a copy of the License at 6 | 7 | http://www.apache.org/licenses/LICENSE-2.0 8 | 9 | Unless required by applicable law or agreed to in writing, software 10 | distributed under the License is distributed on an "AS IS" BASIS, 11 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | See the License for the specific language governing permissions and 13 | limitations under the License. -------------------------------------------------------------------------------- /source/registration/LICENSE_sk.txt: -------------------------------------------------------------------------------- 1 | Copyright [2014] [Xaver Roemer] 2 | 3 | Licensed under the Apache License, Version 2.0 (the "License"); 4 | you may not use this file except in compliance with the License. 5 | You may obtain a copy of the License at 6 | 7 | http://www.apache.org/licenses/LICENSE-2.0 8 | 9 | Unless required by applicable law or agreed to in writing, software 10 | distributed under the License is distributed on an "AS IS" BASIS, 11 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | See the License for the specific language governing permissions and 13 | limitations under the License. -------------------------------------------------------------------------------- /source/registration/LICENSE_sl.txt: -------------------------------------------------------------------------------- 1 | Copyright [2014] [Xaver Roemer] 2 | 3 | Licensed under the Apache License, Version 2.0 (the "License"); 4 | you may not use this file except in compliance with the License. 5 | You may obtain a copy of the License at 6 | 7 | http://www.apache.org/licenses/LICENSE-2.0 8 | 9 | Unless required by applicable law or agreed to in writing, software 10 | distributed under the License is distributed on an "AS IS" BASIS, 11 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | See the License for the specific language governing permissions and 13 | limitations under the License. -------------------------------------------------------------------------------- /source/registration/LICENSE_sr.txt: -------------------------------------------------------------------------------- 1 | Copyright [2014] [Xaver Roemer] 2 | 3 | Licensed under the Apache License, Version 2.0 (the "License"); 4 | you may not use this file except in compliance with the License. 5 | You may obtain a copy of the License at 6 | 7 | http://www.apache.org/licenses/LICENSE-2.0 8 | 9 | Unless required by applicable law or agreed to in writing, software 10 | distributed under the License is distributed on an "AS IS" BASIS, 11 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | See the License for the specific language governing permissions and 13 | limitations under the License. -------------------------------------------------------------------------------- /source/registration/LICENSE_ss.txt: -------------------------------------------------------------------------------- 1 | Copyright [2014] [Xaver Roemer] 2 | 3 | Licensed under the Apache License, Version 2.0 (the "License"); 4 | you may not use this file except in compliance with the License. 5 | You may obtain a copy of the License at 6 | 7 | http://www.apache.org/licenses/LICENSE-2.0 8 | 9 | Unless required by applicable law or agreed to in writing, software 10 | distributed under the License is distributed on an "AS IS" BASIS, 11 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | See the License for the specific language governing permissions and 13 | limitations under the License. -------------------------------------------------------------------------------- /source/registration/LICENSE_st.txt: -------------------------------------------------------------------------------- 1 | Copyright [2014] [Xaver Roemer] 2 | 3 | Licensed under the Apache License, Version 2.0 (the "License"); 4 | you may not use this file except in compliance with the License. 5 | You may obtain a copy of the License at 6 | 7 | http://www.apache.org/licenses/LICENSE-2.0 8 | 9 | Unless required by applicable law or agreed to in writing, software 10 | distributed under the License is distributed on an "AS IS" BASIS, 11 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | See the License for the specific language governing permissions and 13 | limitations under the License. -------------------------------------------------------------------------------- /source/registration/LICENSE_sv.txt: -------------------------------------------------------------------------------- 1 | Copyright [2014] [Xaver Roemer] 2 | 3 | Licensed under the Apache License, Version 2.0 (the "License"); 4 | you may not use this file except in compliance with the License. 5 | You may obtain a copy of the License at 6 | 7 | http://www.apache.org/licenses/LICENSE-2.0 8 | 9 | Unless required by applicable law or agreed to in writing, software 10 | distributed under the License is distributed on an "AS IS" BASIS, 11 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | See the License for the specific language governing permissions and 13 | limitations under the License. -------------------------------------------------------------------------------- /source/registration/LICENSE_sw-TZ.txt: -------------------------------------------------------------------------------- 1 | Copyright [2014] [Xaver Roemer] 2 | 3 | Licensed under the Apache License, Version 2.0 (the "License"); 4 | you may not use this file except in compliance with the License. 5 | You may obtain a copy of the License at 6 | 7 | http://www.apache.org/licenses/LICENSE-2.0 8 | 9 | Unless required by applicable law or agreed to in writing, software 10 | distributed under the License is distributed on an "AS IS" BASIS, 11 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | See the License for the specific language governing permissions and 13 | limitations under the License. -------------------------------------------------------------------------------- /source/registration/LICENSE_ta.txt: -------------------------------------------------------------------------------- 1 | Copyright [2014] [Xaver Roemer] 2 | 3 | Licensed under the Apache License, Version 2.0 (the "License"); 4 | you may not use this file except in compliance with the License. 5 | You may obtain a copy of the License at 6 | 7 | http://www.apache.org/licenses/LICENSE-2.0 8 | 9 | Unless required by applicable law or agreed to in writing, software 10 | distributed under the License is distributed on an "AS IS" BASIS, 11 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | See the License for the specific language governing permissions and 13 | limitations under the License. -------------------------------------------------------------------------------- /source/registration/LICENSE_te.txt: -------------------------------------------------------------------------------- 1 | Copyright [2014] [Xaver Roemer] 2 | 3 | Licensed under the Apache License, Version 2.0 (the "License"); 4 | you may not use this file except in compliance with the License. 5 | You may obtain a copy of the License at 6 | 7 | http://www.apache.org/licenses/LICENSE-2.0 8 | 9 | Unless required by applicable law or agreed to in writing, software 10 | distributed under the License is distributed on an "AS IS" BASIS, 11 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | See the License for the specific language governing permissions and 13 | limitations under the License. -------------------------------------------------------------------------------- /source/registration/LICENSE_tg.txt: -------------------------------------------------------------------------------- 1 | Copyright [2014] [Xaver Roemer] 2 | 3 | Licensed under the Apache License, Version 2.0 (the "License"); 4 | you may not use this file except in compliance with the License. 5 | You may obtain a copy of the License at 6 | 7 | http://www.apache.org/licenses/LICENSE-2.0 8 | 9 | Unless required by applicable law or agreed to in writing, software 10 | distributed under the License is distributed on an "AS IS" BASIS, 11 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | See the License for the specific language governing permissions and 13 | limitations under the License. -------------------------------------------------------------------------------- /source/registration/LICENSE_th.txt: -------------------------------------------------------------------------------- 1 | Copyright [2014] [Xaver Roemer] 2 | 3 | Licensed under the Apache License, Version 2.0 (the "License"); 4 | you may not use this file except in compliance with the License. 5 | You may obtain a copy of the License at 6 | 7 | http://www.apache.org/licenses/LICENSE-2.0 8 | 9 | Unless required by applicable law or agreed to in writing, software 10 | distributed under the License is distributed on an "AS IS" BASIS, 11 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | See the License for the specific language governing permissions and 13 | limitations under the License. -------------------------------------------------------------------------------- /source/registration/LICENSE_tn.txt: -------------------------------------------------------------------------------- 1 | Copyright [2014] [Xaver Roemer] 2 | 3 | Licensed under the Apache License, Version 2.0 (the "License"); 4 | you may not use this file except in compliance with the License. 5 | You may obtain a copy of the License at 6 | 7 | http://www.apache.org/licenses/LICENSE-2.0 8 | 9 | Unless required by applicable law or agreed to in writing, software 10 | distributed under the License is distributed on an "AS IS" BASIS, 11 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | See the License for the specific language governing permissions and 13 | limitations under the License. -------------------------------------------------------------------------------- /source/registration/LICENSE_tr.txt: -------------------------------------------------------------------------------- 1 | Copyright [2014] [Xaver Roemer] 2 | 3 | Licensed under the Apache License, Version 2.0 (the "License"); 4 | you may not use this file except in compliance with the License. 5 | You may obtain a copy of the License at 6 | 7 | http://www.apache.org/licenses/LICENSE-2.0 8 | 9 | Unless required by applicable law or agreed to in writing, software 10 | distributed under the License is distributed on an "AS IS" BASIS, 11 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | See the License for the specific language governing permissions and 13 | limitations under the License. -------------------------------------------------------------------------------- /source/registration/LICENSE_ts.txt: -------------------------------------------------------------------------------- 1 | Copyright [2014] [Xaver Roemer] 2 | 3 | Licensed under the Apache License, Version 2.0 (the "License"); 4 | you may not use this file except in compliance with the License. 5 | You may obtain a copy of the License at 6 | 7 | http://www.apache.org/licenses/LICENSE-2.0 8 | 9 | Unless required by applicable law or agreed to in writing, software 10 | distributed under the License is distributed on an "AS IS" BASIS, 11 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | See the License for the specific language governing permissions and 13 | limitations under the License. -------------------------------------------------------------------------------- /source/registration/LICENSE_ug.txt: -------------------------------------------------------------------------------- 1 | Copyright [2014] [Xaver Roemer] 2 | 3 | Licensed under the Apache License, Version 2.0 (the "License"); 4 | you may not use this file except in compliance with the License. 5 | You may obtain a copy of the License at 6 | 7 | http://www.apache.org/licenses/LICENSE-2.0 8 | 9 | Unless required by applicable law or agreed to in writing, software 10 | distributed under the License is distributed on an "AS IS" BASIS, 11 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | See the License for the specific language governing permissions and 13 | limitations under the License. -------------------------------------------------------------------------------- /source/registration/LICENSE_uk.txt: -------------------------------------------------------------------------------- 1 | Copyright [2014] [Xaver Roemer] 2 | 3 | Licensed under the Apache License, Version 2.0 (the "License"); 4 | you may not use this file except in compliance with the License. 5 | You may obtain a copy of the License at 6 | 7 | http://www.apache.org/licenses/LICENSE-2.0 8 | 9 | Unless required by applicable law or agreed to in writing, software 10 | distributed under the License is distributed on an "AS IS" BASIS, 11 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | See the License for the specific language governing permissions and 13 | limitations under the License. -------------------------------------------------------------------------------- /source/registration/LICENSE_ur.txt: -------------------------------------------------------------------------------- 1 | Copyright [2014] [Xaver Roemer] 2 | 3 | Licensed under the Apache License, Version 2.0 (the "License"); 4 | you may not use this file except in compliance with the License. 5 | You may obtain a copy of the License at 6 | 7 | http://www.apache.org/licenses/LICENSE-2.0 8 | 9 | Unless required by applicable law or agreed to in writing, software 10 | distributed under the License is distributed on an "AS IS" BASIS, 11 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | See the License for the specific language governing permissions and 13 | limitations under the License. -------------------------------------------------------------------------------- /source/registration/LICENSE_uz.txt: -------------------------------------------------------------------------------- 1 | Copyright [2014] [Xaver Roemer] 2 | 3 | Licensed under the Apache License, Version 2.0 (the "License"); 4 | you may not use this file except in compliance with the License. 5 | You may obtain a copy of the License at 6 | 7 | http://www.apache.org/licenses/LICENSE-2.0 8 | 9 | Unless required by applicable law or agreed to in writing, software 10 | distributed under the License is distributed on an "AS IS" BASIS, 11 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | See the License for the specific language governing permissions and 13 | limitations under the License. -------------------------------------------------------------------------------- /source/registration/LICENSE_ve.txt: -------------------------------------------------------------------------------- 1 | Copyright [2014] [Xaver Roemer] 2 | 3 | Licensed under the Apache License, Version 2.0 (the "License"); 4 | you may not use this file except in compliance with the License. 5 | You may obtain a copy of the License at 6 | 7 | http://www.apache.org/licenses/LICENSE-2.0 8 | 9 | Unless required by applicable law or agreed to in writing, software 10 | distributed under the License is distributed on an "AS IS" BASIS, 11 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | See the License for the specific language governing permissions and 13 | limitations under the License. -------------------------------------------------------------------------------- /source/registration/LICENSE_vi.txt: -------------------------------------------------------------------------------- 1 | Copyright [2014] [Xaver Roemer] 2 | 3 | Licensed under the Apache License, Version 2.0 (the "License"); 4 | you may not use this file except in compliance with the License. 5 | You may obtain a copy of the License at 6 | 7 | http://www.apache.org/licenses/LICENSE-2.0 8 | 9 | Unless required by applicable law or agreed to in writing, software 10 | distributed under the License is distributed on an "AS IS" BASIS, 11 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | See the License for the specific language governing permissions and 13 | limitations under the License. -------------------------------------------------------------------------------- /source/registration/LICENSE_xh.txt: -------------------------------------------------------------------------------- 1 | Copyright [2014] [Xaver Roemer] 2 | 3 | Licensed under the Apache License, Version 2.0 (the "License"); 4 | you may not use this file except in compliance with the License. 5 | You may obtain a copy of the License at 6 | 7 | http://www.apache.org/licenses/LICENSE-2.0 8 | 9 | Unless required by applicable law or agreed to in writing, software 10 | distributed under the License is distributed on an "AS IS" BASIS, 11 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | See the License for the specific language governing permissions and 13 | limitations under the License. -------------------------------------------------------------------------------- /source/registration/LICENSE_zh-CN.txt: -------------------------------------------------------------------------------- 1 | Copyright [2014] [Xaver Roemer] 2 | 3 | Licensed under the Apache License, Version 2.0 (the "License"); 4 | you may not use this file except in compliance with the License. 5 | You may obtain a copy of the License at 6 | 7 | http://www.apache.org/licenses/LICENSE-2.0 8 | 9 | Unless required by applicable law or agreed to in writing, software 10 | distributed under the License is distributed on an "AS IS" BASIS, 11 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | See the License for the specific language governing permissions and 13 | limitations under the License. -------------------------------------------------------------------------------- /source/registration/LICENSE_zh-TW.txt: -------------------------------------------------------------------------------- 1 | Copyright [2014] [Xaver Roemer] 2 | 3 | Licensed under the Apache License, Version 2.0 (the "License"); 4 | you may not use this file except in compliance with the License. 5 | You may obtain a copy of the License at 6 | 7 | http://www.apache.org/licenses/LICENSE-2.0 8 | 9 | Unless required by applicable law or agreed to in writing, software 10 | distributed under the License is distributed on an "AS IS" BASIS, 11 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | See the License for the specific language governing permissions and 13 | limitations under the License. -------------------------------------------------------------------------------- /source/registration/LICENSE_zu.txt: -------------------------------------------------------------------------------- 1 | Copyright [2014] [Xaver Roemer] 2 | 3 | Licensed under the Apache License, Version 2.0 (the "License"); 4 | you may not use this file except in compliance with the License. 5 | You may obtain a copy of the License at 6 | 7 | http://www.apache.org/licenses/LICENSE-2.0 8 | 9 | Unless required by applicable law or agreed to in writing, software 10 | distributed under the License is distributed on an "AS IS" BASIS, 11 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | See the License for the specific language governing permissions and 13 | limitations under the License. -------------------------------------------------------------------------------- /source/registration/license_de-DE.txt: -------------------------------------------------------------------------------- 1 | Copyright [2014] [Xaver Roemer] 2 | 3 | Licensed under the Apache License, Version 2.0 (the "License"); 4 | you may not use this file except in compliance with the License. 5 | You may obtain a copy of the License at 6 | 7 | http://www.apache.org/licenses/LICENSE-2.0 8 | 9 | Unless required by applicable law or agreed to in writing, software 10 | distributed under the License is distributed on an "AS IS" BASIS, 11 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | See the License for the specific language governing permissions and 13 | limitations under the License. -------------------------------------------------------------------------------- /source/registration/license_en-GB.txt: -------------------------------------------------------------------------------- 1 | Copyright [2014] [Xaver Roemer] 2 | 3 | Licensed under the Apache License, Version 2.0 (the "License"); 4 | you may not use this file except in compliance with the License. 5 | You may obtain a copy of the License at 6 | 7 | http://www.apache.org/licenses/LICENSE-2.0 8 | 9 | Unless required by applicable law or agreed to in writing, software 10 | distributed under the License is distributed on an "AS IS" BASIS, 11 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | See the License for the specific language governing permissions and 13 | limitations under the License. -------------------------------------------------------------------------------- /source/registration/license_en-US.txt: -------------------------------------------------------------------------------- 1 | Copyright [2014] [Xaver Roemer] 2 | 3 | Licensed under the Apache License, Version 2.0 (the "License"); 4 | you may not use this file except in compliance with the License. 5 | You may obtain a copy of the License at 6 | 7 | http://www.apache.org/licenses/LICENSE-2.0 8 | 9 | Unless required by applicable law or agreed to in writing, software 10 | distributed under the License is distributed on an "AS IS" BASIS, 11 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | See the License for the specific language governing permissions and 13 | limitations under the License. --------------------------------------------------------------------------------