├── vendor └── org_heigl │ └── hyphenator │ ├── tests │ ├── share │ │ ├── unparseable.ini │ │ ├── de_DE.ini │ │ ├── test1 │ │ │ ├── files │ │ │ │ └── dictionaries │ │ │ │ │ └── hyph_de_DE.dic │ │ │ └── Hyphenator.properties │ │ ├── parseable.ini │ │ ├── onlydist.ini.dist │ │ └── test2 │ │ │ └── Hyphenator.properties │ ├── Dictionary │ │ ├── share │ │ │ ├── de_DE.ini │ │ │ ├── hyph_de_DE.dic │ │ │ ├── hyph_de_TE.dic │ │ │ ├── de_TE.ini │ │ │ └── de_TE.default.ini │ │ └── PatternTest.php │ ├── Issue51Test.php │ ├── bootstrap.php │ ├── Tokenizer │ │ ├── Test1Tokenizer.php │ │ ├── TestTokenizer.php │ │ ├── XmlTokenizerTest.php │ │ ├── CustomHyphenationTokenizerTest.php │ │ ├── TokenTest.php │ │ └── PunctuationTokenizerTest.php │ └── Filter │ │ ├── Test1Filter.php │ │ ├── TestFilter.php │ │ ├── Test2Filter.php │ │ ├── FilterTest.php │ │ └── CustomMarkupFilterTest.php │ ├── src │ ├── share │ │ ├── files │ │ │ └── dictionaries │ │ │ │ ├── te_IN.ini │ │ │ │ ├── hyph_lt.dic │ │ │ │ ├── hyph_sh.dic │ │ │ │ ├── hyph_sr.dic │ │ │ │ ├── hyph_sv.dic │ │ │ │ ├── hyph_af_ZA.dic │ │ │ │ ├── hyph_cs_CZ.dic │ │ │ │ ├── hyph_da_DK.dic │ │ │ │ ├── hyph_de_AT.dic │ │ │ │ ├── hyph_de_CH.dic │ │ │ │ ├── hyph_de_DE.dic │ │ │ │ ├── hyph_el_GR.dic │ │ │ │ ├── hyph_et_EE.dic │ │ │ │ ├── hyph_hr_HR.dic │ │ │ │ ├── hyph_lt_LT.dic │ │ │ │ ├── hyph_lv_LV.dic │ │ │ │ ├── hyph_nb_NO.dic │ │ │ │ ├── hyph_nl_NL.dic │ │ │ │ ├── hyph_nn_NO.dic │ │ │ │ ├── hyph_pl_PL.dic │ │ │ │ ├── hyph_pt_BR.dic │ │ │ │ ├── hyph_pt_PT.dic │ │ │ │ ├── hyph_sk_SK.dic │ │ │ │ ├── hyph_sl_SI.dic │ │ │ │ ├── hyph_sr-Latn.dic │ │ │ │ ├── README_hyph_NO.txt │ │ │ │ ├── README_hyph_de.txt │ │ │ │ ├── README_hyph_de_AT.txt │ │ │ │ ├── README_hyph_de_CH.txt │ │ │ │ ├── README_hyph_de_DE.txt │ │ │ │ ├── README_hyph_lv_LV.txt │ │ │ │ ├── README_hyph_pt_BR.TXT │ │ │ │ ├── README_hyph_pt_BR.txt │ │ │ │ ├── README_hyph_pt_PT.txt │ │ │ │ ├── README_hyph_el_GR.txt │ │ │ │ ├── README_hyph_hu_HU.txt │ │ │ │ ├── README_hyph_ca.txt │ │ │ │ ├── README_hyph_sv.txt │ │ │ │ ├── README_hyph_te_IN.txt │ │ │ │ ├── README_hyph_uk_UA.txt │ │ │ │ ├── README_hyph_hr.txt │ │ │ │ ├── README_hyph_lt_LT.txt │ │ │ │ ├── README_hyph_it_IT.txt │ │ │ │ ├── README_hyph_ru_RU.txt │ │ │ │ ├── README_hyph_ro_RO.txt │ │ │ │ ├── README_hyph_sr_sc.txt │ │ │ │ ├── hyph_te_IN.dic │ │ │ │ ├── README_hyph_en_US.txt │ │ │ │ ├── README_hyph_sk_SK.txt │ │ │ │ ├── README_hyph_pl_PL.txt │ │ │ │ ├── zu_ZA.ini │ │ │ │ ├── hyph_zu_ZA.dic │ │ │ │ ├── README_hyph_sl_SI.txt │ │ │ │ ├── hyph_gl.dic │ │ │ │ ├── README_hyph_bg_BG.txt │ │ │ │ ├── README_hyph_nl_NL.txt │ │ │ │ ├── README_hyph_fr.txt │ │ │ │ ├── README_hyph_hr_HR.txt │ │ │ │ └── hyph_it_IT.dic │ │ └── Org │ │ │ └── Heigl │ │ │ └── Hyphenator │ │ │ └── files │ │ │ ├── hyph_da_DK.dic │ │ │ └── hyph_nl_NL.dic │ ├── Anotheronefortesting.php │ ├── Exception.php │ ├── Tokenizer │ │ ├── EmptyToken.php │ │ ├── WhitespaceToken.php │ │ ├── NonWordToken.php │ │ ├── ExcludedWordToken.php │ │ ├── PunktuationTokenizer.php │ │ ├── Tokenizer.php │ │ └── XmlTokenizer.php │ ├── Exception │ │ ├── NoPatternSetException.php │ │ ├── InvalidArgumentException.php │ │ ├── PathNotDirException.php │ │ └── PathNotFoundException.php │ └── Filter │ │ ├── CustomMarkupFilter.php │ │ └── Filter.php │ ├── .coveralls.yml │ ├── doc │ ├── inc │ │ └── images │ │ │ ├── left.png │ │ │ ├── right.png │ │ │ └── extern.png │ ├── hyphenator.xsl │ ├── prerequisites.xml │ ├── license.xml │ ├── upgrading.xml │ ├── installation.xml │ ├── examples.xml │ └── main.xml │ ├── .github │ ├── dependabot.yml │ └── workflows │ │ └── actions.yml │ ├── .gitignore │ ├── docs │ ├── conf.py │ ├── index.rst │ ├── prerequisites.rst │ ├── license.rst │ ├── upgrading.rst │ ├── hyphenator.rst │ └── installation.rst │ ├── tools │ ├── removeBasePath.sh │ ├── changeVersionString.sh │ ├── updateHyphenationFilesFromLibreOffice.sh │ ├── changeCopyrightDate.sh │ ├── renderDicts │ └── createPackage │ ├── CHANGELOG │ ├── .editorconfig │ ├── psalm.xml │ ├── phpunit.xml.dist │ ├── docblox.dist.xml │ ├── LICENSE │ ├── .travis.yml │ ├── composer.json │ └── README.md ├── composer.json ├── .gitignore ├── package.yml ├── .github └── workflows │ └── publish-to-redaxo-org.yml ├── pages ├── index.php └── config.php ├── help.php ├── LICENSE ├── lang ├── en_gb.lang ├── de_de.lang ├── pt_br.lang ├── sv_se.lang └── es_es.lang ├── readme.md └── lib └── class.hyphenator.php /vendor/org_heigl/hyphenator/tests/share/unparseable.ini: -------------------------------------------------------------------------------- 1 | %PDF -------------------------------------------------------------------------------- /vendor/org_heigl/hyphenator/src/share/files/dictionaries/te_IN.ini: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- 1 | { 2 | "require": { 3 | "org_heigl/hyphenator": "^3.0" 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /vendor/org_heigl/hyphenator/tests/share/de_DE.ini: -------------------------------------------------------------------------------- 1 | @:produktionsstrategie = "000000000009800000000" 2 | -------------------------------------------------------------------------------- /vendor/org_heigl/hyphenator/tests/Dictionary/share/de_DE.ini: -------------------------------------------------------------------------------- 1 | täßt = "00020" 2 | träflüch = "00003406" 3 | -------------------------------------------------------------------------------- /vendor/org_heigl/hyphenator/.coveralls.yml: -------------------------------------------------------------------------------- 1 | coverage_clover: clover.xml 2 | json_path: coveralls-upload.json 3 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | vendor/.DS_Store 3 | .DS_Store 4 | vendor/composer/* 5 | composer.lock 6 | vendor/autoload.php 7 | -------------------------------------------------------------------------------- /vendor/org_heigl/hyphenator/tests/share/test1/files/dictionaries/hyph_de_DE.dic: -------------------------------------------------------------------------------- 1 | ISO-8859-1 2 | MAXRIGHT = 2 3 | est7 4 | t8w 5 | 9word -------------------------------------------------------------------------------- /vendor/org_heigl/hyphenator/doc/inc/images/left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfREDAXO/hyphenator/master/vendor/org_heigl/hyphenator/doc/inc/images/left.png -------------------------------------------------------------------------------- /vendor/org_heigl/hyphenator/doc/inc/images/right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfREDAXO/hyphenator/master/vendor/org_heigl/hyphenator/doc/inc/images/right.png -------------------------------------------------------------------------------- /vendor/org_heigl/hyphenator/doc/inc/images/extern.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfREDAXO/hyphenator/master/vendor/org_heigl/hyphenator/doc/inc/images/extern.png -------------------------------------------------------------------------------- /vendor/org_heigl/hyphenator/tests/Dictionary/share/hyph_de_DE.dic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfREDAXO/hyphenator/master/vendor/org_heigl/hyphenator/tests/Dictionary/share/hyph_de_DE.dic -------------------------------------------------------------------------------- /vendor/org_heigl/hyphenator/tests/Dictionary/share/hyph_de_TE.dic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfREDAXO/hyphenator/master/vendor/org_heigl/hyphenator/tests/Dictionary/share/hyph_de_TE.dic -------------------------------------------------------------------------------- /vendor/org_heigl/hyphenator/src/share/files/dictionaries/hyph_lt.dic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfREDAXO/hyphenator/master/vendor/org_heigl/hyphenator/src/share/files/dictionaries/hyph_lt.dic -------------------------------------------------------------------------------- /vendor/org_heigl/hyphenator/src/share/files/dictionaries/hyph_sh.dic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfREDAXO/hyphenator/master/vendor/org_heigl/hyphenator/src/share/files/dictionaries/hyph_sh.dic -------------------------------------------------------------------------------- /vendor/org_heigl/hyphenator/src/share/files/dictionaries/hyph_sr.dic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfREDAXO/hyphenator/master/vendor/org_heigl/hyphenator/src/share/files/dictionaries/hyph_sr.dic -------------------------------------------------------------------------------- /vendor/org_heigl/hyphenator/src/share/files/dictionaries/hyph_sv.dic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfREDAXO/hyphenator/master/vendor/org_heigl/hyphenator/src/share/files/dictionaries/hyph_sv.dic -------------------------------------------------------------------------------- /vendor/org_heigl/hyphenator/src/share/files/dictionaries/hyph_af_ZA.dic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfREDAXO/hyphenator/master/vendor/org_heigl/hyphenator/src/share/files/dictionaries/hyph_af_ZA.dic -------------------------------------------------------------------------------- /vendor/org_heigl/hyphenator/src/share/files/dictionaries/hyph_cs_CZ.dic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfREDAXO/hyphenator/master/vendor/org_heigl/hyphenator/src/share/files/dictionaries/hyph_cs_CZ.dic -------------------------------------------------------------------------------- /vendor/org_heigl/hyphenator/src/share/files/dictionaries/hyph_da_DK.dic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfREDAXO/hyphenator/master/vendor/org_heigl/hyphenator/src/share/files/dictionaries/hyph_da_DK.dic -------------------------------------------------------------------------------- /vendor/org_heigl/hyphenator/src/share/files/dictionaries/hyph_de_AT.dic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfREDAXO/hyphenator/master/vendor/org_heigl/hyphenator/src/share/files/dictionaries/hyph_de_AT.dic -------------------------------------------------------------------------------- /vendor/org_heigl/hyphenator/src/share/files/dictionaries/hyph_de_CH.dic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfREDAXO/hyphenator/master/vendor/org_heigl/hyphenator/src/share/files/dictionaries/hyph_de_CH.dic -------------------------------------------------------------------------------- /vendor/org_heigl/hyphenator/src/share/files/dictionaries/hyph_de_DE.dic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfREDAXO/hyphenator/master/vendor/org_heigl/hyphenator/src/share/files/dictionaries/hyph_de_DE.dic -------------------------------------------------------------------------------- /vendor/org_heigl/hyphenator/src/share/files/dictionaries/hyph_el_GR.dic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfREDAXO/hyphenator/master/vendor/org_heigl/hyphenator/src/share/files/dictionaries/hyph_el_GR.dic -------------------------------------------------------------------------------- /vendor/org_heigl/hyphenator/src/share/files/dictionaries/hyph_et_EE.dic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfREDAXO/hyphenator/master/vendor/org_heigl/hyphenator/src/share/files/dictionaries/hyph_et_EE.dic -------------------------------------------------------------------------------- /vendor/org_heigl/hyphenator/src/share/files/dictionaries/hyph_hr_HR.dic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfREDAXO/hyphenator/master/vendor/org_heigl/hyphenator/src/share/files/dictionaries/hyph_hr_HR.dic -------------------------------------------------------------------------------- /vendor/org_heigl/hyphenator/src/share/files/dictionaries/hyph_lt_LT.dic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfREDAXO/hyphenator/master/vendor/org_heigl/hyphenator/src/share/files/dictionaries/hyph_lt_LT.dic -------------------------------------------------------------------------------- /vendor/org_heigl/hyphenator/src/share/files/dictionaries/hyph_lv_LV.dic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfREDAXO/hyphenator/master/vendor/org_heigl/hyphenator/src/share/files/dictionaries/hyph_lv_LV.dic -------------------------------------------------------------------------------- /vendor/org_heigl/hyphenator/src/share/files/dictionaries/hyph_nb_NO.dic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfREDAXO/hyphenator/master/vendor/org_heigl/hyphenator/src/share/files/dictionaries/hyph_nb_NO.dic -------------------------------------------------------------------------------- /vendor/org_heigl/hyphenator/src/share/files/dictionaries/hyph_nl_NL.dic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfREDAXO/hyphenator/master/vendor/org_heigl/hyphenator/src/share/files/dictionaries/hyph_nl_NL.dic -------------------------------------------------------------------------------- /vendor/org_heigl/hyphenator/src/share/files/dictionaries/hyph_nn_NO.dic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfREDAXO/hyphenator/master/vendor/org_heigl/hyphenator/src/share/files/dictionaries/hyph_nn_NO.dic -------------------------------------------------------------------------------- /vendor/org_heigl/hyphenator/src/share/files/dictionaries/hyph_pl_PL.dic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfREDAXO/hyphenator/master/vendor/org_heigl/hyphenator/src/share/files/dictionaries/hyph_pl_PL.dic -------------------------------------------------------------------------------- /vendor/org_heigl/hyphenator/src/share/files/dictionaries/hyph_pt_BR.dic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfREDAXO/hyphenator/master/vendor/org_heigl/hyphenator/src/share/files/dictionaries/hyph_pt_BR.dic -------------------------------------------------------------------------------- /vendor/org_heigl/hyphenator/src/share/files/dictionaries/hyph_pt_PT.dic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfREDAXO/hyphenator/master/vendor/org_heigl/hyphenator/src/share/files/dictionaries/hyph_pt_PT.dic -------------------------------------------------------------------------------- /vendor/org_heigl/hyphenator/src/share/files/dictionaries/hyph_sk_SK.dic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfREDAXO/hyphenator/master/vendor/org_heigl/hyphenator/src/share/files/dictionaries/hyph_sk_SK.dic -------------------------------------------------------------------------------- /vendor/org_heigl/hyphenator/src/share/files/dictionaries/hyph_sl_SI.dic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfREDAXO/hyphenator/master/vendor/org_heigl/hyphenator/src/share/files/dictionaries/hyph_sl_SI.dic -------------------------------------------------------------------------------- /vendor/org_heigl/hyphenator/src/share/files/dictionaries/hyph_sr-Latn.dic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfREDAXO/hyphenator/master/vendor/org_heigl/hyphenator/src/share/files/dictionaries/hyph_sr-Latn.dic -------------------------------------------------------------------------------- /vendor/org_heigl/hyphenator/src/share/files/dictionaries/README_hyph_NO.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfREDAXO/hyphenator/master/vendor/org_heigl/hyphenator/src/share/files/dictionaries/README_hyph_NO.txt -------------------------------------------------------------------------------- /vendor/org_heigl/hyphenator/src/share/files/dictionaries/README_hyph_de.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfREDAXO/hyphenator/master/vendor/org_heigl/hyphenator/src/share/files/dictionaries/README_hyph_de.txt -------------------------------------------------------------------------------- /vendor/org_heigl/hyphenator/src/share/Org/Heigl/Hyphenator/files/hyph_da_DK.dic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfREDAXO/hyphenator/master/vendor/org_heigl/hyphenator/src/share/Org/Heigl/Hyphenator/files/hyph_da_DK.dic -------------------------------------------------------------------------------- /vendor/org_heigl/hyphenator/src/share/Org/Heigl/Hyphenator/files/hyph_nl_NL.dic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfREDAXO/hyphenator/master/vendor/org_heigl/hyphenator/src/share/Org/Heigl/Hyphenator/files/hyph_nl_NL.dic -------------------------------------------------------------------------------- /vendor/org_heigl/hyphenator/src/share/files/dictionaries/README_hyph_de_AT.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfREDAXO/hyphenator/master/vendor/org_heigl/hyphenator/src/share/files/dictionaries/README_hyph_de_AT.txt -------------------------------------------------------------------------------- /vendor/org_heigl/hyphenator/src/share/files/dictionaries/README_hyph_de_CH.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfREDAXO/hyphenator/master/vendor/org_heigl/hyphenator/src/share/files/dictionaries/README_hyph_de_CH.txt -------------------------------------------------------------------------------- /vendor/org_heigl/hyphenator/src/share/files/dictionaries/README_hyph_de_DE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfREDAXO/hyphenator/master/vendor/org_heigl/hyphenator/src/share/files/dictionaries/README_hyph_de_DE.txt -------------------------------------------------------------------------------- /vendor/org_heigl/hyphenator/src/share/files/dictionaries/README_hyph_lv_LV.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfREDAXO/hyphenator/master/vendor/org_heigl/hyphenator/src/share/files/dictionaries/README_hyph_lv_LV.txt -------------------------------------------------------------------------------- /vendor/org_heigl/hyphenator/src/share/files/dictionaries/README_hyph_pt_BR.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfREDAXO/hyphenator/master/vendor/org_heigl/hyphenator/src/share/files/dictionaries/README_hyph_pt_BR.TXT -------------------------------------------------------------------------------- /vendor/org_heigl/hyphenator/src/share/files/dictionaries/README_hyph_pt_BR.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfREDAXO/hyphenator/master/vendor/org_heigl/hyphenator/src/share/files/dictionaries/README_hyph_pt_BR.txt -------------------------------------------------------------------------------- /vendor/org_heigl/hyphenator/.github/dependabot.yml: -------------------------------------------------------------------------------- 1 | version: 2 2 | updates: 3 | - package-ecosystem: composer 4 | directory: "/" 5 | schedule: 6 | interval: daily 7 | time: "04:00" 8 | open-pull-requests-limit: 10 9 | -------------------------------------------------------------------------------- /vendor/org_heigl/hyphenator/.gitignore: -------------------------------------------------------------------------------- 1 | phpunit.xml 2 | .settings/* 3 | build 4 | .gitconfig 5 | .project 6 | .buildpath 7 | build.number 8 | tmp/ 9 | .phpunit.result.cache 10 | composer.lock 11 | phpcs 12 | phpcs.asc 13 | vendor/ 14 | -------------------------------------------------------------------------------- /vendor/org_heigl/hyphenator/docs/conf.py: -------------------------------------------------------------------------------- 1 | extensions = [] 2 | master_doc = 'index' 3 | project = u'Org\Heigl\Hyphenator' 4 | copyright = u'2008-2020, Andreas Heigl ' 5 | exclude_patterns = ['_build'] 6 | highlight_language = 'php' 7 | html_theme = 'nature' 8 | -------------------------------------------------------------------------------- /vendor/org_heigl/hyphenator/tools/removeBasePath.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | # 3 | # Replace the given basePath from the CodeCoverage reports 4 | # 5 | BASE_PATH=$1 6 | PWD="`pwd`"; 7 | for i in `grep -r $BASE_PATH $PWD | cut -d ":" -f 1`; do 8 | sed -i -E "s#$BASE_PATH##g" $i; 9 | done; -------------------------------------------------------------------------------- /vendor/org_heigl/hyphenator/tests/share/parseable.ini: -------------------------------------------------------------------------------- 1 | noHyphenateString = test 2 | hyphen = "test" 3 | leftMin = 5 4 | rightMin = 5 5 | wordMin = 5 6 | quality = 5 7 | customHyphen = "test" 8 | defaultLocale = "test" 9 | tokenizers = "test1,test2" 10 | filters = "test3,test4" 11 | foo = 'bar' 12 | -------------------------------------------------------------------------------- /vendor/org_heigl/hyphenator/tests/share/onlydist.ini.dist: -------------------------------------------------------------------------------- 1 | noHyphenateString = test 2 | hyphen = "test" 3 | leftMin = 5 4 | rightMin = 5 5 | wordMin = 5 6 | quality = 5 7 | customHyphen = "test" 8 | defaultLocale = "test" 9 | tokenizers = "test1,test2" 10 | filters = "test3,test4" 11 | foo = 'bar' 12 | -------------------------------------------------------------------------------- /vendor/org_heigl/hyphenator/CHANGELOG: -------------------------------------------------------------------------------- 1 | 2011-12-08 - Version 2.0.0 2 | - Refactoring 3 | - Added the manual 4 | 5 | 2011-12-01 - Version 2.0.beta 6 | - Rewrote the complete codebase 7 | - Uses OpenOffice.orgs hyphenation-files 8 | - (nearly) complete test-coverage 9 | 10 | 2009-06-10 - Version 0.1 11 | 12 | Added Quality-Hyphenation -------------------------------------------------------------------------------- /vendor/org_heigl/hyphenator/tests/Issue51Test.php: -------------------------------------------------------------------------------- 1 | 4 | * 5 | * Licenses under the MIT-license. For details see the included file LICENSE.md 6 | */ 7 | 8 | namespace Org\Heigl\HyphenatorTest; 9 | 10 | use PHPUnit\Framework\TestCase; 11 | 12 | class Issue51Test extends TestCase 13 | { 14 | 15 | } 16 | -------------------------------------------------------------------------------- /package.yml: -------------------------------------------------------------------------------- 1 | package: hyphenator 2 | version: '1.3.0' 3 | author: Friends Of REDAXO 4 | supportpage: github.com/FriendsOfREDAXO/hyphenator 5 | 6 | page: 7 | title: 'translate:title' 8 | perm: hyphenator[] 9 | pjax: true 10 | icon: rex-icon fa-file-text-o 11 | subpages: 12 | config: { title: 'translate:config', perm: hyphenator[config] } 13 | 14 | requires: 15 | redaxo: '>=5.1.0' 16 | -------------------------------------------------------------------------------- /vendor/org_heigl/hyphenator/.editorconfig: -------------------------------------------------------------------------------- 1 | root = true 2 | 3 | [*] 4 | end_of_line = lf 5 | indent_style = tab 6 | indent_size = tab 7 | tab_width = 4 8 | charset = utf-8 9 | insert_final_newline = true 10 | trim_trailing_whitespace = true 11 | 12 | [*.yml] 13 | tab_width = 2 14 | 15 | [*.xml] 16 | tab_width = 2 17 | 18 | [*.php] 19 | indent_style = space 20 | indent_size = 4 21 | 22 | [*.rst] 23 | indent_style = space 24 | indent_size = 4 25 | -------------------------------------------------------------------------------- /vendor/org_heigl/hyphenator/docs/index.rst: -------------------------------------------------------------------------------- 1 | Org\Heigl\Hyphenator - Manual 2 | ############################### 3 | 4 | ``Author`` 5 | Andreas Heigl 6 | ``Copyright`` 7 | 2011-2012 8 | 9 | Content 10 | ======= 11 | 12 | .. toctree:: 13 | :maxdepth: 1 14 | 15 | hyphenator.rst 16 | prerequisites.rst 17 | installation.rst 18 | upgrading.rst 19 | examples.rst 20 | configuration.rst 21 | license.rst 22 | 23 | 24 | -------------------------------------------------------------------------------- /vendor/org_heigl/hyphenator/tools/changeVersionString.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | # 3 | # Replace the regex "@version(\s+)[\d\.]+" with "@version\1$newVersionString" 4 | if [ $# -ne 1 ]; then 5 | echo "Usage: $0 " 6 | exit 7 | fi 8 | 9 | newVersionString=$1; 10 | 11 | for i in `grep -R "@version" src tests build.xml README LICENSE CHANGELOG| cut -d ":" -f 1` ; do 12 | sed -i "" -E "s/@version( +).*$/@version\1$newVersionString/g" $i 13 | done -------------------------------------------------------------------------------- /vendor/org_heigl/hyphenator/psalm.xml: -------------------------------------------------------------------------------- 1 | 2 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /.github/workflows/publish-to-redaxo-org.yml: -------------------------------------------------------------------------------- 1 | # Instructions: https://github.com/FriendsOfREDAXO/installer-action/ 2 | 3 | name: Publish to REDAXO.org 4 | on: 5 | release: 6 | types: 7 | - published 8 | 9 | jobs: 10 | redaxo_publish: 11 | runs-on: ubuntu-latest 12 | steps: 13 | - uses: actions/checkout@v2 14 | - uses: FriendsOfREDAXO/installer-action@v1 15 | with: 16 | myredaxo-username: ${{ secrets.MYREDAXO_USERNAME }} 17 | myredaxo-api-key: ${{ secrets.MYREDAXO_API_KEY }} 18 | description: ${{ github.event.release.body }} 19 | 20 | -------------------------------------------------------------------------------- /vendor/org_heigl/hyphenator/src/share/files/dictionaries/README_hyph_pt_PT.txt: -------------------------------------------------------------------------------- 1 | Hyphenation dictionary 2 | ---------------------- 3 | 4 | Language: Portuguese (pt PT). 5 | Origin: Based on the TeX hyphenation tables by Pedro J. de Rezende (Brazilian) and tuned up by J.Joao Dias Almeida 6 | License: GNU GPL license. 7 | Author: conversion author is Paulo Morgado 8 | 9 | 10 | This dictionary is based on syllable matching patterns and therefore should 11 | be usable under other variations of Portuguese. 12 | 13 | HYPH pt PT hyph_pt_PT 14 | 15 | -------------------------------------------------------------------------------- /vendor/org_heigl/hyphenator/tools/updateHyphenationFilesFromLibreOffice.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | set -e 3 | 4 | mkdir -p tmp 5 | cd tmp 6 | curl -LO https://github.com/LibreOffice/dictionaries/archive/master.zip 7 | unzip master.zip 8 | find dictionaries-master -name "hyph_*.dic" -exec cp {} ../src/share/files/dictionaries/ \; 9 | find dictionaries-master -name "README_hyph_*.txt" -exec cp {} ../src/share/files/dictionaries/ \; 10 | cd .. 11 | rm -rf tmp 12 | while read line; do 13 | NEW_NAME=`echo $line | sed "s/_ANY//"`; 14 | mv $line $NEW_NAME 15 | done < <(find src/share/files/dictionaries -name "*_ANY*") 16 | 17 | tools/renderDicts 18 | -------------------------------------------------------------------------------- /vendor/org_heigl/hyphenator/docs/prerequisites.rst: -------------------------------------------------------------------------------- 1 | Prerequisites 2 | ############# 3 | 4 | This Hyphenation-Package has the following requirements: 5 | 6 | - PHP >= 5.3 7 | - mbstring-extension 8 | - Currently all input has to be UTF-8 encoded 9 | 10 | .. warning:: 11 | 12 | CAVEAT: On loading ``Org\Heigl\Hyphenator\Hyphenator`` 13 | the internal encoding of the ``mbstring``-extension will 14 | be set to UTF-8. When you are using something different you have to 15 | call ``mb_internal_encoding('UTF-8')`` before invoking any 16 | of the Hyphenators methods. Otherwise the results might be completely 17 | unpredictable! 18 | -------------------------------------------------------------------------------- /vendor/org_heigl/hyphenator/src/share/files/dictionaries/README_hyph_el_GR.txt: -------------------------------------------------------------------------------- 1 | Hellenic hyphenation dictionary for OpenOffice.org 1.1.0 2 | -------------------------------------------------------- 3 | 4 | Language: Greek a.k.a. Hellenic (el GR). 5 | Version: 1.1b 6 | 7 | License: LGPL 8 | Author: InterZone 9 | 10 | This dictionary should be usable only for monotonic Greek (not polytonics, neither archaic). There may be some problems with words starting with accented vowels, feedback is welcome. Words in quotes do not hyphenate, but it seems like a problem with OpenOffice and not the hyphenation dictionary. 11 | 12 | -------------------------------------------------------------------------------- /vendor/org_heigl/hyphenator/tools/changeCopyrightDate.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | # 3 | # Replace the second year of the copyright note with the given Year 4 | if [ $# -ne 1 ]; then 5 | echo "Usage: $0 " 6 | exit 7 | fi 8 | 9 | newYear=$1; 10 | 11 | for i in `grep -R "@copyright" src tests build.xml README LICENSE CHANGELOG| cut -d ":" -f 1` ; do 12 | sed -i "" -E "s/@copyright([^-]+)-[^ ]+(.+)$/@copyright\1-$newYear\2/g" $i 13 | done 14 | 15 | for i in `grep -R "Copyright" src tests build.xml README LICENSE CHANGELOG| cut -d ":" -f 1` ; do 16 | sed -i "" -E "s/(Copyright \(c\) [^-]+)-[^ ]+(.+)$/\1-$newYear\2/g" $i 17 | done -------------------------------------------------------------------------------- /vendor/org_heigl/hyphenator/src/share/files/dictionaries/README_hyph_hu_HU.txt: -------------------------------------------------------------------------------- 1 | % Hungarian hyphenation patterns with non-standard hyphenation patch 2 | % ------------------------------------------------------------------ 3 | % Patch version: 2010-10-07 4 | % 5 | % Language: Hungarian (hu HU) 6 | % Origin: http://www.github.hu/bencenagy/huhyphn 7 | % License: MPL/GPL/LGPL license, 2011 8 | % Author: Nagy Bence 9 | % Version: v20110815 10 | % Patch: László Németh 11 | % source: http://sourceforge.net/project/magyarispell (OOo huhyphn) 12 | % license: MPL/GPL/LGPL 13 | -------------------------------------------------------------------------------- /vendor/org_heigl/hyphenator/tests/Dictionary/share/de_TE.ini: -------------------------------------------------------------------------------- 1 | @:.aal = "00060" 2 | @:.aba = "06100" 3 | @:.abas = "000340" 4 | @:.abe = "00100" 5 | @:.abei = "000300" 6 | @:.äbi = "00102" 7 | @:.abit = "000300" 8 | @:.abl = "00118" 9 | @:.abr = "00110" 10 | @:.abu = "00130" 11 | @:.ad = "0010" 12 | @:.ado = "00100" 13 | @:.ador = "000340" 14 | @:.alt = "00210" 15 | @:.alti = "000006" 16 | @:.anac = "003030" 17 | @:.analg = "0005210" 18 | @:.ane = "00110" 19 | @:.angs = "000200" 20 | @:.angst = "0000821" 21 | @:.ans = "00610" 22 | @:.app = "00010" 23 | @:.ars = "00210" 24 | @:.arsc = "000600" 25 | @:.art = "00210" 26 | @:.arta = "000600" 27 | @:.artei = "0806000" 28 | @:.asz = "00020" 29 | @:.auf = "00021" 30 | @:.aus = "00023" 31 | -------------------------------------------------------------------------------- /vendor/org_heigl/hyphenator/tests/Dictionary/share/de_TE.default.ini: -------------------------------------------------------------------------------- 1 | @:.aal = "00060" 2 | @:.aba = "06100" 3 | @:.abas = "000340" 4 | @:.abe = "00100" 5 | @:.abei = "000300" 6 | @:.äbi = "00102" 7 | @:.abit = "000300" 8 | @:.abl = "00118" 9 | @:.abr = "00110" 10 | @:.abu = "00130" 11 | @:.ad = "0010" 12 | @:.ado = "00100" 13 | @:.ador = "000340" 14 | @:.alt = "00210" 15 | @:.alti = "000006" 16 | @:.anac = "003030" 17 | @:.analg = "0005210" 18 | @:.ane = "00110" 19 | @:.angs = "000200" 20 | @:.angst = "0000821" 21 | @:.ans = "00610" 22 | @:.app = "00010" 23 | @:.ars = "00210" 24 | @:.arsc = "000600" 25 | @:.art = "00210" 26 | @:.arta = "000600" 27 | @:.artei = "0806000" 28 | @:.asz = "00020" 29 | @:.auf = "00021" 30 | @:.aus = "00023" 31 | -------------------------------------------------------------------------------- /vendor/org_heigl/hyphenator/src/share/files/dictionaries/README_hyph_ca.txt: -------------------------------------------------------------------------------- 1 | _______________________________________________________________________________ 2 | 3 | DICCIONARI DE PARTICIÓ DE MOTS 4 | versió 1.3 5 | 6 | Copyright (C) 2013-2015 Jaume Ortolà --- Riurau Editors 7 | 8 | Llicència (a la vostra elecció): 9 | LGPL v. 3.0 o superior -- http://www.gnu.org/licenses/lgpl-3.0.html 10 | GPL v.3.0 o superior -- http://www.gnu.org/licenses/gpl-3.0.html 11 | 12 | Aquests patrons funcionen amb el LibreOffice i OpenOffice.org 3.2+ 13 | 14 | Més informació: 15 | http://www.softcatala.org/wiki/Rebost:Diccionari_català_de_partició_de_mots 16 | _______________________________________________________________________________ 17 | -------------------------------------------------------------------------------- /vendor/org_heigl/hyphenator/tools/renderDicts: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env php 2 | getFileName(),$result) ) { 13 | continue; 14 | } 15 | echo "\n" . 'rendering ' . $result[1] . ' in '; 16 | 17 | $time = microtime(true); 18 | try{ 19 | Dictionary::parseFile($result[1]); 20 | }catch(\Exception $e){} 21 | echo round(microtime(true)-$time,5) . ' seconds' . "\n"; 22 | } 23 | -------------------------------------------------------------------------------- /vendor/org_heigl/hyphenator/doc/hyphenator.xsl: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 8 | 9 | css/style.css 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /vendor/org_heigl/hyphenator/src/share/files/dictionaries/README_hyph_sv.txt: -------------------------------------------------------------------------------- 1 | This Swedish Hyphenation Dictionary is maintained by 2 | Niklas Johansson . 3 | The most recent version should be available through 4 | the libreoffice extensions respiratory at: 5 | extensions.libreoffice.org/extension-center 6 | or 7 | http://extensions.services.openoffice.org/ 8 | 9 | If you find a Swedish word that is hyphenated incorrectly 10 | please send me a mail at sleeping.pillow@gmail.com 11 | 12 | ********************************* 13 | * Copyright * 14 | ********************************* 15 | 16 | Copyright © 2013 Niklas Johansson 17 | 18 | ******* BEGIN LICENSE BLOCK ******* 19 | * 20 | * MPL/LGPLv3+ dual license 21 | * 22 | 23 | ******* END LICENSE BLOCK ******* 24 | -------------------------------------------------------------------------------- /vendor/org_heigl/hyphenator/phpunit.xml.dist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | tests/ 6 | 7 | 8 | 9 | 10 | disable 11 | 12 | 13 | 14 | 15 | src 16 | 17 | src/share 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | -------------------------------------------------------------------------------- /pages/index.php: -------------------------------------------------------------------------------- 1 | i18n('title')); // $this->i18n('title') ist eine Kurzform für rex_i18n::msg('dummy_title') 9 | 10 | // Die Subpages werden nicht mehr über den "subpage"-Parameter gesteuert, sondern mit über "page" (getrennt mit einem Slash, z. B. page=dummy/config) 11 | // Die einzelnen Teile des page-Pfades können mit der folgenden Funktion ausgelesen werden. 12 | $subpage = rex_be_controller::getCurrentPagePart(2); 13 | 14 | // Subpages können über diese Methode eingebunden werden. So ist sichergestellt, dass auch Subpages funktionieren, 15 | // die von anderen Addons/Plugins hinzugefügt wurden 16 | rex_be_controller::includeCurrentPageSubPath(); 17 | -------------------------------------------------------------------------------- /vendor/org_heigl/hyphenator/src/share/files/dictionaries/README_hyph_te_IN.txt: -------------------------------------------------------------------------------- 1 | This Telugu Hyphenation Dictionary was created by 2 | Santhosh Thottingal, Openoffice Indic Regional Language group. 3 | If you find incorrectly hyphenated words you can submit them 4 | to santhosh.thottingal@gmail.com 5 | 6 | ********************************* 7 | * Copyright * 8 | ********************************* 9 | 10 | Copyright © 2009 Santhosh Thottingal 11 | 12 | ******* BEGIN LICENSE BLOCK ******* 13 | * 14 | * The Telugu Hyphenation Dictionary may be used under the terms 15 | * of either the GNU General Public License Version 3 or later (the "GPL"), or 16 | * the GNU Lesser General Public License Version 3 or later (the "LGPL") 17 | * 18 | * Software distributed under the License is distributed on an "AS IS" basis, 19 | * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License 20 | * for the specific language governing rights and limitations under the 21 | * License. 22 | * 23 | 24 | ******* END LICENSE BLOCK ******* 25 | -------------------------------------------------------------------------------- /vendor/org_heigl/hyphenator/src/share/files/dictionaries/README_hyph_uk_UA.txt: -------------------------------------------------------------------------------- 1 | % Ukrainian hyphenation patterns. 2 | % Copyright 1998-2002 Maksym Polyakov. 3 | % Released 2002/12/19. 4 | % Please, send bug reports via e-mail: 5 | % polyama@auburn.edu 6 | % 7 | % This is free software; you can redistribute it and/or modify 8 | % it under the terms of the GNU General Public License as published by 9 | % the Free Software Foundation; either version 2 of the License, or 10 | % (at your option) any later version. 11 | % 12 | % This file is distributed in the hope that it will be useful, 13 | % but WITHOUT ANY WARRANTY; without even the implied warranty of 14 | % MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 15 | % GNU General Public License for more details. 16 | % 17 | % You should have received a copy of the GNU General Public License 18 | % along with this program; if not, write to the Free Software 19 | % Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 20 | 21 | HYPH uk UA hyph_uk_UA 22 | -------------------------------------------------------------------------------- /help.php: -------------------------------------------------------------------------------- 1 | '; 17 | 18 | $fragment = new rex_fragment(); 19 | $fragment->setVar('class', 'info', false); 20 | $fragment->setVar('title', 'Beispiel: Module Output', false); //translate 21 | $fragment->setVar('body', rex_string::highlight($code), false); 22 | echo $fragment->parse('core/page/section.php'); 23 | -------------------------------------------------------------------------------- /vendor/org_heigl/hyphenator/docblox.dist.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | src/ 5 | 6 | 7 | build/api/ 8 | 9 | TODO 10 | FIXME 11 | @todo 12 | 13 | 14 | php 15 | 16 | public 17 | 18 | 19 | build/api/ 20 | 21 | 22 | warn 23 | 24 | {APP_ROOT}/build/api/docblox.{DATE}.log 25 | {APP_ROOT}/build/api/docblox.{DATE}.errors.log 26 | 27 | 28 | 29 |