├── site-blank ├── templates │ ├── scripts │ │ └── main.js │ ├── styles │ │ └── main.css │ ├── home.php │ ├── README.txt │ ├── errors │ │ └── 500.html │ ├── basic-page.php │ └── admin.php ├── install │ ├── files │ │ └── README.txt │ └── info.php └── assets │ └── index.php ├── wire ├── templates-admin │ ├── styles │ │ ├── font-awesome │ │ │ ├── font-awesome-4.2.0.textClipping │ │ │ ├── fonts │ │ │ │ ├── FontAwesome.otf │ │ │ │ ├── fontawesome-webfont.eot │ │ │ │ ├── fontawesome-webfont.ttf │ │ │ │ └── fontawesome-webfont.woff │ │ │ ├── less │ │ │ │ ├── fixed-width.less │ │ │ │ ├── bordered-pulled.less │ │ │ │ ├── larger.less │ │ │ │ ├── list.less │ │ │ │ ├── core.less │ │ │ │ ├── font-awesome.less │ │ │ │ └── stacked.less │ │ │ └── scss │ │ │ │ ├── _fixed-width.scss │ │ │ │ ├── _bordered-pulled.scss │ │ │ │ ├── _larger.scss │ │ │ │ ├── _core.scss │ │ │ │ ├── _list.scss │ │ │ │ ├── font-awesome.scss │ │ │ │ └── _stacked.scss │ │ ├── ie7.css │ │ ├── images │ │ │ ├── bg.gif │ │ │ ├── logo.gif │ │ │ ├── bg_content.gif │ │ │ ├── btn-search.png │ │ │ ├── topnav_a_bg.gif │ │ │ └── bullet_breadcrumb.gif │ │ ├── ie.css │ │ ├── JqueryUI │ │ │ └── images │ │ │ │ ├── animated-overlay.gif │ │ │ │ ├── ui-icons_222222_256x240.png │ │ │ │ ├── ui-icons_2f4248_256x240.png │ │ │ │ ├── ui-icons_cd0a0a_256x240.png │ │ │ │ ├── ui-icons_ffffff_256x240.png │ │ │ │ ├── ui-bg_flat_0_000000_40x100.png │ │ │ │ ├── ui-bg_flat_0_ffffff_40x100.png │ │ │ │ ├── ui-bg_flat_80_000000_40x100.png │ │ │ │ ├── ui-bg_glass_30_87a71b_1x400.png │ │ │ │ ├── ui-bg_glass_30_cdea6d_1x400.png │ │ │ │ ├── ui-bg_glass_30_db1174_1x400.png │ │ │ │ ├── ui-bg_glass_30_e4ebee_1x400.png │ │ │ │ ├── ui-bg_inset-soft_95_fef1ec_1x100.png │ │ │ │ └── ui-bg_highlight-soft_30_d2e4ea_1x100.png │ │ └── install.css │ ├── install-foot.inc │ ├── scripts │ │ └── install.js │ └── controller.php ├── modules │ ├── AdminTheme │ │ ├── AdminThemeReno │ │ │ ├── styles │ │ │ │ ├── blue.scss │ │ │ │ ├── main.scss │ │ │ │ ├── _logs.scss │ │ │ │ ├── classic.scss │ │ │ │ ├── images │ │ │ │ │ ├── logo.png │ │ │ │ │ ├── logo-sm.png │ │ │ │ │ ├── logo-dark.png │ │ │ │ │ ├── ui-icons_222222_256x240.png │ │ │ │ │ ├── ui-icons_2e83ff_256x240.png │ │ │ │ │ ├── ui-icons_454545_256x240.png │ │ │ │ │ ├── ui-icons_888888_256x240.png │ │ │ │ │ ├── ui-icons_cd0a0a_256x240.png │ │ │ │ │ ├── ui-icons_ffffff_256x240.png │ │ │ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ │ │ │ ├── ui-bg_flat_75_ffffff_40x100.png │ │ │ │ │ ├── ui-bg_glass_55_fbf9ee_1x400.png │ │ │ │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ │ │ │ ├── ui-bg_glass_75_dadada_1x400.png │ │ │ │ │ ├── ui-bg_glass_75_e6e6e6_1x400.png │ │ │ │ │ ├── ui-bg_glass_95_fef1ec_1x400.png │ │ │ │ │ └── ui-bg_highlight-soft_75_cccccc_1x100.png │ │ │ │ └── compile.sh │ │ │ ├── README.md │ │ │ └── controller.php │ │ └── AdminThemeDefault │ │ │ ├── styles │ │ │ ├── images │ │ │ │ ├── logo.png │ │ │ │ ├── animated-overlay.gif │ │ │ │ ├── ui-icons_222222_256x240.png │ │ │ │ ├── ui-icons_2e83ff_256x240.png │ │ │ │ ├── ui-icons_454545_256x240.png │ │ │ │ ├── ui-icons_888888_256x240.png │ │ │ │ ├── ui-icons_cd0a0a_256x240.png │ │ │ │ ├── ui-icons_ffffff_256x240.png │ │ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ │ │ ├── ui-bg_flat_75_ffffff_40x100.png │ │ │ │ ├── ui-bg_glass_55_fbf9ee_1x400.png │ │ │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ │ │ ├── ui-bg_glass_75_dadada_1x400.png │ │ │ │ ├── ui-bg_glass_75_e6e6e6_1x400.png │ │ │ │ ├── ui-bg_glass_95_fef1ec_1x400.png │ │ │ │ └── ui-bg_highlight-soft_75_cccccc_1x100.png │ │ │ └── sass │ │ │ │ ├── main-warm.scss │ │ │ │ └── compile.sh │ │ │ ├── install-foot.inc │ │ │ ├── scripts │ │ │ └── install.js │ │ │ └── controller.php │ ├── Process │ │ ├── ProcessPageEditLink │ │ │ └── ProcessPageEditLink.css │ │ ├── ProcessPageList │ │ │ └── images │ │ │ │ ├── key.png │ │ │ │ ├── lock.gif │ │ │ │ ├── unlock.png │ │ │ │ └── loading.gif │ │ ├── ProcessPageType │ │ │ ├── ProcessPageType.js │ │ │ └── ProcessPageType.css │ │ ├── ProcessPermission │ │ │ └── ProcessPermission.css │ │ ├── ProcessProfile │ │ │ └── ProcessProfile.min.js │ │ ├── ProcessLogger │ │ │ ├── LogEntriesArray.php │ │ │ └── ProcessLogger.css │ │ ├── ProcessPageEdit │ │ │ ├── PageBookmarks.css │ │ │ └── ProcessPageEdit.min.js │ │ ├── ProcessLogin │ │ │ └── ProcessLogin.css │ │ ├── ProcessPageLister │ │ │ └── ProcessPageLister.info.json │ │ └── ProcessPageAdd │ │ │ └── ProcessPageAdd.css │ ├── LanguageSupport │ │ ├── LanguageSupport.css │ │ ├── ProcessLanguageTranslator.css │ │ ├── LanguagesValueInterface.php │ │ ├── FieldtypeLanguageInterface.php │ │ └── ProcessLanguageTranslator.min.js │ ├── Jquery │ │ ├── JqueryFancybox │ │ │ ├── fancy_left.png │ │ │ ├── fancy_right.png │ │ │ ├── fancy_closebox.png │ │ │ ├── fancy_progress.png │ │ │ ├── fancy_shadow_e.png │ │ │ ├── fancy_shadow_n.png │ │ │ ├── fancy_shadow_ne.png │ │ │ ├── fancy_shadow_nw.png │ │ │ ├── fancy_shadow_s.png │ │ │ ├── fancy_shadow_se.png │ │ │ ├── fancy_shadow_sw.png │ │ │ ├── fancy_shadow_w.png │ │ │ ├── fancy_title_left.png │ │ │ ├── fancy_title_main.png │ │ │ └── fancy_title_right.png │ │ ├── JqueryWireTabs │ │ │ └── images │ │ │ │ └── bullet.gif │ │ └── JqueryMagnific │ │ │ └── JqueryMagnific.module │ ├── Markup │ │ └── MarkupHTMLPurifier │ │ │ └── htmlpurifier │ │ │ └── standalone │ │ │ └── HTMLPurifier │ │ │ ├── ConfigSchema │ │ │ ├── schema │ │ │ │ ├── info.ini │ │ │ │ ├── Attr.IDBlacklist.txt │ │ │ │ ├── HTML.Nofollow.txt │ │ │ │ ├── HTML.TidyAdd.txt │ │ │ │ ├── HTML.TidyRemove.txt │ │ │ │ ├── CSS.Proprietary.txt │ │ │ │ ├── Test.ForceNoIconv.txt │ │ │ │ ├── Core.EscapeInvalidTags.txt │ │ │ │ ├── Attr.AllowedClasses.txt │ │ │ │ ├── CSS.DefinitionRev.txt │ │ │ │ ├── URI.DefinitionRev.txt │ │ │ │ ├── HTML.Strict.txt │ │ │ │ ├── CSS.AllowImportant.txt │ │ │ │ ├── HTML.CustomDoctype.txt │ │ │ │ ├── HTML.TargetBlank.txt │ │ │ │ ├── HTML.XHTML.txt │ │ │ │ ├── CSS.Trusted.txt │ │ │ │ ├── Attr.ForbiddenClasses.txt │ │ │ │ ├── URI.DefaultScheme.txt │ │ │ │ ├── Attr.AllowedRev.txt │ │ │ │ ├── URI.DefinitionID.txt │ │ │ │ ├── HTML.Trusted.txt │ │ │ │ ├── Cache.SerializerPermissions.txt │ │ │ │ ├── HTML.SafeScripting.txt │ │ │ │ ├── Attr.AllowedRel.txt │ │ │ │ ├── AutoFormat.Linkify.txt │ │ │ │ ├── Output.FlashCompat.txt │ │ │ │ ├── Attr.DefaultInvalidImageAlt.txt │ │ │ │ ├── Core.Language.txt │ │ │ │ ├── Core.NormalizeNewlines.txt │ │ │ │ ├── Output.CommentScriptContents.txt │ │ │ │ ├── URI.Disable.txt │ │ │ │ ├── Core.EnableIDNA.txt │ │ │ │ ├── Attr.DefaultTextDir.txt │ │ │ │ ├── Core.RemoveScriptContents.txt │ │ │ │ ├── HTML.FlashAllowFullScreen.txt │ │ │ │ ├── URI.HostBlacklist.txt │ │ │ │ ├── Filter.Custom.txt │ │ │ │ ├── AutoFormat.Custom.txt │ │ │ │ ├── Attr.IDBlacklistRegexp.txt │ │ │ │ ├── HTML.Parent.txt │ │ │ │ ├── Attr.DefaultInvalidImage.txt │ │ │ │ ├── AutoFormat.RemoveSpansWithoutAttributes.txt │ │ │ │ ├── AutoFormat.PurifierLinkify.txt │ │ │ │ ├── URI.OverrideAllowedSchemes.txt │ │ │ │ ├── AutoFormat.DisplayLinkURI.txt │ │ │ │ ├── HTML.Proprietary.txt │ │ │ │ ├── Core.RemoveInvalidImg.txt │ │ │ │ ├── AutoFormat.PurifierLinkify.DocURL.txt │ │ │ │ ├── Cache.SerializerPath.txt │ │ │ │ ├── CSS.AllowedFonts.txt │ │ │ │ ├── HTML.AllowedComments.txt │ │ │ │ ├── Output.Newline.txt │ │ │ │ ├── AutoFormat.RemoveEmpty.RemoveNbsp.Exceptions.txt │ │ │ │ ├── Cache.DefinitionImpl.txt │ │ │ │ ├── URI.MakeAbsolute.txt │ │ │ │ ├── HTML.SafeIframe.txt │ │ │ │ ├── Core.RemoveProcessingInstructions.txt │ │ │ │ ├── Core.CollectErrors.txt │ │ │ │ ├── URI.DisableExternal.txt │ │ │ │ ├── HTML.SafeObject.txt │ │ │ │ ├── URI.DisableResources.txt │ │ │ │ ├── CSS.AllowTricky.txt │ │ │ │ └── Core.ConvertDocumentToFragment.txt │ │ │ └── Exception.php │ │ │ ├── Printer │ │ │ ├── ConfigForm.js │ │ │ └── ConfigForm.css │ │ │ └── Language │ │ │ ├── classes │ │ │ └── en-x-test.php │ │ │ └── messages │ │ │ ├── en-x-test.php │ │ │ └── en-x-testmini.php │ ├── Inputfield │ │ ├── InputfieldCheckbox.css │ │ ├── InputfieldCKEditor │ │ │ ├── ckeditor-4.5.3 │ │ │ │ ├── plugins │ │ │ │ │ ├── icons.png │ │ │ │ │ ├── icons_hidpi.png │ │ │ │ │ ├── link │ │ │ │ │ │ └── images │ │ │ │ │ │ │ ├── anchor.png │ │ │ │ │ │ │ └── hidpi │ │ │ │ │ │ │ └── anchor.png │ │ │ │ │ ├── smiley │ │ │ │ │ │ └── images │ │ │ │ │ │ │ ├── heart.gif │ │ │ │ │ │ │ ├── heart.png │ │ │ │ │ │ │ ├── kiss.gif │ │ │ │ │ │ │ ├── kiss.png │ │ │ │ │ │ │ ├── envelope.gif │ │ │ │ │ │ │ ├── envelope.png │ │ │ │ │ │ │ ├── cry_smile.gif │ │ │ │ │ │ │ ├── cry_smile.png │ │ │ │ │ │ │ ├── lightbulb.gif │ │ │ │ │ │ │ ├── lightbulb.png │ │ │ │ │ │ │ ├── omg_smile.gif │ │ │ │ │ │ │ ├── omg_smile.png │ │ │ │ │ │ │ ├── sad_smile.gif │ │ │ │ │ │ │ ├── sad_smile.png │ │ │ │ │ │ │ ├── thumbs_up.gif │ │ │ │ │ │ │ ├── thumbs_up.png │ │ │ │ │ │ │ ├── wink_smile.gif │ │ │ │ │ │ │ ├── wink_smile.png │ │ │ │ │ │ │ ├── angel_smile.gif │ │ │ │ │ │ │ ├── angel_smile.png │ │ │ │ │ │ │ ├── angry_smile.gif │ │ │ │ │ │ │ ├── angry_smile.png │ │ │ │ │ │ │ ├── broken_heart.gif │ │ │ │ │ │ │ ├── broken_heart.png │ │ │ │ │ │ │ ├── devil_smile.gif │ │ │ │ │ │ │ ├── devil_smile.png │ │ │ │ │ │ │ ├── regular_smile.gif │ │ │ │ │ │ │ ├── regular_smile.png │ │ │ │ │ │ │ ├── shades_smile.gif │ │ │ │ │ │ │ ├── shades_smile.png │ │ │ │ │ │ │ ├── teeth_smile.gif │ │ │ │ │ │ │ ├── teeth_smile.png │ │ │ │ │ │ │ ├── thumbs_down.gif │ │ │ │ │ │ │ ├── thumbs_down.png │ │ │ │ │ │ │ ├── tongue_smile.gif │ │ │ │ │ │ │ ├── tongue_smile.png │ │ │ │ │ │ │ ├── tounge_smile.gif │ │ │ │ │ │ │ ├── confused_smile.gif │ │ │ │ │ │ │ ├── confused_smile.png │ │ │ │ │ │ │ ├── embaressed_smile.gif │ │ │ │ │ │ │ ├── embarrassed_smile.gif │ │ │ │ │ │ │ ├── embarrassed_smile.png │ │ │ │ │ │ │ ├── whatchutalkingabout_smile.gif │ │ │ │ │ │ │ └── whatchutalkingabout_smile.png │ │ │ │ │ ├── image │ │ │ │ │ │ └── images │ │ │ │ │ │ │ └── noimage.png │ │ │ │ │ ├── magicline │ │ │ │ │ │ └── images │ │ │ │ │ │ │ ├── icon.png │ │ │ │ │ │ │ ├── hidpi │ │ │ │ │ │ │ ├── icon.png │ │ │ │ │ │ │ └── icon-rtl.png │ │ │ │ │ │ │ └── icon-rtl.png │ │ │ │ │ ├── dialog │ │ │ │ │ │ └── dialogDefinition.js │ │ │ │ │ ├── flash │ │ │ │ │ │ └── images │ │ │ │ │ │ │ └── placeholder.png │ │ │ │ │ ├── forms │ │ │ │ │ │ └── images │ │ │ │ │ │ │ └── hiddenfield.gif │ │ │ │ │ ├── about │ │ │ │ │ │ └── dialogs │ │ │ │ │ │ │ ├── logo_ckeditor.png │ │ │ │ │ │ │ └── hidpi │ │ │ │ │ │ │ └── logo_ckeditor.png │ │ │ │ │ ├── iframe │ │ │ │ │ │ └── images │ │ │ │ │ │ │ └── placeholder.png │ │ │ │ │ ├── pagebreak │ │ │ │ │ │ └── images │ │ │ │ │ │ │ └── pagebreak.gif │ │ │ │ │ ├── showblocks │ │ │ │ │ │ └── images │ │ │ │ │ │ │ ├── block_div.png │ │ │ │ │ │ │ ├── block_h1.png │ │ │ │ │ │ │ ├── block_h2.png │ │ │ │ │ │ │ ├── block_h3.png │ │ │ │ │ │ │ ├── block_h4.png │ │ │ │ │ │ │ ├── block_h5.png │ │ │ │ │ │ │ ├── block_h6.png │ │ │ │ │ │ │ ├── block_p.png │ │ │ │ │ │ │ ├── block_pre.png │ │ │ │ │ │ │ ├── block_address.png │ │ │ │ │ │ │ └── block_blockquote.png │ │ │ │ │ ├── templates │ │ │ │ │ │ └── templates │ │ │ │ │ │ │ └── images │ │ │ │ │ │ │ ├── template1.gif │ │ │ │ │ │ │ ├── template2.gif │ │ │ │ │ │ │ └── template3.gif │ │ │ │ │ └── preview │ │ │ │ │ │ └── preview.html │ │ │ │ ├── samples │ │ │ │ │ ├── img │ │ │ │ │ │ ├── logo.png │ │ │ │ │ │ ├── github-top.png │ │ │ │ │ │ ├── header-bg.png │ │ │ │ │ │ ├── navigation-tip.png │ │ │ │ │ │ └── header-separator.png │ │ │ │ │ └── toolbarconfigurator │ │ │ │ │ │ └── font │ │ │ │ │ │ ├── fontello.eot │ │ │ │ │ │ ├── fontello.ttf │ │ │ │ │ │ ├── fontello.woff │ │ │ │ │ │ └── LICENSE.txt │ │ │ │ ├── skins │ │ │ │ │ └── moono │ │ │ │ │ │ ├── icons.png │ │ │ │ │ │ ├── icons_hidpi.png │ │ │ │ │ │ └── images │ │ │ │ │ │ ├── arrow.png │ │ │ │ │ │ ├── close.png │ │ │ │ │ │ ├── lock.png │ │ │ │ │ │ ├── refresh.png │ │ │ │ │ │ ├── spinner.gif │ │ │ │ │ │ ├── hidpi │ │ │ │ │ │ ├── close.png │ │ │ │ │ │ ├── lock.png │ │ │ │ │ │ ├── refresh.png │ │ │ │ │ │ └── lock-open.png │ │ │ │ │ │ └── lock-open.png │ │ │ │ └── config.js │ │ │ └── plugins │ │ │ │ ├── pwimage │ │ │ │ └── images │ │ │ │ │ ├── pwimage.png │ │ │ │ │ └── hidpi │ │ │ │ │ └── pwimage.png │ │ │ │ ├── pwlink │ │ │ │ └── images │ │ │ │ │ ├── pwlink.png │ │ │ │ │ └── hidpi │ │ │ │ │ └── pwlink.png │ │ │ │ └── sourcedialog │ │ │ │ ├── icons │ │ │ │ ├── sourcedialog.png │ │ │ │ ├── hidpi │ │ │ │ │ ├── sourcedialog.png │ │ │ │ │ └── sourcedialog-rtl.png │ │ │ │ └── sourcedialog-rtl.png │ │ │ │ └── lang │ │ │ │ ├── ko.js │ │ │ │ ├── af.js │ │ │ │ ├── cy.js │ │ │ │ ├── fa.js │ │ │ │ ├── he.js │ │ │ │ ├── hr.js │ │ │ │ ├── is.js │ │ │ │ ├── ja.js │ │ │ │ ├── mn.js │ │ │ │ ├── sr.js │ │ │ │ ├── zh.js │ │ │ │ ├── ar.js │ │ │ │ ├── bn.js │ │ │ │ ├── cs.js │ │ │ │ ├── da.js │ │ │ │ ├── el.js │ │ │ │ ├── en.js │ │ │ │ ├── eo.js │ │ │ │ ├── fi.js │ │ │ │ ├── fo.js │ │ │ │ ├── fr.js │ │ │ │ ├── gl.js │ │ │ │ ├── hi.js │ │ │ │ ├── id.js │ │ │ │ ├── ka.js │ │ │ │ ├── ku.js │ │ │ │ ├── ms.js │ │ │ │ ├── nb.js │ │ │ │ ├── no.js │ │ │ │ ├── pt.js │ │ │ │ ├── ro.js │ │ │ │ ├── sk.js │ │ │ │ ├── sq.js │ │ │ │ ├── sv.js │ │ │ │ ├── tr.js │ │ │ │ ├── tt.js │ │ │ │ ├── ug.js │ │ │ │ ├── uk.js │ │ │ │ ├── vi.js │ │ │ │ ├── zh-cn.js │ │ │ │ ├── bg.js │ │ │ │ ├── bs.js │ │ │ │ ├── ca.js │ │ │ │ ├── de.js │ │ │ │ ├── en-au.js │ │ │ │ ├── en-ca.js │ │ │ │ ├── en-gb.js │ │ │ │ ├── et.js │ │ │ │ ├── fr-ca.js │ │ │ │ ├── hu.js │ │ │ │ ├── it.js │ │ │ │ ├── km.js │ │ │ │ ├── lt.js │ │ │ │ ├── lv.js │ │ │ │ ├── nl.js │ │ │ │ ├── ru.js │ │ │ │ ├── si.js │ │ │ │ ├── sr-latn.js │ │ │ │ ├── es.js │ │ │ │ ├── sl.js │ │ │ │ ├── th.js │ │ │ │ ├── eu.js │ │ │ │ ├── pl.js │ │ │ │ ├── pt-br.js │ │ │ │ └── gu.js │ │ ├── InputfieldPage │ │ │ └── InputfieldPage.css │ │ ├── InputfieldPageTitle │ │ │ └── InputfieldPageTitle.module │ │ └── InputfieldPageName │ │ │ └── InputfieldPageName.css │ ├── Session │ │ └── SessionHandlerDB │ │ │ ├── ProcessSessionDB.css │ │ │ └── ProcessSessionDB.js │ └── System │ │ └── SystemUpdater │ │ ├── SystemUpdate4.php │ │ └── SystemUpdate1.php └── core │ └── NullField.php ├── site-classic ├── templates │ ├── scripts │ │ └── main.js │ ├── styles │ │ ├── images │ │ │ ├── bg.gif │ │ │ ├── logo.gif │ │ │ ├── btn-search.png │ │ │ └── topnav_a_bg.gif │ │ └── ie.css │ ├── home.php │ ├── basic-page.php │ ├── errors │ │ └── 500.html │ ├── admin.php │ └── sitemap.php ├── install │ ├── files │ │ ├── 1 │ │ │ ├── hyatt2.jpg │ │ │ ├── hyatt2.0x100.jpg │ │ │ ├── hyatt2.232x176.jpg │ │ │ ├── hyatt_interior11.jpg │ │ │ ├── hyatt_interior9.jpg │ │ │ ├── westin_interior1.jpg │ │ │ ├── westin_interior2.jpg │ │ │ ├── marquis_interior3.jpg │ │ │ ├── marquis_interior7b.jpg │ │ │ ├── hyatt_interior9.0x100.jpg │ │ │ ├── hyatt_interior11.0x100.jpg │ │ │ ├── hyatt_interior11.232x176.jpg │ │ │ ├── hyatt_interior9.232x176.jpg │ │ │ ├── marquis_interior13b_med.jpg │ │ │ ├── marquis_interior3.0x100.jpg │ │ │ ├── marquis_interior7b.0x100.jpg │ │ │ ├── westin_interior1.0x100.jpg │ │ │ ├── westin_interior1.232x176.jpg │ │ │ ├── westin_interior2.0x100.jpg │ │ │ ├── westin_interior2.232x176.jpg │ │ │ ├── marquis_interior3.232x176.jpg │ │ │ ├── marquis_interior7b.232x176.jpg │ │ │ ├── marquis_interior13b_med.0x100.jpg │ │ │ └── marquis_interior13b_med.232x176.jpg │ │ └── README.txt │ ├── screenshot.jpg │ └── info.php └── assets │ └── index.php ├── site-beginner ├── install │ ├── files │ │ ├── 1 │ │ │ ├── airport_cartoon_3.jpg │ │ │ ├── rough_cartoon_puppet.jpg │ │ │ ├── airport_cartoon_3.0x100.jpg │ │ │ ├── airport_cartoon_3.400x0.jpg │ │ │ ├── rough_cartoon_puppet.0x100.jpg │ │ │ └── rough_cartoon_puppet.400x0.jpg │ │ ├── 1002 │ │ │ ├── psych_cartoon_4-20.jpg │ │ │ ├── psych_cartoon_4-20.0x100.jpg │ │ │ └── psych_cartoon_4-20.400x0.jpg │ │ └── README.txt │ ├── screenshot.png │ └── info.php ├── templates │ ├── scripts │ │ └── main.js │ ├── sitemap.php │ ├── errors │ │ └── 500.html │ ├── _init.php │ ├── admin.php │ └── _foot.php └── assets │ └── index.php ├── site-default ├── install │ ├── files │ │ ├── 1 │ │ │ ├── airport_cartoon_3.jpg │ │ │ ├── rough_cartoon_puppet.jpg │ │ │ ├── airport_cartoon_3.0x100.jpg │ │ │ ├── airport_cartoon_3.400x0.jpg │ │ │ ├── rough_cartoon_puppet.0x100.jpg │ │ │ └── rough_cartoon_puppet.400x0.jpg │ │ ├── 1002 │ │ │ ├── psych_cartoon_4-20.jpg │ │ │ ├── psych_cartoon_4-20.0x100.jpg │ │ │ └── psych_cartoon_4-20.400x0.jpg │ │ └── README.txt │ ├── screenshot.png │ └── info.php ├── templates │ ├── scripts │ │ └── main.js │ ├── sitemap.php │ ├── errors │ │ └── 500.html │ └── admin.php ├── assets │ └── index.php └── modules │ └── InputfieldCKEditor │ └── plugins │ └── README.txt ├── site-languages ├── install │ ├── files │ │ ├── 1 │ │ │ ├── design-team.jpg │ │ │ ├── bigger-terminal.jpg │ │ │ ├── design-team.0x100.jpg │ │ │ ├── design-team.400x0.jpg │ │ │ ├── bigger-terminal.0x100.jpg │ │ │ └── bigger-terminal.400x0.jpg │ │ ├── 1012 │ │ │ ├── wire--core--session-php.json │ │ │ ├── wire--core--fieldtypemulti-php.json │ │ │ ├── wire--core--inputfieldwrapper-php.json │ │ │ ├── wire--core--sanitizer-php.json │ │ │ ├── wire--core--fields-php.json │ │ │ ├── wire--core--pageimage-php.json │ │ │ ├── wire--core--sessioncsrf-php.json │ │ │ ├── wire--core--pagefile-php.json │ │ │ ├── wire--core--password-php.json │ │ │ ├── wire--modules--languagesupport--languagetabs-module.json │ │ │ ├── wire--modules--inputfield--inputfieldfieldset-module.json │ │ │ ├── wire--core--process-php.json │ │ │ ├── wire--core--wirecache-php.json │ │ │ ├── wire--modules--pagepaths-module.json │ │ │ ├── wire--modules--inputfield--inputfieldbutton-module.json │ │ │ ├── wire--modules--markup--markuppagefields-module.json │ │ │ ├── wire--modules--inputfield--inputfieldpagetable--inputfieldpagetableajax-php.json │ │ │ ├── wire--modules--inputfield--inputfieldform-module.json │ │ │ ├── wire--core--wiretempdir-php.json │ │ │ ├── wire--modules--inputfield--inputfieldfloat-module.json │ │ │ ├── wire--modules--markup--markuppagernav--markuppagernav-module.json │ │ │ ├── wire--modules--inputfield--inputfieldasmselect--inputfieldasmselect-module.json │ │ │ ├── wire--modules--process--processpageview-module.json │ │ │ ├── wire--core--pages-php.json │ │ │ ├── wire--modules--inputfield--inputfieldsubmit--inputfieldsubmit-module.json │ │ │ ├── wire--modules--inputfield--inputfieldpagetitle--inputfieldpagetitle-module.json │ │ │ ├── wire--modules--process--processpermission--processpermission-module.json │ │ │ ├── wire--modules--admintheme--adminthemedefault--adminthemedefault-module.json │ │ │ ├── wire--modules--process--processhome-module.json │ │ │ ├── wire--core--field-php.json │ │ │ ├── wire--modules--inputfield--inputfieldname-module.json │ │ │ ├── wire--modules--fieldtype--fieldtypetext-module.json │ │ │ └── wire--modules--inputfield--inputfieldtextarea-module.json │ │ └── README.txt │ ├── languages-screenshot.png │ └── info.php ├── templates │ ├── scripts │ │ └── main.js │ ├── sitemap.php │ ├── errors │ │ └── 500.html │ └── admin.php └── assets │ └── index.php └── COPYRIGHT.txt /site-blank/templates/scripts/main.js: -------------------------------------------------------------------------------- 1 | // Blank 2 | -------------------------------------------------------------------------------- /site-blank/templates/styles/main.css: -------------------------------------------------------------------------------- 1 | /* blank */ 2 | -------------------------------------------------------------------------------- /wire/templates-admin/styles/font-awesome/font-awesome-4.2.0.textClipping: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /site-blank/templates/home.php: -------------------------------------------------------------------------------- 1 | body; 11 | 12 | include("./foot.inc"); 13 | 14 | -------------------------------------------------------------------------------- /wire/templates-admin/styles/JqueryUI/images/ui-icons_222222_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryancramerdesign/ProcessWire/HEAD/wire/templates-admin/styles/JqueryUI/images/ui-icons_222222_256x240.png -------------------------------------------------------------------------------- /wire/templates-admin/styles/JqueryUI/images/ui-icons_2f4248_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryancramerdesign/ProcessWire/HEAD/wire/templates-admin/styles/JqueryUI/images/ui-icons_2f4248_256x240.png -------------------------------------------------------------------------------- /wire/templates-admin/styles/JqueryUI/images/ui-icons_cd0a0a_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryancramerdesign/ProcessWire/HEAD/wire/templates-admin/styles/JqueryUI/images/ui-icons_cd0a0a_256x240.png -------------------------------------------------------------------------------- /wire/templates-admin/styles/JqueryUI/images/ui-icons_ffffff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryancramerdesign/ProcessWire/HEAD/wire/templates-admin/styles/JqueryUI/images/ui-icons_ffffff_256x240.png -------------------------------------------------------------------------------- /wire/templates-admin/styles/font-awesome/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryancramerdesign/ProcessWire/HEAD/wire/templates-admin/styles/font-awesome/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /wire/templates-admin/styles/font-awesome/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryancramerdesign/ProcessWire/HEAD/wire/templates-admin/styles/font-awesome/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /wire/templates-admin/styles/font-awesome/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryancramerdesign/ProcessWire/HEAD/wire/templates-admin/styles/font-awesome/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /wire/templates-admin/styles/font-awesome/less/fixed-width.less: -------------------------------------------------------------------------------- 1 | // Fixed Width Icons 2 | // ------------------------- 3 | .@{fa-css-prefix}-fw { 4 | width: (18em / 14); 5 | text-align: center; 6 | } 7 | -------------------------------------------------------------------------------- /wire/templates-admin/styles/font-awesome/scss/_fixed-width.scss: -------------------------------------------------------------------------------- 1 | // Fixed Width Icons 2 | // ------------------------- 3 | .#{$fa-css-prefix}-fw { 4 | width: (18em / 14); 5 | text-align: center; 6 | } 7 | -------------------------------------------------------------------------------- /site-classic/templates/basic-page.php: -------------------------------------------------------------------------------- 1 | body; 11 | 12 | include("./foot.inc"); 13 | 14 | -------------------------------------------------------------------------------- /wire/templates-admin/styles/JqueryUI/images/ui-bg_flat_0_000000_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryancramerdesign/ProcessWire/HEAD/wire/templates-admin/styles/JqueryUI/images/ui-bg_flat_0_000000_40x100.png -------------------------------------------------------------------------------- /wire/templates-admin/styles/JqueryUI/images/ui-bg_flat_0_ffffff_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryancramerdesign/ProcessWire/HEAD/wire/templates-admin/styles/JqueryUI/images/ui-bg_flat_0_ffffff_40x100.png -------------------------------------------------------------------------------- /wire/modules/AdminTheme/AdminThemeDefault/styles/images/animated-overlay.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryancramerdesign/ProcessWire/HEAD/wire/modules/AdminTheme/AdminThemeDefault/styles/images/animated-overlay.gif -------------------------------------------------------------------------------- /wire/modules/Inputfield/InputfieldCKEditor/ckeditor-4.5.3/plugins/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryancramerdesign/ProcessWire/HEAD/wire/modules/Inputfield/InputfieldCKEditor/ckeditor-4.5.3/plugins/icons.png -------------------------------------------------------------------------------- /wire/modules/Inputfield/InputfieldCKEditor/plugins/pwimage/images/pwimage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryancramerdesign/ProcessWire/HEAD/wire/modules/Inputfield/InputfieldCKEditor/plugins/pwimage/images/pwimage.png -------------------------------------------------------------------------------- /wire/modules/Inputfield/InputfieldCKEditor/plugins/pwlink/images/pwlink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryancramerdesign/ProcessWire/HEAD/wire/modules/Inputfield/InputfieldCKEditor/plugins/pwlink/images/pwlink.png -------------------------------------------------------------------------------- /wire/templates-admin/styles/JqueryUI/images/ui-bg_flat_80_000000_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryancramerdesign/ProcessWire/HEAD/wire/templates-admin/styles/JqueryUI/images/ui-bg_flat_80_000000_40x100.png -------------------------------------------------------------------------------- /wire/templates-admin/styles/JqueryUI/images/ui-bg_glass_30_87a71b_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryancramerdesign/ProcessWire/HEAD/wire/templates-admin/styles/JqueryUI/images/ui-bg_glass_30_87a71b_1x400.png -------------------------------------------------------------------------------- /wire/templates-admin/styles/JqueryUI/images/ui-bg_glass_30_cdea6d_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryancramerdesign/ProcessWire/HEAD/wire/templates-admin/styles/JqueryUI/images/ui-bg_glass_30_cdea6d_1x400.png -------------------------------------------------------------------------------- /wire/templates-admin/styles/JqueryUI/images/ui-bg_glass_30_db1174_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryancramerdesign/ProcessWire/HEAD/wire/templates-admin/styles/JqueryUI/images/ui-bg_glass_30_db1174_1x400.png -------------------------------------------------------------------------------- /wire/templates-admin/styles/JqueryUI/images/ui-bg_glass_30_e4ebee_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryancramerdesign/ProcessWire/HEAD/wire/templates-admin/styles/JqueryUI/images/ui-bg_glass_30_e4ebee_1x400.png -------------------------------------------------------------------------------- /wire/modules/Inputfield/InputfieldCKEditor/ckeditor-4.5.3/samples/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryancramerdesign/ProcessWire/HEAD/wire/modules/Inputfield/InputfieldCKEditor/ckeditor-4.5.3/samples/img/logo.png -------------------------------------------------------------------------------- /wire/modules/Inputfield/InputfieldCKEditor/ckeditor-4.5.3/skins/moono/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryancramerdesign/ProcessWire/HEAD/wire/modules/Inputfield/InputfieldCKEditor/ckeditor-4.5.3/skins/moono/icons.png -------------------------------------------------------------------------------- /wire/modules/AdminTheme/AdminThemeReno/styles/images/ui-icons_222222_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryancramerdesign/ProcessWire/HEAD/wire/modules/AdminTheme/AdminThemeReno/styles/images/ui-icons_222222_256x240.png -------------------------------------------------------------------------------- /wire/modules/AdminTheme/AdminThemeReno/styles/images/ui-icons_2e83ff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryancramerdesign/ProcessWire/HEAD/wire/modules/AdminTheme/AdminThemeReno/styles/images/ui-icons_2e83ff_256x240.png -------------------------------------------------------------------------------- /wire/modules/AdminTheme/AdminThemeReno/styles/images/ui-icons_454545_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryancramerdesign/ProcessWire/HEAD/wire/modules/AdminTheme/AdminThemeReno/styles/images/ui-icons_454545_256x240.png -------------------------------------------------------------------------------- /wire/modules/AdminTheme/AdminThemeReno/styles/images/ui-icons_888888_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryancramerdesign/ProcessWire/HEAD/wire/modules/AdminTheme/AdminThemeReno/styles/images/ui-icons_888888_256x240.png -------------------------------------------------------------------------------- /wire/modules/AdminTheme/AdminThemeReno/styles/images/ui-icons_cd0a0a_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryancramerdesign/ProcessWire/HEAD/wire/modules/AdminTheme/AdminThemeReno/styles/images/ui-icons_cd0a0a_256x240.png -------------------------------------------------------------------------------- /wire/modules/AdminTheme/AdminThemeReno/styles/images/ui-icons_ffffff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryancramerdesign/ProcessWire/HEAD/wire/modules/AdminTheme/AdminThemeReno/styles/images/ui-icons_ffffff_256x240.png -------------------------------------------------------------------------------- /wire/modules/Inputfield/InputfieldCKEditor/ckeditor-4.5.3/plugins/icons_hidpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryancramerdesign/ProcessWire/HEAD/wire/modules/Inputfield/InputfieldCKEditor/ckeditor-4.5.3/plugins/icons_hidpi.png -------------------------------------------------------------------------------- /wire/modules/Inputfield/InputfieldCKEditor/plugins/pwlink/images/hidpi/pwlink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryancramerdesign/ProcessWire/HEAD/wire/modules/Inputfield/InputfieldCKEditor/plugins/pwlink/images/hidpi/pwlink.png -------------------------------------------------------------------------------- /wire/templates-admin/styles/JqueryUI/images/ui-bg_inset-soft_95_fef1ec_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryancramerdesign/ProcessWire/HEAD/wire/templates-admin/styles/JqueryUI/images/ui-bg_inset-soft_95_fef1ec_1x100.png -------------------------------------------------------------------------------- /wire/modules/AdminTheme/AdminThemeDefault/styles/images/ui-icons_222222_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryancramerdesign/ProcessWire/HEAD/wire/modules/AdminTheme/AdminThemeDefault/styles/images/ui-icons_222222_256x240.png -------------------------------------------------------------------------------- /wire/modules/AdminTheme/AdminThemeDefault/styles/images/ui-icons_2e83ff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryancramerdesign/ProcessWire/HEAD/wire/modules/AdminTheme/AdminThemeDefault/styles/images/ui-icons_2e83ff_256x240.png -------------------------------------------------------------------------------- /wire/modules/AdminTheme/AdminThemeDefault/styles/images/ui-icons_454545_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryancramerdesign/ProcessWire/HEAD/wire/modules/AdminTheme/AdminThemeDefault/styles/images/ui-icons_454545_256x240.png -------------------------------------------------------------------------------- /wire/modules/AdminTheme/AdminThemeDefault/styles/images/ui-icons_888888_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryancramerdesign/ProcessWire/HEAD/wire/modules/AdminTheme/AdminThemeDefault/styles/images/ui-icons_888888_256x240.png -------------------------------------------------------------------------------- /wire/modules/AdminTheme/AdminThemeDefault/styles/images/ui-icons_cd0a0a_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryancramerdesign/ProcessWire/HEAD/wire/modules/AdminTheme/AdminThemeDefault/styles/images/ui-icons_cd0a0a_256x240.png -------------------------------------------------------------------------------- /wire/modules/AdminTheme/AdminThemeDefault/styles/images/ui-icons_ffffff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryancramerdesign/ProcessWire/HEAD/wire/modules/AdminTheme/AdminThemeDefault/styles/images/ui-icons_ffffff_256x240.png -------------------------------------------------------------------------------- /wire/modules/AdminTheme/AdminThemeReno/styles/images/ui-bg_flat_0_aaaaaa_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryancramerdesign/ProcessWire/HEAD/wire/modules/AdminTheme/AdminThemeReno/styles/images/ui-bg_flat_0_aaaaaa_40x100.png -------------------------------------------------------------------------------- /wire/modules/AdminTheme/AdminThemeReno/styles/images/ui-bg_flat_75_ffffff_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryancramerdesign/ProcessWire/HEAD/wire/modules/AdminTheme/AdminThemeReno/styles/images/ui-bg_flat_75_ffffff_40x100.png -------------------------------------------------------------------------------- /wire/modules/AdminTheme/AdminThemeReno/styles/images/ui-bg_glass_55_fbf9ee_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryancramerdesign/ProcessWire/HEAD/wire/modules/AdminTheme/AdminThemeReno/styles/images/ui-bg_glass_55_fbf9ee_1x400.png -------------------------------------------------------------------------------- /wire/modules/AdminTheme/AdminThemeReno/styles/images/ui-bg_glass_65_ffffff_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryancramerdesign/ProcessWire/HEAD/wire/modules/AdminTheme/AdminThemeReno/styles/images/ui-bg_glass_65_ffffff_1x400.png -------------------------------------------------------------------------------- /wire/modules/AdminTheme/AdminThemeReno/styles/images/ui-bg_glass_75_dadada_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryancramerdesign/ProcessWire/HEAD/wire/modules/AdminTheme/AdminThemeReno/styles/images/ui-bg_glass_75_dadada_1x400.png -------------------------------------------------------------------------------- /wire/modules/AdminTheme/AdminThemeReno/styles/images/ui-bg_glass_75_e6e6e6_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryancramerdesign/ProcessWire/HEAD/wire/modules/AdminTheme/AdminThemeReno/styles/images/ui-bg_glass_75_e6e6e6_1x400.png -------------------------------------------------------------------------------- /wire/modules/AdminTheme/AdminThemeReno/styles/images/ui-bg_glass_95_fef1ec_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryancramerdesign/ProcessWire/HEAD/wire/modules/AdminTheme/AdminThemeReno/styles/images/ui-bg_glass_95_fef1ec_1x400.png -------------------------------------------------------------------------------- /wire/modules/Inputfield/InputfieldCKEditor/ckeditor-4.5.3/samples/img/github-top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryancramerdesign/ProcessWire/HEAD/wire/modules/Inputfield/InputfieldCKEditor/ckeditor-4.5.3/samples/img/github-top.png -------------------------------------------------------------------------------- /wire/modules/Inputfield/InputfieldCKEditor/ckeditor-4.5.3/samples/img/header-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryancramerdesign/ProcessWire/HEAD/wire/modules/Inputfield/InputfieldCKEditor/ckeditor-4.5.3/samples/img/header-bg.png -------------------------------------------------------------------------------- /wire/modules/Inputfield/InputfieldCKEditor/plugins/pwimage/images/hidpi/pwimage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryancramerdesign/ProcessWire/HEAD/wire/modules/Inputfield/InputfieldCKEditor/plugins/pwimage/images/hidpi/pwimage.png -------------------------------------------------------------------------------- /wire/templates-admin/styles/JqueryUI/images/ui-bg_highlight-soft_30_d2e4ea_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryancramerdesign/ProcessWire/HEAD/wire/templates-admin/styles/JqueryUI/images/ui-bg_highlight-soft_30_d2e4ea_1x100.png -------------------------------------------------------------------------------- /site-beginner/templates/scripts/main.js: -------------------------------------------------------------------------------- 1 | // Well hello there. Looks like we don't have any Javascript. 2 | // Maybe you could help a friend out and put some in here? 3 | // Or at least, when ready, this might be a good place for it. 4 | -------------------------------------------------------------------------------- /site-default/templates/scripts/main.js: -------------------------------------------------------------------------------- 1 | // Well hello there. Looks like we don't have any Javascript. 2 | // Maybe you could help a friend out and put some in here? 3 | // Or at least, when ready, this might be a good place for it. 4 | -------------------------------------------------------------------------------- /site-languages/templates/scripts/main.js: -------------------------------------------------------------------------------- 1 | // Well hello there. Looks like we don't have any Javascript. 2 | // Maybe you could help a friend out and put some in here? 3 | // Or at least, when ready, this might be a good place for it. 4 | -------------------------------------------------------------------------------- /wire/modules/AdminTheme/AdminThemeDefault/styles/images/ui-bg_flat_0_aaaaaa_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryancramerdesign/ProcessWire/HEAD/wire/modules/AdminTheme/AdminThemeDefault/styles/images/ui-bg_flat_0_aaaaaa_40x100.png -------------------------------------------------------------------------------- /wire/modules/AdminTheme/AdminThemeDefault/styles/images/ui-bg_flat_75_ffffff_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryancramerdesign/ProcessWire/HEAD/wire/modules/AdminTheme/AdminThemeDefault/styles/images/ui-bg_flat_75_ffffff_40x100.png -------------------------------------------------------------------------------- /wire/modules/AdminTheme/AdminThemeDefault/styles/images/ui-bg_glass_55_fbf9ee_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryancramerdesign/ProcessWire/HEAD/wire/modules/AdminTheme/AdminThemeDefault/styles/images/ui-bg_glass_55_fbf9ee_1x400.png -------------------------------------------------------------------------------- /wire/modules/AdminTheme/AdminThemeDefault/styles/images/ui-bg_glass_65_ffffff_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryancramerdesign/ProcessWire/HEAD/wire/modules/AdminTheme/AdminThemeDefault/styles/images/ui-bg_glass_65_ffffff_1x400.png -------------------------------------------------------------------------------- /wire/modules/AdminTheme/AdminThemeDefault/styles/images/ui-bg_glass_75_dadada_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryancramerdesign/ProcessWire/HEAD/wire/modules/AdminTheme/AdminThemeDefault/styles/images/ui-bg_glass_75_dadada_1x400.png -------------------------------------------------------------------------------- /wire/modules/AdminTheme/AdminThemeDefault/styles/images/ui-bg_glass_75_e6e6e6_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryancramerdesign/ProcessWire/HEAD/wire/modules/AdminTheme/AdminThemeDefault/styles/images/ui-bg_glass_75_e6e6e6_1x400.png -------------------------------------------------------------------------------- /wire/modules/AdminTheme/AdminThemeDefault/styles/images/ui-bg_glass_95_fef1ec_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryancramerdesign/ProcessWire/HEAD/wire/modules/AdminTheme/AdminThemeDefault/styles/images/ui-bg_glass_95_fef1ec_1x400.png -------------------------------------------------------------------------------- /wire/modules/Inputfield/InputfieldCKEditor/ckeditor-4.5.3/skins/moono/icons_hidpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryancramerdesign/ProcessWire/HEAD/wire/modules/Inputfield/InputfieldCKEditor/ckeditor-4.5.3/skins/moono/icons_hidpi.png -------------------------------------------------------------------------------- /wire/modules/Inputfield/InputfieldCKEditor/ckeditor-4.5.3/skins/moono/images/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryancramerdesign/ProcessWire/HEAD/wire/modules/Inputfield/InputfieldCKEditor/ckeditor-4.5.3/skins/moono/images/arrow.png -------------------------------------------------------------------------------- /wire/modules/Inputfield/InputfieldCKEditor/ckeditor-4.5.3/skins/moono/images/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryancramerdesign/ProcessWire/HEAD/wire/modules/Inputfield/InputfieldCKEditor/ckeditor-4.5.3/skins/moono/images/close.png -------------------------------------------------------------------------------- /wire/modules/Inputfield/InputfieldCKEditor/ckeditor-4.5.3/skins/moono/images/lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryancramerdesign/ProcessWire/HEAD/wire/modules/Inputfield/InputfieldCKEditor/ckeditor-4.5.3/skins/moono/images/lock.png -------------------------------------------------------------------------------- /wire/modules/Inputfield/InputfieldCKEditor/plugins/sourcedialog/icons/sourcedialog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryancramerdesign/ProcessWire/HEAD/wire/modules/Inputfield/InputfieldCKEditor/plugins/sourcedialog/icons/sourcedialog.png -------------------------------------------------------------------------------- /wire/modules/Inputfield/InputfieldCKEditor/ckeditor-4.5.3/plugins/link/images/anchor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryancramerdesign/ProcessWire/HEAD/wire/modules/Inputfield/InputfieldCKEditor/ckeditor-4.5.3/plugins/link/images/anchor.png -------------------------------------------------------------------------------- /wire/modules/Inputfield/InputfieldCKEditor/ckeditor-4.5.3/plugins/smiley/images/heart.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryancramerdesign/ProcessWire/HEAD/wire/modules/Inputfield/InputfieldCKEditor/ckeditor-4.5.3/plugins/smiley/images/heart.gif -------------------------------------------------------------------------------- /wire/modules/Inputfield/InputfieldCKEditor/ckeditor-4.5.3/plugins/smiley/images/heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryancramerdesign/ProcessWire/HEAD/wire/modules/Inputfield/InputfieldCKEditor/ckeditor-4.5.3/plugins/smiley/images/heart.png -------------------------------------------------------------------------------- /wire/modules/Inputfield/InputfieldCKEditor/ckeditor-4.5.3/plugins/smiley/images/kiss.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryancramerdesign/ProcessWire/HEAD/wire/modules/Inputfield/InputfieldCKEditor/ckeditor-4.5.3/plugins/smiley/images/kiss.gif -------------------------------------------------------------------------------- /wire/modules/Inputfield/InputfieldCKEditor/ckeditor-4.5.3/plugins/smiley/images/kiss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryancramerdesign/ProcessWire/HEAD/wire/modules/Inputfield/InputfieldCKEditor/ckeditor-4.5.3/plugins/smiley/images/kiss.png -------------------------------------------------------------------------------- /wire/modules/Inputfield/InputfieldCKEditor/ckeditor-4.5.3/samples/img/navigation-tip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryancramerdesign/ProcessWire/HEAD/wire/modules/Inputfield/InputfieldCKEditor/ckeditor-4.5.3/samples/img/navigation-tip.png -------------------------------------------------------------------------------- /wire/modules/Inputfield/InputfieldCKEditor/ckeditor-4.5.3/skins/moono/images/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryancramerdesign/ProcessWire/HEAD/wire/modules/Inputfield/InputfieldCKEditor/ckeditor-4.5.3/skins/moono/images/refresh.png -------------------------------------------------------------------------------- /wire/modules/Inputfield/InputfieldCKEditor/ckeditor-4.5.3/skins/moono/images/spinner.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryancramerdesign/ProcessWire/HEAD/wire/modules/Inputfield/InputfieldCKEditor/ckeditor-4.5.3/skins/moono/images/spinner.gif -------------------------------------------------------------------------------- /wire/modules/Inputfield/InputfieldCKEditor/ckeditor-4.5.3/plugins/image/images/noimage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryancramerdesign/ProcessWire/HEAD/wire/modules/Inputfield/InputfieldCKEditor/ckeditor-4.5.3/plugins/image/images/noimage.png -------------------------------------------------------------------------------- /wire/modules/Inputfield/InputfieldCKEditor/ckeditor-4.5.3/plugins/magicline/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryancramerdesign/ProcessWire/HEAD/wire/modules/Inputfield/InputfieldCKEditor/ckeditor-4.5.3/plugins/magicline/images/icon.png -------------------------------------------------------------------------------- /wire/modules/Inputfield/InputfieldCKEditor/ckeditor-4.5.3/plugins/smiley/images/envelope.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryancramerdesign/ProcessWire/HEAD/wire/modules/Inputfield/InputfieldCKEditor/ckeditor-4.5.3/plugins/smiley/images/envelope.gif -------------------------------------------------------------------------------- /wire/modules/Inputfield/InputfieldCKEditor/ckeditor-4.5.3/plugins/smiley/images/envelope.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryancramerdesign/ProcessWire/HEAD/wire/modules/Inputfield/InputfieldCKEditor/ckeditor-4.5.3/plugins/smiley/images/envelope.png -------------------------------------------------------------------------------- /wire/modules/Inputfield/InputfieldCKEditor/ckeditor-4.5.3/samples/img/header-separator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryancramerdesign/ProcessWire/HEAD/wire/modules/Inputfield/InputfieldCKEditor/ckeditor-4.5.3/samples/img/header-separator.png -------------------------------------------------------------------------------- /wire/modules/Inputfield/InputfieldCKEditor/ckeditor-4.5.3/skins/moono/images/hidpi/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryancramerdesign/ProcessWire/HEAD/wire/modules/Inputfield/InputfieldCKEditor/ckeditor-4.5.3/skins/moono/images/hidpi/close.png -------------------------------------------------------------------------------- /wire/modules/Inputfield/InputfieldCKEditor/ckeditor-4.5.3/skins/moono/images/hidpi/lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryancramerdesign/ProcessWire/HEAD/wire/modules/Inputfield/InputfieldCKEditor/ckeditor-4.5.3/skins/moono/images/hidpi/lock.png -------------------------------------------------------------------------------- /wire/modules/Inputfield/InputfieldCKEditor/ckeditor-4.5.3/skins/moono/images/lock-open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryancramerdesign/ProcessWire/HEAD/wire/modules/Inputfield/InputfieldCKEditor/ckeditor-4.5.3/skins/moono/images/lock-open.png -------------------------------------------------------------------------------- /wire/modules/Inputfield/InputfieldCKEditor/plugins/sourcedialog/icons/hidpi/sourcedialog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryancramerdesign/ProcessWire/HEAD/wire/modules/Inputfield/InputfieldCKEditor/plugins/sourcedialog/icons/hidpi/sourcedialog.png -------------------------------------------------------------------------------- /wire/modules/Inputfield/InputfieldCKEditor/plugins/sourcedialog/icons/sourcedialog-rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryancramerdesign/ProcessWire/HEAD/wire/modules/Inputfield/InputfieldCKEditor/plugins/sourcedialog/icons/sourcedialog-rtl.png -------------------------------------------------------------------------------- /site-blank/assets/index.php: -------------------------------------------------------------------------------- 1 | site > admin in your installation to install. -------------------------------------------------------------------------------- /wire/modules/Inputfield/InputfieldCKEditor/ckeditor-4.5.3/plugins/about/dialogs/hidpi/logo_ckeditor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryancramerdesign/ProcessWire/HEAD/wire/modules/Inputfield/InputfieldCKEditor/ckeditor-4.5.3/plugins/about/dialogs/hidpi/logo_ckeditor.png -------------------------------------------------------------------------------- /wire/modules/Inputfield/InputfieldCKEditor/ckeditor-4.5.3/plugins/showblocks/images/block_blockquote.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryancramerdesign/ProcessWire/HEAD/wire/modules/Inputfield/InputfieldCKEditor/ckeditor-4.5.3/plugins/showblocks/images/block_blockquote.png -------------------------------------------------------------------------------- /wire/modules/Inputfield/InputfieldCKEditor/ckeditor-4.5.3/samples/toolbarconfigurator/font/fontello.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryancramerdesign/ProcessWire/HEAD/wire/modules/Inputfield/InputfieldCKEditor/ckeditor-4.5.3/samples/toolbarconfigurator/font/fontello.eot -------------------------------------------------------------------------------- /wire/modules/Inputfield/InputfieldCKEditor/ckeditor-4.5.3/samples/toolbarconfigurator/font/fontello.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryancramerdesign/ProcessWire/HEAD/wire/modules/Inputfield/InputfieldCKEditor/ckeditor-4.5.3/samples/toolbarconfigurator/font/fontello.ttf -------------------------------------------------------------------------------- /wire/modules/Inputfield/InputfieldCKEditor/ckeditor-4.5.3/samples/toolbarconfigurator/font/fontello.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryancramerdesign/ProcessWire/HEAD/wire/modules/Inputfield/InputfieldCKEditor/ckeditor-4.5.3/samples/toolbarconfigurator/font/fontello.woff -------------------------------------------------------------------------------- /site-languages/templates/sitemap.php: -------------------------------------------------------------------------------- 1 | "Blank", 4 | 'summary' => "This profile includes only the bare minimum pages, fields and templates, giving you essentially a blank slate. ", 5 | 'screenshot' => "" 6 | ); 7 | -------------------------------------------------------------------------------- /site-languages/install/files/1012/wire--core--session-php.json: -------------------------------------------------------------------------------- 1 | { 2 | "file":"wire\/core\/Session.php", 3 | "textdomain":"wire--core--session-php", 4 | "translations":{ 5 | "28629e201ce8ba272cbf2f64462c0512":{ 6 | "text":"Session abgelaufen" 7 | } 8 | } 9 | } -------------------------------------------------------------------------------- /wire/core/NullField.php: -------------------------------------------------------------------------------- 1 | 3 | 4 | 5 | 6 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /wire/modules/Markup/MarkupHTMLPurifier/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/HTML.Nofollow.txt: -------------------------------------------------------------------------------- 1 | HTML.Nofollow 2 | TYPE: bool 3 | VERSION: 4.3.0 4 | DEFAULT: FALSE 5 | --DESCRIPTION-- 6 | If enabled, nofollow rel attributes are added to all outgoing links. 7 | --# vim: et sw=4 sts=4 8 | -------------------------------------------------------------------------------- /wire/modules/Markup/MarkupHTMLPurifier/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/HTML.TidyAdd.txt: -------------------------------------------------------------------------------- 1 | HTML.TidyAdd 2 | TYPE: lookup 3 | VERSION: 2.0.0 4 | DEFAULT: array() 5 | --DESCRIPTION-- 6 | 7 | Fixes to add to the default set of Tidy fixes as per your level. 8 | --# vim: et sw=4 sts=4 9 | -------------------------------------------------------------------------------- /site-languages/install/files/1012/wire--core--fieldtypemulti-php.json: -------------------------------------------------------------------------------- 1 | { 2 | "file": "wire\\core\\FieldtypeMulti.php", 3 | "textdomain": "wire--core--fieldtypemulti-php", 4 | "translations": { 5 | "e2942a04780e223b215eb8b663cf5353": { 6 | "text": "z\u00e4hlen" 7 | } 8 | } 9 | } -------------------------------------------------------------------------------- /site-languages/install/files/1012/wire--core--inputfieldwrapper-php.json: -------------------------------------------------------------------------------- 1 | { 2 | "file":"wire\/core\/InputfieldWrapper.php", 3 | "textdomain":"wire--core--inputfieldwrapper-php", 4 | "translations":{ 5 | "d6a6d393040fe53b20243c9abeee036b":{ 6 | "text":"Erforderlicher Wert fehlt" 7 | } 8 | } 9 | } -------------------------------------------------------------------------------- /wire/modules/Markup/MarkupHTMLPurifier/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/HTML.TidyRemove.txt: -------------------------------------------------------------------------------- 1 | HTML.TidyRemove 2 | TYPE: lookup 3 | VERSION: 2.0.0 4 | DEFAULT: array() 5 | --DESCRIPTION-- 6 | 7 | Fixes to remove from the default set of Tidy fixes as per your level. 8 | --# vim: et sw=4 sts=4 9 | -------------------------------------------------------------------------------- /site-languages/install/files/1012/wire--core--sanitizer-php.json: -------------------------------------------------------------------------------- 1 | { 2 | "file": "wire\\core\\Sanitizer.php", 3 | "textdomain": "wire--core--sanitizer-php", 4 | "translations": { 5 | "47ad5a71e6f7bf836f4626d67887707e": { 6 | "text": "URL: Schema \"%s\" ist nicht erlaubt" 7 | } 8 | } 9 | } -------------------------------------------------------------------------------- /wire/modules/Markup/MarkupHTMLPurifier/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/Exception.php: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 | get('/'), $maxDepth); 9 | // see the _init.php for the renderNavTree function 10 | 11 | ?> 12 | 13 |
14 | 15 | 16 | -------------------------------------------------------------------------------- /wire/modules/Inputfield/InputfieldCKEditor/ckeditor-4.5.3/samples/toolbarconfigurator/font/LICENSE.txt: -------------------------------------------------------------------------------- 1 | Font license info 2 | 3 | 4 | ## Font Awesome 5 | 6 | Copyright (C) 2012 by Dave Gandy 7 | 8 | Author: Dave Gandy 9 | License: SIL () 10 | Homepage: http://fortawesome.github.com/Font-Awesome/ 11 | -------------------------------------------------------------------------------- /wire/modules/Markup/MarkupHTMLPurifier/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/CSS.Proprietary.txt: -------------------------------------------------------------------------------- 1 | CSS.Proprietary 2 | TYPE: bool 3 | VERSION: 3.0.0 4 | DEFAULT: false 5 | --DESCRIPTION-- 6 | 7 |

