├── .github └── workflows │ └── dokuwiki.yml ├── .gitignore ├── DokuImageProcessorDecorator.php ├── DokuPDF.class.php ├── MenuItem.php ├── README ├── _test ├── ActionPagenameSortTest.php ├── DokuImageProcessorTest.php ├── GeneralTest.php ├── RendererTest.php └── SyntaxExportLinkTest.php ├── action.php ├── composer.json ├── composer.lock ├── conf ├── default.php ├── metadata.php └── style.css ├── deleted.files ├── file-pdf.svg ├── lang ├── ca │ ├── lang.php │ └── settings.php ├── ckb │ ├── lang.php │ └── settings.php ├── cs │ ├── lang.php │ └── settings.php ├── da │ ├── lang.php │ └── settings.php ├── de-informal │ ├── lang.php │ └── settings.php ├── de │ ├── lang.php │ └── settings.php ├── en │ ├── lang.php │ └── settings.php ├── eo │ ├── lang.php │ └── settings.php ├── es │ ├── lang.php │ └── settings.php ├── fa │ ├── lang.php │ └── settings.php ├── fi │ ├── lang.php │ └── settings.php ├── fr │ ├── lang.php │ └── settings.php ├── hr │ ├── lang.php │ └── settings.php ├── hu │ ├── lang.php │ └── settings.php ├── it │ ├── lang.php │ └── settings.php ├── ja │ ├── lang.php │ └── settings.php ├── ko │ ├── lang.php │ └── settings.php ├── nl │ ├── lang.php │ └── settings.php ├── no │ ├── lang.php │ └── settings.php ├── pt-br │ ├── lang.php │ └── settings.php ├── pt │ ├── lang.php │ └── settings.php ├── ru │ ├── lang.php │ └── settings.php ├── sk │ ├── lang.php │ └── settings.php ├── sr │ ├── lang.php │ └── settings.php ├── sv │ ├── lang.php │ └── settings.php ├── uk │ ├── lang.php │ └── settings.php ├── vi │ ├── lang.php │ └── settings.php ├── zh-tw │ ├── lang.php │ └── settings.php └── zh │ ├── lang.php │ └── settings.php ├── pagetools-pdfexport-sprite.png ├── plugin.info.txt ├── renderer.php ├── style.css ├── syntax ├── exportlink.php └── pagesetting.php ├── tpl └── default │ ├── README.txt │ ├── citation.html │ ├── footer_even.html │ ├── footer_odd.html │ ├── header_even.html │ ├── header_odd.html │ └── style.css └── vendor ├── autoload.php ├── composer ├── ClassLoader.php ├── InstalledVersions.php ├── LICENSE ├── autoload_classmap.php ├── autoload_files.php ├── autoload_namespaces.php ├── autoload_psr4.php ├── autoload_real.php ├── autoload_static.php ├── installed.json ├── installed.php └── platform_check.php ├── mpdf ├── mpdf │ ├── .github │ │ ├── CONTRIBUTING.md │ │ ├── FUNDING.yml │ │ ├── ISSUE_TEMPLATE │ │ │ ├── Bug_report.md │ │ │ ├── Feature_request.md │ │ │ └── config.yml │ │ └── workflows │ │ │ ├── coverage.yml │ │ │ ├── cs.yml │ │ │ └── tests.yml │ ├── .gitignore │ ├── CHANGELOG.md │ ├── CREDITS.txt │ ├── LICENSE.txt │ ├── README.md │ ├── composer.json │ ├── data │ │ ├── CJKdata.php │ │ ├── collations │ │ │ ├── Afrikaans_South_Africa.php │ │ │ ├── Albanian_Albania.php │ │ │ ├── Alsatian_France.php │ │ │ ├── Arabic_Algeria.php │ │ │ ├── Arabic_Bahrain.php │ │ │ ├── Arabic_Egypt.php │ │ │ ├── Arabic_Iraq.php │ │ │ ├── Arabic_Jordan.php │ │ │ ├── Arabic_Kuwait.php │ │ │ ├── Arabic_Lebanon.php │ │ │ ├── Arabic_Libya.php │ │ │ ├── Arabic_Morocco.php │ │ │ ├── Arabic_Oman.php │ │ │ ├── Arabic_Pseudo_RTL.php │ │ │ ├── Arabic_Qatar.php │ │ │ ├── Arabic_Saudi_Arabia.php │ │ │ ├── Arabic_Syria.php │ │ │ ├── Arabic_Tunisia.php │ │ │ ├── Arabic_Yemen.php │ │ │ ├── Azeri_(Cyrillic)_Azerbaijan.php │ │ │ ├── Azeri_(Latin)_Azerbaijan.php │ │ │ ├── Bashkir_Russia.php │ │ │ ├── Basque_Spain.php │ │ │ ├── Belarusian_Belarus.php │ │ │ ├── Bosnian_(Cyrillic)_Bosnia_and_Herzegovina.php │ │ │ ├── Bosnian_(Latin)_Bosnia_and_Herzegovina.php │ │ │ ├── Breton_France.php │ │ │ ├── Bulgarian_Bulgaria.php │ │ │ ├── Catalan_Spain.php │ │ │ ├── Corsican_France.php │ │ │ ├── Croatian_(Latin)_Bosnia_and_Herzegovina.php │ │ │ ├── Croatian_Croatia.php │ │ │ ├── Czech_Czech_Republic.php │ │ │ ├── Danish_Denmark.php │ │ │ ├── Dari_Afghanistan.php │ │ │ ├── Dutch_Belgium.php │ │ │ ├── Dutch_Netherlands.php │ │ │ ├── English_Australia.php │ │ │ ├── English_Belize.php │ │ │ ├── English_Canada.php │ │ │ ├── English_Caribbean.php │ │ │ ├── English_India.php │ │ │ ├── English_Ireland.php │ │ │ ├── English_Jamaica.php │ │ │ ├── English_Malaysia.php │ │ │ ├── English_New_Zealand.php │ │ │ ├── English_Republic_of_the_Philippines.php │ │ │ ├── English_Singapore.php │ │ │ ├── English_South_Africa.php │ │ │ ├── English_Trinidad_and_Tobago.php │ │ │ ├── English_United_Kingdom.php │ │ │ ├── English_United_States.php │ │ │ ├── English_Zimbabwe.php │ │ │ ├── Estonian_Estonia.php │ │ │ ├── Faroese_Faroe_Islands.php │ │ │ ├── Filipino_Philippines.php │ │ │ ├── Finnish_Finland.php │ │ │ ├── French_Belgium.php │ │ │ ├── French_Canada.php │ │ │ ├── French_France.php │ │ │ ├── French_Luxembourg.php │ │ │ ├── French_Principality_of_Monaco.php │ │ │ ├── French_Switzerland.php │ │ │ ├── Frisian_Netherlands.php │ │ │ ├── Galician_Spain.php │ │ │ ├── German_Austria.php │ │ │ ├── German_Germany.php │ │ │ ├── German_Liechtenstein.php │ │ │ ├── German_Luxembourg.php │ │ │ ├── German_Switzerland.php │ │ │ ├── Greek_Greece.php │ │ │ ├── Greenlandic_Greenland.php │ │ │ ├── Hausa_(Latin)_Nigeria.php │ │ │ ├── Hebrew_Israel.php │ │ │ ├── Hungarian_Hungary.php │ │ │ ├── Icelandic_Iceland.php │ │ │ ├── Igbo_Nigeria.php │ │ │ ├── Indonesian_Indonesia.php │ │ │ ├── Inuktitut_(Latin)_Canada.php │ │ │ ├── Invariant_Language_Invariant_Country.php │ │ │ ├── Irish_Ireland.php │ │ │ ├── Italian_Italy.php │ │ │ ├── Italian_Switzerland.php │ │ │ ├── Kinyarwanda_Rwanda.php │ │ │ ├── Kiswahili_Kenya.php │ │ │ ├── Kyrgyz_Kyrgyzstan.php │ │ │ ├── Latvian_Latvia.php │ │ │ ├── Lithuanian_Lithuania.php │ │ │ ├── Lower_Sorbian_Germany.php │ │ │ ├── Luxembourgish_Luxembourg.php │ │ │ ├── Macedonian_(FYROM)_Macedonia_(FYROM).php │ │ │ ├── Malay_Brunei_Darussalam.php │ │ │ ├── Malay_Malaysia.php │ │ │ ├── Mapudungun_Chile.php │ │ │ ├── Mohawk_Canada.php │ │ │ ├── Mongolian_(Cyrillic)_Mongolia.php │ │ │ ├── Norwegian_(Nynorsk)_Norway.php │ │ │ ├── Occitan_France.php │ │ │ ├── Persian_Iran.php │ │ │ ├── Polish_Poland.php │ │ │ ├── Portuguese_Brazil.php │ │ │ ├── Portuguese_Portugal.php │ │ │ ├── Quechua_Bolivia.php │ │ │ ├── Quechua_Ecuador.php │ │ │ ├── Quechua_Peru.php │ │ │ ├── Romanian_Romania.php │ │ │ ├── Romansh_Switzerland.php │ │ │ ├── Russian_Russia.php │ │ │ ├── Sami_(Inari)_Finland.php │ │ │ ├── Sami_(Lule)_Norway.php │ │ │ ├── Sami_(Lule)_Sweden.php │ │ │ ├── Sami_(Northern)_Finland.php │ │ │ ├── Sami_(Northern)_Norway.php │ │ │ ├── Sami_(Northern)_Sweden.php │ │ │ ├── Sami_(Skolt)_Finland.php │ │ │ ├── Sami_(Southern)_Norway.php │ │ │ ├── Sami_(Southern)_Sweden.php │ │ │ ├── Serbian_(Cyrillic)_Bosnia_and_Herzegovina.php │ │ │ ├── Serbian_(Cyrillic)_Serbia.php │ │ │ ├── Serbian_(Latin)_Bosnia_and_Herzegovina.php │ │ │ ├── Serbian_(Latin)_Serbia.php │ │ │ ├── Sesotho_sa_Leboa_South_Africa.php │ │ │ ├── Setswana_South_Africa.php │ │ │ ├── Slovak_Slovakia.php │ │ │ ├── Slovenian_Slovenia.php │ │ │ ├── Spanish_Argentina.php │ │ │ ├── Spanish_Bolivia.php │ │ │ ├── Spanish_Chile.php │ │ │ ├── Spanish_Colombia.php │ │ │ ├── Spanish_Costa_Rica.php │ │ │ ├── Spanish_Dominican_Republic.php │ │ │ ├── Spanish_Ecuador.php │ │ │ ├── Spanish_El_Salvador.php │ │ │ ├── Spanish_Guatemala.php │ │ │ ├── Spanish_Honduras.php │ │ │ ├── Spanish_Mexico.php │ │ │ ├── Spanish_Nicaragua.php │ │ │ ├── Spanish_Panama.php │ │ │ ├── Spanish_Paraguay.php │ │ │ ├── Spanish_Peru.php │ │ │ ├── Spanish_Puerto_Rico.php │ │ │ ├── Spanish_Spain.php │ │ │ ├── Spanish_United_States.php │ │ │ ├── Spanish_Uruguay.php │ │ │ ├── Spanish_Venezuela.php │ │ │ ├── Swedish_Finland.php │ │ │ ├── Swedish_Sweden.php │ │ │ ├── Tajik_(Cyrillic)_Tajikistan.php │ │ │ ├── Tamazight_(Latin)_Algeria.php │ │ │ ├── Tatar_Russia.php │ │ │ ├── Turkish_Turkey.php │ │ │ ├── Turkmen_Turkmenistan.php │ │ │ ├── Ukrainian_Ukraine.php │ │ │ ├── Upper_Sorbian_Germany.php │ │ │ ├── Urdu_Islamic_Republic_of_Pakistan.php │ │ │ ├── Uzbek_(Cyrillic)_Uzbekistan.php │ │ │ ├── Uzbek_(Latin)_Uzbekistan.php │ │ │ ├── Vietnamese_Vietnam.php │ │ │ ├── Welsh_United_Kingdom.php │ │ │ ├── Wolof_Senegal.php │ │ │ ├── Yakut_Russia.php │ │ │ ├── Yoruba_Nigeria.php │ │ │ ├── isiXhosa_South_Africa.php │ │ │ └── isiZulu_South_Africa.php │ │ ├── entity_substitutions.php │ │ ├── font │ │ │ ├── ccourier.php │ │ │ ├── ccourierb.php │ │ │ ├── ccourierbi.php │ │ │ ├── ccourieri.php │ │ │ ├── chelvetica.php │ │ │ ├── chelveticab.php │ │ │ ├── chelveticabi.php │ │ │ ├── chelveticai.php │ │ │ ├── csymbol.php │ │ │ ├── ctimes.php │ │ │ ├── ctimesb.php │ │ │ ├── ctimesbi.php │ │ │ ├── ctimesi.php │ │ │ └── czapfdingbats.php │ │ ├── iccprofiles │ │ │ └── sRGB_IEC61966-2-1.icc │ │ ├── lang2fonts.css │ │ ├── linebrdictK.dat │ │ ├── linebrdictL.dat │ │ ├── linebrdictT.dat │ │ ├── mpdf.css │ │ ├── no_image.jpg │ │ ├── out.php │ │ ├── patterns │ │ │ ├── NOTES.txt │ │ │ ├── de.php │ │ │ ├── dictionary.txt │ │ │ ├── en.php │ │ │ ├── es.php │ │ │ ├── fi.php │ │ │ ├── fr.php │ │ │ ├── it.php │ │ │ ├── nl.php │ │ │ ├── pl.php │ │ │ ├── ru.php │ │ │ └── sv.php │ │ ├── subs_core.php │ │ ├── subs_win-1252.php │ │ └── upperCase.php │ ├── ruleset.xml │ ├── src │ │ ├── Barcode.php │ │ ├── Barcode │ │ │ ├── AbstractBarcode.php │ │ │ ├── BarcodeException.php │ │ │ ├── BarcodeInterface.php │ │ │ ├── Codabar.php │ │ │ ├── Code11.php │ │ │ ├── Code128.php │ │ │ ├── Code39.php │ │ │ ├── Code93.php │ │ │ ├── EanExt.php │ │ │ ├── EanUpc.php │ │ │ ├── I25.php │ │ │ ├── Imb.php │ │ │ ├── Msi.php │ │ │ ├── Postnet.php │ │ │ ├── Rm4Scc.php │ │ │ └── S25.php │ │ ├── Cache.php │ │ ├── Color │ │ │ ├── ColorConverter.php │ │ │ ├── ColorModeConverter.php │ │ │ ├── ColorSpaceRestrictor.php │ │ │ └── NamedColors.php │ │ ├── Config │ │ │ ├── ConfigVariables.php │ │ │ └── FontVariables.php │ │ ├── Conversion │ │ │ ├── DecToAlpha.php │ │ │ ├── DecToCjk.php │ │ │ ├── DecToHebrew.php │ │ │ ├── DecToOther.php │ │ │ └── DecToRoman.php │ │ ├── Css │ │ │ ├── Border.php │ │ │ ├── DefaultCss.php │ │ │ └── TextVars.php │ │ ├── CssManager.php │ │ ├── DirectWrite.php │ │ ├── Exception │ │ │ ├── FontException.php │ │ │ └── InvalidArgumentException.php │ │ ├── File │ │ │ └── StreamWrapperChecker.php │ │ ├── Fonts │ │ │ ├── FontCache.php │ │ │ ├── FontFileFinder.php │ │ │ ├── GlyphOperator.php │ │ │ └── MetricsGenerator.php │ │ ├── Form.php │ │ ├── FpdiTrait.php │ │ ├── Gif │ │ │ ├── ColorTable.php │ │ │ ├── FileHeader.php │ │ │ ├── Gif.php │ │ │ ├── Image.php │ │ │ ├── ImageHeader.php │ │ │ └── Lzw.php │ │ ├── Gradient.php │ │ ├── HTMLParserMode.php │ │ ├── Hyphenator.php │ │ ├── Image │ │ │ ├── Bmp.php │ │ │ ├── ImageProcessor.php │ │ │ ├── ImageTypeGuesser.php │ │ │ ├── Svg.php │ │ │ └── Wmf.php │ │ ├── Language │ │ │ ├── LanguageToFont.php │ │ │ ├── LanguageToFontInterface.php │ │ │ ├── ScriptToLanguage.php │ │ │ └── ScriptToLanguageInterface.php │ │ ├── Log │ │ │ └── Context.php │ │ ├── Mpdf.php │ │ ├── MpdfException.php │ │ ├── MpdfImageException.php │ │ ├── Otl.php │ │ ├── OtlDump.php │ │ ├── Output │ │ │ └── Destination.php │ │ ├── PageFormat.php │ │ ├── Pdf │ │ │ ├── Protection.php │ │ │ └── Protection │ │ │ │ └── UniqidGenerator.php │ │ ├── RemoteContentFetcher.php │ │ ├── ServiceFactory.php │ │ ├── Shaper │ │ │ ├── Indic.php │ │ │ ├── Myanmar.php │ │ │ └── Sea.php │ │ ├── SizeConverter.php │ │ ├── Strict.php │ │ ├── TTFontFile.php │ │ ├── TTFontFileAnalysis.php │ │ ├── TableOfContents.php │ │ ├── Tag.php │ │ ├── Tag │ │ │ ├── A.php │ │ │ ├── Acronym.php │ │ │ ├── Address.php │ │ │ ├── Annotation.php │ │ │ ├── Article.php │ │ │ ├── Aside.php │ │ │ ├── B.php │ │ │ ├── BarCode.php │ │ │ ├── Bdi.php │ │ │ ├── Bdo.php │ │ │ ├── Big.php │ │ │ ├── BlockQuote.php │ │ │ ├── BlockTag.php │ │ │ ├── Bookmark.php │ │ │ ├── Br.php │ │ │ ├── Caption.php │ │ │ ├── Center.php │ │ │ ├── Cite.php │ │ │ ├── Code.php │ │ │ ├── ColumnBreak.php │ │ │ ├── Columns.php │ │ │ ├── Dd.php │ │ │ ├── Del.php │ │ │ ├── Details.php │ │ │ ├── Div.php │ │ │ ├── Dl.php │ │ │ ├── DotTab.php │ │ │ ├── Dt.php │ │ │ ├── Em.php │ │ │ ├── FieldSet.php │ │ │ ├── FigCaption.php │ │ │ ├── Figure.php │ │ │ ├── Font.php │ │ │ ├── Footer.php │ │ │ ├── Form.php │ │ │ ├── FormFeed.php │ │ │ ├── H1.php │ │ │ ├── H2.php │ │ │ ├── H3.php │ │ │ ├── H4.php │ │ │ ├── H5.php │ │ │ ├── H6.php │ │ │ ├── HGroup.php │ │ │ ├── Header.php │ │ │ ├── Hr.php │ │ │ ├── I.php │ │ │ ├── Img.php │ │ │ ├── IndexEntry.php │ │ │ ├── IndexInsert.php │ │ │ ├── InlineTag.php │ │ │ ├── Input.php │ │ │ ├── Ins.php │ │ │ ├── Kbd.php │ │ │ ├── Legend.php │ │ │ ├── Li.php │ │ │ ├── Main.php │ │ │ ├── Mark.php │ │ │ ├── Meter.php │ │ │ ├── Nav.php │ │ │ ├── NewColumn.php │ │ │ ├── NewPage.php │ │ │ ├── Ol.php │ │ │ ├── Option.php │ │ │ ├── P.php │ │ │ ├── PageBreak.php │ │ │ ├── PageFooter.php │ │ │ ├── PageHeader.php │ │ │ ├── Pre.php │ │ │ ├── Progress.php │ │ │ ├── Q.php │ │ │ ├── S.php │ │ │ ├── Samp.php │ │ │ ├── Section.php │ │ │ ├── Select.php │ │ │ ├── SetHtmlPageFooter.php │ │ │ ├── SetHtmlPageHeader.php │ │ │ ├── SetPageFooter.php │ │ │ ├── SetPageHeader.php │ │ │ ├── Small.php │ │ │ ├── Span.php │ │ │ ├── Strike.php │ │ │ ├── Strong.php │ │ │ ├── Sub.php │ │ │ ├── SubstituteTag.php │ │ │ ├── Summary.php │ │ │ ├── Sup.php │ │ │ ├── TBody.php │ │ │ ├── TFoot.php │ │ │ ├── THead.php │ │ │ ├── Table.php │ │ │ ├── Tag.php │ │ │ ├── Td.php │ │ │ ├── TextArea.php │ │ │ ├── TextCircle.php │ │ │ ├── Th.php │ │ │ ├── Time.php │ │ │ ├── Toc.php │ │ │ ├── TocEntry.php │ │ │ ├── TocPageBreak.php │ │ │ ├── Tr.php │ │ │ ├── Tt.php │ │ │ ├── Tta.php │ │ │ ├── Tts.php │ │ │ ├── Ttz.php │ │ │ ├── U.php │ │ │ ├── Ul.php │ │ │ ├── VarTag.php │ │ │ ├── WatermarkImage.php │ │ │ └── WatermarkText.php │ │ ├── Ucdn.php │ │ ├── Utils │ │ │ ├── Arrays.php │ │ │ ├── NumericString.php │ │ │ ├── PdfDate.php │ │ │ └── UtfString.php │ │ ├── Writer │ │ │ ├── BackgroundWriter.php │ │ │ ├── BaseWriter.php │ │ │ ├── BookmarkWriter.php │ │ │ ├── ColorWriter.php │ │ │ ├── FontWriter.php │ │ │ ├── FormWriter.php │ │ │ ├── ImageWriter.php │ │ │ ├── JavaScriptWriter.php │ │ │ ├── MetadataWriter.php │ │ │ ├── ObjectWriter.php │ │ │ ├── OptionalContentWriter.php │ │ │ ├── PageWriter.php │ │ │ └── ResourceWriter.php │ │ └── functions-dev.php │ ├── tmp │ │ └── .gitignore │ └── ttfonts │ │ ├── AboriginalSansREGULAR.ttf │ │ ├── Abyssinica_SIL.ttf │ │ ├── Aegean.otf │ │ ├── Aegyptus.otf │ │ ├── Akkadian.otf │ │ ├── DBSILBR.ttf │ │ ├── DejaVuSans-Bold.ttf │ │ ├── DejaVuSans-BoldOblique.ttf │ │ ├── DejaVuSans-Oblique.ttf │ │ ├── DejaVuSans.ttf │ │ ├── DejaVuSansCondensed-Bold.ttf │ │ ├── DejaVuSansCondensed-BoldOblique.ttf │ │ ├── DejaVuSansCondensed-Oblique.ttf │ │ ├── DejaVuSansCondensed.ttf │ │ ├── DejaVuSansMono-Bold.ttf │ │ ├── DejaVuSansMono-BoldOblique.ttf │ │ ├── DejaVuSansMono-Oblique.ttf │ │ ├── DejaVuSansMono.ttf │ │ ├── DejaVuSerif-Bold.ttf │ │ ├── DejaVuSerif-BoldItalic.ttf │ │ ├── DejaVuSerif-Italic.ttf │ │ ├── DejaVuSerif.ttf │ │ ├── DejaVuSerifCondensed-Bold.ttf │ │ ├── DejaVuSerifCondensed-BoldItalic.ttf │ │ ├── DejaVuSerifCondensed-Italic.ttf │ │ ├── DejaVuSerifCondensed.ttf │ │ ├── DejaVuinfo.txt │ │ ├── Dhyana-Bold.ttf │ │ ├── Dhyana-Regular.ttf │ │ ├── DhyanaOFL.txt │ │ ├── FreeMono.ttf │ │ ├── FreeMonoBold.ttf │ │ ├── FreeMonoBoldOblique.ttf │ │ ├── FreeMonoOblique.ttf │ │ ├── FreeSans.ttf │ │ ├── FreeSansBold.ttf │ │ ├── FreeSansBoldOblique.ttf │ │ ├── FreeSansOblique.ttf │ │ ├── FreeSerif.ttf │ │ ├── FreeSerifBold.ttf │ │ ├── FreeSerifBoldItalic.ttf │ │ ├── FreeSerifItalic.ttf │ │ ├── GNUFreeFontinfo.txt │ │ ├── Garuda-Bold.ttf │ │ ├── Garuda-BoldOblique.ttf │ │ ├── Garuda-Oblique.ttf │ │ ├── Garuda.ttf │ │ ├── Jomolhari-OFL.txt │ │ ├── Jomolhari.ttf │ │ ├── KhmerOFL.txt │ │ ├── KhmerOS.ttf │ │ ├── Lateef font OFL.txt │ │ ├── LateefRegOT.ttf │ │ ├── Lohit-Kannada.ttf │ │ ├── LohitKannadaOFL.txt │ │ ├── Padauk-book.ttf │ │ ├── Pothana2000.ttf │ │ ├── Quivira.otf │ │ ├── Sun-ExtA.ttf │ │ ├── Sun-ExtB.ttf │ │ ├── SundaneseUnicode-1.0.5.ttf │ │ ├── SyrCOMEdessa.otf │ │ ├── SyrCOMEdessa_license.txt │ │ ├── TaameyDavidCLM-LICENSE.txt │ │ ├── TaameyDavidCLM-Medium.ttf │ │ ├── TaiHeritagePro.ttf │ │ ├── Tharlon-Regular.ttf │ │ ├── TharlonOFL.txt │ │ ├── UnBatang_0613.ttf │ │ ├── Uthman.otf │ │ ├── XB Riyaz.ttf │ │ ├── XB RiyazBd.ttf │ │ ├── XB RiyazBdIt.ttf │ │ ├── XB RiyazIt.ttf │ │ ├── XW Zar Font Info.txt │ │ ├── ZawgyiOne.ttf │ │ ├── ayar.ttf │ │ ├── damase_v.2.ttf │ │ ├── kaputaunicode.ttf │ │ ├── lannaalif-v1-03.ttf │ │ ├── ocrb10.ttf │ │ └── ocrbinfo.txt └── qrcode │ ├── .github │ ├── CONTRIBUTING.md │ ├── FUNDING.yml │ ├── ISSUE_TEMPLATE │ │ ├── Bug_report.md │ │ ├── Feature_request.md │ │ └── config.yml │ └── workflows │ │ ├── coverage.yml │ │ ├── cs.yml │ │ └── tests.yml │ ├── .gitignore │ ├── LICENSE │ ├── README.md │ ├── composer.json │ ├── data │ ├── modele1.dat │ ├── modele10.dat │ ├── modele11.dat │ ├── modele12.dat │ ├── modele13.dat │ ├── modele14.dat │ ├── modele15.dat │ ├── modele16.dat │ ├── modele17.dat │ ├── modele18.dat │ ├── modele19.dat │ ├── modele2.dat │ ├── modele20.dat │ ├── modele21.dat │ ├── modele22.dat │ ├── modele23.dat │ ├── modele24.dat │ ├── modele25.dat │ ├── modele26.dat │ ├── modele27.dat │ ├── modele28.dat │ ├── modele29.dat │ ├── modele3.dat │ ├── modele30.dat │ ├── modele31.dat │ ├── modele32.dat │ ├── modele33.dat │ ├── modele34.dat │ ├── modele35.dat │ ├── modele36.dat │ ├── modele37.dat │ ├── modele38.dat │ ├── modele39.dat │ ├── modele4.dat │ ├── modele40.dat │ ├── modele5.dat │ ├── modele6.dat │ ├── modele7.dat │ ├── modele8.dat │ ├── modele9.dat │ ├── qrv10_0.dat │ ├── qrv10_1.dat │ ├── qrv10_2.dat │ ├── qrv10_3.dat │ ├── qrv11_0.dat │ ├── qrv11_1.dat │ ├── qrv11_2.dat │ ├── qrv11_3.dat │ ├── qrv12_0.dat │ ├── qrv12_1.dat │ ├── qrv12_2.dat │ ├── qrv12_3.dat │ ├── qrv13_0.dat │ ├── qrv13_1.dat │ ├── qrv13_2.dat │ ├── qrv13_3.dat │ ├── qrv14_0.dat │ ├── qrv14_1.dat │ ├── qrv14_2.dat │ ├── qrv14_3.dat │ ├── qrv15_0.dat │ ├── qrv15_1.dat │ ├── qrv15_2.dat │ ├── qrv15_3.dat │ ├── qrv16_0.dat │ ├── qrv16_1.dat │ ├── qrv16_2.dat │ ├── qrv16_3.dat │ ├── qrv17_0.dat │ ├── qrv17_1.dat │ ├── qrv17_2.dat │ ├── qrv17_3.dat │ ├── qrv18_0.dat │ ├── qrv18_1.dat │ ├── qrv18_2.dat │ ├── qrv18_3.dat │ ├── qrv19_0.dat │ ├── qrv19_1.dat │ ├── qrv19_2.dat │ ├── qrv19_3.dat │ ├── qrv1_0.dat │ ├── qrv1_1.dat │ ├── qrv1_2.dat │ ├── qrv1_3.dat │ ├── qrv20_0.dat │ ├── qrv20_1.dat │ ├── qrv20_2.dat │ ├── qrv20_3.dat │ ├── qrv21_0.dat │ ├── qrv21_1.dat │ ├── qrv21_2.dat │ ├── qrv21_3.dat │ ├── qrv22_0.dat │ ├── qrv22_1.dat │ ├── qrv22_2.dat │ ├── qrv22_3.dat │ ├── qrv23_0.dat │ ├── qrv23_1.dat │ ├── qrv23_2.dat │ ├── qrv23_3.dat │ ├── qrv24_0.dat │ ├── qrv24_1.dat │ ├── qrv24_2.dat │ ├── qrv24_3.dat │ ├── qrv25_0.dat │ ├── qrv25_1.dat │ ├── qrv25_2.dat │ ├── qrv25_3.dat │ ├── qrv26_0.dat │ ├── qrv26_1.dat │ ├── qrv26_2.dat │ ├── qrv26_3.dat │ ├── qrv27_0.dat │ ├── qrv27_1.dat │ ├── qrv27_2.dat │ ├── qrv27_3.dat │ ├── qrv28_0.dat │ ├── qrv28_1.dat │ ├── qrv28_2.dat │ ├── qrv28_3.dat │ ├── qrv29_0.dat │ ├── qrv29_1.dat │ ├── qrv29_2.dat │ ├── qrv29_3.dat │ ├── qrv2_0.dat │ ├── qrv2_1.dat │ ├── qrv2_2.dat │ ├── qrv2_3.dat │ ├── qrv30_0.dat │ ├── qrv30_1.dat │ ├── qrv30_2.dat │ ├── qrv30_3.dat │ ├── qrv31_0.dat │ ├── qrv31_1.dat │ ├── qrv31_2.dat │ ├── qrv31_3.dat │ ├── qrv32_0.dat │ ├── qrv32_1.dat │ ├── qrv32_2.dat │ ├── qrv32_3.dat │ ├── qrv33_0.dat │ ├── qrv33_1.dat │ ├── qrv33_2.dat │ ├── qrv33_3.dat │ ├── qrv34_0.dat │ ├── qrv34_1.dat │ ├── qrv34_2.dat │ ├── qrv34_3.dat │ ├── qrv35_0.dat │ ├── qrv35_1.dat │ ├── qrv35_2.dat │ ├── qrv35_3.dat │ ├── qrv36_0.dat │ ├── qrv36_1.dat │ ├── qrv36_2.dat │ ├── qrv36_3.dat │ ├── qrv37_0.dat │ ├── qrv37_1.dat │ ├── qrv37_2.dat │ ├── qrv37_3.dat │ ├── qrv38_0.dat │ ├── qrv38_1.dat │ ├── qrv38_2.dat │ ├── qrv38_3.dat │ ├── qrv39_0.dat │ ├── qrv39_1.dat │ ├── qrv39_2.dat │ ├── qrv39_3.dat │ ├── qrv3_0.dat │ ├── qrv3_1.dat │ ├── qrv3_2.dat │ ├── qrv3_3.dat │ ├── qrv40_0.dat │ ├── qrv40_1.dat │ ├── qrv40_2.dat │ ├── qrv40_3.dat │ ├── qrv4_0.dat │ ├── qrv4_1.dat │ ├── qrv4_2.dat │ ├── qrv4_3.dat │ ├── qrv5_0.dat │ ├── qrv5_1.dat │ ├── qrv5_2.dat │ ├── qrv5_3.dat │ ├── qrv6_0.dat │ ├── qrv6_1.dat │ ├── qrv6_2.dat │ ├── qrv6_3.dat │ ├── qrv7_0.dat │ ├── qrv7_1.dat │ ├── qrv7_2.dat │ ├── qrv7_3.dat │ ├── qrv8_0.dat │ ├── qrv8_1.dat │ ├── qrv8_2.dat │ ├── qrv8_3.dat │ ├── qrv9_0.dat │ ├── qrv9_1.dat │ ├── qrv9_2.dat │ ├── qrv9_3.dat │ ├── qrvfr1.dat │ ├── qrvfr10.dat │ ├── qrvfr11.dat │ ├── qrvfr12.dat │ ├── qrvfr13.dat │ ├── qrvfr14.dat │ ├── qrvfr15.dat │ ├── qrvfr16.dat │ ├── qrvfr17.dat │ ├── qrvfr18.dat │ ├── qrvfr19.dat │ ├── qrvfr2.dat │ ├── qrvfr20.dat │ ├── qrvfr21.dat │ ├── qrvfr22.dat │ ├── qrvfr23.dat │ ├── qrvfr24.dat │ ├── qrvfr25.dat │ ├── qrvfr26.dat │ ├── qrvfr27.dat │ ├── qrvfr28.dat │ ├── qrvfr29.dat │ ├── qrvfr3.dat │ ├── qrvfr30.dat │ ├── qrvfr31.dat │ ├── qrvfr32.dat │ ├── qrvfr33.dat │ ├── qrvfr34.dat │ ├── qrvfr35.dat │ ├── qrvfr36.dat │ ├── qrvfr37.dat │ ├── qrvfr38.dat │ ├── qrvfr39.dat │ ├── qrvfr4.dat │ ├── qrvfr40.dat │ ├── qrvfr5.dat │ ├── qrvfr6.dat │ ├── qrvfr7.dat │ ├── qrvfr8.dat │ ├── qrvfr9.dat │ ├── rsc10.dat │ ├── rsc13.dat │ ├── rsc15.dat │ ├── rsc16.dat │ ├── rsc17.dat │ ├── rsc18.dat │ ├── rsc20.dat │ ├── rsc22.dat │ ├── rsc24.dat │ ├── rsc26.dat │ ├── rsc28.dat │ ├── rsc30.dat │ ├── rsc32.dat │ ├── rsc34.dat │ ├── rsc36.dat │ ├── rsc40.dat │ ├── rsc42.dat │ ├── rsc44.dat │ ├── rsc46.dat │ ├── rsc48.dat │ ├── rsc50.dat │ ├── rsc52.dat │ ├── rsc54.dat │ ├── rsc56.dat │ ├── rsc58.dat │ ├── rsc60.dat │ ├── rsc62.dat │ ├── rsc64.dat │ ├── rsc66.dat │ ├── rsc68.dat │ └── rsc7.dat │ ├── ruleset.xml │ └── src │ ├── Output │ ├── Html.php │ ├── Mpdf.php │ ├── Png.php │ └── Svg.php │ ├── QrCode.php │ └── QrCodeException.php ├── myclabs └── deep-copy │ ├── .github │ └── FUNDING.yml │ ├── LICENSE │ ├── README.md │ ├── composer.json │ └── src │ └── DeepCopy │ ├── DeepCopy.php │ ├── Exception │ ├── CloneException.php │ └── PropertyException.php │ ├── Filter │ ├── Doctrine │ │ ├── DoctrineCollectionFilter.php │ │ ├── DoctrineEmptyCollectionFilter.php │ │ └── DoctrineProxyFilter.php │ ├── Filter.php │ ├── KeepFilter.php │ ├── ReplaceFilter.php │ └── SetNullFilter.php │ ├── Matcher │ ├── Doctrine │ │ └── DoctrineProxyMatcher.php │ ├── Matcher.php │ ├── PropertyMatcher.php │ ├── PropertyNameMatcher.php │ └── PropertyTypeMatcher.php │ ├── Reflection │ └── ReflectionHelper.php │ ├── TypeFilter │ ├── Date │ │ └── DateIntervalFilter.php │ ├── ReplaceFilter.php │ ├── ShallowCopyFilter.php │ ├── Spl │ │ ├── ArrayObjectFilter.php │ │ ├── SplDoublyLinkedList.php │ │ └── SplDoublyLinkedListFilter.php │ └── TypeFilter.php │ ├── TypeMatcher │ └── TypeMatcher.php │ └── deep_copy.php ├── psr └── log │ ├── LICENSE │ ├── Psr │ └── Log │ │ ├── AbstractLogger.php │ │ ├── InvalidArgumentException.php │ │ ├── LogLevel.php │ │ ├── LoggerAwareInterface.php │ │ ├── LoggerAwareTrait.php │ │ ├── LoggerInterface.php │ │ ├── LoggerTrait.php │ │ ├── NullLogger.php │ │ └── Test │ │ ├── DummyTest.php │ │ ├── LoggerInterfaceTest.php │ │ └── TestLogger.php │ ├── README.md │ └── composer.json └── setasign └── fpdi ├── LICENSE.txt ├── README.md ├── SECURITY.md ├── composer.json └── src ├── FpdfTpl.php ├── FpdfTplTrait.php ├── Fpdi.php ├── FpdiException.php ├── FpdiTrait.php ├── PdfParser ├── CrossReference │ ├── AbstractReader.php │ ├── CrossReference.php │ ├── CrossReferenceException.php │ ├── FixedReader.php │ ├── LineReader.php │ └── ReaderInterface.php ├── Filter │ ├── Ascii85.php │ ├── Ascii85Exception.php │ ├── AsciiHex.php │ ├── FilterException.php │ ├── FilterInterface.php │ ├── Flate.php │ ├── FlateException.php │ ├── Lzw.php │ └── LzwException.php ├── PdfParser.php ├── PdfParserException.php ├── StreamReader.php ├── Tokenizer.php └── Type │ ├── PdfArray.php │ ├── PdfBoolean.php │ ├── PdfDictionary.php │ ├── PdfHexString.php │ ├── PdfIndirectObject.php │ ├── PdfIndirectObjectReference.php │ ├── PdfName.php │ ├── PdfNull.php │ ├── PdfNumeric.php │ ├── PdfStream.php │ ├── PdfString.php │ ├── PdfToken.php │ ├── PdfType.php │ └── PdfTypeException.php ├── PdfReader ├── DataStructure │ └── Rectangle.php ├── Page.php ├── PageBoundaries.php ├── PdfReader.php └── PdfReaderException.php ├── Tcpdf └── Fpdi.php ├── TcpdfFpdi.php ├── Tfpdf ├── FpdfTpl.php └── Fpdi.php └── autoload.php /.github/workflows/dokuwiki.yml: -------------------------------------------------------------------------------- 1 | name: DokuWiki Default Tasks 2 | on: 3 | push: 4 | pull_request: 5 | schedule: 6 | - cron: '22 12 25 * *' 7 | 8 | 9 | jobs: 10 | all: 11 | uses: dokuwiki/github-action/.github/workflows/all.yml@main 12 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | composer.phar 2 | vendor/bin/* 3 | vendor/.git 4 | vendor/*/*/.git 5 | vendor/*/*/phpunit.xml* 6 | vendor/*/*/.travis.yml 7 | vendor/*/*/bin/* 8 | vendor/*/*/tests/* 9 | vendor/*/*/test/* 10 | vendor/*/*/doc/* 11 | vendor/*/*/docs/* 12 | vendor/*/*/contrib/* 13 | -------------------------------------------------------------------------------- /MenuItem.php: -------------------------------------------------------------------------------- 1 | params['at'] = $DATE_AT; 32 | } elseif ($REV) { 33 | $this->params['rev'] = $REV; 34 | } 35 | } 36 | 37 | /** 38 | * Get label from plugin language file 39 | * 40 | * @return string 41 | */ 42 | public function getLabel() 43 | { 44 | $hlp = plugin_load('action', 'dw2pdf'); 45 | return $hlp->getLang('export_pdf_button'); 46 | } 47 | } 48 | -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "splitbrain/dw2pdf", 3 | "authors": [ 4 | { 5 | "name": "Andreas Gohr", 6 | "email": "andi@splitbrain.org" 7 | } 8 | ], 9 | "config": { 10 | "platform": { 11 | "php": "7.2" 12 | } 13 | }, 14 | "require": { 15 | "mpdf/mpdf": "8.0.*", 16 | "mpdf/qrcode": "^1.2" 17 | }, 18 | "replace": { 19 | "paragonie/random_compat": "*" 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /conf/default.php: -------------------------------------------------------------------------------- 1 | array('portrait', 'landscape')); 5 | $meta['font-size'] = array('numeric'); 6 | $meta['doublesided'] = array('onoff'); 7 | $meta['toc'] = array('onoff'); 8 | $meta['toclevels'] = array('string', '_pattern' => '/^(|[1-5]-[1-5])$/'); 9 | $meta['headernumber'] = array('onoff'); 10 | $meta['maxbookmarks'] = array('numeric'); 11 | $meta['template'] = array('dirchoice', '_dir' => DOKU_PLUGIN . 'dw2pdf/tpl/'); 12 | $meta['output'] = array('multichoice', '_choices' => array('browser', 'file')); 13 | $meta['usecache'] = array('onoff'); 14 | $meta['usestyles'] = array('string'); 15 | $meta['qrcodescale'] = array('string', '_pattern' => '/^(|\d+(\.\d+)?)$/'); 16 | $meta['showexportbutton'] = array('onoff'); 17 | -------------------------------------------------------------------------------- /file-pdf.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lang/ca/lang.php: -------------------------------------------------------------------------------- 1 | 7 | */ 8 | $lang['export_pdf_button'] = 'Exporta a PDF'; 9 | $lang['needtitle'] = 'Proporcioneu un títol.'; 10 | $lang['needns'] = 'Proporcioneu un espai de noms existent.'; 11 | $lang['empty'] = 'Encara no teniu cap pàgina seleccionada.'; 12 | $lang['tocheader'] = 'Índex'; 13 | -------------------------------------------------------------------------------- /lang/ckb/lang.php: -------------------------------------------------------------------------------- 1 | 7 | */ 8 | $lang['export_pdf_button'] = 'هەناردەی بکە بۆ PDF'; 9 | $lang['needtitle'] = 'تکایە ناونیشانێک دابین بکە.'; 10 | $lang['needns'] = 'تکایە بۆشایی ناوی بەردەست دابین بکە.'; 11 | $lang['notexist'] = 'لاپەڕەی داواکراو بوونی نییە.'; 12 | $lang['empty'] = 'تۆ هێشتا پەڕەت دەست نیشان نەکراوە.'; 13 | $lang['tocheader'] = 'خشتەی ناوەڕۆکەکان'; 14 | $lang['export_ns'] = 'ناردنی بۆشایی ناوی ناوی "%s:" بۆ فایلی %s.pdf'; 15 | $lang['forbidden'] = 'تۆ هیچ چوونەژورەوەت نیە بۆ ئەم پەڕانە: %s.