8 | Whether or not to allow safe, proprietary CSS values. 9 |

10 | --# vim: et sw=4 sts=4 11 | -------------------------------------------------------------------------------- /site-languages/install/files/1012/wire--core--pageimage-php.json: -------------------------------------------------------------------------------- 1 | { 2 | "file": "wire\/core\/Pageimage.php", 3 | "textdomain": "wire--core--pageimage-php", 4 | "translations": { 5 | "9553357878f83f4cfb2ef8f0917ae894": { 6 | "text": "Unzul\u00e4ssiges Bild kann nicht installiert werden" 7 | } 8 | } 9 | } -------------------------------------------------------------------------------- /wire/modules/Inputfield/InputfieldCKEditor/plugins/sourcedialog/lang/ko.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang( 'sourcedialog', 'ko', { 7 | toolbar: '소스', 8 | title: '소스' 9 | } ); 10 | -------------------------------------------------------------------------------- /wire/modules/Markup/MarkupHTMLPurifier/htmlpurifier/standalone/HTMLPurifier/Language/messages/en-x-test.php: -------------------------------------------------------------------------------- 1 | 'HTML Purifier X' 9 | ); 10 | 11 | // vim: et sw=4 sts=4 12 | -------------------------------------------------------------------------------- /wire/modules/Inputfield/InputfieldCKEditor/plugins/sourcedialog/lang/af.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang( 'sourcedialog', 'af', { 7 | toolbar: 'Bron', 8 | title: 'Bron' 9 | } ); 10 | -------------------------------------------------------------------------------- /wire/modules/Inputfield/InputfieldCKEditor/plugins/sourcedialog/lang/cy.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang( 'sourcedialog', 'cy', { 7 | toolbar: 'HTML', 8 | title: 'HTML' 9 | } ); 10 | -------------------------------------------------------------------------------- /wire/modules/Inputfield/InputfieldCKEditor/plugins/sourcedialog/lang/fa.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang( 'sourcedialog', 'fa', { 7 | toolbar: 'منبع', 8 | title: 'منبع' 9 | } ); 10 | -------------------------------------------------------------------------------- /wire/modules/Inputfield/InputfieldCKEditor/plugins/sourcedialog/lang/he.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang( 'sourcedialog', 'he', { 7 | toolbar: 'מקור', 8 | title: 'מקור' 9 | } ); 10 | -------------------------------------------------------------------------------- /wire/modules/Inputfield/InputfieldCKEditor/plugins/sourcedialog/lang/hr.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang( 'sourcedialog', 'hr', { 7 | toolbar: 'Kôd', 8 | title: 'Kôd' 9 | } ); 10 | -------------------------------------------------------------------------------- /wire/modules/Inputfield/InputfieldCKEditor/plugins/sourcedialog/lang/is.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang( 'sourcedialog', 'is', { 7 | toolbar: 'Kóði', 8 | title: 'Kóði' 9 | } ); 10 | -------------------------------------------------------------------------------- /wire/modules/Inputfield/InputfieldCKEditor/plugins/sourcedialog/lang/ja.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang( 'sourcedialog', 'ja', { 7 | toolbar: 'ソース', 8 | title: 'ソース' 9 | } ); 10 | -------------------------------------------------------------------------------- /wire/modules/Inputfield/InputfieldCKEditor/plugins/sourcedialog/lang/mn.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang( 'sourcedialog', 'mn', { 7 | toolbar: 'Код', 8 | title: 'Код' 9 | } ); 10 | -------------------------------------------------------------------------------- /wire/modules/Inputfield/InputfieldCKEditor/plugins/sourcedialog/lang/sr.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang( 'sourcedialog', 'sr', { 7 | toolbar: 'Kôд', 8 | title: 'Kôд' 9 | } ); 10 | -------------------------------------------------------------------------------- /wire/modules/Inputfield/InputfieldCKEditor/plugins/sourcedialog/lang/zh.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang( 'sourcedialog', 'zh', { 7 | toolbar: '原始碼', 8 | title: '原始碼' 9 | } ); 10 | -------------------------------------------------------------------------------- /wire/modules/Markup/MarkupHTMLPurifier/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/Test.ForceNoIconv.txt: -------------------------------------------------------------------------------- 1 | Test.ForceNoIconv 2 | TYPE: bool 3 | DEFAULT: false 4 | --DESCRIPTION-- 5 | When set to true, HTMLPurifier_Encoder will act as if iconv does not exist 6 | and use only pure PHP implementations. 7 | --# vim: et sw=4 sts=4 8 | -------------------------------------------------------------------------------- /site-languages/install/files/1012/wire--core--sessioncsrf-php.json: -------------------------------------------------------------------------------- 1 | { 2 | "file":"wire\/core\/SessionCSRF.php", 3 | "textdomain":"wire--core--sessioncsrf-php", 4 | "translations":{ 5 | "f5456cee91779e33a9f38ddca5081710":{ 6 | "text":"Diese Anfrage war anscheinend gef\u00e4lscht und wurde daher abgebrochen." 7 | } 8 | } 9 | } -------------------------------------------------------------------------------- /wire/modules/Inputfield/InputfieldCKEditor/plugins/sourcedialog/lang/ar.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang( 'sourcedialog', 'ar', { 7 | toolbar: 'المصدر', 8 | title: 'المصدر' 9 | } ); 10 | -------------------------------------------------------------------------------- /wire/modules/Inputfield/InputfieldCKEditor/plugins/sourcedialog/lang/bn.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang( 'sourcedialog', 'bn', { 7 | toolbar: 'সোর্স', 8 | title: 'সোর্স' 9 | } ); 10 | -------------------------------------------------------------------------------- /wire/modules/Inputfield/InputfieldCKEditor/plugins/sourcedialog/lang/cs.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang( 'sourcedialog', 'cs', { 7 | toolbar: 'Zdroj', 8 | title: 'Zdroj' 9 | } ); 10 | -------------------------------------------------------------------------------- /wire/modules/Inputfield/InputfieldCKEditor/plugins/sourcedialog/lang/da.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang( 'sourcedialog', 'da', { 7 | toolbar: 'Kilde', 8 | title: 'Kilde' 9 | } ); 10 | -------------------------------------------------------------------------------- /wire/modules/Inputfield/InputfieldCKEditor/plugins/sourcedialog/lang/el.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang( 'sourcedialog', 'el', { 7 | toolbar: 'Κώδικας', 8 | title: 'Κώδικας' 9 | } ); 10 | -------------------------------------------------------------------------------- /wire/modules/Inputfield/InputfieldCKEditor/plugins/sourcedialog/lang/en.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang( 'sourcedialog', 'en', { 7 | toolbar: 'Source', 8 | title: 'Source' 9 | } ); 10 | -------------------------------------------------------------------------------- /wire/modules/Inputfield/InputfieldCKEditor/plugins/sourcedialog/lang/eo.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang( 'sourcedialog', 'eo', { 7 | toolbar: 'Fonto', 8 | title: 'Fonto' 9 | } ); 10 | -------------------------------------------------------------------------------- /wire/modules/Inputfield/InputfieldCKEditor/plugins/sourcedialog/lang/fi.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang( 'sourcedialog', 'fi', { 7 | toolbar: 'Koodi', 8 | title: 'Koodi' 9 | } ); 10 | -------------------------------------------------------------------------------- /wire/modules/Inputfield/InputfieldCKEditor/plugins/sourcedialog/lang/fo.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang( 'sourcedialog', 'fo', { 7 | toolbar: 'Kelda', 8 | title: 'Kelda' 9 | } ); 10 | -------------------------------------------------------------------------------- /wire/modules/Inputfield/InputfieldCKEditor/plugins/sourcedialog/lang/fr.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang( 'sourcedialog', 'fr', { 7 | toolbar: 'Source', 8 | title: 'Source' 9 | } ); 10 | -------------------------------------------------------------------------------- /wire/modules/Inputfield/InputfieldCKEditor/plugins/sourcedialog/lang/gl.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang( 'sourcedialog', 'gl', { 7 | toolbar: 'Orixe', 8 | title: 'Orixe' 9 | } ); 10 | -------------------------------------------------------------------------------- /wire/modules/Inputfield/InputfieldCKEditor/plugins/sourcedialog/lang/hi.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang( 'sourcedialog', 'hi', { 7 | toolbar: 'सोर्स', 8 | title: 'सोर्स' 9 | } ); 10 | -------------------------------------------------------------------------------- /wire/modules/Inputfield/InputfieldCKEditor/plugins/sourcedialog/lang/id.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang( 'sourcedialog', 'id', { 7 | toolbar: 'Sumber', 8 | title: 'Sumber' 9 | } ); 10 | -------------------------------------------------------------------------------- /wire/modules/Inputfield/InputfieldCKEditor/plugins/sourcedialog/lang/ka.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang( 'sourcedialog', 'ka', { 7 | toolbar: 'კოდები', 8 | title: 'კოდები' 9 | } ); 10 | -------------------------------------------------------------------------------- /wire/modules/Inputfield/InputfieldCKEditor/plugins/sourcedialog/lang/ku.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang( 'sourcedialog', 'ku', { 7 | toolbar: 'سەرچاوە', 8 | title: 'سەرچاوە' 9 | } ); 10 | -------------------------------------------------------------------------------- /wire/modules/Inputfield/InputfieldCKEditor/plugins/sourcedialog/lang/ms.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang( 'sourcedialog', 'ms', { 7 | toolbar: 'Sumber', 8 | title: 'Sumber' 9 | } ); 10 | -------------------------------------------------------------------------------- /wire/modules/Inputfield/InputfieldCKEditor/plugins/sourcedialog/lang/nb.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang( 'sourcedialog', 'nb', { 7 | toolbar: 'Kilde', 8 | title: 'Kilde' 9 | } ); 10 | -------------------------------------------------------------------------------- /wire/modules/Inputfield/InputfieldCKEditor/plugins/sourcedialog/lang/no.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang( 'sourcedialog', 'no', { 7 | toolbar: 'Kilde', 8 | title: 'Kilde' 9 | } ); 10 | -------------------------------------------------------------------------------- /wire/modules/Inputfield/InputfieldCKEditor/plugins/sourcedialog/lang/pt.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang( 'sourcedialog', 'pt', { 7 | toolbar: 'Fonte', 8 | title: 'Fonte' 9 | } ); 10 | -------------------------------------------------------------------------------- /wire/modules/Inputfield/InputfieldCKEditor/plugins/sourcedialog/lang/ro.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang( 'sourcedialog', 'ro', { 7 | toolbar: 'Sursa', 8 | title: 'Sursa' 9 | } ); 10 | -------------------------------------------------------------------------------- /wire/modules/Inputfield/InputfieldCKEditor/plugins/sourcedialog/lang/sk.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang( 'sourcedialog', 'sk', { 7 | toolbar: 'Zdroj', 8 | title: 'Zdroj' 9 | } ); 10 | -------------------------------------------------------------------------------- /wire/modules/Inputfield/InputfieldCKEditor/plugins/sourcedialog/lang/sq.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang( 'sourcedialog', 'sq', { 7 | toolbar: 'Burimi', 8 | title: 'Burimi' 9 | } ); 10 | -------------------------------------------------------------------------------- /wire/modules/Inputfield/InputfieldCKEditor/plugins/sourcedialog/lang/sv.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang( 'sourcedialog', 'sv', { 7 | toolbar: 'Källa', 8 | title: 'Källa' 9 | } ); 10 | -------------------------------------------------------------------------------- /wire/modules/Inputfield/InputfieldCKEditor/plugins/sourcedialog/lang/tr.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang( 'sourcedialog', 'tr', { 7 | toolbar: 'Kaynak', 8 | title: 'Kaynak' 9 | } ); 10 | -------------------------------------------------------------------------------- /wire/modules/Inputfield/InputfieldCKEditor/plugins/sourcedialog/lang/tt.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang( 'sourcedialog', 'tt', { 7 | toolbar: 'Чыганак', 8 | title: 'Чыганак' 9 | } ); 10 | -------------------------------------------------------------------------------- /wire/modules/Inputfield/InputfieldCKEditor/plugins/sourcedialog/lang/ug.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang( 'sourcedialog', 'ug', { 7 | toolbar: 'مەنبە', 8 | title: 'مەنبە' 9 | } ); 10 | -------------------------------------------------------------------------------- /wire/modules/Inputfield/InputfieldCKEditor/plugins/sourcedialog/lang/uk.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang( 'sourcedialog', 'uk', { 7 | toolbar: 'Джерело', 8 | title: 'Джерело' 9 | } ); 10 | -------------------------------------------------------------------------------- /wire/modules/Inputfield/InputfieldCKEditor/plugins/sourcedialog/lang/vi.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang( 'sourcedialog', 'vi', { 7 | toolbar: 'Mã HTML', 8 | title: 'Mã HTML' 9 | } ); 10 | -------------------------------------------------------------------------------- /wire/modules/Inputfield/InputfieldCKEditor/plugins/sourcedialog/lang/zh-cn.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang( 'sourcedialog', 'zh-cn', { 7 | toolbar: '源码', 8 | title: '源码' 9 | } ); 10 | -------------------------------------------------------------------------------- /wire/modules/Process/ProcessLogger/LogEntriesArray.php: -------------------------------------------------------------------------------- 1 | "Classic", 4 | 'summary' => "This was the default site profile from ProcessWire versions 2.0 through 2.4. While now a little older in appearance, it is a great starting point for learning about ProcessWire.", 5 | 'screenshot' => "screenshot.jpg" 6 | ); 7 | -------------------------------------------------------------------------------- /site-languages/install/files/1012/wire--core--pagefile-php.json: -------------------------------------------------------------------------------- 1 | { 2 | "file":"wire\/core\/Pagefile.php", 3 | "textdomain":"wire--core--pagefile-php", 4 | "translations":{ 5 | "4b3a6218bb3e3a7303e8a171a60fcf92":{ 6 | "text":"Bytes" 7 | }, 8 | "3e56c011b37f0bc78fb9eb175c1181c6":{ 9 | "text":"kB" 10 | } 11 | } 12 | } -------------------------------------------------------------------------------- /wire/modules/Inputfield/InputfieldCKEditor/plugins/sourcedialog/lang/pl.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang( 'sourcedialog', 'pl', { 7 | toolbar: 'Źródło dokumentu', 8 | title: 'Źródło dokumentu' 9 | } ); 10 | -------------------------------------------------------------------------------- /wire/modules/Inputfield/InputfieldCKEditor/plugins/sourcedialog/lang/pt-br.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang( 'sourcedialog', 'pt-br', { 7 | toolbar: 'Código-Fonte', 8 | title: 'Código-Fonte' 9 | } ); 10 | -------------------------------------------------------------------------------- /wire/modules/Markup/MarkupHTMLPurifier/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/Attr.AllowedClasses.txt: -------------------------------------------------------------------------------- 1 | Attr.AllowedClasses 2 | TYPE: lookup/null 3 | VERSION: 4.0.0 4 | DEFAULT: null 5 | --DESCRIPTION-- 6 | List of allowed class values in the class attribute. By default, this is null, 7 | which means all classes are allowed. 8 | --# vim: et sw=4 sts=4 9 | -------------------------------------------------------------------------------- /wire/modules/Markup/MarkupHTMLPurifier/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/CSS.DefinitionRev.txt: -------------------------------------------------------------------------------- 1 | CSS.DefinitionRev 2 | TYPE: int 3 | VERSION: 2.0.0 4 | DEFAULT: 1 5 | --DESCRIPTION-- 6 | 7 |

8 | Revision identifier for your custom definition. See 9 | %HTML.DefinitionRev for details. 10 |

11 | --# vim: et sw=4 sts=4 12 | -------------------------------------------------------------------------------- /wire/modules/Markup/MarkupHTMLPurifier/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/URI.DefinitionRev.txt: -------------------------------------------------------------------------------- 1 | URI.DefinitionRev 2 | TYPE: int 3 | VERSION: 2.1.0 4 | DEFAULT: 1 5 | --DESCRIPTION-- 6 | 7 |

8 | Revision identifier for your custom definition. See 9 | %HTML.DefinitionRev for details. 10 |

11 | --# vim: et sw=4 sts=4 12 | -------------------------------------------------------------------------------- /wire/modules/Process/ProcessPageEdit/PageBookmarks.css: -------------------------------------------------------------------------------- 1 | .content ul.bookmarks { 2 | margin: 1em 0; 3 | } 4 | 5 | .content ul.bookmarks li { 6 | margin: 0; 7 | } 8 | .content ul.bookmarks li.separator { 9 | border-top: 1px solid #eee; 10 | margin-top: 0.5em; 11 | padding-top: 0.5em; 12 | } 13 | 14 | .content ul.bookmarks li .role-name { 15 | float: right; 16 | } -------------------------------------------------------------------------------- /wire/modules/Markup/MarkupHTMLPurifier/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/HTML.Strict.txt: -------------------------------------------------------------------------------- 1 | HTML.Strict 2 | TYPE: bool 3 | VERSION: 1.3.0 4 | DEFAULT: false 5 | DEPRECATED-VERSION: 1.7.0 6 | DEPRECATED-USE: HTML.Doctype 7 | --DESCRIPTION-- 8 | Determines whether or not to use Transitional (loose) or Strict rulesets. 9 | --# vim: et sw=4 sts=4 10 | -------------------------------------------------------------------------------- /site-beginner/templates/errors/500.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 500 Internal Server Error 5 | 6 | 7 |