بەکارهێنانی بەربژاری \'پەڕە قەدەغەکان بازبدە\' بۆ دروستکردنی پەڕتووکەکەت بە پەڕە بەردەستەکان.'; 16 | -------------------------------------------------------------------------------- /lang/cs/lang.php: -------------------------------------------------------------------------------- 1 | 7 | * @author Kamil Nešetřil 8 | * @author Jaroslav Lichtblau 9 | */ 10 | $lang['export_pdf_button'] = 'Uložit do PDF'; 11 | $lang['needtitle'] = 'Zadejte prosím název.'; 12 | $lang['needns'] = 'Zadejte prosím existující jmenný prostor.'; 13 | $lang['notexist'] = 'Požadovaná stránka neexistuje'; 14 | $lang['empty'] = 'Zatím nejsou vybrané stránky.'; 15 | $lang['tocheader'] = 'Obsah'; 16 | $lang['export_ns'] = 'Exportovat jmenný prostor "%s:" do souboru %s.pdf'; 17 | $lang['forbidden'] = 'Nemáte přístup k těmto stránkám: %s.

Chcete-li vytvořit svou knihu dostupných stránek, použijte volbu „Přeskočit zakázané stránky“.'; 18 | -------------------------------------------------------------------------------- /lang/da/lang.php: -------------------------------------------------------------------------------- 1 | 7 | * @author Søren Birk 8 | */ 9 | $lang['export_pdf_button'] = 'Eksporter til PDF'; 10 | $lang['needtitle'] = 'Angiv venligst en titel.'; 11 | $lang['needns'] = 'Angiv venligst et eksisterende navnerum.'; 12 | $lang['notexist'] = 'Den forespurgte side findes ikke.'; 13 | $lang['empty'] = 'Du har endnu ikke valgt sider.'; 14 | $lang['tocheader'] = 'Indholdsfortegnelse'; 15 | $lang['export_ns'] = 'Eksporter navnerummet "%s:" ti filen %s.pdf'; 16 | $lang['forbidden'] = 'Du har ikke adgang til disse sider: %s.