Internal Server Error

8 |

The server encountered an internal error or misconfiguration and was unable to complete your request.

9 |

{message}

10 | 11 | 12 | -------------------------------------------------------------------------------- /site-blank/templates/errors/500.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 500 Internal Server Error 5 | 6 | 7 |

Internal Server Error

8 |

The server encountered an internal error or misconfiguration and was unable to complete your request.

9 |

{message}

10 | 11 | 12 | -------------------------------------------------------------------------------- /site-classic/templates/errors/500.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 500 Internal Server Error 5 | 6 | 7 |

Internal Server Error

8 |

The server encountered an internal error or misconfiguration and was unable to complete your request.

9 |

{message}

10 | 11 | 12 | -------------------------------------------------------------------------------- /site-default/templates/errors/500.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 500 Internal Server Error 5 | 6 | 7 |

Internal Server Error

8 |

The server encountered an internal error or misconfiguration and was unable to complete your request.

9 |

{message}

10 | 11 | 12 | -------------------------------------------------------------------------------- /site-languages/install/files/1012/wire--core--password-php.json: -------------------------------------------------------------------------------- 1 | { 2 | "file":"wire\/core\/Password.php", 3 | "textdomain":"wire--core--password-php", 4 | "translations":{ 5 | "48c4bfee0537beab47315976f579ac2d":{ 6 | "text":"Das Passwort System wurde gerade aktualisiert. Bitte \u00e4ndern Sie ihr Passwort um ihren Account zu aktualisieren." 7 | } 8 | } 9 | } -------------------------------------------------------------------------------- /wire/modules/Inputfield/InputfieldCKEditor/plugins/sourcedialog/lang/gu.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang( 'sourcedialog', 'gu', { 7 | toolbar: 'મૂળ કે પ્રાથમિક દસ્તાવેજ', 8 | title: 'મૂળ કે પ્રાથમિક દસ્તાવેજ' 9 | } ); 10 | -------------------------------------------------------------------------------- /site-languages/install/files/1012/wire--modules--languagesupport--languagetabs-module.json: -------------------------------------------------------------------------------- 1 | { 2 | "file": "wire\/modules\/LanguageSupport\/LanguageTabs.module", 3 | "textdomain": "wire--modules--languagesupport--languagetabs-module", 4 | "translations": { 5 | "4ee6b922de4a3b1d79036b200520ee37": { 6 | "text": "Sprachen in Tabs erweitern" 7 | } 8 | } 9 | } -------------------------------------------------------------------------------- /site-languages/templates/errors/500.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 500 Internal Server Error 5 | 6 | 7 |

Internal Server Error

8 |

The server encountered an internal error or misconfiguration and was unable to complete your request.

9 |

{message}

10 | 11 | 12 | -------------------------------------------------------------------------------- /wire/modules/Markup/MarkupHTMLPurifier/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/CSS.AllowImportant.txt: -------------------------------------------------------------------------------- 1 | CSS.AllowImportant 2 | TYPE: bool 3 | DEFAULT: false 4 | VERSION: 3.1.0 5 | --DESCRIPTION-- 6 | This parameter determines whether or not !important cascade modifiers should 7 | be allowed in user CSS. If false, !important will stripped. 8 | --# vim: et sw=4 sts=4 9 | -------------------------------------------------------------------------------- /wire/modules/Markup/MarkupHTMLPurifier/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/HTML.CustomDoctype.txt: -------------------------------------------------------------------------------- 1 | HTML.CustomDoctype 2 | TYPE: string/null 3 | VERSION: 2.0.1 4 | DEFAULT: NULL 5 | --DESCRIPTION-- 6 | 7 | A custom doctype for power-users who defined there own document 8 | type. This directive only applies when %HTML.Doctype is blank. 9 | --# vim: et sw=4 sts=4 10 | -------------------------------------------------------------------------------- /site-beginner/install/info.php: -------------------------------------------------------------------------------- 1 | "Default (Beginner Edition)", 4 | 'summary' => "A minimal responsive site profile that serves as a good starting point for new sites or for learning about ProcessWire. Focuses on using the easiest to understand template concepts for new users.", 5 | 'screenshot' => "screenshot.png" 6 | ); 7 | -------------------------------------------------------------------------------- /site-languages/install/files/1012/wire--modules--inputfield--inputfieldfieldset-module.json: -------------------------------------------------------------------------------- 1 | { 2 | "file":"wire\/modules\/Inputfield\/InputfieldFieldset.module", 3 | "textdomain":"wire--modules--inputfield--inputfieldfieldset-module", 4 | "translations":{ 5 | "80b64fcc30458532fff6446e92e98c54":{ 6 | "text":"Gruppiert eines oder mehrere Felder in einem Container" 7 | } 8 | } 9 | } -------------------------------------------------------------------------------- /wire/modules/Inputfield/InputfieldCKEditor/ckeditor-4.5.3/plugins/preview/preview.html: -------------------------------------------------------------------------------- 1 | 14 | -------------------------------------------------------------------------------- /wire/modules/Markup/MarkupHTMLPurifier/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/HTML.TargetBlank.txt: -------------------------------------------------------------------------------- 1 | HTML.TargetBlank 2 | TYPE: bool 3 | VERSION: 4.4.0 4 | DEFAULT: FALSE 5 | --DESCRIPTION-- 6 | If enabled, target=blank attributes are added to all outgoing links. 7 | (This includes links from an HTTPS version of a page to an HTTP version.) 8 | --# vim: et sw=4 sts=4 9 | -------------------------------------------------------------------------------- /wire/modules/Markup/MarkupHTMLPurifier/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/HTML.XHTML.txt: -------------------------------------------------------------------------------- 1 | HTML.XHTML 2 | TYPE: bool 3 | DEFAULT: true 4 | VERSION: 1.1.0 5 | DEPRECATED-VERSION: 1.7.0 6 | DEPRECATED-USE: HTML.Doctype 7 | --DESCRIPTION-- 8 | Determines whether or not output is XHTML 1.0 or HTML 4.01 flavor. 9 | --ALIASES-- 10 | Core.XHTML 11 | --# vim: et sw=4 sts=4 12 | -------------------------------------------------------------------------------- /wire/modules/Markup/MarkupHTMLPurifier/htmlpurifier/standalone/HTMLPurifier/Language/messages/en-x-testmini.php: -------------------------------------------------------------------------------- 1 | 'HTML Purifier XNone' 10 | ); 11 | 12 | // vim: et sw=4 sts=4 13 | -------------------------------------------------------------------------------- /wire/modules/Markup/MarkupHTMLPurifier/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/CSS.Trusted.txt: -------------------------------------------------------------------------------- 1 | CSS.Trusted 2 | TYPE: bool 3 | VERSION: 4.2.1 4 | DEFAULT: false 5 | --DESCRIPTION-- 6 | Indicates whether or not the user's CSS input is trusted or not. If the 7 | input is trusted, a more expansive set of allowed properties. See 8 | also %HTML.Trusted. 9 | --# vim: et sw=4 sts=4 10 | -------------------------------------------------------------------------------- /wire/templates-admin/scripts/install.js: -------------------------------------------------------------------------------- 1 | $(document).ready(function() { 2 | $(".ui-button").hover(function() { 3 | $(this).removeClass("ui-state-default").addClass("ui-state-hover"); 4 | }, function() { 5 | $(this).removeClass("ui-state-hover").addClass("ui-state-default"); 6 | }).click(function() { 7 | $(this).removeClass("ui-state-default").addClass("ui-state-active"); 8 | }); 9 | }); 10 | 11 | -------------------------------------------------------------------------------- /wire/modules/LanguageSupport/LanguagesValueInterface.php: -------------------------------------------------------------------------------- 1 | 7 | Defines through what scheme the output will be served, in order to 8 | select the proper object validator when no scheme information is present. 9 |

10 | --# vim: et sw=4 sts=4 11 | -------------------------------------------------------------------------------- /wire/modules/Process/ProcessLogin/ProcessLogin.css: -------------------------------------------------------------------------------- 1 | ul.Inputfields #wrap_login_name, 2 | ul.Inputfields #wrap_login_pass { 3 | width: 190px; 4 | clear: none; 5 | float: left; 6 | margin-top: 0; 7 | margin-left: -1px; 8 | } 9 | 10 | ul.Inputfields #login_name, 11 | ul.Inputfields #login_pass { 12 | width: 100%; 13 | } 14 | 15 | ul.Inputfields .InputfieldSubmit { 16 | clear: both; 17 | } 18 | 19 | -------------------------------------------------------------------------------- /wire/modules/Markup/MarkupHTMLPurifier/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/Attr.AllowedRev.txt: -------------------------------------------------------------------------------- 1 | Attr.AllowedRev 2 | TYPE: lookup 3 | VERSION: 1.6.0 4 | DEFAULT: array() 5 | --DESCRIPTION-- 6 | List of allowed reverse document relationships in the rev attribute. This 7 | attribute is a bit of an edge-case; if you don't know what it is for, stay 8 | away. 9 | --# vim: et sw=4 sts=4 10 | -------------------------------------------------------------------------------- /wire/modules/Markup/MarkupHTMLPurifier/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/URI.DefinitionID.txt: -------------------------------------------------------------------------------- 1 | URI.DefinitionID 2 | TYPE: string/null 3 | VERSION: 2.1.0 4 | DEFAULT: NULL 5 | --DESCRIPTION-- 6 | 7 |

8 | Unique identifier for a custom-built URI definition. If you want 9 | to add custom URIFilters, you must specify this value. 10 |

11 | --# vim: et sw=4 sts=4 12 | -------------------------------------------------------------------------------- /site-languages/install/files/1012/wire--core--process-php.json: -------------------------------------------------------------------------------- 1 | { 2 | "file": "wire\\core\\Process.php", 3 | "textdomain": "wire--core--process-php", 4 | "translations": { 5 | "bc9f744abfdf0bc1b077c89e04c5cae3": { 6 | "text": "Seite erstellt: %s" 7 | }, 8 | "c4fd0f5e619f884597a0c81ab468001f": { 9 | "text": "Seite gel\u00f6scht: %s" 10 | } 11 | } 12 | } -------------------------------------------------------------------------------- /site-languages/install/files/1012/wire--core--wirecache-php.json: -------------------------------------------------------------------------------- 1 | { 2 | "file": "wire\/core\/WireCache.php", 3 | "textdomain": "wire--core--wirecache-php", 4 | "translations": { 5 | "d35d926654fdaeed481722384826e32b": { 6 | "text": "Cache gespeichert" 7 | }, 8 | "a188964d2912198a985f7bcd9564c530": { 9 | "text": "Cache bereinigt" 10 | } 11 | } 12 | } -------------------------------------------------------------------------------- /site-languages/install/files/1012/wire--modules--pagepaths-module.json: -------------------------------------------------------------------------------- 1 | { 2 | "file":"wire\/modules\/PagePaths.module", 3 | "textdomain":"wire--modules--pagepaths-module", 4 | "translations":{ 5 | "d6fee4e5741568290c0f4c4edc81f70f":{ 6 | "text":"%d Pfad aktualisiert" 7 | }, 8 | "b198072961bf47ed9c790c1006f98372":{ 9 | "text":"%d Pfade aktualisiert" 10 | } 11 | } 12 | } -------------------------------------------------------------------------------- /wire/modules/AdminTheme/AdminThemeDefault/styles/sass/compile.sh: -------------------------------------------------------------------------------- 1 | sass --style=compressed --sourcemap=none --no-cache main-warm.scss:../main-warm.css 2 | sass --style=compressed --sourcemap=none --no-cache main-classic.scss:../main-classic.css 3 | sass --style=compressed --sourcemap=none --no-cache main-futura.scss:../main-futura.css 4 | sass --style=compressed --sourcemap=none --no-cache main-modern.scss:../main-modern.css 5 | -------------------------------------------------------------------------------- /wire/modules/Markup/MarkupHTMLPurifier/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/HTML.Trusted.txt: -------------------------------------------------------------------------------- 1 | HTML.Trusted 2 | TYPE: bool 3 | VERSION: 2.0.0 4 | DEFAULT: false 5 | --DESCRIPTION-- 6 | Indicates whether or not the user input is trusted or not. If the input is 7 | trusted, a more expansive set of allowed tags and attributes will be used. 8 | See also %CSS.Trusted. 9 | --# vim: et sw=4 sts=4 10 | -------------------------------------------------------------------------------- /site-languages/install/files/1012/wire--modules--inputfield--inputfieldbutton-module.json: -------------------------------------------------------------------------------- 1 | { 2 | "file":"wire\/modules\/Inputfield\/InputfieldButton.module", 3 | "textdomain":"wire--modules--inputfield--inputfieldbutton-module", 4 | "translations":{ 5 | "3691c9189afe50505955f4ef8181ae3c":{ 6 | "text":"Button als Formular-Element, dem Sie optional ein href-Attribut zuweisen k\u00f6nnen" 7 | } 8 | } 9 | } -------------------------------------------------------------------------------- /wire/modules/AdminTheme/AdminThemeDefault/install-foot.inc: -------------------------------------------------------------------------------- 1 | 2 | "; ?> 3 | 4 | 5 | 6 | 7 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /site-languages/install/files/1012/wire--modules--markup--markuppagefields-module.json: -------------------------------------------------------------------------------- 1 | { 2 | "file":"wire\/modules\/Markup\/MarkupPageFields.module", 3 | "textdomain":"wire--modules--markup--markuppagefields-module", 4 | "translations":{ 5 | "93cba07454f06a4a960172bbd6e2a435":{ 6 | "text":"Ja" 7 | }, 8 | "bafd7322c6e97d25b6299b5d6fe8920b":{ 9 | "text":"Nein" 10 | } 11 | } 12 | } -------------------------------------------------------------------------------- /wire/modules/AdminTheme/AdminThemeDefault/scripts/install.js: -------------------------------------------------------------------------------- 1 | $(document).ready(function() { 2 | $(".ui-button").hover(function() { 3 | $(this).removeClass("ui-state-default").addClass("ui-state-hover"); 4 | }, function() { 5 | $(this).removeClass("ui-state-hover").addClass("ui-state-default"); 6 | }).click(function() { 7 | $(this).removeClass("ui-state-default").addClass("ui-state-active"); 8 | }); 9 | }); 10 | 11 | -------------------------------------------------------------------------------- /wire/modules/Markup/MarkupHTMLPurifier/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/Cache.SerializerPermissions.txt: -------------------------------------------------------------------------------- 1 | Cache.SerializerPermissions 2 | TYPE: int 3 | VERSION: 4.3.0 4 | DEFAULT: 0755 5 | --DESCRIPTION-- 6 | 7 |

8 | Directory permissions of the files and directories created inside 9 | the DefinitionCache/Serializer or other custom serializer path. 10 |

11 | --# vim: et sw=4 sts=4 12 | -------------------------------------------------------------------------------- /wire/modules/Inputfield/InputfieldCKEditor/ckeditor-4.5.3/config.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @license Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | * For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.editorConfig = function( config ) { 7 | // Define changes to default configuration here. For example: 8 | // config.language = 'fr'; 9 | // config.uiColor = '#AADC6E'; 10 | }; 11 | -------------------------------------------------------------------------------- /wire/modules/Markup/MarkupHTMLPurifier/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/HTML.SafeScripting.txt: -------------------------------------------------------------------------------- 1 | HTML.SafeScripting 2 | TYPE: lookup 3 | VERSION: 4.5.0 4 | DEFAULT: array() 5 | --DESCRIPTION-- 6 |