Brug indstillingen \'Spring forbudte sider over\' for at fortsætte med de sider du har adgang til.'; 17 | -------------------------------------------------------------------------------- /lang/de/lang.php: -------------------------------------------------------------------------------- 1 | 7 | * @author Sebastian Engel 8 | * @author Juergen-aus-Koeln 9 | * @author F. Mueller-Donath 10 | */ 11 | $lang['export_pdf_button'] = 'PDF exportieren'; 12 | $lang['needtitle'] = 'Bitte Titel angeben!'; 13 | $lang['needns'] = 'Bitte geben Sie einen vorhandenen Namensraum an.'; 14 | $lang['notexist'] = 'Die angeforderte Seite existiert nicht.'; 15 | $lang['empty'] = 'Sie haben noch keine Seiten gewählt.'; 16 | $lang['tocheader'] = 'Inhaltsverzeichnis'; 17 | $lang['export_ns'] = 'Exportiere Namensraum "%s:" in Datei %s.pdf'; 18 | $lang['forbidden'] = 'Sie haben keine Berechtigung für folgende Seiten: %s.

Benutzen Sie die Option \'Seiten ohne Berechtigung auslassen\' um das Buch mit den verfügbaren Seiten zu erstellen.'; 19 | $lang['missingbookcreator'] = 'Das Plugin "Bookcreator" ist entweder nicht installiert oder deaktiviert.'; 20 | -------------------------------------------------------------------------------- /lang/en/lang.php: -------------------------------------------------------------------------------- 1 |
Use option 'Skip Forbidden Pages' to create your book with the available pages."; 11 | $lang['missingbookcreator'] = 'The Bookcreator Plugin is not installed or is disabled'; 12 | -------------------------------------------------------------------------------- /lang/eo/lang.php: -------------------------------------------------------------------------------- 1 | 7 | * @author Robert Bogenschneider 8 | */ 9 | $lang['export_pdf_button'] = 'Eksporti al PDF'; 10 | $lang['needtitle'] = 'Bonvolu indiki titolon.'; 11 | $lang['needns'] = 'Bv. indiki ekzistantan nomspacon.'; 12 | $lang['empty'] = 'Vi ankoraŭ ne selektis paĝojn.'; 13 | $lang['tocheader'] = 'Enhavtabelo'; 14 | -------------------------------------------------------------------------------- /lang/es/lang.php: -------------------------------------------------------------------------------- 1 | 7 | */ 8 | $lang['export_pdf_button'] = 'Exportar a PDF'; 9 | $lang['needtitle'] = 'Por favor proporcione un título.'; 10 | $lang['needns'] = 'Por favor proporcione un nombre de espacio existente.'; 11 | $lang['notexist'] = 'La página solicitada no existe.'; 12 | $lang['empty'] = 'No tiene páginas seleccionadas aún.'; 13 | $lang['tocheader'] = 'Tabla de Contenidos'; 14 | $lang['export_ns'] = 'Exportar el espacio de nombres "%s:" al fichero%s.pdf'; 15 | $lang['forbidden'] = 'No tiene acceso a estas páginas:%s.

Use la opción \'Saltar páginas prohibidas\' para crear su libro con las páginas disponibles.'; 16 | -------------------------------------------------------------------------------- /lang/fa/lang.php: -------------------------------------------------------------------------------- 1 | 7 | * @author Sam01 8 | */ 9 | $lang['export_pdf_button'] = 'تبدیل به پی‌دی‌اف'; 10 | $lang['needtitle'] = 'لطفا یک عنوان ارائه دهید.'; 11 | $lang['needns'] = 'لطفا یک فضای‌نام موجود ارائه دهید.'; 12 | $lang['notexist'] = 'صفحه‌ی درخواست‌شده موجود نمی‌باشد.'; 13 | $lang['empty'] = 'شما صفحه‌های انتخاب شده‌ای ندارید.'; 14 | $lang['tocheader'] = 'جدول محتوا'; 15 | $lang['export_ns'] = 'تبدیل فضای‌نام "%s:" به فایل %s.pdf'; 16 | $lang['forbidden'] = 'شما به این صفحه‌ها دسترسی ندارید: %s.

از گزینه‌ی \'ردشدن از صفحه‌های ممنوعه\' جهت ایجاد کتابتان با صفحه‌های موجود استفاده کنید.'; 17 | $lang['missingbookcreator'] = 'پلاگین کتابساز نصب‌ نشده یا غیرفعال است'; 18 | -------------------------------------------------------------------------------- /lang/fi/lang.php: -------------------------------------------------------------------------------- 1 | 7 | */ 8 | $lang['export_pdf_button'] = 'Izvoz u PDF'; 9 | $lang['needtitle'] = 'Molim unesite naslov.'; 10 | $lang['needns'] = 'Molim navedite postojeći imenski prostor.'; 11 | $lang['notexist'] = 'Tražena stranica ne postoji.'; 12 | $lang['empty'] = 'Nemate još odabranih stranica.'; 13 | $lang['tocheader'] = 'Sadržaj'; 14 | $lang['export_ns'] = 'Izvoz imenskog prostora "%s:" u %s.pdf'; 15 | $lang['forbidden'] = 'Nemate pristup ovim stranicama: %s.

Koristite opciju \'Skip Forbidden Pages\' da kreirate knjigu s raspoloživim stranicama.'; 16 | -------------------------------------------------------------------------------- /lang/hu/lang.php: -------------------------------------------------------------------------------- 1 | 7 | * @author Imre Nagy 8 | */ 9 | $lang['export_pdf_button'] = 'Exportálás PDF-be'; 10 | $lang['tocheader'] = 'Tartalomjegyzék'; 11 | -------------------------------------------------------------------------------- /lang/it/lang.php: -------------------------------------------------------------------------------- 1 | 7 | */ 8 | $lang['export_pdf_button'] = 'Esporta in PDF'; 9 | $lang['needtitle'] = 'Per favore fornire un titolo.'; 10 | $lang['empty'] = 'Non hai ancora selzionato delle pagine.'; 11 | $lang['tocheader'] = 'Sommario'; 12 | -------------------------------------------------------------------------------- /lang/ja/lang.php: -------------------------------------------------------------------------------- 1 | 7 | * @author HokkaidoPerson 8 | * @author Hideaki SAWADA 9 | */ 10 | $lang['export_pdf_button'] = 'PDF の出力'; 11 | $lang['needtitle'] = '題名を入力して下さい。'; 12 | $lang['needns'] = '名前空間を入力して下さい。'; 13 | $lang['notexist'] = 'お探しのページが見付かりません。'; 14 | $lang['empty'] = 'ページを選択していません。'; 15 | $lang['tocheader'] = '目次'; 16 | $lang['export_ns'] = '名前空間 "%s:" を %s.pdf というファイル名で出力'; 17 | $lang['forbidden'] = 'ページ %s へのアクセス権限がありません。

利用可能なページで冊子を作成するには、「アクセス出来ないページを飛ばす」オプションをご利用下さい。'; 18 | $lang['missingbookcreator'] = 'Bookcreatorプラグインはインストールされていないか、無効になっています。'; 19 | -------------------------------------------------------------------------------- /lang/ko/lang.php: -------------------------------------------------------------------------------- 1 | 7 | * @author Myeongjin 8 | * @author wkdl 9 | */ 10 | $lang['export_pdf_button'] = 'PDF로 내보내기'; 11 | $lang['needtitle'] = '제목을 제공하세요.'; 12 | $lang['needns'] = '존재하는 이름공간을 제공하세요.'; 13 | $lang['notexist'] = '요청된 페이지가 존재하지 않습니다.'; 14 | $lang['empty'] = '아직 선택한 페이지가 없습니다.'; 15 | $lang['tocheader'] = '목차'; 16 | $lang['export_ns'] = '"%s:" 이름공간을 %s.pdf 파일로 내보내기'; 17 | $lang['missingbookcreator'] = 'Bookcreator 플러그인이 설치되지 않았거나 비활성화 되어 있습니다.'; 18 | -------------------------------------------------------------------------------- /lang/nl/lang.php: -------------------------------------------------------------------------------- 1 | 7 | * @author Gerrit Uitslag 8 | * @author Wouter Wijsman 9 | * @author Peter van Diest 10 | */ 11 | $lang['export_pdf_button'] = 'Exporteren naar PDF'; 12 | $lang['needtitle'] = 'Er moet een titel ingevuld worden'; 13 | $lang['needns'] = 'Geef een bestaande naamruimte.'; 14 | $lang['notexist'] = 'Gevraagde pagina bestaat niet'; 15 | $lang['empty'] = 'Er zijn nog geen pagina\'s geselecteerd.'; 16 | $lang['tocheader'] = 'Inhoudsopgave'; 17 | $lang['export_ns'] = 'Exporteren namespace "%s:" naar bestand %s.pdf'; 18 | $lang['forbidden'] = 'Je hebt geen toegang tot deze pagina\'s: %s.

Gebruik de optie \'Verboden pagina\'s overslaan\' om het boek te maken met de beschikbare pagina\'s.'; 19 | $lang['missingbookcreator'] = 'De Bookcreator Plugin is niet geïnstalleerd of is uitgeschakeld'; 20 | -------------------------------------------------------------------------------- /lang/no/lang.php: -------------------------------------------------------------------------------- 1 | 7 | * @author Daniel Raknes 8 | */ 9 | $lang['export_pdf_button'] = 'Eksporter til PDF'; 10 | $lang['needtitle'] = 'Legg inn en tittel.'; 11 | $lang['needns'] = 'Legg inn et eksisterende navnerom.'; 12 | $lang['empty'] = 'Du har ikke valgt noen sider ennå.'; 13 | $lang['tocheader'] = 'Innholdsfortegnelse'; 14 | $lang['export_ns'] = 'Eksporter navnerom "%s:" til filen %s.pdf'; 15 | -------------------------------------------------------------------------------- /lang/pt-br/lang.php: -------------------------------------------------------------------------------- 1 | 7 | * @author Schopf 8 | */ 9 | $lang['export_pdf_button'] = 'Exportar para PDF'; 10 | $lang['needtitle'] = 'Digite um título.'; 11 | $lang['needns'] = 'Digite um domínio existente.'; 12 | $lang['notexist'] = 'A página solicitada não existe.'; 13 | $lang['empty'] = 'Você não selecionou nenhuma página.'; 14 | $lang['tocheader'] = 'Índice'; 15 | $lang['export_ns'] = 'Exportar domínio "%s:" para o arquivo %s.pdf'; 16 | $lang['forbidden'] = 'Você não tem acesso a essas páginas: %s.

Use a opção \'Ignorar Páginas Proibidas\' para criar seu livro com as páginas disponíveis.'; 17 | $lang['missingbookcreator'] = 'O plugin Bookcreator não está instalado ou está desativado'; 18 | -------------------------------------------------------------------------------- /lang/pt/lang.php: -------------------------------------------------------------------------------- 1 | 7 | * @author Paulo Schopf 8 | * @author Rodrigo Pimenta 9 | */ 10 | $lang['export_pdf_button'] = 'Exportar para PDF'; 11 | $lang['needtitle'] = 'Favor fornecer um título.'; 12 | $lang['needns'] = 'Favor fornecer um namespace existente.'; 13 | $lang['notexist'] = 'A página solicitada não existe.'; 14 | $lang['empty'] = 'Você ainda não selecionou páginas.'; 15 | $lang['tocheader'] = 'Tabela de Conteúdos'; 16 | $lang['export_ns'] = 'Exportar o namespace "%s:" para arquivo %s.pdf'; 17 | $lang['forbidden'] = 'Você não tem acesso a estas páginas: %s.

Use a opção \'Ignorar Páginas Proibidas\' para criar seu livro com as páginas disponíveis.'; 18 | $lang['missingbookcreator'] = 'O Plugin Bookcreator não está instalado ou está desabilitado'; 19 | -------------------------------------------------------------------------------- /lang/ru/lang.php: -------------------------------------------------------------------------------- 1 | 7 | * @author FOTONTV 8 | * @author Yuriy Skalko 9 | * @author Vasilyy Balyasnyy 10 | * @author RainbowSpike <1@2.ru> 11 | */ 12 | $lang['export_pdf_button'] = 'Экспорт в PDF'; 13 | $lang['needtitle'] = 'Пожалуйста, укажите заголовок.'; 14 | $lang['needns'] = 'Пожалуйста, укажите существующее пространство имён.'; 15 | $lang['notexist'] = 'Запрошенная страница не существует.'; 16 | $lang['empty'] = 'У вас ещё нет выделенных страниц.'; 17 | $lang['tocheader'] = 'Содержание'; 18 | $lang['export_ns'] = 'Экспортировать пространство имён «%s:» в файл %s.pdf'; 19 | $lang['forbidden'] = 'У вас нет доступа к этим страницам: %s.

Используйте опцию «Пропустить запрещённые страницы», чтобы создать книгу с доступными страницами.'; 20 | $lang['missingbookcreator'] = 'Плагин Bookcreator не установлен или отключён'; 21 | -------------------------------------------------------------------------------- /lang/sk/lang.php: -------------------------------------------------------------------------------- 1 |
Na vytvorenie knihy z dostupných strán použite možnosť 'Preskočiť zakázané stránky'."; 11 | -------------------------------------------------------------------------------- /lang/sr/lang.php: -------------------------------------------------------------------------------- 1 | 7 | */ 8 | $lang['export_pdf_button'] = 'Извези у ПДФ'; 9 | $lang['needtitle'] = 'Наведите наслов.'; 10 | $lang['needns'] = 'Наведите већ постојећи именски простор.'; 11 | $lang['empty'] = 'Немате изабраних страница још.'; 12 | $lang['tocheader'] = 'Садржај'; 13 | $lang['export_ns'] = 'Извези именски простор „%s:“ у датотеку %s.pdf'; 14 | $lang['forbidden'] = 'Немате приступ овим страницама: %s.

Користите опцију „Прескочи забрањене стране“ да бисте направили књигу са доступним странама.'; 15 | -------------------------------------------------------------------------------- /lang/sv/lang.php: -------------------------------------------------------------------------------- 1 | 7 | */ 8 | $lang['export_pdf_button'] = 'Exportera till PDF'; 9 | $lang['needtitle'] = 'Vad god fyll i rubrik'; 10 | $lang['needns'] = 'Var god fyll i en existerande namnrymd'; 11 | $lang['notexist'] = 'Begärd sida existerar inte.'; 12 | $lang['empty'] = 'Du har inte valt några sidor än.'; 13 | $lang['tocheader'] = 'Innehållsföreteckning'; 14 | $lang['export_ns'] = 'Exportera namnrymd "%s:" till filen %s.pdf'; 15 | $lang['forbidden'] = 'Du har inte tillträde till följande sidor: %s.

Använd inställningen \'Uteslut förbjudna sidor\' för att skapa din bok med de tillgängliga sidorna.'; 16 | -------------------------------------------------------------------------------- /lang/uk/lang.php: -------------------------------------------------------------------------------- 1 | 7 | */ 8 | $lang['export_pdf_button'] = 'Експорт до PDF'; 9 | $lang['needtitle'] = 'Будь ласка, вкажіть назву.'; 10 | $lang['needns'] = 'Будь ласка, вкажіть існуючий простір імен.'; 11 | $lang['notexist'] = 'Запитувана сторінка не існує.'; 12 | $lang['empty'] = 'Ви ще не вибрали жодної сторінки.'; 13 | $lang['tocheader'] = 'Зміст'; 14 | $lang['export_ns'] = 'Експортувати простір імен "%s:" до файлу %s.pdf'; 15 | $lang['forbidden'] = 'Ви не маєте доступу до цих сторінок: %s.

Використайте опцію \'Пропустити заборонені сторінки\', щоб створити книгу з доступними сторінками.'; 16 | $lang['missingbookcreator'] = 'Плагін Bookcreator не встановлено або вимкнено'; 17 | -------------------------------------------------------------------------------- /lang/vi/lang.php: -------------------------------------------------------------------------------- 1 | 7 | * @author Thien Hau 8 | */ 9 | $lang['export_pdf_button'] = 'Xuất ra PDF'; 10 | $lang['needtitle'] = 'Vui lòng cung cấp tiêu đề.'; 11 | $lang['needns'] = 'Vui lòng cung cấp một không gian tên hiện có.'; 12 | $lang['notexist'] = 'Trang được yêu cầu không tồn tại.'; 13 | $lang['empty'] = 'Bạn chưa chọn trang nào.'; 14 | $lang['tocheader'] = 'Mục lục'; 15 | $lang['export_ns'] = 'Xuất không gian tên "%s:" ra tập tin %s.pdf'; 16 | $lang['forbidden'] = 'Bạn không có quyền truy cập vào các trang này: %s.

Dùng tùy chọn \'Bỏ qua các trang bị cấm\' để tạo sách của bạn với các trang có sẵn.'; 17 | $lang['missingbookcreator'] = 'Tiện ích plugin Bookcreator chưa được cài đặt hoặc bị tắt đi'; 18 | -------------------------------------------------------------------------------- /lang/zh-tw/lang.php: -------------------------------------------------------------------------------- 1 | 7 | */ 8 | $lang['export_pdf_button'] = '輸出PDF檔案'; 9 | $lang['needtitle'] = '請提供一個抬頭名稱'; 10 | $lang['needns'] = '請提供一個以存在的命名空間'; 11 | $lang['empty'] = '你尚未選擇頁面。'; 12 | -------------------------------------------------------------------------------- /lang/zh-tw/settings.php: -------------------------------------------------------------------------------- 1 | 7 | */ 8 | $lang['output'] = 'PDF將以何種方式呈現在使用者之前?'; 9 | $lang['output_o_browser'] = '以瀏覽器開啟'; 10 | $lang['output_o_file'] = '下載PDF檔案'; 11 | $lang['orientation'] = '頁面方向'; 12 | $lang['orientation_o_portrait'] = '直式'; 13 | $lang['orientation_o_landscape'] = '橫式'; 14 | $lang['showexportbutton'] = '顯示輸出PDF按鈕 (只在模板支援時才顯示)'; 15 | -------------------------------------------------------------------------------- /lang/zh/lang.php: -------------------------------------------------------------------------------- 1 | 7 | * @author nero 8 | * @author oott123 9 | * @author maddie <2934784245@qq.com> 10 | */ 11 | $lang['export_pdf_button'] = '导出 PDF'; 12 | $lang['needtitle'] = '需要指定标题'; 13 | $lang['needns'] = '请提供现有命名空间'; 14 | $lang['notexist'] = '请求的页面不存在。'; 15 | $lang['empty'] = '您还没有选择的页面。'; 16 | $lang['tocheader'] = '目录'; 17 | $lang['export_ns'] = '将命名空间"%s:"转至%s.pdf文件'; 18 | $lang['forbidden'] = '您无权访问这些页面:%s。

使用“跳过禁止访问的页面”选项来创建包含可用页面的图书。'; 19 | $lang['missingbookcreator'] = 'Bookcreator 插件未安装或被禁用'; 20 | -------------------------------------------------------------------------------- /pagetools-pdfexport-sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splitbrain/dokuwiki-plugin-dw2pdf/fc024641a9ffc5b8fe665c1696644d9ce14620d3/pagetools-pdfexport-sprite.png -------------------------------------------------------------------------------- /plugin.info.txt: -------------------------------------------------------------------------------- 1 | base dw2pdf 2 | author Andreas Gohr and Luigi Micco 3 | email l.micco@tiscali.it 4 | date 2023-11-25 5 | name Dw2Pdf plugin 6 | desc DokuWiki to PDF converter 7 | url https://www.dokuwiki.org/plugin:dw2pdf 8 | 9 | -------------------------------------------------------------------------------- /style.css: -------------------------------------------------------------------------------- 1 | /** 2 | * dw2pdf export_pdf pagetool icon 3 | */ 4 | 5 | /* export icon */ 6 | #dokuwiki__pagetools ul li a.export_pdf { 7 | background-position: right 0; 8 | } 9 | #dokuwiki__pagetools ul li a.export_pdf:before { 10 | content: url(pagetools-pdfexport-sprite.png); 11 | margin-top: 0; 12 | } 13 | #dokuwiki__pagetools:hover ul li a.export_pdf, 14 | #dokuwiki__pagetools ul li a.export_pdf:focus, 15 | #dokuwiki__pagetools ul li a.export_pdf:active { 16 | background-image: url(pagetools-pdfexport-sprite.png); 17 | } 18 | #dokuwiki__pagetools ul li a.export_pdf:hover, 19 | #dokuwiki__pagetools ul li a.export_pdf:active, 20 | #dokuwiki__pagetools ul li a.export_pdf:focus { 21 | background-position: right -45px; 22 | } 23 | /*Keep pagetool icon on left side for rtl languages*/ 24 | [dir=rtl] #dokuwiki__pagetools ul li a.export_pdf:hover, 25 | [dir=rtl] #dokuwiki__pagetools ul li a.export_pdf:active, 26 | [dir=rtl] #dokuwiki__pagetools ul li a.export_pdf:focus { 27 | background-position: left -45px; 28 | } 29 | -------------------------------------------------------------------------------- /tpl/default/citation.html: -------------------------------------------------------------------------------- 1 |
2 |
3 |
4 | 5 | 6 | 16 | 19 | 20 |
7 | From:
8 | @WIKIURL@ - @WIKI@ 9 |

10 | Permanent link:
11 | @PAGEURL@ 12 |