7 | Whether or not to permit script tags to external scripts in documents. 8 | Inline scripting is not allowed, and the script must match an explicit whitelist. 9 |

10 | --# vim: et sw=4 sts=4 11 | -------------------------------------------------------------------------------- /wire/modules/Process/ProcessPageLister/ProcessPageLister.info.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Lister", 3 | "summary": "Admin tool for finding and listing pages by any property.", 4 | "version": 24, 5 | "author": "Ryan Cramer", 6 | "icon": "search", 7 | "singular": false, 8 | "permanent": true, 9 | "permission": "page-lister", 10 | "permissions": { 11 | "page-lister": "Use Page Lister" 12 | }, 13 | "useNavJSON": true 14 | } 15 | -------------------------------------------------------------------------------- /wire/modules/Markup/MarkupHTMLPurifier/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/Attr.AllowedRel.txt: -------------------------------------------------------------------------------- 1 | Attr.AllowedRel 2 | TYPE: lookup 3 | VERSION: 1.6.0 4 | DEFAULT: array() 5 | --DESCRIPTION-- 6 | List of allowed forward document relationships in the rel attribute. Common 7 | values may be nofollow or print. By default, this is empty, meaning that no 8 | document relationships are allowed. 9 | --# vim: et sw=4 sts=4 10 | -------------------------------------------------------------------------------- /wire/modules/Markup/MarkupHTMLPurifier/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/AutoFormat.Linkify.txt: -------------------------------------------------------------------------------- 1 | AutoFormat.Linkify 2 | TYPE: bool 3 | VERSION: 2.0.1 4 | DEFAULT: false 5 | --DESCRIPTION-- 6 | 7 |

8 | This directive turns on linkification, auto-linking http, ftp and 9 | https URLs. a tags with the href attribute 10 | must be allowed. 11 |

12 | --# vim: et sw=4 sts=4 13 | -------------------------------------------------------------------------------- /wire/modules/Markup/MarkupHTMLPurifier/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/Output.FlashCompat.txt: -------------------------------------------------------------------------------- 1 | Output.FlashCompat 2 | TYPE: bool 3 | VERSION: 4.1.0 4 | DEFAULT: false 5 | --DESCRIPTION-- 6 |

7 | If true, HTML Purifier will generate Internet Explorer compatibility 8 | code for all object code. This is highly recommended if you enable 9 | %HTML.SafeObject. 10 |

11 | --# vim: et sw=4 sts=4 12 | -------------------------------------------------------------------------------- /wire/modules/Markup/MarkupHTMLPurifier/htmlpurifier/standalone/HTMLPurifier/Printer/ConfigForm.css: -------------------------------------------------------------------------------- 1 | 2 | .hp-config {} 3 | 4 | .hp-config tbody th {text-align:right; padding-right:0.5em;} 5 | .hp-config thead, .hp-config .namespace {background:#3C578C; color:#FFF;} 6 | .hp-config .namespace th {text-align:center;} 7 | .hp-config .verbose {display:none;} 8 | .hp-config .controls {text-align:center;} 9 | 10 | /* vim: et sw=4 sts=4 */ 11 | -------------------------------------------------------------------------------- /site-languages/install/files/1012/wire--modules--inputfield--inputfieldpagetable--inputfieldpagetableajax-php.json: -------------------------------------------------------------------------------- 1 | { 2 | "file": "wire\/modules\/Inputfield\/InputfieldPageTable\/InputfieldPageTableAjax.php", 3 | "textdomain": "wire--modules--inputfield--inputfieldpagetable--inputfieldpagetableajax-php", 4 | "translations": { 5 | "cf9d778e513d8981e249eef76ea5010f": { 6 | "text": "Element hinzugef\u00fcgt" 7 | } 8 | } 9 | } -------------------------------------------------------------------------------- /wire/modules/Markup/MarkupHTMLPurifier/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/Attr.DefaultInvalidImageAlt.txt: -------------------------------------------------------------------------------- 1 | Attr.DefaultInvalidImageAlt 2 | TYPE: string 3 | DEFAULT: 'Invalid image' 4 | --DESCRIPTION-- 5 | This is the content of the alt tag of an invalid image if the user had not 6 | previously specified an alt attribute. It has no effect when the image is 7 | valid but there was no alt attribute present. 8 | --# vim: et sw=4 sts=4 9 | -------------------------------------------------------------------------------- /wire/modules/Markup/MarkupHTMLPurifier/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/Core.Language.txt: -------------------------------------------------------------------------------- 1 | Core.Language 2 | TYPE: string 3 | VERSION: 2.0.0 4 | DEFAULT: 'en' 5 | --DESCRIPTION-- 6 | 7 | ISO 639 language code for localizable things in HTML Purifier to use, 8 | which is mainly error reporting. There is currently only an English (en) 9 | translation, so this directive is currently useless. 10 | --# vim: et sw=4 sts=4 11 | -------------------------------------------------------------------------------- /wire/modules/Markup/MarkupHTMLPurifier/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/Core.NormalizeNewlines.txt: -------------------------------------------------------------------------------- 1 | Core.NormalizeNewlines 2 | TYPE: bool 3 | VERSION: 4.2.0 4 | DEFAULT: true 5 | --DESCRIPTION-- 6 |

7 | Whether or not to normalize newlines to the operating 8 | system default. When false, HTML Purifier 9 | will attempt to preserve mixed newline files. 10 |

11 | --# vim: et sw=4 sts=4 12 | -------------------------------------------------------------------------------- /wire/modules/Markup/MarkupHTMLPurifier/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/Output.CommentScriptContents.txt: -------------------------------------------------------------------------------- 1 | Output.CommentScriptContents 2 | TYPE: bool 3 | VERSION: 2.0.0 4 | DEFAULT: true 5 | --DESCRIPTION-- 6 | Determines whether or not HTML Purifier should attempt to fix up the 7 | contents of script tags for legacy browsers with comments. 8 | --ALIASES-- 9 | Core.CommentScriptContents 10 | --# vim: et sw=4 sts=4 11 | -------------------------------------------------------------------------------- /wire/modules/Markup/MarkupHTMLPurifier/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/URI.Disable.txt: -------------------------------------------------------------------------------- 1 | URI.Disable 2 | TYPE: bool 3 | VERSION: 1.3.0 4 | DEFAULT: false 5 | --DESCRIPTION-- 6 | 7 |

8 | Disables all URIs in all forms. Not sure why you'd want to do that 9 | (after all, the Internet's founded on the notion of a hyperlink). 10 |

11 | 12 | --ALIASES-- 13 | Attr.DisableURI 14 | --# vim: et sw=4 sts=4 15 | -------------------------------------------------------------------------------- /wire/modules/Markup/MarkupHTMLPurifier/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/Core.EnableIDNA.txt: -------------------------------------------------------------------------------- 1 | Core.EnableIDNA 2 | TYPE: bool 3 | DEFAULT: false 4 | VERSION: 4.4.0 5 | --DESCRIPTION-- 6 | Allows international domain names in URLs. This configuration option 7 | requires the PEAR Net_IDNA2 module to be installed. It operates by 8 | punycoding any internationalized host names for maximum portability. 9 | --# vim: et sw=4 sts=4 10 | -------------------------------------------------------------------------------- /site-languages/install/info.php: -------------------------------------------------------------------------------- 1 | "Multi-Language", 4 | 'summary' => 5 | "A multi-language version of the default site profile. Front-end and back-end in English, German and Finnish, and you can " . 6 | "of course change them or add more. Uses the same template development strategies as the default intermediate profile.", 7 | 'screenshot' => "languages-screenshot.png" 8 | ); 9 | -------------------------------------------------------------------------------- /wire/modules/LanguageSupport/FieldtypeLanguageInterface.php: -------------------------------------------------------------------------------- 1 | 9 | This directive enables HTML Purifier to remove not only script tags 10 | but all of their contents. 11 |

12 | --# vim: et sw=4 sts=4 13 | -------------------------------------------------------------------------------- /wire/templates-admin/styles/font-awesome/less/bordered-pulled.less: -------------------------------------------------------------------------------- 1 | // Bordered & Pulled 2 | // ------------------------- 3 | 4 | .@{fa-css-prefix}-border { 5 | padding: .2em .25em .15em; 6 | border: solid .08em @fa-border-color; 7 | border-radius: .1em; 8 | } 9 | 10 | .pull-right { float: right; } 11 | .pull-left { float: left; } 12 | 13 | .@{fa-css-prefix} { 14 | &.pull-left { margin-right: .3em; } 15 | &.pull-right { margin-left: .3em; } 16 | } 17 | -------------------------------------------------------------------------------- /wire/modules/Markup/MarkupHTMLPurifier/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/HTML.FlashAllowFullScreen.txt: -------------------------------------------------------------------------------- 1 | HTML.FlashAllowFullScreen 2 | TYPE: bool 3 | VERSION: 4.2.0 4 | DEFAULT: false 5 | --DESCRIPTION-- 6 |

7 | Whether or not to permit embedded Flash content from 8 | %HTML.SafeObject to expand to the full screen. Corresponds to 9 | the allowFullScreen parameter. 10 |

11 | --# vim: et sw=4 sts=4 12 | -------------------------------------------------------------------------------- /wire/modules/Markup/MarkupHTMLPurifier/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/URI.HostBlacklist.txt: -------------------------------------------------------------------------------- 1 | URI.HostBlacklist 2 | TYPE: list 3 | VERSION: 1.3.0 4 | DEFAULT: array() 5 | --DESCRIPTION-- 6 | List of strings that are forbidden in the host of any URI. Use it to kill 7 | domain names of spam, etc. Note that it will catch anything in the domain, 8 | so moo.com will catch moo.com.example.com. 9 | --# vim: et sw=4 sts=4 10 | -------------------------------------------------------------------------------- /wire/templates-admin/styles/font-awesome/scss/_bordered-pulled.scss: -------------------------------------------------------------------------------- 1 | // Bordered & Pulled 2 | // ------------------------- 3 | 4 | .#{$fa-css-prefix}-border { 5 | padding: .2em .25em .15em; 6 | border: solid .08em $fa-border-color; 7 | border-radius: .1em; 8 | } 9 | 10 | .pull-right { float: right; } 11 | .pull-left { float: left; } 12 | 13 | .#{$fa-css-prefix} { 14 | &.pull-left { margin-right: .3em; } 15 | &.pull-right { margin-left: .3em; } 16 | } 17 | -------------------------------------------------------------------------------- /wire/modules/Markup/MarkupHTMLPurifier/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/Filter.Custom.txt: -------------------------------------------------------------------------------- 1 | Filter.Custom 2 | TYPE: list 3 | VERSION: 3.1.0 4 | DEFAULT: array() 5 | --DESCRIPTION-- 6 |

7 | This directive can be used to add custom filters; it is nearly the 8 | equivalent of the now deprecated HTMLPurifier->addFilter() 9 | method. Specify an array of concrete implementations. 10 |

11 | --# vim: et sw=4 sts=4 12 | -------------------------------------------------------------------------------- /wire/modules/Markup/MarkupHTMLPurifier/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/AutoFormat.Custom.txt: -------------------------------------------------------------------------------- 1 | AutoFormat.Custom 2 | TYPE: list 3 | VERSION: 2.0.1 4 | DEFAULT: array() 5 | --DESCRIPTION-- 6 | 7 |

8 | This directive can be used to add custom auto-format injectors. 9 | Specify an array of injector names (class name minus the prefix) 10 | or concrete implementations. Injector class must exist. 11 |

12 | --# vim: et sw=4 sts=4 13 | -------------------------------------------------------------------------------- /wire/templates-admin/controller.php: -------------------------------------------------------------------------------- 1 | paths->core . "admin.php"); 14 | -------------------------------------------------------------------------------- /wire/templates-admin/styles/font-awesome/less/larger.less: -------------------------------------------------------------------------------- 1 | // Icon Sizes 2 | // ------------------------- 3 | 4 | /* makes the font 33% larger relative to the icon container */ 5 | .@{fa-css-prefix}-lg { 6 | font-size: (4em / 3); 7 | line-height: (3em / 4); 8 | vertical-align: -15%; 9 | } 10 | .@{fa-css-prefix}-2x { font-size: 2em; } 11 | .@{fa-css-prefix}-3x { font-size: 3em; } 12 | .@{fa-css-prefix}-4x { font-size: 4em; } 13 | .@{fa-css-prefix}-5x { font-size: 5em; } 14 | -------------------------------------------------------------------------------- /site-languages/install/files/1012/wire--modules--inputfield--inputfieldform-module.json: -------------------------------------------------------------------------------- 1 | { 2 | "file":"wire\/modules\/Inputfield\/InputfieldForm.module", 3 | "textdomain":"wire--modules--inputfield--inputfieldform-module", 4 | "translations":{ 5 | "d359c6df99b25183d81f7d728b71de0e":{ 6 | "text":"Formular" 7 | }, 8 | "d1e114b786b9fa971fbba24b8e584a43":{ 9 | "text":"Enth\u00e4lt ein oder mehrere Formularfeld(er)" 10 | } 11 | } 12 | } -------------------------------------------------------------------------------- /wire/modules/Markup/MarkupHTMLPurifier/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/Attr.IDBlacklistRegexp.txt: -------------------------------------------------------------------------------- 1 | Attr.IDBlacklistRegexp 2 | TYPE: string/null 3 | VERSION: 1.6.0 4 | DEFAULT: NULL 5 | --DESCRIPTION-- 6 | PCRE regular expression to be matched against all IDs. If the expression is 7 | matches, the ID is rejected. Use this with care: may cause significant 8 | degradation. ID matching is done after all other validation. 9 | --# vim: et sw=4 sts=4 10 | -------------------------------------------------------------------------------- /wire/modules/Markup/MarkupHTMLPurifier/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/HTML.Parent.txt: -------------------------------------------------------------------------------- 1 | HTML.Parent 2 | TYPE: string 3 | VERSION: 1.3.0 4 | DEFAULT: 'div' 5 | --DESCRIPTION-- 6 | 7 |

8 | String name of element that HTML fragment passed to library will be 9 | inserted in. An interesting variation would be using span as the 10 | parent element, meaning that only inline tags would be allowed. 11 |

12 | --# vim: et sw=4 sts=4 13 | -------------------------------------------------------------------------------- /site-languages/install/files/1012/wire--core--wiretempdir-php.json: -------------------------------------------------------------------------------- 1 | { 2 | "file": "wire\/core\/WireTempDir.php", 3 | "textdomain": "wire--core--wiretempdir-php", 4 | "translations": { 5 | "fcecae7cd3a639caff1a6a7c895c954d": { 6 | "text": "Kann tempor\u00e4res Verzeichnis nicht erstellen" 7 | }, 8 | "5d73c732a700aaa27e07ffd0f638ecc8": { 9 | "text": "Kann tempor\u00e4res Verzeichnis nicht l\u00f6schen" 10 | } 11 | } 12 | } -------------------------------------------------------------------------------- /site-languages/install/files/1012/wire--modules--inputfield--inputfieldfloat-module.json: -------------------------------------------------------------------------------- 1 | { 2 | "file":"wire\/modules\/Inputfield\/InputfieldFloat.module", 3 | "textdomain":"wire--modules--inputfield--inputfieldfloat-module", 4 | "translations":{ 5 | "7de752758d9c197324e94fd4a993f9d2":{ 6 | "text":"Flie\u00dfkommazahl mit Genauigkeit" 7 | }, 8 | "22ae0e2b89e5e3d477f988cc36d3272b":{ 9 | "text":"Flie\u00dfkommazahl" 10 | } 11 | } 12 | } -------------------------------------------------------------------------------- /site-languages/install/files/1012/wire--modules--markup--markuppagernav--markuppagernav-module.json: -------------------------------------------------------------------------------- 1 | { 2 | "file":"wire\/modules\/Markup\/MarkupPagerNav\/MarkupPagerNav.module", 3 | "textdomain":"wire--modules--markup--markuppagernav--markuppagernav-module", 4 | "translations":{ 5 | "10ac3d04253ef7e1ddc73e6091c0cd55":{ 6 | "text":"Vorw\u00e4rts" 7 | }, 8 | "14230d11143a03f4330c6433d5032a9d":{ 9 | "text":"Zur\u00fcck" 10 | } 11 | } 12 | } -------------------------------------------------------------------------------- /wire/modules/Markup/MarkupHTMLPurifier/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/Attr.DefaultInvalidImage.txt: -------------------------------------------------------------------------------- 1 | Attr.DefaultInvalidImage 2 | TYPE: string 3 | DEFAULT: '' 4 | --DESCRIPTION-- 5 | This is the default image an img tag will be pointed to if it does not have 6 | a valid src attribute. In future versions, we may allow the image tag to 7 | be removed completely, but due to design issues, this is not possible right 8 | now. 9 | --# vim: et sw=4 sts=4 10 | -------------------------------------------------------------------------------- /wire/modules/Markup/MarkupHTMLPurifier/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/AutoFormat.RemoveSpansWithoutAttributes.txt: -------------------------------------------------------------------------------- 1 | AutoFormat.RemoveSpansWithoutAttributes 2 | TYPE: bool 3 | VERSION: 4.0.1 4 | DEFAULT: false 5 | --DESCRIPTION-- 6 |

7 | This directive causes span tags without any attributes 8 | to be removed. It will also remove spans that had all attributes 9 | removed during processing. 10 |

11 | --# vim: et sw=4 sts=4 12 | -------------------------------------------------------------------------------- /wire/templates-admin/styles/font-awesome/scss/_larger.scss: -------------------------------------------------------------------------------- 1 | // Icon Sizes 2 | // ------------------------- 3 | 4 | /* makes the font 33% larger relative to the icon container */ 5 | .#{$fa-css-prefix}-lg { 6 | font-size: (4em / 3); 7 | line-height: (3em / 4); 8 | vertical-align: -15%; 9 | } 10 | .#{$fa-css-prefix}-2x { font-size: 2em; } 11 | .#{$fa-css-prefix}-3x { font-size: 3em; } 12 | .#{$fa-css-prefix}-4x { font-size: 4em; } 13 | .#{$fa-css-prefix}-5x { font-size: 5em; } 14 | -------------------------------------------------------------------------------- /site-languages/install/files/1012/wire--modules--inputfield--inputfieldasmselect--inputfieldasmselect-module.json: -------------------------------------------------------------------------------- 1 | { 2 | "file":"wire\/modules\/Inputfield\/InputfieldAsmSelect\/InputfieldAsmSelect.module", 3 | "textdomain":"wire--modules--inputfield--inputfieldasmselect--inputfieldasmselect-module", 4 | "translations":{ 5 | "74c0ecf830d7e594ea8491c932418590":{ 6 | "text":"Mehrfach-Auswahl; Progressive Enhancement, um mehrere Elemente auszuw\u00e4hlen" 7 | } 8 | } 9 | } -------------------------------------------------------------------------------- /wire/modules/Markup/MarkupHTMLPurifier/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/AutoFormat.PurifierLinkify.txt: -------------------------------------------------------------------------------- 1 | AutoFormat.PurifierLinkify 2 | TYPE: bool 3 | VERSION: 2.0.1 4 | DEFAULT: false 5 | --DESCRIPTION-- 6 | 7 |