13 | Last update: @UPDATE@ 14 |
15 |
17 | @QRCODE@ 18 |
21 |
22 | -------------------------------------------------------------------------------- /tpl/default/footer_even.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |
@WIKIURL@Printed on @DATE@
8 | -------------------------------------------------------------------------------- /tpl/default/footer_odd.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |
@WIKI@ - @WIKIURL@
8 | -------------------------------------------------------------------------------- /tpl/default/header_even.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |
Last update: @UPDATE@@ID@@PAGEURL@
8 | -------------------------------------------------------------------------------- /tpl/default/header_odd.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |
@DATE@@PAGE@/@PAGES@ @TITLE@
8 | -------------------------------------------------------------------------------- /vendor/autoload.php: -------------------------------------------------------------------------------- 1 | $vendorDir . '/composer/InstalledVersions.php', 10 | ); 11 | -------------------------------------------------------------------------------- /vendor/composer/autoload_files.php: -------------------------------------------------------------------------------- 1 | $vendorDir . '/myclabs/deep-copy/src/DeepCopy/deep_copy.php', 10 | ); 11 | -------------------------------------------------------------------------------- /vendor/composer/autoload_namespaces.php: -------------------------------------------------------------------------------- 1 | array($vendorDir . '/setasign/fpdi/src'), 10 | 'Psr\\Log\\' => array($vendorDir . '/psr/log/Psr/Log'), 11 | 'Mpdf\\QrCode\\' => array($vendorDir . '/mpdf/qrcode/src'), 12 | 'Mpdf\\' => array($vendorDir . '/mpdf/mpdf/src'), 13 | 'DeepCopy\\' => array($vendorDir . '/myclabs/deep-copy/src/DeepCopy'), 14 | ); 15 | -------------------------------------------------------------------------------- /vendor/composer/platform_check.php: -------------------------------------------------------------------------------- 1 | = 70100)) { 8 | $issues[] = 'Your Composer dependencies require a PHP version ">= 7.1.0". You are running ' . PHP_VERSION . '.'; 9 | } 10 | 11 | if ($issues) { 12 | if (!headers_sent()) { 13 | header('HTTP/1.1 500 Internal Server Error'); 14 | } 15 | if (!ini_get('display_errors')) { 16 | if (PHP_SAPI === 'cli' || PHP_SAPI === 'phpdbg') { 17 | fwrite(STDERR, 'Composer detected issues in your platform:' . PHP_EOL.PHP_EOL . implode(PHP_EOL, $issues) . PHP_EOL.PHP_EOL); 18 | } elseif (!headers_sent()) { 19 | echo 'Composer detected issues in your platform:' . PHP_EOL.PHP_EOL . str_replace('You are running '.PHP_VERSION.'.', '', implode(PHP_EOL, $issues)) . PHP_EOL.PHP_EOL; 20 | } 21 | } 22 | trigger_error( 23 | 'Composer detected issues in your platform: ' . implode(' ', $issues), 24 | E_USER_ERROR 25 | ); 26 | } 27 | -------------------------------------------------------------------------------- /vendor/mpdf/mpdf/.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | custom: https://www.paypal.me/mpdf 2 | -------------------------------------------------------------------------------- /vendor/mpdf/mpdf/.github/ISSUE_TEMPLATE/Bug_report.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Bug report 🐛 3 | about: The library does not work as expected (please use not for troubleshooting) 4 | --- 5 | 6 | 12 | 13 | ### I found this bug 14 | 15 | ### This is mPDF and PHP version and environment (server/fpm/cli etc) I am using 16 | 17 | ### This is the PHP code snippet I use 18 | 19 | ``` 20 | 9 | -------------------------------------------------------------------------------- /vendor/mpdf/mpdf/.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- 1 | contact_links: 2 | - name: General questions and troubleshooting ❓ 3 | url: https://github.com/mpdf/mpdf/discussions 4 | about: You can use Github Discussions for general questions and troubleshooting. Please note that asking at Stack Overflow will probably be more successful. 5 | - name: QA at Stack Overflow ❓ 6 | url: https://stackoverflow.com/questions/tagged/mpdf 7 | about: Ask at Stack Overflow for a greater chance of a quick and correct answer to your questions. Make sure to comply to SO rules, terms and conditions. 8 | -------------------------------------------------------------------------------- /vendor/mpdf/mpdf/.github/workflows/coverage.yml: -------------------------------------------------------------------------------- 1 | # https://help.github.com/en/categories/automating-your-workflow-with-github-actions 2 | 3 | name: "Code coverage" 4 | 5 | on: 6 | push: 7 | branches: 8 | - "development" 9 | - "coverage" 10 | 11 | jobs: 12 | 13 | coverage: 14 | 15 | name: "Code coverage" 16 | 17 | runs-on: ${{ matrix.operating-system }} 18 | 19 | strategy: 20 | matrix: 21 | php-version: 22 | - "7.4" 23 | 24 | operating-system: [ubuntu-latest] 25 | 26 | steps: 27 | - name: "Checkout" 28 | uses: "actions/checkout@v2" 29 | 30 | - name: "Install PHP" 31 | uses: "shivammathur/setup-php@v2" 32 | with: 33 | coverage: "xdebug" 34 | php-version: "${{ matrix.php-version }}" 35 | extensions: "mbstring, gd, bcmath, bz2" 36 | tools: composer:v2 37 | 38 | - name: "Install dependencies" 39 | run: "composer install --no-interaction --no-progress" 40 | 41 | - name: "Code coverage" 42 | run: composer coverage 43 | -------------------------------------------------------------------------------- /vendor/mpdf/mpdf/.github/workflows/cs.yml: -------------------------------------------------------------------------------- 1 | # https://help.github.com/en/categories/automating-your-workflow-with-github-actions 2 | 3 | name: "Coding standard check" 4 | 5 | on: 6 | pull_request: 7 | push: 8 | branches: 9 | - "development" 10 | - "test" 11 | 12 | jobs: 13 | 14 | cs: 15 | 16 | name: "Coding standard" 17 | 18 | runs-on: ${{ matrix.operating-system }} 19 | 20 | strategy: 21 | matrix: 22 | php-version: 23 | - "7.4" 24 | 25 | operating-system: [ubuntu-latest] 26 | 27 | steps: 28 | - name: "Checkout" 29 | uses: "actions/checkout@v2" 30 | 31 | - name: "Install PHP" 32 | uses: "shivammathur/setup-php@v2" 33 | with: 34 | coverage: "none" 35 | php-version: "${{ matrix.php-version }}" 36 | extensions: "mbstring" 37 | tools: composer:v2 38 | 39 | - name: "Install dependencies" 40 | run: "composer install --no-interaction --no-progress" 41 | 42 | - name: "CS" 43 | run: composer cs 44 | -------------------------------------------------------------------------------- /vendor/mpdf/mpdf/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/* 2 | composer.lock 3 | -------------------------------------------------------------------------------- /vendor/mpdf/mpdf/data/collations/Hebrew_Israel.php: -------------------------------------------------------------------------------- 1 | 173, 4 | 1457 => 173, 5 | 1458 => 173, 6 | 1459 => 173, 7 | 1460 => 173, 8 | 1461 => 173, 9 | 1462 => 173, 10 | 1463 => 173, 11 | 1464 => 173, 12 | 1465 => 173, 13 | 1466 => 173, 14 | 1467 => 173, 15 | 1468 => 173, 16 | 1469 => 173, 17 | 1471 => 173, 18 | 1472 => 173, 19 | 1473 => 173, 20 | 1474 => 173, 21 | 710 => 94, 22 | 189 => 188, 23 | 190 => 179, 24 | 65 => 97, 25 | 66 => 98, 26 | 67 => 99, 27 | 68 => 100, 28 | 69 => 101, 29 | 70 => 102, 30 | 402 => 102, 31 | 71 => 103, 32 | 72 => 104, 33 | 73 => 105, 34 | 74 => 106, 35 | 75 => 107, 36 | 76 => 108, 37 | 77 => 109, 38 | 78 => 110, 39 | 79 => 111, 40 | 80 => 112, 41 | 81 => 113, 42 | 82 => 114, 43 | 83 => 115, 44 | 84 => 116, 45 | 85 => 117, 46 | 86 => 118, 47 | 87 => 119, 48 | 88 => 120, 49 | 89 => 121, 50 | 90 => 122, 51 | 1520 => 1493, 52 | 1521 => 1493, 53 | 1522 => 1497, 54 | 1499 => 1498, 55 | 1502 => 1501, 56 | 1504 => 1503, 57 | 1508 => 1507, 58 | 1510 => 1509, 59 | ]; 60 | -------------------------------------------------------------------------------- /vendor/mpdf/mpdf/data/font/ccourier.php: -------------------------------------------------------------------------------- 1 | 629,'Descent'=>-157,'CapHeight'=>562,'FontBBox'=>'[-23 -250 715 805]'); 7 | $desc = array('Flags' => 33, 'FontBBox' => '[-23 -250 715 805]', 'ItalicAngle' => 0, 'Ascent' => 805, 'Descent' => -250, 'Leading' => 0, 'CapHeight' => 562, 'XHeight' => 426, 'StemV' => 51, 'StemH' => 51, 'AvgWidth' => 600, 'MaxWidth' => 600, 'MissingWidth' => 600); 8 | $up = -100; 9 | $ut = 50; 10 | -------------------------------------------------------------------------------- /vendor/mpdf/mpdf/data/font/ccourierb.php: -------------------------------------------------------------------------------- 1 | 629,'Descent'=>-157,'CapHeight'=>562,'FontBBox'=>'[-113 -250 749 801]'); 7 | $desc = array('Flags' => 33, 'FontBBox' => '[-113 -250 749 801]', 'ItalicAngle' => 0, 'Ascent' => 801, 'Descent' => -250, 'Leading' => 0, 'CapHeight' => 562, 'XHeight' => 439, 'StemV' => 106, 'StemH' => 84, 'AvgWidth' => 600, 'MaxWidth' => 600, 'MissingWidth' => 600); 8 | $up = -100; 9 | $ut = 50; 10 | -------------------------------------------------------------------------------- /vendor/mpdf/mpdf/data/font/ccourierbi.php: -------------------------------------------------------------------------------- 1 | 629,'Descent'=>-157,'CapHeight'=>562,'FontBBox'=>'[-57 -250 869 801]'); 7 | $desc = array('Flags' => 97, 'FontBBox' => '[-57 -250 869 801]', 'ItalicAngle' => -12, 'Ascent' => 801, 'Descent' => -250, 'Leading' => 0, 'CapHeight' => 562, 'XHeight' => 439, 'StemV' => 106, 'StemH' => 84, 'AvgWidth' => 600, 'MaxWidth' => 600, 'MissingWidth' => 600); 8 | $up = -100; 9 | $ut = 50; 10 | -------------------------------------------------------------------------------- /vendor/mpdf/mpdf/data/font/ccourieri.php: -------------------------------------------------------------------------------- 1 | 629, 'Descent' => -157, 'CapHeight' => 562, 'FontBBox' => '[-27 -250 849 805]'); 7 | $desc = array('Flags' => 97, 'FontBBox' => '[-27 -250 849 805]', 'ItalicAngle' => -12, 'Ascent' => 805, 'Descent' => -250, 'Leading' => 0, 'CapHeight' => 562, 'XHeight' => 426, 'StemV' => 51, 'StemH' => 51, 'AvgWidth' => 600, 'MaxWidth' => 600, 'MissingWidth' => 600); 8 | $up = -100; 9 | $ut = 50; 10 | -------------------------------------------------------------------------------- /vendor/mpdf/mpdf/data/iccprofiles/sRGB_IEC61966-2-1.icc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splitbrain/dokuwiki-plugin-dw2pdf/fc024641a9ffc5b8fe665c1696644d9ce14620d3/vendor/mpdf/mpdf/data/iccprofiles/sRGB_IEC61966-2-1.icc -------------------------------------------------------------------------------- /vendor/mpdf/mpdf/data/linebrdictK.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splitbrain/dokuwiki-plugin-dw2pdf/fc024641a9ffc5b8fe665c1696644d9ce14620d3/vendor/mpdf/mpdf/data/linebrdictK.dat -------------------------------------------------------------------------------- /vendor/mpdf/mpdf/data/linebrdictL.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splitbrain/dokuwiki-plugin-dw2pdf/fc024641a9ffc5b8fe665c1696644d9ce14620d3/vendor/mpdf/mpdf/data/linebrdictL.dat -------------------------------------------------------------------------------- /vendor/mpdf/mpdf/data/linebrdictT.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splitbrain/dokuwiki-plugin-dw2pdf/fc024641a9ffc5b8fe665c1696644d9ce14620d3/vendor/mpdf/mpdf/data/linebrdictT.dat -------------------------------------------------------------------------------- /vendor/mpdf/mpdf/data/no_image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splitbrain/dokuwiki-plugin-dw2pdf/fc024641a9ffc5b8fe665c1696644d9ce14620d3/vendor/mpdf/mpdf/data/no_image.jpg -------------------------------------------------------------------------------- /vendor/mpdf/mpdf/data/patterns/NOTES.txt: -------------------------------------------------------------------------------- 1 | Alternative sources of Hyphenation programs or TEX files: 2 | 3 | OpenOffice: http://wiki.services.openoffice.org/wiki/Dictionaries 4 | 5 | Hyphenator4PHP- alternative PHP hyphenator scripts: http://apps.sourceforge.net/trac/hyphenator4php/ 6 | -------------------------------------------------------------------------------- /vendor/mpdf/mpdf/data/patterns/dictionary.txt: -------------------------------------------------------------------------------- 1 | dis/establish/ment/arian/ism 2 | -------------------------------------------------------------------------------- /vendor/mpdf/mpdf/src/Barcode/BarcodeException.php: -------------------------------------------------------------------------------- 1 | mpdf = $mpdf; 15 | } 16 | 17 | /** 18 | * @param string $filename 19 | * @return bool 20 | * @since 7.1.8 21 | */ 22 | public function hasBlacklistedStreamWrapper($filename) 23 | { 24 | if (strpos($filename, '://') > 0) { 25 | $wrappers = stream_get_wrappers(); 26 | $whitelistStreamWrappers = $this->getWhitelistedStreamWrappers(); 27 | foreach ($wrappers as $wrapper) { 28 | if (in_array($wrapper, $whitelistStreamWrappers)) { 29 | continue; 30 | } 31 | 32 | if (stripos($filename, $wrapper . '://') === 0) { 33 | return true; 34 | } 35 | } 36 | } 37 | 38 | return false; 39 | } 40 | 41 | public function getWhitelistedStreamWrappers() 42 | { 43 | return array_diff($this->mpdf->whitelistStreamWrappers, ['phar']); // remove 'phar' (security issue) 44 | } 45 | 46 | } 47 | -------------------------------------------------------------------------------- /vendor/mpdf/mpdf/src/Fonts/FontFileFinder.php: -------------------------------------------------------------------------------- 1 | setDirectories($directories); 13 | } 14 | 15 | public function setDirectories($directories) 16 | { 17 | if (!is_array($directories)) { 18 | $directories = [$directories]; 19 | } 20 | 21 | $this->directories = $directories; 22 | } 23 | 24 | public function findFontFile($name) 25 | { 26 | foreach ($this->directories as $directory) { 27 | $filename = $directory . '/' . $name; 28 | if (file_exists($filename)) { 29 | return $filename; 30 | } 31 | } 32 | 33 | throw new \Mpdf\MpdfException(sprintf('Cannot find TTF TrueType font file "%s" in configured font directories.', $name)); 34 | } 35 | } 36 | -------------------------------------------------------------------------------- /vendor/mpdf/mpdf/src/Fonts/GlyphOperator.php: -------------------------------------------------------------------------------- 1 | /is', $data)) { 36 | return 'svg'; 37 | } 38 | 39 | if (strpos($data, 'BM') === 0) { 40 | return 'bmp'; 41 | } 42 | 43 | return null; 44 | } 45 | 46 | } 47 | -------------------------------------------------------------------------------- /vendor/mpdf/mpdf/src/Language/ScriptToLanguageInterface.php: -------------------------------------------------------------------------------- 1 | mpdf->tableLevel) { 21 | $this->mpdf->cell[$this->mpdf->row][$this->mpdf->col]['textbuffer'][] = [$e]; 22 | } // *TABLES* 23 | else { // *TABLES* 24 | $this->mpdf->textbuffer[] = [$e]; 25 | } // *TABLES* 26 | } 27 | } 28 | 29 | public function close(&$ahtml, &$ihtml) 30 | { 31 | } 32 | } 33 | -------------------------------------------------------------------------------- /vendor/mpdf/mpdf/src/Tag/Caption.php: -------------------------------------------------------------------------------- 1 | mpdf->IndexEntry(htmlspecialchars_decode($attr['CONTENT'], ENT_QUOTES), $attr['XREF']); 13 | return; 14 | } 15 | $objattr = []; 16 | $objattr['CONTENT'] = htmlspecialchars_decode($attr['CONTENT'], ENT_QUOTES); 17 | $objattr['type'] = 'indexentry'; 18 | $objattr['vertical-align'] = 'T'; 19 | $e = "\xbb\xa4\xactype=indexentry,objattr=" . serialize($objattr) . "\xbb\xa4\xac"; 20 | if ($this->mpdf->tableLevel) { 21 | $this->mpdf->cell[$this->mpdf->row][$this->mpdf->col]['textbuffer'][] = [$e]; 22 | } // *TABLES* 23 | else { // *TABLES* 24 | $this->mpdf->textbuffer[] = [$e]; 25 | } // *TABLES* 26 | } 27 | } 28 | 29 | public function close(&$ahtml, &$ihtml) 30 | { 31 | } 32 | } 33 | -------------------------------------------------------------------------------- /vendor/mpdf/mpdf/src/Tag/IndexInsert.php: -------------------------------------------------------------------------------- 1 | mpdf->InsertIndex($usedivletters, $links, $indexCollationLocale, $indexCollationGroup); 28 | } 29 | 30 | public function close(&$ahtml, &$ihtml) 31 | { 32 | } 33 | } 34 | -------------------------------------------------------------------------------- /vendor/mpdf/mpdf/src/Tag/Ins.php: -------------------------------------------------------------------------------- 1 | mpdf->ignorefollowingspaces = true; 11 | $this->mpdf->NewColumn(); 12 | $this->mpdf->ColumnAdjust = false; // disables all column height adjustment for the page. 13 | } 14 | 15 | public function close(&$ahtml, &$ihtml) 16 | { 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /vendor/mpdf/mpdf/src/Tag/NewPage.php: -------------------------------------------------------------------------------- 1 | mpdf->ispre = true; // ADDED - Prevents left trim of textbuffer in printbuffer() 11 | parent::open($attr, $ahtml, $ihtml); // TODO: Change the autogenerated stub 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /vendor/mpdf/mpdf/src/Tag/Q.php: -------------------------------------------------------------------------------- 1 | getTagName(); 11 | if ($this->mpdf->InlineProperties[$tag]) { 12 | $this->mpdf->restoreInlineProperties($this->mpdf->InlineProperties[$tag]); 13 | } 14 | unset($this->mpdf->InlineProperties[$tag]); 15 | $ltag = strtolower($tag); 16 | $this->mpdf->$ltag = false; 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /vendor/mpdf/mpdf/src/Tag/Summary.php: -------------------------------------------------------------------------------- 1 | mpdf->tablethead = 0; 11 | $this->mpdf->tabletfoot = 0; 12 | $this->mpdf->lastoptionaltag = 'TBODY'; // Save current HTML specified optional endtag 13 | $this->cssManager->tbCSSlvl++; 14 | $this->cssManager->MergeCSS('TABLE', 'TBODY', $attr); 15 | } 16 | 17 | public function close(&$ahtml, &$ihtml) 18 | { 19 | $this->mpdf->lastoptionaltag = ''; 20 | unset($this->cssManager->tablecascadeCSS[$this->cssManager->tbCSSlvl]); 21 | $this->cssManager->tbCSSlvl--; 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /vendor/mpdf/mpdf/src/Tag/Th.php: -------------------------------------------------------------------------------- 1 | mpdf->SetStyle('B', false); 11 | parent::close($ahtml, $ihtml); 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /vendor/mpdf/mpdf/src/Tag/Time.php: -------------------------------------------------------------------------------- 1 | tableOfContents->openTagTOC($attr); 12 | } 13 | 14 | public function close(&$ahtml, &$ihtml) 15 | { 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /vendor/mpdf/mpdf/src/Tag/TocEntry.php: -------------------------------------------------------------------------------- 1 | mpdf->tableLevel) { 27 | $this->mpdf->cell[$this->mpdf->row][$this->mpdf->col]['textbuffer'][] = [$e]; 28 | } // *TABLES* 29 | else { // *TABLES* 30 | $this->mpdf->textbuffer[] = [$e]; 31 | } // *TABLES* 32 | } 33 | } 34 | 35 | public function close(&$ahtml, &$ihtml) 36 | { 37 | } 38 | } 39 | -------------------------------------------------------------------------------- /vendor/mpdf/mpdf/src/Tag/TocPageBreak.php: -------------------------------------------------------------------------------- 1 | tableOfContents->openTagTOCPAGEBREAK($attr); 10 | $this->toc_id = $toc_id; 11 | if ($isbreak) { 12 | return; 13 | } 14 | parent::open($attr, $ahtml, $ihtml); 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /vendor/mpdf/mpdf/src/Tag/Tt.php: -------------------------------------------------------------------------------- 1 | mpdf->tta = true; 11 | $this->mpdf->InlineProperties['TTA'] = $this->mpdf->saveInlineProperties(); 12 | 13 | if (in_array($this->mpdf->FontFamily, $this->mpdf->mono_fonts)) { 14 | $this->mpdf->setCSS(['FONT-FAMILY' => 'ccourier'], 'INLINE'); 15 | } elseif (in_array($this->mpdf->FontFamily, $this->mpdf->serif_fonts)) { 16 | $this->mpdf->setCSS(['FONT-FAMILY' => 'ctimes'], 'INLINE'); 17 | } else { 18 | $this->mpdf->setCSS(['FONT-FAMILY' => 'chelvetica'], 'INLINE'); 19 | } 20 | } 21 | 22 | } 23 | -------------------------------------------------------------------------------- /vendor/mpdf/mpdf/src/Tag/Tts.php: -------------------------------------------------------------------------------- 1 | mpdf->tts = true; 11 | $this->mpdf->InlineProperties['TTS'] = $this->mpdf->saveInlineProperties(); 12 | $this->mpdf->setCSS(['FONT-FAMILY' => 'csymbol', 'FONT-WEIGHT' => 'normal', 'FONT-STYLE' => 'normal'], 'INLINE'); 13 | } 14 | 15 | } 16 | -------------------------------------------------------------------------------- /vendor/mpdf/mpdf/src/Tag/Ttz.php: -------------------------------------------------------------------------------- 1 | mpdf->ttz = true; 11 | $this->mpdf->InlineProperties['TTZ'] = $this->mpdf->saveInlineProperties(); 12 | $this->mpdf->setCSS(['FONT-FAMILY' => 'czapfdingbats', 'FONT-WEIGHT' => 'normal', 'FONT-STYLE' => 'normal'], 'INLINE'); 13 | } 14 | 15 | } 16 | -------------------------------------------------------------------------------- /vendor/mpdf/mpdf/src/Tag/U.php: -------------------------------------------------------------------------------- 1 | 0) { 17 | $alpha = $attr['ALPHA']; 18 | } 19 | 20 | $size = 'D'; 21 | if (!empty($attr['SIZE'])) { 22 | $size = $attr['SIZE']; 23 | if (strpos($size, ',')) { 24 | $size = explode(',', $size); 25 | } 26 | } 27 | 28 | $pos = 'P'; 29 | if (!empty($attr['POSITION'])) { // mPDF 5.7.2 30 | $pos = $attr['POSITION']; 31 | if (strpos($pos, ',')) { 32 | $pos = explode(',', $pos); 33 | } 34 | } 35 | $this->mpdf->SetWatermarkImage($src, $alpha, $size, $pos); 36 | } 37 | 38 | public function close(&$ahtml, &$ihtml) 39 | { 40 | } 41 | } 42 | -------------------------------------------------------------------------------- /vendor/mpdf/mpdf/src/Tag/WatermarkText.php: -------------------------------------------------------------------------------- 1 | 0) { 17 | $alpha = $attr['ALPHA']; 18 | } 19 | $this->mpdf->SetWatermarkText($txt, $alpha); 20 | } 21 | 22 | public function close(&$ahtml, &$ihtml) 23 | { 24 | } 25 | } 26 | -------------------------------------------------------------------------------- /vendor/mpdf/mpdf/src/Utils/NumericString.php: -------------------------------------------------------------------------------- 1 | mpdf = $mpdf; 26 | $this->writer = $writer; 27 | } 28 | 29 | public function writeJavascript() // _putjavascript 30 | { 31 | $this->writer->object(); 32 | $this->mpdf->n_js = $this->mpdf->n; 33 | $this->writer->write('<<'); 34 | $this->writer->write('/Names [(EmbeddedJS) ' . (1 + $this->mpdf->n) . ' 0 R ]'); 35 | $this->writer->write('>>'); 36 | $this->writer->write('endobj'); 37 | 38 | $this->writer->object(); 39 | $this->writer->write('<<'); 40 | $this->writer->write('/S /JavaScript'); 41 | $this->writer->write('/JS ' . $this->writer->string($this->mpdf->js)); 42 | $this->writer->write('>>'); 43 | $this->writer->write('endobj'); 44 | } 45 | 46 | } 47 | -------------------------------------------------------------------------------- /vendor/mpdf/mpdf/src/functions-dev.php: -------------------------------------------------------------------------------- 1 | 12 | 13 | ### I found this bug 14 | 15 | ### This is mPDF and PHP version and environment (server/fpm/cli etc) I am using 16 | 17 | ### This is the PHP code snippet I use 18 | 19 | ``` 20 | 9 | -------------------------------------------------------------------------------- /vendor/mpdf/qrcode/.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- 1 | contact_links: 2 | - name: General questions and troubleshooting ❓ 3 | url: https://github.com/mpdf/mpdf/discussions 4 | about: You can use Github Discussions for general questions and troubleshooting. Please note that asking at Stack Overflow will probably be more successful. 5 | - name: QA at Stack Overflow ❓ 6 | url: https://stackoverflow.com/questions/tagged/mpdf 7 | about: Ask at Stack Overflow for a greater chance of a quick and correct answer to your questions. Make sure to comply to SO rules, terms and conditions. 8 | -------------------------------------------------------------------------------- /vendor/mpdf/qrcode/.github/workflows/coverage.yml: -------------------------------------------------------------------------------- 1 | # https://help.github.com/en/categories/automating-your-workflow-with-github-actions 2 | 3 | name: "Code coverage" 4 | 5 | on: 6 | push: 7 | branches: 8 | - "development" 9 | - "coverage" 10 | 11 | jobs: 12 | 13 | coverage: 14 | 15 | name: "Code coverage" 16 | 17 | runs-on: ${{ matrix.operating-system }} 18 | 19 | strategy: 20 | matrix: 21 | php-version: 22 | - "7.4" 23 | 24 | operating-system: [ubuntu-latest] 25 | 26 | steps: 27 | - name: "Checkout" 28 | uses: "actions/checkout@v2" 29 | 30 | - name: "Install PHP" 31 | uses: "shivammathur/setup-php@v2" 32 | with: 33 | coverage: "xdebug" 34 | php-version: "${{ matrix.php-version }}" 35 | extensions: "mbstring, gd, bcmath, bz2" 36 | tools: composer:v2 37 | 38 | - name: "Install dependencies" 39 | run: "composer install --no-interaction --no-progress" 40 | 41 | - name: "Code coverage" 42 | run: composer coverage 43 | -------------------------------------------------------------------------------- /vendor/mpdf/qrcode/.github/workflows/cs.yml: -------------------------------------------------------------------------------- 1 | # https://help.github.com/en/categories/automating-your-workflow-with-github-actions 2 | 3 | name: "Coding standard check" 4 | 5 | on: 6 | pull_request: 7 | push: 8 | branches: 9 | - "development" 10 | - "test" 11 | 12 | jobs: 13 | 14 | cs: 15 | 16 | name: "Coding standard" 17 | 18 | runs-on: ${{ matrix.operating-system }} 19 | 20 | strategy: 21 | matrix: 22 | php-version: 23 | - "7.4" 24 | 25 | operating-system: [ubuntu-latest] 26 | 27 | steps: 28 | - name: "Checkout" 29 | uses: "actions/checkout@v2" 30 | 31 | - name: "Install PHP" 32 | uses: "shivammathur/setup-php@v2" 33 | with: 34 | coverage: "none" 35 | php-version: "${{ matrix.php-version }}" 36 | extensions: "mbstring" 37 | tools: composer:v2 38 | 39 | - name: "Install dependencies" 40 | run: "composer install --no-interaction --no-progress" 41 | 42 | - name: "CS" 43 | run: composer cs 44 | -------------------------------------------------------------------------------- /vendor/mpdf/qrcode/.gitignore: -------------------------------------------------------------------------------- 1 | /composer.lock 2 | /coverage/ 3 | /vendor/ 4 | -------------------------------------------------------------------------------- /vendor/mpdf/qrcode/README.md: -------------------------------------------------------------------------------- 1 | # mPDF QR code library 2 | 3 | QR code generating library with HTML/PNG/mPDF output possibilities. 4 | 5 | [![Build Status](https://travis-ci.org/mpdf/qrcode.svg?branch=development)](https://travis-ci.org/mpdf/mpdf) 6 | 7 | This is based on QrCode library bundled with mPDF until v8.0, made by Laurent Minguet. It is provided under LGPL license. 8 | 9 | ## Installation 10 | 11 | ```sh 12 | $ composer require mpdf/qrcode 13 | ``` 14 | 15 | ## Usage 16 | 17 | ```php 18 | output($qrCode, 100, [255, 255, 255], [0, 0, 0]); 29 | file_put_contents('filename.png', $data); 30 | ``` 31 | -------------------------------------------------------------------------------- /vendor/mpdf/qrcode/data/modele1.dat: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /vendor/mpdf/qrcode/data/modele2.dat: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /vendor/mpdf/qrcode/data/qrv10_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splitbrain/dokuwiki-plugin-dw2pdf/fc024641a9ffc5b8fe665c1696644d9ce14620d3/vendor/mpdf/qrcode/data/qrv10_0.dat -------------------------------------------------------------------------------- /vendor/mpdf/qrcode/data/qrv10_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splitbrain/dokuwiki-plugin-dw2pdf/fc024641a9ffc5b8fe665c1696644d9ce14620d3/vendor/mpdf/qrcode/data/qrv10_1.dat -------------------------------------------------------------------------------- /vendor/mpdf/qrcode/data/qrv10_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splitbrain/dokuwiki-plugin-dw2pdf/fc024641a9ffc5b8fe665c1696644d9ce14620d3/vendor/mpdf/qrcode/data/qrv10_2.dat -------------------------------------------------------------------------------- /vendor/mpdf/qrcode/data/qrv10_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splitbrain/dokuwiki-plugin-dw2pdf/fc024641a9ffc5b8fe665c1696644d9ce14620d3/vendor/mpdf/qrcode/data/qrv10_3.dat -------------------------------------------------------------------------------- /vendor/mpdf/qrcode/data/qrv11_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splitbrain/dokuwiki-plugin-dw2pdf/fc024641a9ffc5b8fe665c1696644d9ce14620d3/vendor/mpdf/qrcode/data/qrv11_0.dat -------------------------------------------------------------------------------- /vendor/mpdf/qrcode/data/qrv11_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splitbrain/dokuwiki-plugin-dw2pdf/fc024641a9ffc5b8fe665c1696644d9ce14620d3/vendor/mpdf/qrcode/data/qrv11_1.dat -------------------------------------------------------------------------------- /vendor/mpdf/qrcode/data/qrv11_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splitbrain/dokuwiki-plugin-dw2pdf/fc024641a9ffc5b8fe665c1696644d9ce14620d3/vendor/mpdf/qrcode/data/qrv11_2.dat -------------------------------------------------------------------------------- /vendor/mpdf/qrcode/data/qrv11_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splitbrain/dokuwiki-plugin-dw2pdf/fc024641a9ffc5b8fe665c1696644d9ce14620d3/vendor/mpdf/qrcode/data/qrv11_3.dat -------------------------------------------------------------------------------- /vendor/mpdf/qrcode/data/qrv12_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splitbrain/dokuwiki-plugin-dw2pdf/fc024641a9ffc5b8fe665c1696644d9ce14620d3/vendor/mpdf/qrcode/data/qrv12_0.dat -------------------------------------------------------------------------------- /vendor/mpdf/qrcode/data/qrv12_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splitbrain/dokuwiki-plugin-dw2pdf/fc024641a9ffc5b8fe665c1696644d9ce14620d3/vendor/mpdf/qrcode/data/qrv12_1.dat -------------------------------------------------------------------------------- /vendor/mpdf/qrcode/data/qrv12_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splitbrain/dokuwiki-plugin-dw2pdf/fc024641a9ffc5b8fe665c1696644d9ce14620d3/vendor/mpdf/qrcode/data/qrv12_2.dat -------------------------------------------------------------------------------- /vendor/mpdf/qrcode/data/qrv12_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splitbrain/dokuwiki-plugin-dw2pdf/fc024641a9ffc5b8fe665c1696644d9ce14620d3/vendor/mpdf/qrcode/data/qrv12_3.dat -------------------------------------------------------------------------------- /vendor/mpdf/qrcode/data/qrv13_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splitbrain/dokuwiki-plugin-dw2pdf/fc024641a9ffc5b8fe665c1696644d9ce14620d3/vendor/mpdf/qrcode/data/qrv13_0.dat -------------------------------------------------------------------------------- /vendor/mpdf/qrcode/data/qrv13_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splitbrain/dokuwiki-plugin-dw2pdf/fc024641a9ffc5b8fe665c1696644d9ce14620d3/vendor/mpdf/qrcode/data/qrv13_1.dat -------------------------------------------------------------------------------- /vendor/mpdf/qrcode/data/qrv13_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splitbrain/dokuwiki-plugin-dw2pdf/fc024641a9ffc5b8fe665c1696644d9ce14620d3/vendor/mpdf/qrcode/data/qrv13_2.dat -------------------------------------------------------------------------------- /vendor/mpdf/qrcode/data/qrv13_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splitbrain/dokuwiki-plugin-dw2pdf/fc024641a9ffc5b8fe665c1696644d9ce14620d3/vendor/mpdf/qrcode/data/qrv13_3.dat -------------------------------------------------------------------------------- /vendor/mpdf/qrcode/data/qrv14_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splitbrain/dokuwiki-plugin-dw2pdf/fc024641a9ffc5b8fe665c1696644d9ce14620d3/vendor/mpdf/qrcode/data/qrv14_0.dat -------------------------------------------------------------------------------- /vendor/mpdf/qrcode/data/qrv14_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splitbrain/dokuwiki-plugin-dw2pdf/fc024641a9ffc5b8fe665c1696644d9ce14620d3/vendor/mpdf/qrcode/data/qrv14_1.dat -------------------------------------------------------------------------------- /vendor/mpdf/qrcode/data/qrv14_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splitbrain/dokuwiki-plugin-dw2pdf/fc024641a9ffc5b8fe665c1696644d9ce14620d3/vendor/mpdf/qrcode/data/qrv14_2.dat -------------------------------------------------------------------------------- /vendor/mpdf/qrcode/data/qrv14_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splitbrain/dokuwiki-plugin-dw2pdf/fc024641a9ffc5b8fe665c1696644d9ce14620d3/vendor/mpdf/qrcode/data/qrv14_3.dat -------------------------------------------------------------------------------- /vendor/mpdf/qrcode/data/qrv15_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splitbrain/dokuwiki-plugin-dw2pdf/fc024641a9ffc5b8fe665c1696644d9ce14620d3/vendor/mpdf/qrcode/data/qrv15_0.dat -------------------------------------------------------------------------------- /vendor/mpdf/qrcode/data/qrv15_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splitbrain/dokuwiki-plugin-dw2pdf/fc024641a9ffc5b8fe665c1696644d9ce14620d3/vendor/mpdf/qrcode/data/qrv15_1.dat -------------------------------------------------------------------------------- /vendor/mpdf/qrcode/data/qrv15_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splitbrain/dokuwiki-plugin-dw2pdf/fc024641a9ffc5b8fe665c1696644d9ce14620d3/vendor/mpdf/qrcode/data/qrv15_2.dat -------------------------------------------------------------------------------- /vendor/mpdf/qrcode/data/qrv15_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splitbrain/dokuwiki-plugin-dw2pdf/fc024641a9ffc5b8fe665c1696644d9ce14620d3/vendor/mpdf/qrcode/data/qrv15_3.dat -------------------------------------------------------------------------------- /vendor/mpdf/qrcode/data/qrv16_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splitbrain/dokuwiki-plugin-dw2pdf/fc024641a9ffc5b8fe665c1696644d9ce14620d3/vendor/mpdf/qrcode/data/qrv16_0.dat -------------------------------------------------------------------------------- /vendor/mpdf/qrcode/data/qrv16_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splitbrain/dokuwiki-plugin-dw2pdf/fc024641a9ffc5b8fe665c1696644d9ce14620d3/vendor/mpdf/qrcode/data/qrv16_1.dat -------------------------------------------------------------------------------- /vendor/mpdf/qrcode/data/qrv16_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splitbrain/dokuwiki-plugin-dw2pdf/fc024641a9ffc5b8fe665c1696644d9ce14620d3/vendor/mpdf/qrcode/data/qrv16_2.dat -------------------------------------------------------------------------------- /vendor/mpdf/qrcode/data/qrv16_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splitbrain/dokuwiki-plugin-dw2pdf/fc024641a9ffc5b8fe665c1696644d9ce14620d3/vendor/mpdf/qrcode/data/qrv16_3.dat -------------------------------------------------------------------------------- /vendor/mpdf/qrcode/data/qrv17_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splitbrain/dokuwiki-plugin-dw2pdf/fc024641a9ffc5b8fe665c1696644d9ce14620d3/vendor/mpdf/qrcode/data/qrv17_0.dat -------------------------------------------------------------------------------- /vendor/mpdf/qrcode/data/qrv17_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splitbrain/dokuwiki-plugin-dw2pdf/fc024641a9ffc5b8fe665c1696644d9ce14620d3/vendor/mpdf/qrcode/data/qrv17_1.dat -------------------------------------------------------------------------------- /vendor/mpdf/qrcode/data/qrv17_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splitbrain/dokuwiki-plugin-dw2pdf/fc024641a9ffc5b8fe665c1696644d9ce14620d3/vendor/mpdf/qrcode/data/qrv17_2.dat -------------------------------------------------------------------------------- /vendor/mpdf/qrcode/data/qrv17_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splitbrain/dokuwiki-plugin-dw2pdf/fc024641a9ffc5b8fe665c1696644d9ce14620d3/vendor/mpdf/qrcode/data/qrv17_3.dat -------------------------------------------------------------------------------- /vendor/mpdf/qrcode/data/qrv18_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splitbrain/dokuwiki-plugin-dw2pdf/fc024641a9ffc5b8fe665c1696644d9ce14620d3/vendor/mpdf/qrcode/data/qrv18_0.dat -------------------------------------------------------------------------------- /vendor/mpdf/qrcode/data/qrv18_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splitbrain/dokuwiki-plugin-dw2pdf/fc024641a9ffc5b8fe665c1696644d9ce14620d3/vendor/mpdf/qrcode/data/qrv18_1.dat -------------------------------------------------------------------------------- /vendor/mpdf/qrcode/data/qrv18_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splitbrain/dokuwiki-plugin-dw2pdf/fc024641a9ffc5b8fe665c1696644d9ce14620d3/vendor/mpdf/qrcode/data/qrv18_2.dat -------------------------------------------------------------------------------- /vendor/mpdf/qrcode/data/qrv18_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splitbrain/dokuwiki-plugin-dw2pdf/fc024641a9ffc5b8fe665c1696644d9ce14620d3/vendor/mpdf/qrcode/data/qrv18_3.dat -------------------------------------------------------------------------------- /vendor/mpdf/qrcode/data/qrv19_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splitbrain/dokuwiki-plugin-dw2pdf/fc024641a9ffc5b8fe665c1696644d9ce14620d3/vendor/mpdf/qrcode/data/qrv19_0.dat -------------------------------------------------------------------------------- /vendor/mpdf/qrcode/data/qrv19_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splitbrain/dokuwiki-plugin-dw2pdf/fc024641a9ffc5b8fe665c1696644d9ce14620d3/vendor/mpdf/qrcode/data/qrv19_1.dat -------------------------------------------------------------------------------- /vendor/mpdf/qrcode/data/qrv19_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splitbrain/dokuwiki-plugin-dw2pdf/fc024641a9ffc5b8fe665c1696644d9ce14620d3/vendor/mpdf/qrcode/data/qrv19_2.dat -------------------------------------------------------------------------------- /vendor/mpdf/qrcode/data/qrv19_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splitbrain/dokuwiki-plugin-dw2pdf/fc024641a9ffc5b8fe665c1696644d9ce14620d3/vendor/mpdf/qrcode/data/qrv19_3.dat -------------------------------------------------------------------------------- /vendor/mpdf/qrcode/data/qrv1_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splitbrain/dokuwiki-plugin-dw2pdf/fc024641a9ffc5b8fe665c1696644d9ce14620d3/vendor/mpdf/qrcode/data/qrv1_0.dat -------------------------------------------------------------------------------- /vendor/mpdf/qrcode/data/qrv1_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splitbrain/dokuwiki-plugin-dw2pdf/fc024641a9ffc5b8fe665c1696644d9ce14620d3/vendor/mpdf/qrcode/data/qrv1_1.dat -------------------------------------------------------------------------------- /vendor/mpdf/qrcode/data/qrv1_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splitbrain/dokuwiki-plugin-dw2pdf/fc024641a9ffc5b8fe665c1696644d9ce14620d3/vendor/mpdf/qrcode/data/qrv1_2.dat -------------------------------------------------------------------------------- /vendor/mpdf/qrcode/data/qrv1_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splitbrain/dokuwiki-plugin-dw2pdf/fc024641a9ffc5b8fe665c1696644d9ce14620d3/vendor/mpdf/qrcode/data/qrv1_3.dat -------------------------------------------------------------------------------- /vendor/mpdf/qrcode/data/qrv20_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splitbrain/dokuwiki-plugin-dw2pdf/fc024641a9ffc5b8fe665c1696644d9ce14620d3/vendor/mpdf/qrcode/data/qrv20_0.dat -------------------------------------------------------------------------------- /vendor/mpdf/qrcode/data/qrv20_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splitbrain/dokuwiki-plugin-dw2pdf/fc024641a9ffc5b8fe665c1696644d9ce14620d3/vendor/mpdf/qrcode/data/qrv20_1.dat -------------------------------------------------------------------------------- /vendor/mpdf/qrcode/data/qrv20_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splitbrain/dokuwiki-plugin-dw2pdf/fc024641a9ffc5b8fe665c1696644d9ce14620d3/vendor/mpdf/qrcode/data/qrv20_2.dat -------------------------------------------------------------------------------- /vendor/mpdf/qrcode/data/qrv20_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splitbrain/dokuwiki-plugin-dw2pdf/fc024641a9ffc5b8fe665c1696644d9ce14620d3/vendor/mpdf/qrcode/data/qrv20_3.dat -------------------------------------------------------------------------------- /vendor/mpdf/qrcode/data/qrv21_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splitbrain/dokuwiki-plugin-dw2pdf/fc024641a9ffc5b8fe665c1696644d9ce14620d3/vendor/mpdf/qrcode/data/qrv21_0.dat -------------------------------------------------------------------------------- /vendor/mpdf/qrcode/data/qrv21_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splitbrain/dokuwiki-plugin-dw2pdf/fc024641a9ffc5b8fe665c1696644d9ce14620d3/vendor/mpdf/qrcode/data/qrv21_1.dat -------------------------------------------------------------------------------- /vendor/mpdf/qrcode/data/qrv21_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splitbrain/dokuwiki-plugin-dw2pdf/fc024641a9ffc5b8fe665c1696644d9ce14620d3/vendor/mpdf/qrcode/data/qrv21_2.dat -------------------------------------------------------------------------------- /vendor/mpdf/qrcode/data/qrv21_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splitbrain/dokuwiki-plugin-dw2pdf/fc024641a9ffc5b8fe665c1696644d9ce14620d3/vendor/mpdf/qrcode/data/qrv21_3.dat -------------------------------------------------------------------------------- /vendor/mpdf/qrcode/data/qrv22_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splitbrain/dokuwiki-plugin-dw2pdf/fc024641a9ffc5b8fe665c1696644d9ce14620d3/vendor/mpdf/qrcode/data/qrv22_0.dat -------------------------------------------------------------------------------- /vendor/mpdf/qrcode/data/qrv22_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splitbrain/dokuwiki-plugin-dw2pdf/fc024641a9ffc5b8fe665c1696644d9ce14620d3/vendor/mpdf/qrcode/data/qrv22_1.dat -------------------------------------------------------------------------------- /vendor/mpdf/qrcode/data/qrv22_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splitbrain/dokuwiki-plugin-dw2pdf/fc024641a9ffc5b8fe665c1696644d9ce14620d3/vendor/mpdf/qrcode/data/qrv22_2.dat -------------------------------------------------------------------------------- /vendor/mpdf/qrcode/data/qrv22_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splitbrain/dokuwiki-plugin-dw2pdf/fc024641a9ffc5b8fe665c1696644d9ce14620d3/vendor/mpdf/qrcode/data/qrv22_3.dat -------------------------------------------------------------------------------- /vendor/mpdf/qrcode/data/qrv23_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splitbrain/dokuwiki-plugin-dw2pdf/fc024641a9ffc5b8fe665c1696644d9ce14620d3/vendor/mpdf/qrcode/data/qrv23_0.dat -------------------------------------------------------------------------------- /vendor/mpdf/qrcode/data/qrv23_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splitbrain/dokuwiki-plugin-dw2pdf/fc024641a9ffc5b8fe665c1696644d9ce14620d3/vendor/mpdf/qrcode/data/qrv23_1.dat -------------------------------------------------------------------------------- /vendor/mpdf/qrcode/data/qrv23_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splitbrain/dokuwiki-plugin-dw2pdf/fc024641a9ffc5b8fe665c1696644d9ce14620d3/vendor/mpdf/qrcode/data/qrv23_2.dat -------------------------------------------------------------------------------- /vendor/mpdf/qrcode/data/qrv23_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splitbrain/dokuwiki-plugin-dw2pdf/fc024641a9ffc5b8fe665c1696644d9ce14620d3/vendor/mpdf/qrcode/data/qrv23_3.dat -------------------------------------------------------------------------------- /vendor/mpdf/qrcode/data/qrv24_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splitbrain/dokuwiki-plugin-dw2pdf/fc024641a9ffc5b8fe665c1696644d9ce14620d3/vendor/mpdf/qrcode/data/qrv24_0.dat -------------------------------------------------------------------------------- /vendor/mpdf/qrcode/data/qrv24_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splitbrain/dokuwiki-plugin-dw2pdf/fc024641a9ffc5b8fe665c1696644d9ce14620d3/vendor/mpdf/qrcode/data/qrv24_1.dat -------------------------------------------------------------------------------- /vendor/mpdf/qrcode/data/qrv24_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splitbrain/dokuwiki-plugin-dw2pdf/fc024641a9ffc5b8fe665c1696644d9ce14620d3/vendor/mpdf/qrcode/data/qrv24_2.dat -------------------------------------------------------------------------------- /vendor/mpdf/qrcode/data/qrv24_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splitbrain/dokuwiki-plugin-dw2pdf/fc024641a9ffc5b8fe665c1696644d9ce14620d3/vendor/mpdf/qrcode/data/qrv24_3.dat -------------------------------------------------------------------------------- /vendor/mpdf/qrcode/data/qrv25_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splitbrain/dokuwiki-plugin-dw2pdf/fc024641a9ffc5b8fe665c1696644d9ce14620d3/vendor/mpdf/qrcode/data/qrv25_0.dat -------------------------------------------------------------------------------- /vendor/mpdf/qrcode/data/qrv25_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splitbrain/dokuwiki-plugin-dw2pdf/fc024641a9ffc5b8fe665c1696644d9ce14620d3/vendor/mpdf/qrcode/data/qrv25_1.dat -------------------------------------------------------------------------------- /vendor/mpdf/qrcode/data/qrv25_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splitbrain/dokuwiki-plugin-dw2pdf/fc024641a9ffc5b8fe665c1696644d9ce14620d3/vendor/mpdf/qrcode/data/qrv25_2.dat -------------------------------------------------------------------------------- /vendor/mpdf/qrcode/data/qrv25_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splitbrain/dokuwiki-plugin-dw2pdf/fc024641a9ffc5b8fe665c1696644d9ce14620d3/vendor/mpdf/qrcode/data/qrv25_3.dat -------------------------------------------------------------------------------- /vendor/mpdf/qrcode/data/qrv26_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splitbrain/dokuwiki-plugin-dw2pdf/fc024641a9ffc5b8fe665c1696644d9ce14620d3/vendor/mpdf/qrcode/data/qrv26_0.dat -------------------------------------------------------------------------------- /vendor/mpdf/qrcode/data/qrv26_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splitbrain/dokuwiki-plugin-dw2pdf/fc024641a9ffc5b8fe665c1696644d9ce14620d3/vendor/mpdf/qrcode/data/qrv26_1.dat -------------------------------------------------------------------------------- /vendor/mpdf/qrcode/data/qrv26_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splitbrain/dokuwiki-plugin-dw2pdf/fc024641a9ffc5b8fe665c1696644d9ce14620d3/vendor/mpdf/qrcode/data/qrv26_2.dat -------------------------------------------------------------------------------- /vendor/mpdf/qrcode/data/qrv26_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splitbrain/dokuwiki-plugin-dw2pdf/fc024641a9ffc5b8fe665c1696644d9ce14620d3/vendor/mpdf/qrcode/data/qrv26_3.dat -------------------------------------------------------------------------------- /vendor/mpdf/qrcode/data/qrv27_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splitbrain/dokuwiki-plugin-dw2pdf/fc024641a9ffc5b8fe665c1696644d9ce14620d3/vendor/mpdf/qrcode/data/qrv27_0.dat -------------------------------------------------------------------------------- /vendor/mpdf/qrcode/data/qrv27_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splitbrain/dokuwiki-plugin-dw2pdf/fc024641a9ffc5b8fe665c1696644d9ce14620d3/vendor/mpdf/qrcode/data/qrv27_1.dat -------------------------------------------------------------------------------- /vendor/mpdf/qrcode/data/qrv27_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splitbrain/dokuwiki-plugin-dw2pdf/fc024641a9ffc5b8fe665c1696644d9ce14620d3/vendor/mpdf/qrcode/data/qrv27_2.dat -------------------------------------------------------------------------------- /vendor/mpdf/qrcode/data/qrv27_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splitbrain/dokuwiki-plugin-dw2pdf/fc024641a9ffc5b8fe665c1696644d9ce14620d3/vendor/mpdf/qrcode/data/qrv27_3.dat -------------------------------------------------------------------------------- /vendor/mpdf/qrcode/data/qrv28_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splitbrain/dokuwiki-plugin-dw2pdf/fc024641a9ffc5b8fe665c1696644d9ce14620d3/vendor/mpdf/qrcode/data/qrv28_0.dat -------------------------------------------------------------------------------- /vendor/mpdf/qrcode/data/qrv28_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splitbrain/dokuwiki-plugin-dw2pdf/fc024641a9ffc5b8fe665c1696644d9ce14620d3/vendor/mpdf/qrcode/data/qrv28_1.dat -------------------------------------------------------------------------------- /vendor/mpdf/qrcode/data/qrv28_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splitbrain/dokuwiki-plugin-dw2pdf/fc024641a9ffc5b8fe665c1696644d9ce14620d3/vendor/mpdf/qrcode/data/qrv28_2.dat -------------------------------------------------------------------------------- /vendor/mpdf/qrcode/data/qrv28_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splitbrain/dokuwiki-plugin-dw2pdf/fc024641a9ffc5b8fe665c1696644d9ce14620d3/vendor/mpdf/qrcode/data/qrv28_3.dat -------------------------------------------------------------------------------- /vendor/mpdf/qrcode/data/qrv29_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splitbrain/dokuwiki-plugin-dw2pdf/fc024641a9ffc5b8fe665c1696644d9ce14620d3/vendor/mpdf/qrcode/data/qrv29_0.dat -------------------------------------------------------------------------------- /vendor/mpdf/qrcode/data/qrv29_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splitbrain/dokuwiki-plugin-dw2pdf/fc024641a9ffc5b8fe665c1696644d9ce14620d3/vendor/mpdf/qrcode/data/qrv29_1.dat -------------------------------------------------------------------------------- /vendor/mpdf/qrcode/data/qrv29_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splitbrain/dokuwiki-plugin-dw2pdf/fc024641a9ffc5b8fe665c1696644d9ce14620d3/vendor/mpdf/qrcode/data/qrv29_2.dat -------------------------------------------------------------------------------- /vendor/mpdf/qrcode/data/qrv29_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splitbrain/dokuwiki-plugin-dw2pdf/fc024641a9ffc5b8fe665c1696644d9ce14620d3/vendor/mpdf/qrcode/data/qrv29_3.dat -------------------------------------------------------------------------------- /vendor/mpdf/qrcode/data/qrv2_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splitbrain/dokuwiki-plugin-dw2pdf/fc024641a9ffc5b8fe665c1696644d9ce14620d3/vendor/mpdf/qrcode/data/qrv2_0.dat -------------------------------------------------------------------------------- /vendor/mpdf/qrcode/data/qrv2_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splitbrain/dokuwiki-plugin-dw2pdf/fc024641a9ffc5b8fe665c1696644d9ce14620d3/vendor/mpdf/qrcode/data/qrv2_1.dat -------------------------------------------------------------------------------- /vendor/mpdf/qrcode/data/qrv2_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splitbrain/dokuwiki-plugin-dw2pdf/fc024641a9ffc5b8fe665c1696644d9ce14620d3/vendor/mpdf/qrcode/data/qrv2_2.dat -------------------------------------------------------------------------------- /vendor/mpdf/qrcode/data/qrv2_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splitbrain/dokuwiki-plugin-dw2pdf/fc024641a9ffc5b8fe665c1696644d9ce14620d3/vendor/mpdf/qrcode/data/qrv2_3.dat -------------------------------------------------------------------------------- /vendor/mpdf/qrcode/data/qrv30_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splitbrain/dokuwiki-plugin-dw2pdf/fc024641a9ffc5b8fe665c1696644d9ce14620d3/vendor/mpdf/qrcode/data/qrv30_0.dat -------------------------------------------------------------------------------- /vendor/mpdf/qrcode/data/qrv30_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splitbrain/dokuwiki-plugin-dw2pdf/fc024641a9ffc5b8fe665c1696644d9ce14620d3/vendor/mpdf/qrcode/data/qrv30_1.dat -------------------------------------------------------------------------------- /vendor/mpdf/qrcode/data/qrv30_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splitbrain/dokuwiki-plugin-dw2pdf/fc024641a9ffc5b8fe665c1696644d9ce14620d3/vendor/mpdf/qrcode/data/qrv30_2.dat -------------------------------------------------------------------------------- /vendor/mpdf/qrcode/data/qrv30_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splitbrain/dokuwiki-plugin-dw2pdf/fc024641a9ffc5b8fe665c1696644d9ce14620d3/vendor/mpdf/qrcode/data/qrv30_3.dat -------------------------------------------------------------------------------- /vendor/mpdf/qrcode/data/qrv31_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splitbrain/dokuwiki-plugin-dw2pdf/fc024641a9ffc5b8fe665c1696644d9ce14620d3/vendor/mpdf/qrcode/data/qrv31_0.dat -------------------------------------------------------------------------------- /vendor/mpdf/qrcode/data/qrv31_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splitbrain/dokuwiki-plugin-dw2pdf/fc024641a9ffc5b8fe665c1696644d9ce14620d3/vendor/mpdf/qrcode/data/qrv31_1.dat -------------------------------------------------------------------------------- /vendor/mpdf/qrcode/data/qrv31_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splitbrain/dokuwiki-plugin-dw2pdf/fc024641a9ffc5b8fe665c1696644d9ce14620d3/vendor/mpdf/qrcode/data/qrv31_2.dat -------------------------------------------------------------------------------- /vendor/mpdf/qrcode/data/qrv31_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splitbrain/dokuwiki-plugin-dw2pdf/fc024641a9ffc5b8fe665c1696644d9ce14620d3/vendor/mpdf/qrcode/data/qrv31_3.dat -------------------------------------------------------------------------------- /vendor/mpdf/qrcode/data/qrv32_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splitbrain/dokuwiki-plugin-dw2pdf/fc024641a9ffc5b8fe665c1696644d9ce14620d3/vendor/mpdf/qrcode/data/qrv32_0.dat -------------------------------------------------------------------------------- /vendor/mpdf/qrcode/data/qrv32_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splitbrain/dokuwiki-plugin-dw2pdf/fc024641a9ffc5b8fe665c1696644d9ce14620d3/vendor/mpdf/qrcode/data/qrv32_1.dat -------------------------------------------------------------------------------- /vendor/mpdf/qrcode/data/qrv32_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splitbrain/dokuwiki-plugin-dw2pdf/fc024641a9ffc5b8fe665c1696644d9ce14620d3/vendor/mpdf/qrcode/data/qrv32_2.dat -------------------------------------------------------------------------------- /vendor/mpdf/qrcode/data/qrv32_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splitbrain/dokuwiki-plugin-dw2pdf/fc024641a9ffc5b8fe665c1696644d9ce14620d3/vendor/mpdf/qrcode/data/qrv32_3.dat -------------------------------------------------------------------------------- /vendor/mpdf/qrcode/data/qrv33_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splitbrain/dokuwiki-plugin-dw2pdf/fc024641a9ffc5b8fe665c1696644d9ce14620d3/vendor/mpdf/qrcode/data/qrv33_0.dat -------------------------------------------------------------------------------- /vendor/mpdf/qrcode/data/qrv33_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splitbrain/dokuwiki-plugin-dw2pdf/fc024641a9ffc5b8fe665c1696644d9ce14620d3/vendor/mpdf/qrcode/data/qrv33_1.dat -------------------------------------------------------------------------------- /vendor/mpdf/qrcode/data/qrv33_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splitbrain/dokuwiki-plugin-dw2pdf/fc024641a9ffc5b8fe665c1696644d9ce14620d3/vendor/mpdf/qrcode/data/qrv33_2.dat -------------------------------------------------------------------------------- /vendor/mpdf/qrcode/data/qrv33_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splitbrain/dokuwiki-plugin-dw2pdf/fc024641a9ffc5b8fe665c1696644d9ce14620d3/vendor/mpdf/qrcode/data/qrv33_3.dat -------------------------------------------------------------------------------- /vendor/mpdf/qrcode/data/qrv34_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splitbrain/dokuwiki-plugin-dw2pdf/fc024641a9ffc5b8fe665c1696644d9ce14620d3/vendor/mpdf/qrcode/data/qrv34_0.dat -------------------------------------------------------------------------------- /vendor/mpdf/qrcode/data/qrv34_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splitbrain/dokuwiki-plugin-dw2pdf/fc024641a9ffc5b8fe665c1696644d9ce14620d3/vendor/mpdf/qrcode/data/qrv34_1.dat -------------------------------------------------------------------------------- /vendor/mpdf/qrcode/data/qrv34_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splitbrain/dokuwiki-plugin-dw2pdf/fc024641a9ffc5b8fe665c1696644d9ce14620d3/vendor/mpdf/qrcode/data/qrv34_2.dat -------------------------------------------------------------------------------- /vendor/mpdf/qrcode/data/qrv34_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splitbrain/dokuwiki-plugin-dw2pdf/fc024641a9ffc5b8fe665c1696644d9ce14620d3/vendor/mpdf/qrcode/data/qrv34_3.dat -------------------------------------------------------------------------------- /vendor/mpdf/qrcode/data/qrv35_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splitbrain/dokuwiki-plugin-dw2pdf/fc024641a9ffc5b8fe665c1696644d9ce14620d3/vendor/mpdf/qrcode/data/qrv35_0.dat -------------------------------------------------------------------------------- /vendor/mpdf/qrcode/data/qrv35_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splitbrain/dokuwiki-plugin-dw2pdf/fc024641a9ffc5b8fe665c1696644d9ce14620d3/vendor/mpdf/qrcode/data/qrv35_1.dat -------------------------------------------------------------------------------- /vendor/mpdf/qrcode/data/qrv35_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splitbrain/dokuwiki-plugin-dw2pdf/fc024641a9ffc5b8fe665c1696644d9ce14620d3/vendor/mpdf/qrcode/data/qrv35_2.dat -------------------------------------------------------------------------------- /vendor/mpdf/qrcode/data/qrv35_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splitbrain/dokuwiki-plugin-dw2pdf/fc024641a9ffc5b8fe665c1696644d9ce14620d3/vendor/mpdf/qrcode/data/qrv35_3.dat -------------------------------------------------------------------------------- /vendor/mpdf/qrcode/data/qrv36_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splitbrain/dokuwiki-plugin-dw2pdf/fc024641a9ffc5b8fe665c1696644d9ce14620d3/vendor/mpdf/qrcode/data/qrv36_0.dat -------------------------------------------------------------------------------- /vendor/mpdf/qrcode/data/qrv36_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splitbrain/dokuwiki-plugin-dw2pdf/fc024641a9ffc5b8fe665c1696644d9ce14620d3/vendor/mpdf/qrcode/data/qrv36_1.dat -------------------------------------------------------------------------------- /vendor/mpdf/qrcode/data/qrv36_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splitbrain/dokuwiki-plugin-dw2pdf/fc024641a9ffc5b8fe665c1696644d9ce14620d3/vendor/mpdf/qrcode/data/qrv36_2.dat -------------------------------------------------------------------------------- /vendor/mpdf/qrcode/data/qrv36_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splitbrain/dokuwiki-plugin-dw2pdf/fc024641a9ffc5b8fe665c1696644d9ce14620d3/vendor/mpdf/qrcode/data/qrv36_3.dat -------------------------------------------------------------------------------- /vendor/mpdf/qrcode/data/qrv37_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splitbrain/dokuwiki-plugin-dw2pdf/fc024641a9ffc5b8fe665c1696644d9ce14620d3/vendor/mpdf/qrcode/data/qrv37_0.dat -------------------------------------------------------------------------------- /vendor/mpdf/qrcode/data/qrv37_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splitbrain/dokuwiki-plugin-dw2pdf/fc024641a9ffc5b8fe665c1696644d9ce14620d3/vendor/mpdf/qrcode/data/qrv37_1.dat -------------------------------------------------------------------------------- /vendor/mpdf/qrcode/data/qrv37_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splitbrain/dokuwiki-plugin-dw2pdf/fc024641a9ffc5b8fe665c1696644d9ce14620d3/vendor/mpdf/qrcode/data/qrv37_2.dat -------------------------------------------------------------------------------- /vendor/mpdf/qrcode/data/qrv37_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splitbrain/dokuwiki-plugin-dw2pdf/fc024641a9ffc5b8fe665c1696644d9ce14620d3/vendor/mpdf/qrcode/data/qrv37_3.dat -------------------------------------------------------------------------------- /vendor/mpdf/qrcode/data/qrv38_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splitbrain/dokuwiki-plugin-dw2pdf/fc024641a9ffc5b8fe665c1696644d9ce14620d3/vendor/mpdf/qrcode/data/qrv38_0.dat -------------------------------------------------------------------------------- /vendor/mpdf/qrcode/data/qrv38_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splitbrain/dokuwiki-plugin-dw2pdf/fc024641a9ffc5b8fe665c1696644d9ce14620d3/vendor/mpdf/qrcode/data/qrv38_1.dat -------------------------------------------------------------------------------- /vendor/mpdf/qrcode/data/qrv38_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splitbrain/dokuwiki-plugin-dw2pdf/fc024641a9ffc5b8fe665c1696644d9ce14620d3/vendor/mpdf/qrcode/data/qrv38_2.dat -------------------------------------------------------------------------------- /vendor/mpdf/qrcode/data/qrv38_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splitbrain/dokuwiki-plugin-dw2pdf/fc024641a9ffc5b8fe665c1696644d9ce14620d3/vendor/mpdf/qrcode/data/qrv38_3.dat -------------------------------------------------------------------------------- /vendor/mpdf/qrcode/data/qrv39_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splitbrain/dokuwiki-plugin-dw2pdf/fc024641a9ffc5b8fe665c1696644d9ce14620d3/vendor/mpdf/qrcode/data/qrv39_0.dat -------------------------------------------------------------------------------- /vendor/mpdf/qrcode/data/qrv39_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splitbrain/dokuwiki-plugin-dw2pdf/fc024641a9ffc5b8fe665c1696644d9ce14620d3/vendor/mpdf/qrcode/data/qrv39_1.dat -------------------------------------------------------------------------------- /vendor/mpdf/qrcode/data/qrv39_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splitbrain/dokuwiki-plugin-dw2pdf/fc024641a9ffc5b8fe665c1696644d9ce14620d3/vendor/mpdf/qrcode/data/qrv39_2.dat -------------------------------------------------------------------------------- /vendor/mpdf/qrcode/data/qrv39_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splitbrain/dokuwiki-plugin-dw2pdf/fc024641a9ffc5b8fe665c1696644d9ce14620d3/vendor/mpdf/qrcode/data/qrv39_3.dat -------------------------------------------------------------------------------- /vendor/mpdf/qrcode/data/qrv3_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splitbrain/dokuwiki-plugin-dw2pdf/fc024641a9ffc5b8fe665c1696644d9ce14620d3/vendor/mpdf/qrcode/data/qrv3_0.dat -------------------------------------------------------------------------------- /vendor/mpdf/qrcode/data/qrv3_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splitbrain/dokuwiki-plugin-dw2pdf/fc024641a9ffc5b8fe665c1696644d9ce14620d3/vendor/mpdf/qrcode/data/qrv3_1.dat -------------------------------------------------------------------------------- /vendor/mpdf/qrcode/data/qrv3_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splitbrain/dokuwiki-plugin-dw2pdf/fc024641a9ffc5b8fe665c1696644d9ce14620d3/vendor/mpdf/qrcode/data/qrv3_2.dat -------------------------------------------------------------------------------- /vendor/mpdf/qrcode/data/qrv3_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splitbrain/dokuwiki-plugin-dw2pdf/fc024641a9ffc5b8fe665c1696644d9ce14620d3/vendor/mpdf/qrcode/data/qrv3_3.dat -------------------------------------------------------------------------------- /vendor/mpdf/qrcode/data/qrv40_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splitbrain/dokuwiki-plugin-dw2pdf/fc024641a9ffc5b8fe665c1696644d9ce14620d3/vendor/mpdf/qrcode/data/qrv40_0.dat -------------------------------------------------------------------------------- /vendor/mpdf/qrcode/data/qrv40_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splitbrain/dokuwiki-plugin-dw2pdf/fc024641a9ffc5b8fe665c1696644d9ce14620d3/vendor/mpdf/qrcode/data/qrv40_1.dat -------------------------------------------------------------------------------- /vendor/mpdf/qrcode/data/qrv40_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splitbrain/dokuwiki-plugin-dw2pdf/fc024641a9ffc5b8fe665c1696644d9ce14620d3/vendor/mpdf/qrcode/data/qrv40_2.dat -------------------------------------------------------------------------------- /vendor/mpdf/qrcode/data/qrv40_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splitbrain/dokuwiki-plugin-dw2pdf/fc024641a9ffc5b8fe665c1696644d9ce14620d3/vendor/mpdf/qrcode/data/qrv40_3.dat -------------------------------------------------------------------------------- /vendor/mpdf/qrcode/data/qrv4_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splitbrain/dokuwiki-plugin-dw2pdf/fc024641a9ffc5b8fe665c1696644d9ce14620d3/vendor/mpdf/qrcode/data/qrv4_0.dat -------------------------------------------------------------------------------- /vendor/mpdf/qrcode/data/qrv4_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splitbrain/dokuwiki-plugin-dw2pdf/fc024641a9ffc5b8fe665c1696644d9ce14620d3/vendor/mpdf/qrcode/data/qrv4_1.dat -------------------------------------------------------------------------------- /vendor/mpdf/qrcode/data/qrv4_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splitbrain/dokuwiki-plugin-dw2pdf/fc024641a9ffc5b8fe665c1696644d9ce14620d3/vendor/mpdf/qrcode/data/qrv4_2.dat -------------------------------------------------------------------------------- /vendor/mpdf/qrcode/data/qrv4_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splitbrain/dokuwiki-plugin-dw2pdf/fc024641a9ffc5b8fe665c1696644d9ce14620d3/vendor/mpdf/qrcode/data/qrv4_3.dat -------------------------------------------------------------------------------- /vendor/mpdf/qrcode/data/qrv5_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splitbrain/dokuwiki-plugin-dw2pdf/fc024641a9ffc5b8fe665c1696644d9ce14620d3/vendor/mpdf/qrcode/data/qrv5_0.dat -------------------------------------------------------------------------------- /vendor/mpdf/qrcode/data/qrv5_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splitbrain/dokuwiki-plugin-dw2pdf/fc024641a9ffc5b8fe665c1696644d9ce14620d3/vendor/mpdf/qrcode/data/qrv5_1.dat -------------------------------------------------------------------------------- /vendor/mpdf/qrcode/data/qrv5_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splitbrain/dokuwiki-plugin-dw2pdf/fc024641a9ffc5b8fe665c1696644d9ce14620d3/vendor/mpdf/qrcode/data/qrv5_2.dat -------------------------------------------------------------------------------- /vendor/mpdf/qrcode/data/qrv5_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splitbrain/dokuwiki-plugin-dw2pdf/fc024641a9ffc5b8fe665c1696644d9ce14620d3/vendor/mpdf/qrcode/data/qrv5_3.dat -------------------------------------------------------------------------------- /vendor/mpdf/qrcode/data/qrv6_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splitbrain/dokuwiki-plugin-dw2pdf/fc024641a9ffc5b8fe665c1696644d9ce14620d3/vendor/mpdf/qrcode/data/qrv6_0.dat -------------------------------------------------------------------------------- /vendor/mpdf/qrcode/data/qrv6_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splitbrain/dokuwiki-plugin-dw2pdf/fc024641a9ffc5b8fe665c1696644d9ce14620d3/vendor/mpdf/qrcode/data/qrv6_1.dat -------------------------------------------------------------------------------- /vendor/mpdf/qrcode/data/qrv6_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splitbrain/dokuwiki-plugin-dw2pdf/fc024641a9ffc5b8fe665c1696644d9ce14620d3/vendor/mpdf/qrcode/data/qrv6_2.dat -------------------------------------------------------------------------------- /vendor/mpdf/qrcode/data/qrv6_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splitbrain/dokuwiki-plugin-dw2pdf/fc024641a9ffc5b8fe665c1696644d9ce14620d3/vendor/mpdf/qrcode/data/qrv6_3.dat -------------------------------------------------------------------------------- /vendor/mpdf/qrcode/data/qrv7_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splitbrain/dokuwiki-plugin-dw2pdf/fc024641a9ffc5b8fe665c1696644d9ce14620d3/vendor/mpdf/qrcode/data/qrv7_0.dat -------------------------------------------------------------------------------- /vendor/mpdf/qrcode/data/qrv7_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splitbrain/dokuwiki-plugin-dw2pdf/fc024641a9ffc5b8fe665c1696644d9ce14620d3/vendor/mpdf/qrcode/data/qrv7_1.dat -------------------------------------------------------------------------------- /vendor/mpdf/qrcode/data/qrv7_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splitbrain/dokuwiki-plugin-dw2pdf/fc024641a9ffc5b8fe665c1696644d9ce14620d3/vendor/mpdf/qrcode/data/qrv7_2.dat -------------------------------------------------------------------------------- /vendor/mpdf/qrcode/data/qrv7_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splitbrain/dokuwiki-plugin-dw2pdf/fc024641a9ffc5b8fe665c1696644d9ce14620d3/vendor/mpdf/qrcode/data/qrv7_3.dat -------------------------------------------------------------------------------- /vendor/mpdf/qrcode/data/qrv8_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splitbrain/dokuwiki-plugin-dw2pdf/fc024641a9ffc5b8fe665c1696644d9ce14620d3/vendor/mpdf/qrcode/data/qrv8_0.dat -------------------------------------------------------------------------------- /vendor/mpdf/qrcode/data/qrv8_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splitbrain/dokuwiki-plugin-dw2pdf/fc024641a9ffc5b8fe665c1696644d9ce14620d3/vendor/mpdf/qrcode/data/qrv8_1.dat -------------------------------------------------------------------------------- /vendor/mpdf/qrcode/data/qrv8_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splitbrain/dokuwiki-plugin-dw2pdf/fc024641a9ffc5b8fe665c1696644d9ce14620d3/vendor/mpdf/qrcode/data/qrv8_2.dat -------------------------------------------------------------------------------- /vendor/mpdf/qrcode/data/qrv8_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splitbrain/dokuwiki-plugin-dw2pdf/fc024641a9ffc5b8fe665c1696644d9ce14620d3/vendor/mpdf/qrcode/data/qrv8_3.dat -------------------------------------------------------------------------------- /vendor/mpdf/qrcode/data/qrv9_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splitbrain/dokuwiki-plugin-dw2pdf/fc024641a9ffc5b8fe665c1696644d9ce14620d3/vendor/mpdf/qrcode/data/qrv9_0.dat -------------------------------------------------------------------------------- /vendor/mpdf/qrcode/data/qrv9_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splitbrain/dokuwiki-plugin-dw2pdf/fc024641a9ffc5b8fe665c1696644d9ce14620d3/vendor/mpdf/qrcode/data/qrv9_1.dat -------------------------------------------------------------------------------- /vendor/mpdf/qrcode/data/qrv9_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splitbrain/dokuwiki-plugin-dw2pdf/fc024641a9ffc5b8fe665c1696644d9ce14620d3/vendor/mpdf/qrcode/data/qrv9_2.dat -------------------------------------------------------------------------------- /vendor/mpdf/qrcode/data/qrv9_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splitbrain/dokuwiki-plugin-dw2pdf/fc024641a9ffc5b8fe665c1696644d9ce14620d3/vendor/mpdf/qrcode/data/qrv9_3.dat -------------------------------------------------------------------------------- /vendor/mpdf/qrcode/data/qrvfr1.dat: -------------------------------------------------------------------------------- 1 | 111111100000001111111 2 | 100000100000001000001 3 | 101110100000001011101 4 | 101110100000001011101 5 | 101110100000001011101 6 | 100000100000001000001 7 | 111111101010101111111 8 | 000000000000000000000 9 | 000000100000000000000 10 | 000000000000000000000 11 | 000000100000000000000 12 | 000000000000000000000 13 | 000000100000000000000 14 | 000000001000000000000 15 | 111111100000000000000 16 | 100000100000000000000 17 | 101110100000000000000 18 | 101110100000000000000 19 | 101110100000000000000 20 | 100000100000000000000 21 | 111111100000000000000 22 | -------------------------------------------------------------------------------- /vendor/mpdf/qrcode/data/qrvfr2.dat: -------------------------------------------------------------------------------- 1 | 1111111000000000001111111 2 | 1000001000000000001000001 3 | 1011101000000000001011101 4 | 1011101000000000001011101 5 | 1011101000000000001011101 6 | 1000001000000000001000001 7 | 1111111010101010101111111 8 | 0000000000000000000000000 9 | 0000001000000000000000000 10 | 0000000000000000000000000 11 | 0000001000000000000000000 12 | 0000000000000000000000000 13 | 0000001000000000000000000 14 | 0000000000000000000000000 15 | 0000001000000000000000000 16 | 0000000000000000000000000 17 | 0000001000000000111110000 18 | 0000000010000000100010000 19 | 1111111000000000101010000 20 | 1000001000000000100010000 21 | 1011101000000000111110000 22 | 1011101000000000000000000 23 | 1011101000000000000000000 24 | 1000001000000000000000000 25 | 1111111000000000000000000 26 | -------------------------------------------------------------------------------- /vendor/mpdf/qrcode/data/qrvfr3.dat: -------------------------------------------------------------------------------- 1 | 11111110000000000000001111111 2 | 10000010000000000000001000001 3 | 10111010000000000000001011101 4 | 10111010000000000000001011101 5 | 10111010000000000000001011101 6 | 10000010000000000000001000001 7 | 11111110101010101010101111111 8 | 00000000000000000000000000000 9 | 00000010000000000000000000000 10 | 00000000000000000000000000000 11 | 00000010000000000000000000000 12 | 00000000000000000000000000000 13 | 00000010000000000000000000000 14 | 00000000000000000000000000000 15 | 00000010000000000000000000000 16 | 00000000000000000000000000000 17 | 00000010000000000000000000000 18 | 00000000000000000000000000000 19 | 00000010000000000000000000000 20 | 00000000000000000000000000000 21 | 00000010000000000000111110000 22 | 00000000100000000000100010000 23 | 11111110000000000000101010000 24 | 10000010000000000000100010000 25 | 10111010000000000000111110000 26 | 10111010000000000000000000000 27 | 10111010000000000000000000000 28 | 10000010000000000000000000000 29 | 11111110000000000000000000000 30 | -------------------------------------------------------------------------------- /vendor/mpdf/qrcode/data/rsc10.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splitbrain/dokuwiki-plugin-dw2pdf/fc024641a9ffc5b8fe665c1696644d9ce14620d3/vendor/mpdf/qrcode/data/rsc10.dat -------------------------------------------------------------------------------- /vendor/mpdf/qrcode/data/rsc13.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splitbrain/dokuwiki-plugin-dw2pdf/fc024641a9ffc5b8fe665c1696644d9ce14620d3/vendor/mpdf/qrcode/data/rsc13.dat -------------------------------------------------------------------------------- /vendor/mpdf/qrcode/data/rsc15.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splitbrain/dokuwiki-plugin-dw2pdf/fc024641a9ffc5b8fe665c1696644d9ce14620d3/vendor/mpdf/qrcode/data/rsc15.dat -------------------------------------------------------------------------------- /vendor/mpdf/qrcode/data/rsc16.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splitbrain/dokuwiki-plugin-dw2pdf/fc024641a9ffc5b8fe665c1696644d9ce14620d3/vendor/mpdf/qrcode/data/rsc16.dat -------------------------------------------------------------------------------- /vendor/mpdf/qrcode/data/rsc17.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splitbrain/dokuwiki-plugin-dw2pdf/fc024641a9ffc5b8fe665c1696644d9ce14620d3/vendor/mpdf/qrcode/data/rsc17.dat -------------------------------------------------------------------------------- /vendor/mpdf/qrcode/data/rsc18.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splitbrain/dokuwiki-plugin-dw2pdf/fc024641a9ffc5b8fe665c1696644d9ce14620d3/vendor/mpdf/qrcode/data/rsc18.dat -------------------------------------------------------------------------------- /vendor/mpdf/qrcode/data/rsc20.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splitbrain/dokuwiki-plugin-dw2pdf/fc024641a9ffc5b8fe665c1696644d9ce14620d3/vendor/mpdf/qrcode/data/rsc20.dat -------------------------------------------------------------------------------- /vendor/mpdf/qrcode/data/rsc22.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splitbrain/dokuwiki-plugin-dw2pdf/fc024641a9ffc5b8fe665c1696644d9ce14620d3/vendor/mpdf/qrcode/data/rsc22.dat -------------------------------------------------------------------------------- /vendor/mpdf/qrcode/data/rsc24.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splitbrain/dokuwiki-plugin-dw2pdf/fc024641a9ffc5b8fe665c1696644d9ce14620d3/vendor/mpdf/qrcode/data/rsc24.dat -------------------------------------------------------------------------------- /vendor/mpdf/qrcode/data/rsc26.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splitbrain/dokuwiki-plugin-dw2pdf/fc024641a9ffc5b8fe665c1696644d9ce14620d3/vendor/mpdf/qrcode/data/rsc26.dat -------------------------------------------------------------------------------- /vendor/mpdf/qrcode/data/rsc28.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splitbrain/dokuwiki-plugin-dw2pdf/fc024641a9ffc5b8fe665c1696644d9ce14620d3/vendor/mpdf/qrcode/data/rsc28.dat -------------------------------------------------------------------------------- /vendor/mpdf/qrcode/data/rsc30.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splitbrain/dokuwiki-plugin-dw2pdf/fc024641a9ffc5b8fe665c1696644d9ce14620d3/vendor/mpdf/qrcode/data/rsc30.dat -------------------------------------------------------------------------------- /vendor/mpdf/qrcode/data/rsc32.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splitbrain/dokuwiki-plugin-dw2pdf/fc024641a9ffc5b8fe665c1696644d9ce14620d3/vendor/mpdf/qrcode/data/rsc32.dat -------------------------------------------------------------------------------- /vendor/mpdf/qrcode/data/rsc34.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splitbrain/dokuwiki-plugin-dw2pdf/fc024641a9ffc5b8fe665c1696644d9ce14620d3/vendor/mpdf/qrcode/data/rsc34.dat -------------------------------------------------------------------------------- /vendor/mpdf/qrcode/data/rsc36.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splitbrain/dokuwiki-plugin-dw2pdf/fc024641a9ffc5b8fe665c1696644d9ce14620d3/vendor/mpdf/qrcode/data/rsc36.dat -------------------------------------------------------------------------------- /vendor/mpdf/qrcode/data/rsc40.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splitbrain/dokuwiki-plugin-dw2pdf/fc024641a9ffc5b8fe665c1696644d9ce14620d3/vendor/mpdf/qrcode/data/rsc40.dat -------------------------------------------------------------------------------- /vendor/mpdf/qrcode/data/rsc42.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splitbrain/dokuwiki-plugin-dw2pdf/fc024641a9ffc5b8fe665c1696644d9ce14620d3/vendor/mpdf/qrcode/data/rsc42.dat -------------------------------------------------------------------------------- /vendor/mpdf/qrcode/data/rsc44.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splitbrain/dokuwiki-plugin-dw2pdf/fc024641a9ffc5b8fe665c1696644d9ce14620d3/vendor/mpdf/qrcode/data/rsc44.dat -------------------------------------------------------------------------------- /vendor/mpdf/qrcode/data/rsc46.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splitbrain/dokuwiki-plugin-dw2pdf/fc024641a9ffc5b8fe665c1696644d9ce14620d3/vendor/mpdf/qrcode/data/rsc46.dat -------------------------------------------------------------------------------- /vendor/mpdf/qrcode/data/rsc48.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splitbrain/dokuwiki-plugin-dw2pdf/fc024641a9ffc5b8fe665c1696644d9ce14620d3/vendor/mpdf/qrcode/data/rsc48.dat -------------------------------------------------------------------------------- /vendor/mpdf/qrcode/data/rsc50.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splitbrain/dokuwiki-plugin-dw2pdf/fc024641a9ffc5b8fe665c1696644d9ce14620d3/vendor/mpdf/qrcode/data/rsc50.dat -------------------------------------------------------------------------------- /vendor/mpdf/qrcode/data/rsc52.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splitbrain/dokuwiki-plugin-dw2pdf/fc024641a9ffc5b8fe665c1696644d9ce14620d3/vendor/mpdf/qrcode/data/rsc52.dat -------------------------------------------------------------------------------- /vendor/mpdf/qrcode/data/rsc54.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splitbrain/dokuwiki-plugin-dw2pdf/fc024641a9ffc5b8fe665c1696644d9ce14620d3/vendor/mpdf/qrcode/data/rsc54.dat -------------------------------------------------------------------------------- /vendor/mpdf/qrcode/data/rsc56.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splitbrain/dokuwiki-plugin-dw2pdf/fc024641a9ffc5b8fe665c1696644d9ce14620d3/vendor/mpdf/qrcode/data/rsc56.dat -------------------------------------------------------------------------------- /vendor/mpdf/qrcode/data/rsc58.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splitbrain/dokuwiki-plugin-dw2pdf/fc024641a9ffc5b8fe665c1696644d9ce14620d3/vendor/mpdf/qrcode/data/rsc58.dat -------------------------------------------------------------------------------- /vendor/mpdf/qrcode/data/rsc60.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splitbrain/dokuwiki-plugin-dw2pdf/fc024641a9ffc5b8fe665c1696644d9ce14620d3/vendor/mpdf/qrcode/data/rsc60.dat -------------------------------------------------------------------------------- /vendor/mpdf/qrcode/data/rsc62.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splitbrain/dokuwiki-plugin-dw2pdf/fc024641a9ffc5b8fe665c1696644d9ce14620d3/vendor/mpdf/qrcode/data/rsc62.dat -------------------------------------------------------------------------------- /vendor/mpdf/qrcode/data/rsc64.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splitbrain/dokuwiki-plugin-dw2pdf/fc024641a9ffc5b8fe665c1696644d9ce14620d3/vendor/mpdf/qrcode/data/rsc64.dat -------------------------------------------------------------------------------- /vendor/mpdf/qrcode/data/rsc66.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splitbrain/dokuwiki-plugin-dw2pdf/fc024641a9ffc5b8fe665c1696644d9ce14620d3/vendor/mpdf/qrcode/data/rsc66.dat -------------------------------------------------------------------------------- /vendor/mpdf/qrcode/data/rsc68.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splitbrain/dokuwiki-plugin-dw2pdf/fc024641a9ffc5b8fe665c1696644d9ce14620d3/vendor/mpdf/qrcode/data/rsc68.dat -------------------------------------------------------------------------------- /vendor/mpdf/qrcode/data/rsc7.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splitbrain/dokuwiki-plugin-dw2pdf/fc024641a9ffc5b8fe665c1696644d9ce14620d3/vendor/mpdf/qrcode/data/rsc7.dat -------------------------------------------------------------------------------- /vendor/mpdf/qrcode/src/Output/Html.php: -------------------------------------------------------------------------------- 1 | getQrSize(); 20 | $final = $qrCode->getFinal(); 21 | 22 | if ($qrCode->isBorderDisabled()) { 23 | $minSize = 4; 24 | $maxSize = $qrSize - 4; 25 | } else { 26 | $minSize = 0; 27 | $maxSize = $qrSize; 28 | } 29 | 30 | $s .= '' . "\n"; 31 | 32 | for ($y = $minSize; $y < $maxSize; $y++) { 33 | $s .= ''; 34 | for ($x = $minSize; $x < $maxSize; $x++) { 35 | $on = $final[$x + $y * $qrSize + 1]; 36 | $s .= ''; 37 | } 38 | $s .= '' . "\n"; 39 | } 40 | 41 | $s .= '
 
'; 42 | 43 | return $s; 44 | } 45 | 46 | } 47 | -------------------------------------------------------------------------------- /vendor/mpdf/qrcode/src/QrCodeException.php: -------------------------------------------------------------------------------- 1 | setAccessible(true); 23 | $oldCollection = $reflectionProperty->getValue($object); 24 | 25 | $newCollection = $oldCollection->map( 26 | function ($item) use ($objectCopier) { 27 | return $objectCopier($item); 28 | } 29 | ); 30 | 31 | $reflectionProperty->setValue($object, $newCollection); 32 | } 33 | } 34 | -------------------------------------------------------------------------------- /vendor/myclabs/deep-copy/src/DeepCopy/Filter/Doctrine/DoctrineEmptyCollectionFilter.php: -------------------------------------------------------------------------------- 1 | setAccessible(true); 25 | 26 | $reflectionProperty->setValue($object, new ArrayCollection()); 27 | } 28 | } -------------------------------------------------------------------------------- /vendor/myclabs/deep-copy/src/DeepCopy/Filter/Doctrine/DoctrineProxyFilter.php: -------------------------------------------------------------------------------- 1 | __load(); 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /vendor/myclabs/deep-copy/src/DeepCopy/Filter/Filter.php: -------------------------------------------------------------------------------- 1 | callback = $callable; 23 | } 24 | 25 | /** 26 | * Replaces the object property by the result of the callback called with the object property. 27 | * 28 | * {@inheritdoc} 29 | */ 30 | public function apply($object, $property, $objectCopier) 31 | { 32 | $reflectionProperty = ReflectionHelper::getProperty($object, $property); 33 | $reflectionProperty->setAccessible(true); 34 | 35 | $value = call_user_func($this->callback, $reflectionProperty->getValue($object)); 36 | 37 | $reflectionProperty->setValue($object, $value); 38 | } 39 | } 40 | -------------------------------------------------------------------------------- /vendor/myclabs/deep-copy/src/DeepCopy/Filter/SetNullFilter.php: -------------------------------------------------------------------------------- 1 | setAccessible(true); 22 | $reflectionProperty->setValue($object, null); 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /vendor/myclabs/deep-copy/src/DeepCopy/Matcher/Doctrine/DoctrineProxyMatcher.php: -------------------------------------------------------------------------------- 1 | class = $class; 27 | $this->property = $property; 28 | } 29 | 30 | /** 31 | * Matches a specific property of a specific class. 32 | * 33 | * {@inheritdoc} 34 | */ 35 | public function matches($object, $property) 36 | { 37 | return ($object instanceof $this->class) && $property == $this->property; 38 | } 39 | } 40 | -------------------------------------------------------------------------------- /vendor/myclabs/deep-copy/src/DeepCopy/Matcher/PropertyNameMatcher.php: -------------------------------------------------------------------------------- 1 | property = $property; 21 | } 22 | 23 | /** 24 | * Matches a property by its name. 25 | * 26 | * {@inheritdoc} 27 | */ 28 | public function matches($object, $property) 29 | { 30 | return $property == $this->property; 31 | } 32 | } 33 | -------------------------------------------------------------------------------- /vendor/myclabs/deep-copy/src/DeepCopy/TypeFilter/Date/DateIntervalFilter.php: -------------------------------------------------------------------------------- 1 | $propertyValue) { 28 | $copy->{$propertyName} = $propertyValue; 29 | } 30 | 31 | return $copy; 32 | } 33 | } 34 | -------------------------------------------------------------------------------- /vendor/myclabs/deep-copy/src/DeepCopy/TypeFilter/ReplaceFilter.php: -------------------------------------------------------------------------------- 1 | callback = $callable; 21 | } 22 | 23 | /** 24 | * {@inheritdoc} 25 | */ 26 | public function apply($element) 27 | { 28 | return call_user_func($this->callback, $element); 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /vendor/myclabs/deep-copy/src/DeepCopy/TypeFilter/ShallowCopyFilter.php: -------------------------------------------------------------------------------- 1 | copier = $copier; 21 | } 22 | 23 | /** 24 | * {@inheritdoc} 25 | */ 26 | public function apply($arrayObject) 27 | { 28 | $clone = clone $arrayObject; 29 | foreach ($arrayObject->getArrayCopy() as $k => $v) { 30 | $clone->offsetSet($k, $this->copier->copy($v)); 31 | } 32 | 33 | return $clone; 34 | } 35 | } 36 | 37 | -------------------------------------------------------------------------------- /vendor/myclabs/deep-copy/src/DeepCopy/TypeFilter/Spl/SplDoublyLinkedList.php: -------------------------------------------------------------------------------- 1 | type = $type; 18 | } 19 | 20 | /** 21 | * @param mixed $element 22 | * 23 | * @return boolean 24 | */ 25 | public function matches($element) 26 | { 27 | return is_object($element) ? is_a($element, $this->type) : gettype($element) === $this->type; 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /vendor/myclabs/deep-copy/src/DeepCopy/deep_copy.php: -------------------------------------------------------------------------------- 1 | copy($value); 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /vendor/psr/log/Psr/Log/InvalidArgumentException.php: -------------------------------------------------------------------------------- 1 | logger = $logger; 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /vendor/psr/log/Psr/Log/NullLogger.php: -------------------------------------------------------------------------------- 1 | logger) { }` 11 | * blocks. 12 | */ 13 | class NullLogger extends AbstractLogger 14 | { 15 | /** 16 | * Logs with an arbitrary level. 17 | * 18 | * @param mixed $level 19 | * @param string $message 20 | * @param array $context 21 | * 22 | * @return void 23 | * 24 | * @throws \Psr\Log\InvalidArgumentException 25 | */ 26 | public function log($level, $message, array $context = array()) 27 | { 28 | // noop 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /vendor/psr/log/Psr/Log/Test/DummyTest.php: -------------------------------------------------------------------------------- 1 | =5.3.0" 15 | }, 16 | "autoload": { 17 | "psr-4": { 18 | "Psr\\Log\\": "Psr/Log/" 19 | } 20 | }, 21 | "extra": { 22 | "branch-alias": { 23 | "dev-master": "1.1.x-dev" 24 | } 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /vendor/setasign/fpdi/SECURITY.md: -------------------------------------------------------------------------------- 1 | ## Security contact information 2 | 3 | To report a security vulnerability, please use the 4 | [Tidelift security contact](https://tidelift.com/security). 5 | Tidelift will coordinate the fix and disclosure. 6 | -------------------------------------------------------------------------------- /vendor/setasign/fpdi/src/FpdfTpl.php: -------------------------------------------------------------------------------- 1 |