8 | Internal auto-formatter that converts configuration directives in 9 | syntax %Namespace.Directive to links. a tags 10 | with the href attribute must be allowed. 11 |

12 | --# vim: et sw=4 sts=4 13 | -------------------------------------------------------------------------------- /wire/modules/Markup/MarkupHTMLPurifier/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/URI.OverrideAllowedSchemes.txt: -------------------------------------------------------------------------------- 1 | URI.OverrideAllowedSchemes 2 | TYPE: bool 3 | DEFAULT: true 4 | --DESCRIPTION-- 5 | If this is set to true (which it is by default), you can override 6 | %URI.AllowedSchemes by simply registering a HTMLPurifier_URIScheme to the 7 | registry. If false, you will also have to update that directive in order 8 | to add more schemes. 9 | --# vim: et sw=4 sts=4 10 | -------------------------------------------------------------------------------- /site-blank/templates/basic-page.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | <?php echo $page->title; ?> 6 | 7 | 8 | 9 |

title; ?>

10 | editable()) echo "

Edit

"; ?> 11 | 12 | 13 | -------------------------------------------------------------------------------- /wire/modules/AdminTheme/AdminThemeReno/controller.php: -------------------------------------------------------------------------------- 1 | paths->core . "admin.php"); 14 | -------------------------------------------------------------------------------- /wire/modules/Markup/MarkupHTMLPurifier/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/AutoFormat.DisplayLinkURI.txt: -------------------------------------------------------------------------------- 1 | AutoFormat.DisplayLinkURI 2 | TYPE: bool 3 | VERSION: 3.2.0 4 | DEFAULT: false 5 | --DESCRIPTION-- 6 |

7 | This directive turns on the in-text display of URIs in <a> tags, and disables 8 | those links. For example, example becomes 9 | example (http://example.com). 10 |

11 | --# vim: et sw=4 sts=4 12 | -------------------------------------------------------------------------------- /wire/modules/System/SystemUpdater/SystemUpdate4.php: -------------------------------------------------------------------------------- 1 | modules->resetCache(); 11 | $this->modules->install('AdminThemeDefault'); 12 | $this->message("Added new default admin theme. To configure or remove this theme, see Modules > Core > Admin > Default Admin Theme."); 13 | return true; 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | ProcessWire is Copyright 2015 by Ryan Cramer / Ryan Cramer Design, LLC 2 | Licensed under Mozilla Public License v2.0 3 | http://mozilla.org/MPL/2.0/ 4 | 5 | Some files in ProcessWire use different licenses, such as the MIT license 6 | for example. See individual files for details or look for LICENSE.* files 7 | in a given directory. If a non-minified file indicates no license and 8 | copyright is not someone other than Ryan Cramer, the MPL 2.0 license may 9 | be assumed. 10 | 11 | -------------------------------------------------------------------------------- /wire/modules/AdminTheme/AdminThemeDefault/controller.php: -------------------------------------------------------------------------------- 1 | paths->core . "admin.php"); 14 | -------------------------------------------------------------------------------- /wire/modules/Markup/MarkupHTMLPurifier/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/HTML.Proprietary.txt: -------------------------------------------------------------------------------- 1 | HTML.Proprietary 2 | TYPE: bool 3 | VERSION: 3.1.0 4 | DEFAULT: false 5 | --DESCRIPTION-- 6 |

7 | Whether or not to allow proprietary elements and attributes in your 8 | documents, as per HTMLPurifier_HTMLModule_Proprietary. 9 | Warning: This can cause your documents to stop 10 | validating! 11 |

12 | --# vim: et sw=4 sts=4 13 | -------------------------------------------------------------------------------- /wire/modules/Markup/MarkupHTMLPurifier/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/Core.RemoveInvalidImg.txt: -------------------------------------------------------------------------------- 1 | Core.RemoveInvalidImg 2 | TYPE: bool 3 | DEFAULT: true 4 | VERSION: 1.3.0 5 | --DESCRIPTION-- 6 | 7 |

8 | This directive enables pre-emptive URI checking in img 9 | tags, as the attribute validation strategy is not authorized to 10 | remove elements from the document. Revert to pre-1.3.0 behavior by setting to false. 11 |

12 | --# vim: et sw=4 sts=4 13 | -------------------------------------------------------------------------------- /wire/templates-admin/styles/font-awesome/less/list.less: -------------------------------------------------------------------------------- 1 | // List Icons 2 | // ------------------------- 3 | 4 | .@{fa-css-prefix}-ul { 5 | padding-left: 0; 6 | margin-left: @fa-li-width; 7 | list-style-type: none; 8 | > li { position: relative; } 9 | } 10 | .@{fa-css-prefix}-li { 11 | position: absolute; 12 | left: -@fa-li-width; 13 | width: @fa-li-width; 14 | top: (2em / 14); 15 | text-align: center; 16 | &.@{fa-css-prefix}-lg { 17 | left: (-@fa-li-width + (4em / 14)); 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /site-beginner/templates/_init.php: -------------------------------------------------------------------------------- 1 | prependTemplateFile 7 | * option specified in your /site/config.php. 8 | * 9 | * You can initialize anything you want to here. In the case of this beginner profile, 10 | * we are using it just to include another file with shared functions. 11 | * 12 | */ 13 | 14 | include_once("./_func.php"); // include our shared functions 15 | 16 | -------------------------------------------------------------------------------- /site-languages/install/files/1012/wire--modules--process--processpageview-module.json: -------------------------------------------------------------------------------- 1 | { 2 | "file": "wire\/modules\/Process\/ProcessPageView.module", 3 | "textdomain": "wire--modules--process--processpageview-module", 4 | "translations": { 5 | "a479e6c423ecad082c067f87a37c152a": { 6 | "text": "Alle Seitenansichten werden durch diesen Prozess geroutet" 7 | }, 8 | "ba53c4481b0a7190fdf6407fd2e636d7": { 9 | "text": "Seitenansicht" 10 | } 11 | } 12 | } -------------------------------------------------------------------------------- /wire/modules/Markup/MarkupHTMLPurifier/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/AutoFormat.PurifierLinkify.DocURL.txt: -------------------------------------------------------------------------------- 1 | AutoFormat.PurifierLinkify.DocURL 2 | TYPE: string 3 | VERSION: 2.0.1 4 | DEFAULT: '#%s' 5 | ALIASES: AutoFormatParam.PurifierLinkifyDocURL 6 | --DESCRIPTION-- 7 |

8 | Location of configuration documentation to link to, let %s substitute 9 | into the configuration's namespace and directive names sans the percent 10 | sign. 11 |

12 | --# vim: et sw=4 sts=4 13 | -------------------------------------------------------------------------------- /wire/modules/Markup/MarkupHTMLPurifier/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/Cache.SerializerPath.txt: -------------------------------------------------------------------------------- 1 | Cache.SerializerPath 2 | TYPE: string/null 3 | VERSION: 2.0.0 4 | DEFAULT: NULL 5 | --DESCRIPTION-- 6 | 7 |

8 | Absolute path with no trailing slash to store serialized definitions in. 9 | Default is within the 10 | HTML Purifier library inside DefinitionCache/Serializer. This 11 | path must be writable by the webserver. 12 |

13 | --# vim: et sw=4 sts=4 14 | -------------------------------------------------------------------------------- /wire/templates-admin/styles/font-awesome/less/core.less: -------------------------------------------------------------------------------- 1 | // Base Class Definition 2 | // ------------------------- 3 | 4 | .@{fa-css-prefix} { 5 | display: inline-block; 6 | font: normal normal normal 14px/1 FontAwesome; // shortening font declaration 7 | font-size: inherit; // can't have font-size inherit on line above, so need to override 8 | text-rendering: auto; // optimizelegibility throws things off #1094 9 | -webkit-font-smoothing: antialiased; 10 | -moz-osx-font-smoothing: grayscale; 11 | } 12 | -------------------------------------------------------------------------------- /wire/templates-admin/styles/font-awesome/scss/_core.scss: -------------------------------------------------------------------------------- 1 | // Base Class Definition 2 | // ------------------------- 3 | 4 | .#{$fa-css-prefix} { 5 | display: inline-block; 6 | font: normal normal normal 14px/1 FontAwesome; // shortening font declaration 7 | font-size: inherit; // can't have font-size inherit on line above, so need to override 8 | text-rendering: auto; // optimizelegibility throws things off #1094 9 | -webkit-font-smoothing: antialiased; 10 | -moz-osx-font-smoothing: grayscale; 11 | } 12 | -------------------------------------------------------------------------------- /wire/templates-admin/styles/font-awesome/scss/_list.scss: -------------------------------------------------------------------------------- 1 | // List Icons 2 | // ------------------------- 3 | 4 | .#{$fa-css-prefix}-ul { 5 | padding-left: 0; 6 | margin-left: $fa-li-width; 7 | list-style-type: none; 8 | > li { position: relative; } 9 | } 10 | .#{$fa-css-prefix}-li { 11 | position: absolute; 12 | left: -$fa-li-width; 13 | width: $fa-li-width; 14 | top: (2em / 14); 15 | text-align: center; 16 | &.#{$fa-css-prefix}-lg { 17 | left: -$fa-li-width + (4em / 14); 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /site-default/install/info.php: -------------------------------------------------------------------------------- 1 | "Default (Intermediate Edition)", 4 | 'summary' => 5 | "A minimal responsive site profile that serves as a good starting point for new sites or for learning about ProcessWire. " . 6 | "This intermediate edition is almost identical to the beginner edition, except that it focuses on using alternate and more " . 7 | "advanced strategies for template files.", 8 | 'screenshot' => "screenshot.png" 9 | ); 10 | -------------------------------------------------------------------------------- /site-languages/install/files/1012/wire--core--pages-php.json: -------------------------------------------------------------------------------- 1 | { 2 | "file": "wire\/core\/Pages.php", 3 | "textdomain": "wire--core--pages-php", 4 | "translations": { 5 | "9ba12390dc16d0bb6b897e136830b4e4": { 6 | "text": "Unbenannte Seite" 7 | }, 8 | "61bfee279f0e534bdc1ffbc6700e322e": { 9 | "text": "unbenannt" 10 | }, 11 | "f7b20059533e8267e92eecda0b6eee8e": { 12 | "text": "Fehler beim speichern von Feld \"%s\"" 13 | } 14 | } 15 | } -------------------------------------------------------------------------------- /site-languages/install/files/1012/wire--modules--inputfield--inputfieldsubmit--inputfieldsubmit-module.json: -------------------------------------------------------------------------------- 1 | { 2 | "file":"wire\/modules\/Inputfield\/InputfieldSubmit\/InputfieldSubmit.module", 3 | "textdomain":"wire--modules--inputfield--inputfieldsubmit--inputfieldsubmit-module", 4 | "translations":{ 5 | "a4d3b161ce1309df1c4e25df28694b7b":{ 6 | "text":"Absenden" 7 | }, 8 | "297eb192f98270827a86fb18005b1e35":{ 9 | "text":"Button, um Formulare abzusenden" 10 | } 11 | } 12 | } -------------------------------------------------------------------------------- /wire/modules/Markup/MarkupHTMLPurifier/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/CSS.AllowedFonts.txt: -------------------------------------------------------------------------------- 1 | CSS.AllowedFonts 2 | TYPE: lookup/null 3 | VERSION: 4.3.0 4 | DEFAULT: NULL 5 | --DESCRIPTION-- 6 |

7 | Allows you to manually specify a set of allowed fonts. If 8 | NULL, all fonts are allowed. This directive 9 | affects generic names (serif, sans-serif, monospace, cursive, 10 | fantasy) as well as specific font families. 11 |

12 | --# vim: et sw=4 sts=4 13 | -------------------------------------------------------------------------------- /site-languages/install/files/1012/wire--modules--inputfield--inputfieldpagetitle--inputfieldpagetitle-module.json: -------------------------------------------------------------------------------- 1 | { 2 | "file": "wire\\modules\\Inputfield\\InputfieldPageTitle\\InputfieldPageTitle.module", 3 | "textdomain": "wire--modules--inputfield--inputfieldpagetitle--inputfieldpagetitle-module", 4 | "translations": { 5 | "dc643f0a55e724a742f7bcc43fa5b84e": { 6 | "text": "Verwaltet die Eingabe des Seitentitels und automatische Erstellung des Seitennamens (wenn Name leer ist)" 7 | } 8 | } 9 | } -------------------------------------------------------------------------------- /site-languages/install/files/1012/wire--modules--process--processpermission--processpermission-module.json: -------------------------------------------------------------------------------- 1 | { 2 | "file":"wire\/modules\/Process\/ProcessPermission\/ProcessPermission.module", 3 | "textdomain":"wire--modules--process--processpermission--processpermission-module", 4 | "translations":{ 5 | "175111b089b0e62fbde2b5344f2a547f":{ 6 | "text":"System-Berechtigungen verwalten" 7 | }, 8 | "d08ccf52b4cdd08e41cfb99ec42e0b29":{ 9 | "text":"Berechtigungen" 10 | } 11 | } 12 | } -------------------------------------------------------------------------------- /wire/modules/Markup/MarkupHTMLPurifier/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/HTML.AllowedComments.txt: -------------------------------------------------------------------------------- 1 | HTML.AllowedComments 2 | TYPE: lookup 3 | VERSION: 4.4.0 4 | DEFAULT: array() 5 | --DESCRIPTION-- 6 | A whitelist which indicates what explicit comment bodies should be 7 | allowed, modulo leading and trailing whitespace. See also %HTML.AllowedCommentsRegexp 8 | (these directives are union'ed together, so a comment is considered 9 | valid if any directive deems it valid.) 10 | --# vim: et sw=4 sts=4 11 | -------------------------------------------------------------------------------- /site-blank/templates/admin.php: -------------------------------------------------------------------------------- 1 | paths->adminTemplates . 'controller.php'); 16 | -------------------------------------------------------------------------------- /site-classic/templates/admin.php: -------------------------------------------------------------------------------- 1 | paths->adminTemplates . 'controller.php'); 16 | -------------------------------------------------------------------------------- /site-default/templates/admin.php: -------------------------------------------------------------------------------- 1 | paths->adminTemplates . 'controller.php'); 16 | -------------------------------------------------------------------------------- /site-languages/install/files/1012/wire--modules--admintheme--adminthemedefault--adminthemedefault-module.json: -------------------------------------------------------------------------------- 1 | { 2 | "file": "wire\/modules\/AdminTheme\/AdminThemeDefault\/AdminThemeDefault.module", 3 | "textdomain": "wire--modules--admintheme--adminthemedefault--adminthemedefault-module", 4 | "translations": { 5 | "f0a5fc96d36fdda66a2a10b79be6d7fb": { 6 | "text": "Farbgebung" 7 | }, 8 | "d35b51b639528d580362ca7042de6a0e": { 9 | "text": "Klassisch" 10 | } 11 | } 12 | } -------------------------------------------------------------------------------- /wire/modules/Markup/MarkupHTMLPurifier/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/Output.Newline.txt: -------------------------------------------------------------------------------- 1 | Output.Newline 2 | TYPE: string/null 3 | VERSION: 2.0.1 4 | DEFAULT: NULL 5 | --DESCRIPTION-- 6 | 7 |

8 | Newline string to format final output with. If left null, HTML Purifier 9 | will auto-detect the default newline type of the system and use that; 10 | you can manually override it here. Remember, \r\n is Windows, \r 11 | is Mac, and \n is Unix. 12 |

13 | --# vim: et sw=4 sts=4 14 | -------------------------------------------------------------------------------- /site-beginner/templates/admin.php: -------------------------------------------------------------------------------- 1 | paths->adminTemplates . 'controller.php'); 16 | -------------------------------------------------------------------------------- /site-languages/templates/admin.php: -------------------------------------------------------------------------------- 1 | paths->adminTemplates . 'controller.php'); 16 | -------------------------------------------------------------------------------- /wire/modules/System/SystemUpdater/SystemUpdate1.php: -------------------------------------------------------------------------------- 1 | db->query("SHOW COLUMNS FROM fieldgroups_fields WHERE field='data'"); 11 | if(!$result->num_rows) { 12 | $this->db->query("ALTER TABLE fieldgroups_fields ADD data TEXT"); 13 | $this->message("Added field template context support"); 14 | } 15 | return true; 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /wire/templates-admin/styles/font-awesome/scss/font-awesome.scss: -------------------------------------------------------------------------------- 1 | /*! 2 | * Font Awesome 4.2.0 by @davegandy - http://fontawesome.io - @fontawesome 3 | * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License) 4 | */ 5 | 6 | @import "variables"; 7 | @import "mixins"; 8 | @import "path"; 9 | @import "core"; 10 | @import "larger"; 11 | @import "fixed-width"; 12 | @import "list"; 13 | @import "bordered-pulled"; 14 | @import "spinning"; 15 | @import "rotated-flipped"; 16 | @import "stacked"; 17 | @import "icons"; 18 | -------------------------------------------------------------------------------- /site-languages/install/files/1012/wire--modules--process--processhome-module.json: -------------------------------------------------------------------------------- 1 | { 2 | "file":"wire\/modules\/Process\/ProcessHome.module", 3 | "textdomain":"wire--modules--process--processhome-module", 4 | "translations":{ 5 | "3555f18b32d499274ee3fcfb73c15558":{ 6 | "text":"Agiert als Platzhalter-Prozess f\u00fcr die Wurzelseite des Adminbereiches. Stellt die richtige Flow-Kontrolle nach dem Login sicher." 7 | }, 8 | "56cc559d234df2ffabc88b8926592264":{ 9 | "text":"Admin Start" 10 | } 11 | } 12 | } -------------------------------------------------------------------------------- /wire/modules/Markup/MarkupHTMLPurifier/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/AutoFormat.RemoveEmpty.RemoveNbsp.Exceptions.txt: -------------------------------------------------------------------------------- 1 | AutoFormat.RemoveEmpty.RemoveNbsp.Exceptions 2 | TYPE: lookup 3 | VERSION: 4.0.0 4 | DEFAULT: array('td' => true, 'th' => true) 5 | --DESCRIPTION-- 6 |

7 | When %AutoFormat.RemoveEmpty and %AutoFormat.RemoveEmpty.RemoveNbsp 8 | are enabled, this directive defines what HTML elements should not be 9 | removede if they have only a non-breaking space in them. 10 |

11 | --# vim: et sw=4 sts=4 12 | -------------------------------------------------------------------------------- /site-classic/templates/sitemap.php: -------------------------------------------------------------------------------- 1 | {$page->title} "; 13 | 14 | if($page->numChildren) { 15 | echo ""; 18 | } 19 | 20 | echo ""; 21 | } 22 | 23 | echo ""; 26 | 27 | include("./foot.inc"); 28 | 29 | -------------------------------------------------------------------------------- /wire/modules/Markup/MarkupHTMLPurifier/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/Cache.DefinitionImpl.txt: -------------------------------------------------------------------------------- 1 | Cache.DefinitionImpl 2 | TYPE: string/null 3 | VERSION: 2.0.0 4 | DEFAULT: 'Serializer' 5 | --DESCRIPTION-- 6 | 7 | This directive defines which method to use when caching definitions, 8 | the complex data-type that makes HTML Purifier tick. Set to null 9 | to disable caching (not recommended, as you will see a definite 10 | performance degradation). 11 | 12 | --ALIASES-- 13 | Core.DefinitionCache 14 | --# vim: et sw=4 sts=4 15 | -------------------------------------------------------------------------------- /site-languages/install/files/1012/wire--core--field-php.json: -------------------------------------------------------------------------------- 1 | { 2 | "file":"wire\/core\/Field.php", 3 | "textdomain":"wire--core--field-php", 4 | "translations":{ 5 | "3ec365dd533ddb7ef3d1c111186ce872":{ 6 | "text":"Details" 7 | }, 8 | "2d4fb1895f6c380c74480ec133a15230":{ 9 | "text":"Eingabefeld Einstellung" 10 | }, 11 | "324118a6721dd6b8a9b9f4e327df2bf5":{ 12 | "text":"Eingabe" 13 | }, 14 | "5264933a7701e0e7acd07de875087cca":{ 15 | "text":"Feldtyp Details" 16 | } 17 | } 18 | } -------------------------------------------------------------------------------- /wire/modules/Markup/MarkupHTMLPurifier/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/URI.MakeAbsolute.txt: -------------------------------------------------------------------------------- 1 | URI.MakeAbsolute 2 | TYPE: bool 3 | VERSION: 2.1.0 4 | DEFAULT: false 5 | --DESCRIPTION-- 6 | 7 |

8 | Converts all URIs into absolute forms. This is useful when the HTML 9 | being filtered assumes a specific base path, but will actually be 10 | viewed in a different context (and setting an alternate base URI is 11 | not possible). %URI.Base must be set for this directive to work. 12 |

13 | --# vim: et sw=4 sts=4 14 | -------------------------------------------------------------------------------- /wire/modules/Markup/MarkupHTMLPurifier/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/HTML.SafeIframe.txt: -------------------------------------------------------------------------------- 1 | HTML.SafeIframe 2 | TYPE: bool 3 | VERSION: 4.4.0 4 | DEFAULT: false 5 | --DESCRIPTION-- 6 |

7 | Whether or not to permit iframe tags in untrusted documents. This 8 | directive must be accompanied by a whitelist of permitted iframes, 9 | such as %URI.SafeIframeRegexp, otherwise it will fatally error. 10 | This directive has no effect on strict doctypes, as iframes are not 11 | valid. 12 |

13 | --# vim: et sw=4 sts=4 14 | -------------------------------------------------------------------------------- /wire/modules/Process/ProcessPageEdit/ProcessPageEdit.min.js: -------------------------------------------------------------------------------- 1 | function initPageEditForm(){$("#ProcessPageEdit:not(.ProcessPageEditSingleField)").WireTabs({items:$("#ProcessPageEdit > .Inputfields > .InputfieldWrapper"),id:"PageEditTabs",skipRememberTabIDs:["ProcessPageEditDelete"]});$("#submit_delete").click(function(){if(!$("#delete_page").is(":checked")){$("#wrap_delete_page label").effect("highlight",{},500);return}$(this).before("");$("#ProcessPageEdit").submit()});$(document).on("click","#AddPageBtn",function(){return false})}; -------------------------------------------------------------------------------- /wire/templates-admin/styles/install.css: -------------------------------------------------------------------------------- 1 | #content strong { 2 | font-weight: bold; 3 | } 4 | 5 | #content li { 6 | margin: 3px 0; 7 | padding: 3px 4px; 8 | } 9 | 10 | #content a { 11 | font-weight: bold; 12 | } 13 | 14 | #content label { 15 | font-weight: bold; 16 | } 17 | 18 | #content button { 19 | padding: 2px 7px 2px 0; 20 | font-size: 1em; 21 | } 22 | 23 | #content .ui-state-error { 24 | font-weight: bold; 25 | } 26 | 27 | #content h2 { 28 | margin-top: 1.5em; 29 | } 30 | 31 | #content form h2:first-child { 32 | margin-top: 0; 33 | } 34 | 35 | -------------------------------------------------------------------------------- /site-languages/install/files/1012/wire--modules--inputfield--inputfieldname-module.json: -------------------------------------------------------------------------------- 1 | { 2 | "file":"wire\/modules\/Inputfield\/InputfieldName.module", 3 | "textdomain":"wire--modules--inputfield--inputfieldname-module", 4 | "translations":{ 5 | "05241f55e363027bb20f4669d784c28e":{ 6 | "text":"Jede Kombination aus Buchstaben (a-z), Zahlen (0-9) und Unterstrich(en) (keine Leerzeichen)." 7 | }, 8 | "e5e43bcb90e7ae502c28ecb1089b3aa7":{ 9 | "text":"Texteingabe, die als Namensfeld in ProcessWire g\u00fcltig ist" 10 | } 11 | } 12 | } -------------------------------------------------------------------------------- /wire/modules/Jquery/JqueryMagnific/JqueryMagnific.module: -------------------------------------------------------------------------------- 1 | 'jQuery Magnific Popup', 8 | 'version' => 1, 9 | 'summary' => 'Provides lightbox capability for image galleries. Replacement for FancyBox. Uses Magnific Popup by @dimsemenov.', 10 | 'href' => 'http://dimsemenov.com/plugins/magnific-popup/', 11 | ); 12 | } 13 | 14 | // note ModuleJS automatically loads any JS or CSS files with the same basename as this module 15 | } 16 | -------------------------------------------------------------------------------- /wire/modules/Markup/MarkupHTMLPurifier/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/Core.RemoveProcessingInstructions.txt: -------------------------------------------------------------------------------- 1 | Core.RemoveProcessingInstructions 2 | TYPE: bool 3 | VERSION: 4.2.0 4 | DEFAULT: false 5 | --DESCRIPTION-- 6 | Instead of escaping processing instructions in the form <? ... 7 | ?>, remove it out-right. This may be useful if the HTML 8 | you are validating contains XML processing instruction gunk, however, 9 | it can also be user-unfriendly for people attempting to post PHP 10 | snippets. 11 | --# vim: et sw=4 sts=4 12 | -------------------------------------------------------------------------------- /wire/modules/Inputfield/InputfieldPageTitle/InputfieldPageTitle.module: -------------------------------------------------------------------------------- 1 | __('Page Title', __FILE__), // Module Title 11 | 'summary' => __('Handles input of Page Title and auto-generation of Page Name (when name is blank)', __FILE__), // Module Summary 12 | 'version' => 102, 13 | 'permanent' => true, 14 | ); 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /wire/modules/Process/ProcessPageAdd/ProcessPageAdd.css: -------------------------------------------------------------------------------- 1 | /** 2 | * Provide an obvious left margin for the parent page selector list 3 | * 4 | */ 5 | .InputfieldPageListSelect .PageListRoot > .PageList { 6 | margin-left: 2em; 7 | } 8 | 9 | /** 10 | * Position the submit buttons horizontal to each other by making them inline 11 | * 12 | */ 13 | 14 | .Inputfields .InputfieldSubmit, 15 | .Inputfields .InputfieldSubmit .ui-widget-content { 16 | display: inline; 17 | } 18 | 19 | .content dl.nav dd ul { 20 | margin: 0; 21 | } 22 | .content dl.nav dd ul li { 23 | margin: 0; 24 | } 25 | -------------------------------------------------------------------------------- /wire/modules/Inputfield/InputfieldPageName/InputfieldPageName.css: -------------------------------------------------------------------------------- 1 | .InputfieldPageNameURL { 2 | font-family: Monaco, Courier, monospace; 3 | } 4 | 5 | .InputfieldPageName .LanguageSupport { 6 | margin-bottom: 1em; 7 | 8 | } 9 | .InputfieldPageName .LanguageSupport .InputfieldPageNameURL { 10 | margin-bottom: 0; 11 | } 12 | 13 | 14 | .InputfieldPageName .LanguageSupport label.checkbox { 15 | margin-left: 0.5em; 16 | display: inline; 17 | } 18 | 19 | 20 | .InputfieldPageName .LanguageSupport input.InputfieldMaxWidth { 21 | /* make room for checkbox */ 22 | width: 80%; 23 | } -------------------------------------------------------------------------------- /wire/templates-admin/styles/font-awesome/less/font-awesome.less: -------------------------------------------------------------------------------- 1 | /*! 2 | * Font Awesome 4.2.0 by @davegandy - http://fontawesome.io - @fontawesome 3 | * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License) 4 | */ 5 | 6 | @import "variables.less"; 7 | @import "mixins.less"; 8 | @import "path.less"; 9 | @import "core.less"; 10 | @import "larger.less"; 11 | @import "fixed-width.less"; 12 | @import "list.less"; 13 | @import "bordered-pulled.less"; 14 | @import "spinning.less"; 15 | @import "rotated-flipped.less"; 16 | @import "stacked.less"; 17 | @import "icons.less"; 18 | -------------------------------------------------------------------------------- /site-beginner/templates/_foot.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 20 | 21 | 22 | 23 | -------------------------------------------------------------------------------- /site-languages/install/files/1012/wire--modules--fieldtype--fieldtypetext-module.json: -------------------------------------------------------------------------------- 1 | { 2 | "file":"wire\/modules\/Fieldtype\/FieldtypeText.module", 3 | "textdomain":"wire--modules--fieldtype--fieldtypetext-module", 4 | "translations":{ 5 | "82829c5912f395b029a87c565359835c":{ 6 | "text":"Textformatierung" 7 | }, 8 | "965a2e6ce23bd9e9ca5122fb9862be60":{ 9 | "text":"Wenn Sie w\u00e4hrend der Vorbereitung f\u00fcr die Ausgabe eine automatische Formatierung anwenden m\u00f6chten, w\u00e4hle, Sie eine oder mehrere Formatierungen von oben." 10 | } 11 | } 12 | } -------------------------------------------------------------------------------- /wire/modules/Markup/MarkupHTMLPurifier/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/Core.CollectErrors.txt: -------------------------------------------------------------------------------- 1 | Core.CollectErrors 2 | TYPE: bool 3 | VERSION: 2.0.0 4 | DEFAULT: false 5 | --DESCRIPTION-- 6 | 7 | Whether or not to collect errors found while filtering the document. This 8 | is a useful way to give feedback to your users. Warning: 9 | Currently this feature is very patchy and experimental, with lots of 10 | possible error messages not yet implemented. It will not cause any 11 | problems, but it may not help your users either. 12 | --# vim: et sw=4 sts=4 13 | -------------------------------------------------------------------------------- /site-languages/install/files/1012/wire--modules--inputfield--inputfieldtextarea-module.json: -------------------------------------------------------------------------------- 1 | { 2 | "file":"wire\/modules\/Inputfield\/InputfieldTextarea.module", 3 | "textdomain":"wire--modules--inputfield--inputfieldtextarea-module", 4 | "translations":{ 5 | "530f488f7a9800411efc6926ab189708":{ 6 | "text":"Zeilen" 7 | }, 8 | "c1fa39608b74e309ed351df551eacafd":{ 9 | "text":"Anzahl der Zeilen, die initial f\u00fcr diese Feld ausgegeben werden" 10 | }, 11 | "2241a30b27a648ef55d21c01f1cda82e":{ 12 | "text":"Mehrzeiliger Text" 13 | } 14 | } 15 | } -------------------------------------------------------------------------------- /wire/modules/Markup/MarkupHTMLPurifier/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/URI.DisableExternal.txt: -------------------------------------------------------------------------------- 1 | URI.DisableExternal 2 | TYPE: bool 3 | VERSION: 1.2.0 4 | DEFAULT: false 5 | --DESCRIPTION-- 6 | Disables links to external websites. This is a highly effective anti-spam 7 | and anti-pagerank-leech measure, but comes at a hefty price: nolinks or 8 | images outside of your domain will be allowed. Non-linkified URIs will 9 | still be preserved. If you want to be able to link to subdomains or use 10 | absolute URIs, specify %URI.Host for your website. 11 | --# vim: et sw=4 sts=4 12 | -------------------------------------------------------------------------------- /wire/modules/Markup/MarkupHTMLPurifier/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/HTML.SafeObject.txt: -------------------------------------------------------------------------------- 1 | HTML.SafeObject 2 | TYPE: bool 3 | VERSION: 3.1.1 4 | DEFAULT: false 5 | --DESCRIPTION-- 6 |

7 | Whether or not to permit object tags in documents, with a number of extra 8 | security features added to prevent script execution. This is similar to 9 | what websites like MySpace do to object tags. You should also enable 10 | %Output.FlashCompat in order to generate Internet Explorer 11 | compatibility code for your object tags. 12 |

13 | --# vim: et sw=4 sts=4 14 | -------------------------------------------------------------------------------- /wire/modules/Markup/MarkupHTMLPurifier/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/URI.DisableResources.txt: -------------------------------------------------------------------------------- 1 | URI.DisableResources 2 | TYPE: bool 3 | VERSION: 4.2.0 4 | DEFAULT: false 5 | --DESCRIPTION-- 6 |

7 | Disables embedding resources, essentially meaning no pictures. You can 8 | still link to them though. See %URI.DisableExternalResources for why 9 | this might be a good idea. 10 |

11 |

12 | Note: While this directive has been available since 1.3.0, 13 | it didn't actually start doing anything until 4.2.0. 14 |

15 | --# vim: et sw=4 sts=4 16 | -------------------------------------------------------------------------------- /wire/modules/Session/SessionHandlerDB/ProcessSessionDB.js: -------------------------------------------------------------------------------- 1 | var refreshSessionTimer = null; 2 | 3 | function refreshSessionList() { 4 | var $icon = $("#submit_session i, #submit_session_copy i"); 5 | $icon.removeClass('fa-refresh').addClass('fa-spin fa-spinner'); 6 | 7 | $.get("./", function (data) { 8 | $("#SessionList").html(data); 9 | refreshSessionTimer = setTimeout('refreshSessionList()', 5000); 10 | $icon.removeClass('fa-spin fa-spinner').addClass('fa-refresh'); 11 | }); 12 | } 13 | 14 | $(document).ready(function() { 15 | refreshSessionTimer = setTimeout('refreshSessionList()', 5000); 16 | }); 17 | -------------------------------------------------------------------------------- /wire/templates-admin/styles/font-awesome/less/stacked.less: -------------------------------------------------------------------------------- 1 | // Stacked Icons 2 | // ------------------------- 3 | 4 | .@{fa-css-prefix}-stack { 5 | position: relative; 6 | display: inline-block; 7 | width: 2em; 8 | height: 2em; 9 | line-height: 2em; 10 | vertical-align: middle; 11 | } 12 | .@{fa-css-prefix}-stack-1x, .@{fa-css-prefix}-stack-2x { 13 | position: absolute; 14 | left: 0; 15 | width: 100%; 16 | text-align: center; 17 | } 18 | .@{fa-css-prefix}-stack-1x { line-height: inherit; } 19 | .@{fa-css-prefix}-stack-2x { font-size: 2em; } 20 | .@{fa-css-prefix}-inverse { color: @fa-inverse; } 21 | -------------------------------------------------------------------------------- /wire/modules/LanguageSupport/ProcessLanguageTranslator.min.js: -------------------------------------------------------------------------------- 1 | $(document).ready(function(){$("select.TranslationFileSelect").dblclick(function(){$("#submit_add").click()});var a=$("input#untranslated");if(a.length){a.click(function(){if($(this).is(":checked")){$(".Inputfield.translated").fadeOut()}else{$(".Inputfield.translated").fadeIn()}});if(a.is(":checked")){$(".Inputfield.translated").hide()}$(":input.translatable").blur(function(){if($(this).val().length){$(this).closest(".Inputfield").removeClass("untranslated").addClass("translated")}else{$(this).closest(".Inputfield").removeClass("translated").addClass("untranslated")}})}}); -------------------------------------------------------------------------------- /wire/modules/Markup/MarkupHTMLPurifier/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/CSS.AllowTricky.txt: -------------------------------------------------------------------------------- 1 | CSS.AllowTricky 2 | TYPE: bool 3 | DEFAULT: false 4 | VERSION: 3.1.0 5 | --DESCRIPTION-- 6 | This parameter determines whether or not to allow "tricky" CSS properties and 7 | values. Tricky CSS properties/values can drastically modify page layout or 8 | be used for deceptive practices but do not directly constitute a security risk. 9 | For example, display:none; is considered a tricky property that 10 | will only be allowed if this directive is set to true. 11 | --# vim: et sw=4 sts=4 12 | -------------------------------------------------------------------------------- /wire/templates-admin/styles/font-awesome/scss/_stacked.scss: -------------------------------------------------------------------------------- 1 | // Stacked Icons 2 | // ------------------------- 3 | 4 | .#{$fa-css-prefix}-stack { 5 | position: relative; 6 | display: inline-block; 7 | width: 2em; 8 | height: 2em; 9 | line-height: 2em; 10 | vertical-align: middle; 11 | } 12 | .#{$fa-css-prefix}-stack-1x, .#{$fa-css-prefix}-stack-2x { 13 | position: absolute; 14 | left: 0; 15 | width: 100%; 16 | text-align: center; 17 | } 18 | .#{$fa-css-prefix}-stack-1x { line-height: inherit; } 19 | .#{$fa-css-prefix}-stack-2x { font-size: 2em; } 20 | .#{$fa-css-prefix}-inverse { color: $fa-inverse; } 21 | -------------------------------------------------------------------------------- /wire/modules/Markup/MarkupHTMLPurifier/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/Core.ConvertDocumentToFragment.txt: -------------------------------------------------------------------------------- 1 | Core.ConvertDocumentToFragment 2 | TYPE: bool 3 | DEFAULT: true 4 | --DESCRIPTION-- 5 | 6 | This parameter determines whether or not the filter should convert 7 | input that is a full document with html and body tags to a fragment 8 | of just the contents of a body tag. This parameter is simply something 9 | HTML Purifier can do during an edge-case: for most inputs, this 10 | processing is not necessary. 11 | 12 | --ALIASES-- 13 | Core.AcceptFullDocuments 14 | --# vim: et sw=4 sts=4 15 | --------------------------------------------------------------------------------