├── assets └── components │ └── AlohaX │ ├── .gitignore │ ├── aloha │ ├── VERSION.txt │ ├── plugins │ │ ├── com.gentics.aloha.plugins.TOC │ │ │ └── i18n │ │ │ │ ├── de.dict │ │ │ │ └── en.dict │ │ ├── com.gentics.aloha.plugins.List │ │ │ └── i18n │ │ │ │ ├── en.dict │ │ │ │ ├── eo.dict │ │ │ │ ├── ru.dict │ │ │ │ ├── it.dict │ │ │ │ ├── de.dict │ │ │ │ ├── fi.dict │ │ │ │ └── fr.dict │ │ ├── com.gentics.aloha.plugins.Link │ │ │ ├── i18n │ │ │ │ ├── en.dict │ │ │ │ ├── pl.dict │ │ │ │ ├── fr.dict │ │ │ │ ├── ru.dict │ │ │ │ └── de.dict │ │ │ ├── css │ │ │ │ └── Link.css │ │ │ ├── LinkList.js │ │ │ └── delicious.js │ │ ├── com.gentics.aloha.plugins.Table │ │ │ ├── resources │ │ │ │ ├── down.cur │ │ │ │ ├── left.cur │ │ │ │ ├── wai_red.png │ │ │ │ ├── wai_green.png │ │ │ │ └── table.css │ │ │ └── i18n │ │ │ │ ├── pl.dict │ │ │ │ ├── eo.dict │ │ │ │ ├── fi.dict │ │ │ │ ├── ru.dict │ │ │ │ ├── it.dict │ │ │ │ ├── en.dict │ │ │ │ ├── fr.dict │ │ │ │ └── de.dict │ │ ├── com.gentics.aloha.plugins.Abbr │ │ │ ├── i18n │ │ │ │ ├── de.dict │ │ │ │ └── en.dict │ │ │ ├── examples │ │ │ │ ├── AlohaAbbr.css │ │ │ │ └── AlohaAbbr.html │ │ │ └── plugin.js │ │ ├── at.tapo.aloha.plugins.Image │ │ │ ├── resources │ │ │ │ ├── images │ │ │ │ │ ├── image-border.png │ │ │ │ │ ├── image-title.png │ │ │ │ │ ├── image-align-left.png │ │ │ │ │ ├── image-align-none.png │ │ │ │ │ └── image-align-right.png │ │ │ │ └── imageplugin.css │ │ │ └── i18n │ │ │ │ ├── en.dict │ │ │ │ └── de.dict │ │ ├── com.gentics.aloha.plugins.LinkChecker │ │ │ ├── css │ │ │ │ └── LinkChecker.css │ │ │ ├── examples │ │ │ │ ├── AlohaLinkChecker.css │ │ │ │ └── AlohaLinkChecker.html │ │ │ ├── i18n │ │ │ │ └── en.dict │ │ │ └── plugin.js │ │ ├── com.gentics.aloha.plugins.HighlightEditables │ │ │ ├── css │ │ │ │ └── HighlightEditables.css │ │ │ └── plugin.js │ │ ├── com.gentics.aloha.plugins.Format │ │ │ └── i18n │ │ │ │ ├── eo.dict │ │ │ │ ├── fr.dict │ │ │ │ ├── en.dict │ │ │ │ ├── it.dict │ │ │ │ ├── fi.dict │ │ │ │ ├── pl.dict │ │ │ │ ├── ru.dict │ │ │ │ └── de.dict │ │ └── com.gentics.aloha.plugins.Paste │ │ │ ├── plugin.js │ │ │ └── wordpastehandler.js │ ├── images │ │ ├── base.gif │ │ ├── base.png │ │ ├── pin.png │ │ ├── base_big.png │ │ ├── fade_in.png │ │ ├── fade_out.png │ │ ├── maximize.png │ │ ├── base_multi.png │ │ ├── grabhandle.png │ │ ├── gentics_logo.png │ │ ├── removeformat.png │ │ ├── multisplit-close.gif │ │ ├── multisplit-open.gif │ │ └── multisplit_base.jpg │ ├── i18n │ │ ├── pl.dict │ │ ├── eo.dict │ │ ├── fi.dict │ │ ├── fr.dict │ │ ├── it.dict │ │ ├── ru.dict │ │ ├── en.dict │ │ └── de.dict │ └── deps │ │ ├── extjs │ │ └── resources │ │ │ ├── charts.swf │ │ │ ├── expressinstall.swf │ │ │ └── images │ │ │ ├── gray │ │ │ ├── s.gif │ │ │ ├── qtip │ │ │ │ ├── bg.gif │ │ │ │ ├── close.gif │ │ │ │ ├── tip-sprite.gif │ │ │ │ └── tip-anchor-sprite.gif │ │ │ ├── button │ │ │ │ ├── btn.gif │ │ │ │ ├── group-cs.gif │ │ │ │ ├── group-lr.gif │ │ │ │ ├── group-tb.gif │ │ │ │ ├── btn-arrow.gif │ │ │ │ ├── btn-sprite.gif │ │ │ │ ├── s-arrow-bo.gif │ │ │ │ └── s-arrow-o.gif │ │ │ ├── toolbar │ │ │ │ ├── bg.gif │ │ │ │ ├── more.gif │ │ │ │ ├── tb-bg.gif │ │ │ │ ├── gray-bg.gif │ │ │ │ ├── btn-arrow.gif │ │ │ │ ├── btn-over-bg.gif │ │ │ │ ├── btn-arrow-light.gif │ │ │ │ └── tb-btn-sprite.gif │ │ │ ├── form │ │ │ │ ├── trigger.gif │ │ │ │ ├── clear-trigger.gif │ │ │ │ ├── date-trigger.gif │ │ │ │ ├── search-trigger.gif │ │ │ │ └── trigger-square.gif │ │ │ ├── gradient-bg.gif │ │ │ ├── grid │ │ │ │ ├── refresh.gif │ │ │ │ ├── sort_asc.gif │ │ │ │ ├── grid3-hrow.gif │ │ │ │ ├── page-first.gif │ │ │ │ ├── page-last.gif │ │ │ │ ├── page-next.gif │ │ │ │ ├── page-prev.gif │ │ │ │ ├── sort_desc.gif │ │ │ │ ├── col-move-top.gif │ │ │ │ ├── grid3-hd-btn.gif │ │ │ │ ├── grid3-hrow2.gif │ │ │ │ ├── group-expand.gif │ │ │ │ ├── col-move-bottom.gif │ │ │ │ ├── grid3-hrow-over.gif │ │ │ │ ├── group-collapse.gif │ │ │ │ ├── grid3-hrow-over2.gif │ │ │ │ ├── row-expand-sprite.gif │ │ │ │ ├── grid3-special-col-bg.gif │ │ │ │ ├── group-expand-sprite.gif │ │ │ │ ├── grid3-special-col-bg2.gif │ │ │ │ └── grid3-special-col-sel-bg.gif │ │ │ ├── sizer │ │ │ │ ├── square.gif │ │ │ │ ├── e-handle.gif │ │ │ │ ├── ne-handle.gif │ │ │ │ ├── nw-handle.gif │ │ │ │ ├── s-handle.gif │ │ │ │ ├── se-handle.gif │ │ │ │ └── sw-handle.gif │ │ │ ├── tree │ │ │ │ ├── arrows.gif │ │ │ │ ├── elbow-end-minus.gif │ │ │ │ ├── elbow-end-plus.gif │ │ │ │ ├── elbow-end-minus-nl.gif │ │ │ │ └── elbow-end-plus-nl.gif │ │ │ ├── menu │ │ │ │ ├── item-over.gif │ │ │ │ ├── group-checked.gif │ │ │ │ ├── menu-parent.gif │ │ │ │ └── item-over-disabled.gif │ │ │ ├── panel │ │ │ │ ├── light-hd.gif │ │ │ │ ├── left-right.gif │ │ │ │ ├── tool-sprites.gif │ │ │ │ ├── top-bottom.gif │ │ │ │ ├── top-bottom.png │ │ │ │ ├── corners-sprite.gif │ │ │ │ ├── tool-sprite-tpl.gif │ │ │ │ ├── white-left-right.gif │ │ │ │ ├── white-top-bottom.gif │ │ │ │ ├── tools-sprites-trans.gif │ │ │ │ └── white-corners-sprite.gif │ │ │ ├── shared │ │ │ │ ├── left-btn.gif │ │ │ │ ├── hd-sprite.gif │ │ │ │ └── right-btn.gif │ │ │ ├── tabs │ │ │ │ ├── tab-close.gif │ │ │ │ ├── scroll-left.gif │ │ │ │ ├── scroll-right.gif │ │ │ │ ├── scroller-bg.gif │ │ │ │ ├── tab-strip-bg.gif │ │ │ │ ├── tab-strip-bg.png │ │ │ │ ├── tabs-sprite.gif │ │ │ │ ├── tab-btm-left-bg.gif │ │ │ │ ├── tab-btm-right-bg.gif │ │ │ │ ├── tab-strip-btm-bg.gif │ │ │ │ ├── tab-btm-over-left-bg.gif │ │ │ │ ├── tab-btm-over-right-bg.gif │ │ │ │ ├── tab-btm-inactive-left-bg.gif │ │ │ │ └── tab-btm-inactive-right-bg.gif │ │ │ ├── window │ │ │ │ ├── icon-error.gif │ │ │ │ ├── icon-info.gif │ │ │ │ ├── left-right.png │ │ │ │ ├── top-bottom.png │ │ │ │ ├── icon-question.gif │ │ │ │ ├── icon-warning.gif │ │ │ │ ├── left-corners.png │ │ │ │ ├── right-corners.png │ │ │ │ └── left-corners.pspimage │ │ │ ├── progress │ │ │ │ └── progress-bg.gif │ │ │ └── slider │ │ │ │ ├── slider-thumb.png │ │ │ │ └── slider-v-thumb.png │ │ │ └── default │ │ │ ├── s.gif │ │ │ ├── box │ │ │ ├── l.gif │ │ │ ├── r.gif │ │ │ ├── tb.gif │ │ │ ├── l-blue.gif │ │ │ ├── r-blue.gif │ │ │ ├── corners.gif │ │ │ ├── tb-blue.gif │ │ │ └── corners-blue.gif │ │ │ ├── qtip │ │ │ ├── bg.gif │ │ │ ├── close.gif │ │ │ ├── tip-sprite.gif │ │ │ └── tip-anchor-sprite.gif │ │ │ ├── shadow.png │ │ │ ├── tree │ │ │ ├── s.gif │ │ │ ├── elbow.gif │ │ │ ├── leaf.gif │ │ │ ├── arrows.gif │ │ │ ├── drop-no.gif │ │ │ ├── folder.gif │ │ │ ├── loading.gif │ │ │ ├── drop-add.gif │ │ │ ├── drop-over.gif │ │ │ ├── drop-under.gif │ │ │ ├── drop-yes.gif │ │ │ ├── elbow-end.gif │ │ │ ├── elbow-line.gif │ │ │ ├── elbow-plus.gif │ │ │ ├── drop-between.gif │ │ │ ├── elbow-minus.gif │ │ │ ├── folder-open.gif │ │ │ ├── elbow-end-minus.gif │ │ │ ├── elbow-end-plus.gif │ │ │ ├── elbow-minus-nl.gif │ │ │ ├── elbow-plus-nl.gif │ │ │ ├── elbow-end-plus-nl.gif │ │ │ └── elbow-end-minus-nl.gif │ │ │ ├── button │ │ │ ├── btn.gif │ │ │ ├── arrow.gif │ │ │ ├── group-cs.gif │ │ │ ├── group-lr.gif │ │ │ ├── group-tb.gif │ │ │ ├── s-arrow.gif │ │ │ ├── s-arrow-b.gif │ │ │ ├── s-arrow-bo.gif │ │ │ ├── s-arrow-o.gif │ │ │ ├── s-arrow-noline.gif │ │ │ └── s-arrow-b-noline.gif │ │ │ ├── dd │ │ │ ├── drop-no.gif │ │ │ ├── drop-add.gif │ │ │ └── drop-yes.gif │ │ │ ├── form │ │ │ ├── radio.gif │ │ │ ├── text-bg.gif │ │ │ ├── trigger.gif │ │ │ ├── trigger.psd │ │ │ ├── checkbox.gif │ │ │ ├── date-trigger.gif │ │ │ ├── date-trigger.psd │ │ │ ├── exclamation.gif │ │ │ ├── trigger-tpl.gif │ │ │ ├── clear-trigger.gif │ │ │ ├── clear-trigger.psd │ │ │ ├── search-trigger.gif │ │ │ ├── search-trigger.psd │ │ │ ├── trigger-square.gif │ │ │ ├── trigger-square.psd │ │ │ └── error-tip-corners.gif │ │ │ ├── grid │ │ │ ├── dirty.gif │ │ │ ├── done.gif │ │ │ ├── wait.gif │ │ │ ├── columns.gif │ │ │ ├── drop-no.gif │ │ │ ├── hd-pop.gif │ │ │ ├── loading.gif │ │ │ ├── mso-hd.gif │ │ │ ├── nowait.gif │ │ │ ├── refresh.gif │ │ │ ├── row-sel.gif │ │ │ ├── sort-hd.gif │ │ │ ├── drop-yes.gif │ │ │ ├── footer-bg.gif │ │ │ ├── grid-hrow.gif │ │ │ ├── grid-split.gif │ │ │ ├── grid3-hrow.gif │ │ │ ├── group-by.gif │ │ │ ├── hmenu-asc.gif │ │ │ ├── hmenu-desc.gif │ │ │ ├── hmenu-lock.gif │ │ │ ├── hmenu-lock.png │ │ │ ├── page-first.gif │ │ │ ├── page-last.gif │ │ │ ├── page-next.gif │ │ │ ├── page-prev.gif │ │ │ ├── row-over.gif │ │ │ ├── sort_asc.gif │ │ │ ├── sort_desc.gif │ │ │ ├── col-move-top.gif │ │ │ ├── grid-blue-hd.gif │ │ │ ├── grid-loading.gif │ │ │ ├── grid3-hd-btn.gif │ │ │ ├── group-expand.gif │ │ │ ├── hmenu-unlock.gif │ │ │ ├── hmenu-unlock.png │ │ │ ├── invalid_line.gif │ │ │ ├── pick-button.gif │ │ │ ├── col-move-bottom.gif │ │ │ ├── grid-blue-split.gif │ │ │ ├── grid-vista-hd.gif │ │ │ ├── grid3-hrow-over.gif │ │ │ ├── group-collapse.gif │ │ │ ├── arrow-left-white.gif │ │ │ ├── arrow-right-white.gif │ │ │ ├── row-check-sprite.gif │ │ │ ├── row-expand-sprite.gif │ │ │ ├── grid3-special-col-bg.gif │ │ │ ├── group-expand-sprite.gif │ │ │ ├── page-first-disabled.gif │ │ │ ├── page-last-disabled.gif │ │ │ ├── page-next-disabled.gif │ │ │ ├── page-prev-disabled.gif │ │ │ └── grid3-special-col-sel-bg.gif │ │ │ ├── menu │ │ │ ├── menu.gif │ │ │ ├── checked.gif │ │ │ ├── item-over.gif │ │ │ ├── unchecked.gif │ │ │ ├── menu-parent.gif │ │ │ └── group-checked.gif │ │ │ ├── shadow-c.png │ │ │ ├── shadow-lr.png │ │ │ ├── toolbar │ │ │ ├── bg.gif │ │ │ ├── more.gif │ │ │ ├── gray-bg.gif │ │ │ ├── tb-bg.gif │ │ │ ├── btn-arrow.gif │ │ │ ├── tb-xl-sep.gif │ │ │ ├── btn-over-bg.gif │ │ │ ├── tb-btn-sprite.gif │ │ │ ├── btn-arrow-light.gif │ │ │ └── tb-xl-btn-sprite.gif │ │ │ ├── gradient-bg.gif │ │ │ ├── layout │ │ │ ├── stick.gif │ │ │ ├── stuck.gif │ │ │ ├── collapse.gif │ │ │ ├── expand.gif │ │ │ ├── mini-top.gif │ │ │ ├── mini-left.gif │ │ │ ├── mini-right.gif │ │ │ ├── ns-expand.gif │ │ │ ├── tab-close.gif │ │ │ ├── gradient-bg.gif │ │ │ ├── mini-bottom.gif │ │ │ ├── ns-collapse.gif │ │ │ ├── panel-close.gif │ │ │ ├── tab-close-on.gif │ │ │ ├── panel-title-bg.gif │ │ │ └── panel-title-light-bg.gif │ │ │ ├── sizer │ │ │ ├── square.gif │ │ │ ├── e-handle.gif │ │ │ ├── ne-handle.gif │ │ │ ├── nw-handle.gif │ │ │ ├── s-handle.gif │ │ │ ├── se-handle.gif │ │ │ ├── sw-handle.gif │ │ │ ├── e-handle-dark.gif │ │ │ ├── ne-handle-dark.gif │ │ │ ├── nw-handle-dark.gif │ │ │ ├── s-handle-dark.gif │ │ │ ├── se-handle-dark.gif │ │ │ └── sw-handle-dark.gif │ │ │ ├── panel │ │ │ ├── light-hd.gif │ │ │ ├── left-right.gif │ │ │ ├── top-bottom.gif │ │ │ ├── top-bottom.png │ │ │ ├── corners-sprite.gif │ │ │ ├── tool-sprites.gif │ │ │ ├── tool-sprite-tpl.gif │ │ │ ├── white-left-right.gif │ │ │ ├── white-top-bottom.gif │ │ │ ├── tools-sprites-trans.gif │ │ │ └── white-corners-sprite.gif │ │ │ ├── shared │ │ │ ├── calendar.gif │ │ │ ├── glass-bg.gif │ │ │ ├── left-btn.gif │ │ │ ├── warning.gif │ │ │ ├── hd-sprite.gif │ │ │ ├── right-btn.gif │ │ │ ├── blue-loading.gif │ │ │ ├── large-loading.gif │ │ │ └── loading-balls.gif │ │ │ ├── tabs │ │ │ ├── tab-close.gif │ │ │ ├── scroll-left.gif │ │ │ ├── scroll-right.gif │ │ │ ├── scroller-bg.gif │ │ │ ├── tab-strip-bg.gif │ │ │ ├── tab-strip-bg.png │ │ │ ├── tabs-sprite.gif │ │ │ ├── tab-btm-left-bg.gif │ │ │ ├── tab-btm-right-bg.gif │ │ │ ├── tab-strip-btm-bg.gif │ │ │ ├── tab-btm-over-left-bg.gif │ │ │ ├── tab-btm-over-right-bg.gif │ │ │ ├── tab-btm-inactive-left-bg.gif │ │ │ └── tab-btm-inactive-right-bg.gif │ │ │ ├── editor │ │ │ └── tb-sprite.gif │ │ │ ├── slider │ │ │ ├── slider-bg.png │ │ │ ├── slider-thumb.png │ │ │ ├── slider-v-bg.png │ │ │ └── slider-v-thumb.png │ │ │ ├── window │ │ │ ├── icon-error.gif │ │ │ ├── icon-info.gif │ │ │ ├── left-right.png │ │ │ ├── left-right.psd │ │ │ ├── top-bottom.png │ │ │ ├── top-bottom.psd │ │ │ ├── icon-question.gif │ │ │ ├── icon-warning.gif │ │ │ ├── left-corners.png │ │ │ ├── left-corners.psd │ │ │ ├── right-corners.png │ │ │ └── right-corners.psd │ │ │ └── progress │ │ │ └── progress-bg.gif │ │ ├── prettyPhoto │ │ └── resources │ │ │ └── images │ │ │ ├── facebook │ │ │ ├── btnNext.png │ │ │ ├── loader.gif │ │ │ ├── sprite.png │ │ │ ├── btnPrevious.png │ │ │ ├── contentPatternLeft.png │ │ │ ├── contentPatternTop.png │ │ │ ├── contentPatternBottom.png │ │ │ └── contentPatternRight.png │ │ │ ├── dark_rounded │ │ │ ├── loader.gif │ │ │ ├── sprite.png │ │ │ ├── btnNext.png │ │ │ ├── btnPrevious.png │ │ │ └── contentPattern.png │ │ │ ├── dark_square │ │ │ ├── btnNext.png │ │ │ ├── loader.gif │ │ │ ├── sprite.png │ │ │ ├── btnPrevious.png │ │ │ └── contentPattern.png │ │ │ ├── light_square │ │ │ ├── loader.gif │ │ │ ├── sprite.png │ │ │ ├── btnNext.png │ │ │ └── btnPrevious.png │ │ │ └── light_rounded │ │ │ ├── btnNext.png │ │ │ ├── loader.gif │ │ │ ├── sprite.png │ │ │ └── btnPrevious.png │ │ └── MIT-LICENSE.txt │ ├── statusbar │ ├── button.png │ ├── images │ │ ├── bg.png │ │ ├── Thumbs.db │ │ ├── cross.png │ │ └── cross_hover.png │ ├── css │ │ └── style.css │ └── jquery.statusbar.js │ └── connector.php ├── core ├── .gitignore └── components │ └── AlohaX │ ├── .gitignore │ ├── docs │ ├── changelog.txt │ └── readme.txt │ ├── processors │ └── web │ │ ├── saveresource.php │ │ └── savefield.php │ └── elements │ └── snippets │ └── alohax.snippet.php ├── .gitignore ├── README └── _build └── data └── transport.snippets.php /assets/components/AlohaX/.gitignore: -------------------------------------------------------------------------------- 1 | !* 2 | !.gitignore -------------------------------------------------------------------------------- /core/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | !components/ -------------------------------------------------------------------------------- /core/components/AlohaX/.gitignore: -------------------------------------------------------------------------------- 1 | !* 2 | !.gitignore -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/VERSION.txt: -------------------------------------------------------------------------------- 1 | 0.9.3 2 | 2010-11-26 12:56:25 -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/plugins/com.gentics.aloha.plugins.TOC/i18n/de.dict: -------------------------------------------------------------------------------- 1 | button.addtoc.tooltip=Inhaltsverzeichnis -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/plugins/com.gentics.aloha.plugins.TOC/i18n/en.dict: -------------------------------------------------------------------------------- 1 | button.addtoc.tooltip=Table of contents -------------------------------------------------------------------------------- /core/components/AlohaX/docs/changelog.txt: -------------------------------------------------------------------------------- 1 | AlohaX Changelog 2 | 3 | Release 0.1.0-rc1 4 | ========================== 5 | Initial release. -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/images/base.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/images/base.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/images/base.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/images/base.png -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/images/pin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/images/pin.png -------------------------------------------------------------------------------- /assets/components/AlohaX/statusbar/button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/statusbar/button.png -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/i18n/pl.dict: -------------------------------------------------------------------------------- 1 | floatingmenu.tab.format=Format 2 | floatingmenu.tab.insert=Wstaw 3 | yes=Tak 4 | no=Nie 5 | cancel=Anuluj 6 | -------------------------------------------------------------------------------- /assets/components/AlohaX/statusbar/images/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/statusbar/images/bg.png -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/i18n/eo.dict: -------------------------------------------------------------------------------- 1 | floatingmenu.tab.format=Formatigi 2 | floatingmenu.tab.insert=Enmeti 3 | yes=Jes 4 | no=Ne 5 | cancel=Nuligi 6 | -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/i18n/fi.dict: -------------------------------------------------------------------------------- 1 | floatingmenu.tab.format=Muotoilu 2 | floatingmenu.tab.insert=Lisää 3 | yes=Kyllä 4 | no=Ei 5 | cancel=Peruuta 6 | -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/images/base_big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/images/base_big.png -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/images/fade_in.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/images/fade_in.png -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/images/fade_out.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/images/fade_out.png -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/images/maximize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/images/maximize.png -------------------------------------------------------------------------------- /assets/components/AlohaX/statusbar/images/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/statusbar/images/Thumbs.db -------------------------------------------------------------------------------- /assets/components/AlohaX/statusbar/images/cross.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/statusbar/images/cross.png -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/i18n/fr.dict: -------------------------------------------------------------------------------- 1 | floatingmenu.tab.format=Mise en page 2 | floatingmenu.tab.insert=Insertion 3 | yes=Oui 4 | no=Non 5 | cancel=Annuler -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/i18n/it.dict: -------------------------------------------------------------------------------- 1 | floatingmenu.tab.format=Formato 2 | floatingmenu.tab.insert=Inserisci 3 | yes=Si 4 | no=No 5 | cancel=Annulla 6 | -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/i18n/ru.dict: -------------------------------------------------------------------------------- 1 | floatingmenu.tab.format=Форматирование 2 | floatingmenu.tab.insert=Вставить 3 | yes=Да 4 | no=Нет 5 | cancel=Отмена 6 | -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/images/base_multi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/images/base_multi.png -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/images/grabhandle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/images/grabhandle.png -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/images/gentics_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/images/gentics_logo.png -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/images/removeformat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/images/removeformat.png -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | !assets/ 4 | !assets/components/ 5 | !assets/components/AlohaX/ 6 | !core/ 7 | !core/components/ 8 | !core/components/AlohaX/ 9 | !README -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/images/multisplit-close.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/images/multisplit-close.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/images/multisplit-open.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/images/multisplit-open.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/images/multisplit_base.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/images/multisplit_base.jpg -------------------------------------------------------------------------------- /assets/components/AlohaX/statusbar/images/cross_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/statusbar/images/cross_hover.png -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/charts.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/charts.swf -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/plugins/com.gentics.aloha.plugins.List/i18n/en.dict: -------------------------------------------------------------------------------- 1 | button.createulist.tooltip=Insert Unordered List 2 | button.createolist.tooltip=Insert Ordered List 3 | -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/plugins/com.gentics.aloha.plugins.List/i18n/eo.dict: -------------------------------------------------------------------------------- 1 | button.createulist.tooltip=Enmeti senordan liston 2 | button.createolist.tooltip=Enmeti ordan liston 3 | -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/plugins/com.gentics.aloha.plugins.List/i18n/ru.dict: -------------------------------------------------------------------------------- 1 | button.createulist.tooltip=Вставить Список 2 | button.createolist.tooltip=Вставить Упорядоченный Список -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/plugins/com.gentics.aloha.plugins.List/i18n/it.dict: -------------------------------------------------------------------------------- 1 | button.createulist.tooltip=Inserisci una lista 2 | button.createolist.tooltip=Inserisci una lista numerata 3 | -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/expressinstall.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/expressinstall.swf -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/gray/s.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/gray/s.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/plugins/com.gentics.aloha.plugins.List/i18n/de.dict: -------------------------------------------------------------------------------- 1 | button.createulist.tooltip=Unsortierte Liste einfügen 2 | button.createolist.tooltip=Sortierte Liste einfügen 3 | -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/plugins/com.gentics.aloha.plugins.List/i18n/fi.dict: -------------------------------------------------------------------------------- 1 | button.createulist.tooltip=Lisää järjestelemätön lista 2 | button.createolist.tooltip=Lisää järjestelty lista 3 | -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/plugins/com.gentics.aloha.plugins.List/i18n/fr.dict: -------------------------------------------------------------------------------- 1 | button.createulist.tooltip=Insérer une liste non ordonnée 2 | button.createolist.tooltip=Insérer liste ordonnée 3 | -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/default/s.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/default/s.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/default/box/l.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/default/box/l.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/default/box/r.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/default/box/r.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/gray/qtip/bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/gray/qtip/bg.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/default/box/tb.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/default/box/tb.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/default/qtip/bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/default/qtip/bg.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/default/shadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/default/shadow.png -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/default/tree/s.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/default/tree/s.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/gray/button/btn.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/gray/button/btn.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/gray/qtip/close.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/gray/qtip/close.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/gray/toolbar/bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/gray/toolbar/bg.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/default/box/l-blue.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/default/box/l-blue.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/default/box/r-blue.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/default/box/r-blue.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/default/button/btn.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/default/button/btn.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/default/dd/drop-no.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/default/dd/drop-no.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/default/form/radio.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/default/form/radio.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/default/grid/dirty.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/default/grid/dirty.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/default/grid/done.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/default/grid/done.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/default/grid/wait.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/default/grid/wait.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/default/menu/menu.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/default/menu/menu.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/default/qtip/close.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/default/qtip/close.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/default/shadow-c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/default/shadow-c.png -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/default/shadow-lr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/default/shadow-lr.png -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/default/toolbar/bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/default/toolbar/bg.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/default/tree/elbow.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/default/tree/elbow.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/default/tree/leaf.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/default/tree/leaf.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/gray/form/trigger.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/gray/form/trigger.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/gray/gradient-bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/gray/gradient-bg.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/gray/grid/refresh.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/gray/grid/refresh.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/gray/grid/sort_asc.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/gray/grid/sort_asc.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/gray/sizer/square.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/gray/sizer/square.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/gray/toolbar/more.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/gray/toolbar/more.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/gray/toolbar/tb-bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/gray/toolbar/tb-bg.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/gray/tree/arrows.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/gray/tree/arrows.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/default/box/corners.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/default/box/corners.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/default/box/tb-blue.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/default/box/tb-blue.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/default/button/arrow.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/default/button/arrow.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/default/dd/drop-add.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/default/dd/drop-add.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/default/dd/drop-yes.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/default/dd/drop-yes.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/default/form/text-bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/default/form/text-bg.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/default/form/trigger.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/default/form/trigger.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/default/form/trigger.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/default/form/trigger.psd -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/default/gradient-bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/default/gradient-bg.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/default/grid/columns.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/default/grid/columns.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/default/grid/drop-no.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/default/grid/drop-no.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/default/grid/hd-pop.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/default/grid/hd-pop.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/default/grid/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/default/grid/loading.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/default/grid/mso-hd.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/default/grid/mso-hd.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/default/grid/nowait.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/default/grid/nowait.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/default/grid/refresh.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/default/grid/refresh.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/default/grid/row-sel.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/default/grid/row-sel.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/default/grid/sort-hd.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/default/grid/sort-hd.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/default/layout/stick.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/default/layout/stick.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/default/layout/stuck.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/default/layout/stuck.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/default/menu/checked.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/default/menu/checked.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/default/sizer/square.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/default/sizer/square.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/default/toolbar/more.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/default/toolbar/more.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/default/tree/arrows.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/default/tree/arrows.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/default/tree/drop-no.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/default/tree/drop-no.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/default/tree/folder.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/default/tree/folder.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/default/tree/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/default/tree/loading.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/gray/button/group-cs.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/gray/button/group-cs.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/gray/button/group-lr.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/gray/button/group-lr.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/gray/button/group-tb.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/gray/button/group-tb.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/gray/grid/grid3-hrow.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/gray/grid/grid3-hrow.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/gray/grid/page-first.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/gray/grid/page-first.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/gray/grid/page-last.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/gray/grid/page-last.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/gray/grid/page-next.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/gray/grid/page-next.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/gray/grid/page-prev.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/gray/grid/page-prev.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/gray/grid/sort_desc.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/gray/grid/sort_desc.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/gray/menu/item-over.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/gray/menu/item-over.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/gray/panel/light-hd.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/gray/panel/light-hd.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/gray/qtip/tip-sprite.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/gray/qtip/tip-sprite.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/gray/shared/left-btn.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/gray/shared/left-btn.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/gray/sizer/e-handle.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/gray/sizer/e-handle.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/gray/sizer/ne-handle.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/gray/sizer/ne-handle.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/gray/sizer/nw-handle.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/gray/sizer/nw-handle.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/gray/sizer/s-handle.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/gray/sizer/s-handle.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/gray/sizer/se-handle.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/gray/sizer/se-handle.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/gray/sizer/sw-handle.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/gray/sizer/sw-handle.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/gray/tabs/tab-close.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/gray/tabs/tab-close.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/gray/toolbar/gray-bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/gray/toolbar/gray-bg.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/i18n/en.dict: -------------------------------------------------------------------------------- 1 | floatingmenu.tab.format=Format 2 | floatingmenu.tab.insert=Insert 3 | yes=Yes 4 | no=No 5 | cancel=Cancel 6 | repository.no_item_found=No item found. 7 | repository.loading=Loading -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/default/button/group-cs.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/default/button/group-cs.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/default/button/group-lr.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/default/button/group-lr.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/default/button/group-tb.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/default/button/group-tb.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/default/button/s-arrow.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/default/button/s-arrow.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/default/form/checkbox.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/default/form/checkbox.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/default/grid/drop-yes.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/default/grid/drop-yes.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/default/grid/footer-bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/default/grid/footer-bg.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/default/grid/grid-hrow.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/default/grid/grid-hrow.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/default/grid/grid-split.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/default/grid/grid-split.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/default/grid/grid3-hrow.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/default/grid/grid3-hrow.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/default/grid/group-by.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/default/grid/group-by.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/default/grid/hmenu-asc.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/default/grid/hmenu-asc.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/default/grid/hmenu-desc.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/default/grid/hmenu-desc.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/default/grid/hmenu-lock.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/default/grid/hmenu-lock.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/default/grid/hmenu-lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/default/grid/hmenu-lock.png -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/default/grid/page-first.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/default/grid/page-first.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/default/grid/page-last.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/default/grid/page-last.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/default/grid/page-next.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/default/grid/page-next.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/default/grid/page-prev.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/default/grid/page-prev.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/default/grid/row-over.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/default/grid/row-over.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/default/grid/sort_asc.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/default/grid/sort_asc.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/default/grid/sort_desc.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/default/grid/sort_desc.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/default/layout/collapse.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/default/layout/collapse.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/default/layout/expand.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/default/layout/expand.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/default/layout/mini-top.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/default/layout/mini-top.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/default/menu/item-over.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/default/menu/item-over.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/default/menu/unchecked.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/default/menu/unchecked.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/default/panel/light-hd.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/default/panel/light-hd.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/default/qtip/tip-sprite.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/default/qtip/tip-sprite.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/default/shared/calendar.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/default/shared/calendar.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/default/shared/glass-bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/default/shared/glass-bg.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/default/shared/left-btn.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/default/shared/left-btn.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/default/shared/warning.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/default/shared/warning.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/default/sizer/e-handle.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/default/sizer/e-handle.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/default/sizer/ne-handle.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/default/sizer/ne-handle.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/default/sizer/nw-handle.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/default/sizer/nw-handle.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/default/sizer/s-handle.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/default/sizer/s-handle.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/default/sizer/se-handle.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/default/sizer/se-handle.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/default/sizer/sw-handle.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/default/sizer/sw-handle.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/default/tabs/tab-close.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/default/tabs/tab-close.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/default/toolbar/gray-bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/default/toolbar/gray-bg.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/default/toolbar/tb-bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/default/toolbar/tb-bg.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/default/tree/drop-add.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/default/tree/drop-add.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/default/tree/drop-over.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/default/tree/drop-over.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/default/tree/drop-under.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/default/tree/drop-under.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/default/tree/drop-yes.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/default/tree/drop-yes.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/default/tree/elbow-end.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/default/tree/elbow-end.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/default/tree/elbow-line.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/default/tree/elbow-line.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/default/tree/elbow-plus.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/default/tree/elbow-plus.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/gray/button/btn-arrow.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/gray/button/btn-arrow.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/gray/button/btn-sprite.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/gray/button/btn-sprite.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/gray/button/s-arrow-bo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/gray/button/s-arrow-bo.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/gray/button/s-arrow-o.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/gray/button/s-arrow-o.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/gray/form/clear-trigger.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/gray/form/clear-trigger.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/gray/form/date-trigger.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/gray/form/date-trigger.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/gray/grid/col-move-top.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/gray/grid/col-move-top.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/gray/grid/grid3-hd-btn.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/gray/grid/grid3-hd-btn.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/gray/grid/grid3-hrow2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/gray/grid/grid3-hrow2.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/gray/grid/group-expand.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/gray/grid/group-expand.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/gray/menu/group-checked.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/gray/menu/group-checked.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/gray/menu/menu-parent.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/gray/menu/menu-parent.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/gray/panel/left-right.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/gray/panel/left-right.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/gray/panel/tool-sprites.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/gray/panel/tool-sprites.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/gray/panel/top-bottom.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/gray/panel/top-bottom.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/gray/panel/top-bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/gray/panel/top-bottom.png -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/gray/shared/hd-sprite.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/gray/shared/hd-sprite.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/gray/shared/right-btn.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/gray/shared/right-btn.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/gray/tabs/scroll-left.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/gray/tabs/scroll-left.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/gray/tabs/scroll-right.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/gray/tabs/scroll-right.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/gray/tabs/scroller-bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/gray/tabs/scroller-bg.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/gray/tabs/tab-strip-bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/gray/tabs/tab-strip-bg.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/gray/tabs/tab-strip-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/gray/tabs/tab-strip-bg.png -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/gray/tabs/tabs-sprite.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/gray/tabs/tabs-sprite.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/gray/toolbar/btn-arrow.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/gray/toolbar/btn-arrow.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/gray/window/icon-error.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/gray/window/icon-error.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/gray/window/icon-info.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/gray/window/icon-info.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/gray/window/left-right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/gray/window/left-right.png -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/gray/window/top-bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/gray/window/top-bottom.png -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/prettyPhoto/resources/images/facebook/btnNext.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/prettyPhoto/resources/images/facebook/btnNext.png -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/prettyPhoto/resources/images/facebook/loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/prettyPhoto/resources/images/facebook/loader.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/prettyPhoto/resources/images/facebook/sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/prettyPhoto/resources/images/facebook/sprite.png -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/plugins/com.gentics.aloha.plugins.Link/i18n/en.dict: -------------------------------------------------------------------------------- 1 | button.addlink.tooltip=Insert Link 2 | button.removelink.tooltip=Remove Link 3 | newlink.defaulttext=New Link 4 | floatingmenu.tab.link=Link 5 | -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/plugins/com.gentics.aloha.plugins.Link/i18n/pl.dict: -------------------------------------------------------------------------------- 1 | button.addlink.tooltip=Dodaj link 2 | button.removelink.tooltip=Usuń link 3 | newlink.defaulttext=Nowy link 4 | floatingmenu.tab.link=Link 5 | -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/default/box/corners-blue.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/default/box/corners-blue.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/default/button/s-arrow-b.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/default/button/s-arrow-b.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/default/button/s-arrow-bo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/default/button/s-arrow-bo.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/default/button/s-arrow-o.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/default/button/s-arrow-o.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/default/editor/tb-sprite.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/default/editor/tb-sprite.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/default/form/date-trigger.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/default/form/date-trigger.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/default/form/date-trigger.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/default/form/date-trigger.psd -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/default/form/exclamation.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/default/form/exclamation.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/default/form/trigger-tpl.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/default/form/trigger-tpl.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/default/grid/col-move-top.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/default/grid/col-move-top.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/default/grid/grid-blue-hd.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/default/grid/grid-blue-hd.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/default/grid/grid-loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/default/grid/grid-loading.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/default/grid/grid3-hd-btn.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/default/grid/grid3-hd-btn.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/default/grid/group-expand.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/default/grid/group-expand.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/default/grid/hmenu-unlock.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/default/grid/hmenu-unlock.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/default/grid/hmenu-unlock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/default/grid/hmenu-unlock.png -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/default/grid/invalid_line.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/default/grid/invalid_line.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/default/grid/pick-button.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/default/grid/pick-button.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/default/layout/mini-left.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/default/layout/mini-left.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/default/layout/mini-right.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/default/layout/mini-right.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/default/layout/ns-expand.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/default/layout/ns-expand.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/default/layout/tab-close.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/default/layout/tab-close.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/default/menu/menu-parent.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/default/menu/menu-parent.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/default/panel/left-right.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/default/panel/left-right.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/default/panel/top-bottom.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/default/panel/top-bottom.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/default/panel/top-bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/default/panel/top-bottom.png -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/default/shared/hd-sprite.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/default/shared/hd-sprite.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/default/shared/right-btn.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/default/shared/right-btn.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/default/slider/slider-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/default/slider/slider-bg.png -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/default/tabs/scroll-left.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/default/tabs/scroll-left.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/default/tabs/scroll-right.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/default/tabs/scroll-right.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/default/tabs/scroller-bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/default/tabs/scroller-bg.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/default/tabs/tab-strip-bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/default/tabs/tab-strip-bg.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/default/tabs/tab-strip-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/default/tabs/tab-strip-bg.png -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/default/tabs/tabs-sprite.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/default/tabs/tabs-sprite.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/default/toolbar/btn-arrow.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/default/toolbar/btn-arrow.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/default/toolbar/tb-xl-sep.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/default/toolbar/tb-xl-sep.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/default/tree/drop-between.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/default/tree/drop-between.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/default/tree/elbow-minus.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/default/tree/elbow-minus.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/default/tree/folder-open.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/default/tree/folder-open.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/default/window/icon-error.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/default/window/icon-error.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/default/window/icon-info.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/default/window/icon-info.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/default/window/left-right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/default/window/left-right.png -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/default/window/left-right.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/default/window/left-right.psd -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/default/window/top-bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/default/window/top-bottom.png -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/default/window/top-bottom.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/default/window/top-bottom.psd -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/gray/form/search-trigger.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/gray/form/search-trigger.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/gray/form/trigger-square.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/gray/form/trigger-square.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/gray/grid/col-move-bottom.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/gray/grid/col-move-bottom.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/gray/grid/grid3-hrow-over.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/gray/grid/grid3-hrow-over.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/gray/grid/group-collapse.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/gray/grid/group-collapse.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/gray/panel/corners-sprite.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/gray/panel/corners-sprite.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/gray/progress/progress-bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/gray/progress/progress-bg.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/gray/slider/slider-thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/gray/slider/slider-thumb.png -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/gray/tabs/tab-btm-left-bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/gray/tabs/tab-btm-left-bg.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/gray/toolbar/btn-over-bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/gray/toolbar/btn-over-bg.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/gray/tree/elbow-end-minus.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/gray/tree/elbow-end-minus.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/gray/tree/elbow-end-plus.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/gray/tree/elbow-end-plus.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/gray/window/icon-question.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/gray/window/icon-question.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/gray/window/icon-warning.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/gray/window/icon-warning.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/gray/window/left-corners.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/gray/window/left-corners.png -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/gray/window/right-corners.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/gray/window/right-corners.png -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/prettyPhoto/resources/images/dark_rounded/loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/prettyPhoto/resources/images/dark_rounded/loader.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/prettyPhoto/resources/images/dark_rounded/sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/prettyPhoto/resources/images/dark_rounded/sprite.png -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/prettyPhoto/resources/images/dark_square/btnNext.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/prettyPhoto/resources/images/dark_square/btnNext.png -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/prettyPhoto/resources/images/dark_square/loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/prettyPhoto/resources/images/dark_square/loader.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/prettyPhoto/resources/images/dark_square/sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/prettyPhoto/resources/images/dark_square/sprite.png -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/prettyPhoto/resources/images/light_square/loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/prettyPhoto/resources/images/light_square/loader.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/prettyPhoto/resources/images/light_square/sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/prettyPhoto/resources/images/light_square/sprite.png -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/default/form/clear-trigger.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/default/form/clear-trigger.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/default/form/clear-trigger.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/default/form/clear-trigger.psd -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/default/form/search-trigger.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/default/form/search-trigger.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/default/form/search-trigger.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/default/form/search-trigger.psd -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/default/form/trigger-square.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/default/form/trigger-square.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/default/form/trigger-square.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/default/form/trigger-square.psd -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/default/grid/col-move-bottom.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/default/grid/col-move-bottom.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/default/grid/grid-blue-split.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/default/grid/grid-blue-split.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/default/grid/grid-vista-hd.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/default/grid/grid-vista-hd.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/default/grid/grid3-hrow-over.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/default/grid/grid3-hrow-over.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/default/grid/group-collapse.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/default/grid/group-collapse.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/default/layout/gradient-bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/default/layout/gradient-bg.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/default/layout/mini-bottom.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/default/layout/mini-bottom.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/default/layout/ns-collapse.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/default/layout/ns-collapse.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/default/layout/panel-close.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/default/layout/panel-close.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/default/layout/tab-close-on.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/default/layout/tab-close-on.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/default/menu/group-checked.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/default/menu/group-checked.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/default/panel/corners-sprite.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/default/panel/corners-sprite.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/default/panel/tool-sprites.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/default/panel/tool-sprites.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/default/progress/progress-bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/default/progress/progress-bg.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/default/shared/blue-loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/default/shared/blue-loading.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/default/shared/large-loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/default/shared/large-loading.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/default/shared/loading-balls.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/default/shared/loading-balls.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/default/sizer/e-handle-dark.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/default/sizer/e-handle-dark.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/default/sizer/ne-handle-dark.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/default/sizer/ne-handle-dark.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/default/sizer/nw-handle-dark.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/default/sizer/nw-handle-dark.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/default/sizer/s-handle-dark.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/default/sizer/s-handle-dark.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/default/sizer/se-handle-dark.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/default/sizer/se-handle-dark.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/default/sizer/sw-handle-dark.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/default/sizer/sw-handle-dark.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/default/slider/slider-thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/default/slider/slider-thumb.png -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/default/slider/slider-v-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/default/slider/slider-v-bg.png -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/default/tabs/tab-btm-left-bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/default/tabs/tab-btm-left-bg.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/default/toolbar/btn-over-bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/default/toolbar/btn-over-bg.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/default/tree/elbow-end-minus.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/default/tree/elbow-end-minus.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/default/tree/elbow-end-plus.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/default/tree/elbow-end-plus.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/default/tree/elbow-minus-nl.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/default/tree/elbow-minus-nl.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/default/tree/elbow-plus-nl.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/default/tree/elbow-plus-nl.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/default/window/icon-question.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/default/window/icon-question.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/default/window/icon-warning.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/default/window/icon-warning.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/default/window/left-corners.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/default/window/left-corners.png -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/default/window/left-corners.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/default/window/left-corners.psd -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/default/window/right-corners.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/default/window/right-corners.png -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/default/window/right-corners.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/default/window/right-corners.psd -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/gray/grid/grid3-hrow-over2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/gray/grid/grid3-hrow-over2.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/gray/grid/row-expand-sprite.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/gray/grid/row-expand-sprite.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/gray/menu/item-over-disabled.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/gray/menu/item-over-disabled.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/gray/panel/tool-sprite-tpl.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/gray/panel/tool-sprite-tpl.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/gray/panel/white-left-right.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/gray/panel/white-left-right.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/gray/panel/white-top-bottom.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/gray/panel/white-top-bottom.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/gray/qtip/tip-anchor-sprite.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/gray/qtip/tip-anchor-sprite.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/gray/slider/slider-v-thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/gray/slider/slider-v-thumb.png -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/gray/tabs/tab-btm-right-bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/gray/tabs/tab-btm-right-bg.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/gray/tabs/tab-strip-btm-bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/gray/tabs/tab-strip-btm-bg.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/gray/toolbar/btn-arrow-light.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/gray/toolbar/btn-arrow-light.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/gray/toolbar/tb-btn-sprite.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/gray/toolbar/tb-btn-sprite.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/gray/tree/elbow-end-minus-nl.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/gray/tree/elbow-end-minus-nl.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/gray/tree/elbow-end-plus-nl.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/gray/tree/elbow-end-plus-nl.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/prettyPhoto/resources/images/dark_rounded/btnNext.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/prettyPhoto/resources/images/dark_rounded/btnNext.png -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/prettyPhoto/resources/images/facebook/btnPrevious.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/prettyPhoto/resources/images/facebook/btnPrevious.png -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/prettyPhoto/resources/images/light_rounded/btnNext.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/prettyPhoto/resources/images/light_rounded/btnNext.png -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/prettyPhoto/resources/images/light_rounded/loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/prettyPhoto/resources/images/light_rounded/loader.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/prettyPhoto/resources/images/light_rounded/sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/prettyPhoto/resources/images/light_rounded/sprite.png -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/prettyPhoto/resources/images/light_square/btnNext.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/prettyPhoto/resources/images/light_square/btnNext.png -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/plugins/com.gentics.aloha.plugins.Table/resources/down.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/plugins/com.gentics.aloha.plugins.Table/resources/down.cur -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/plugins/com.gentics.aloha.plugins.Table/resources/left.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/plugins/com.gentics.aloha.plugins.Table/resources/left.cur -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/default/button/s-arrow-noline.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/default/button/s-arrow-noline.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/default/form/error-tip-corners.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/default/form/error-tip-corners.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/default/grid/arrow-left-white.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/default/grid/arrow-left-white.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/default/grid/arrow-right-white.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/default/grid/arrow-right-white.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/default/grid/row-check-sprite.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/default/grid/row-check-sprite.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/default/grid/row-expand-sprite.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/default/grid/row-expand-sprite.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/default/layout/panel-title-bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/default/layout/panel-title-bg.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/default/panel/tool-sprite-tpl.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/default/panel/tool-sprite-tpl.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/default/panel/white-left-right.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/default/panel/white-left-right.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/default/panel/white-top-bottom.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/default/panel/white-top-bottom.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/default/qtip/tip-anchor-sprite.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/default/qtip/tip-anchor-sprite.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/default/slider/slider-v-thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/default/slider/slider-v-thumb.png -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/default/tabs/tab-btm-right-bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/default/tabs/tab-btm-right-bg.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/default/tabs/tab-strip-btm-bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/default/tabs/tab-strip-btm-bg.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/default/toolbar/tb-btn-sprite.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/default/toolbar/tb-btn-sprite.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/default/tree/elbow-end-plus-nl.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/default/tree/elbow-end-plus-nl.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/gray/grid/grid3-special-col-bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/gray/grid/grid3-special-col-bg.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/gray/grid/group-expand-sprite.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/gray/grid/group-expand-sprite.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/gray/panel/tools-sprites-trans.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/gray/panel/tools-sprites-trans.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/gray/tabs/tab-btm-over-left-bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/gray/tabs/tab-btm-over-left-bg.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/gray/window/left-corners.pspimage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/gray/window/left-corners.pspimage -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/prettyPhoto/resources/images/dark_rounded/btnPrevious.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/prettyPhoto/resources/images/dark_rounded/btnPrevious.png -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/prettyPhoto/resources/images/dark_square/btnPrevious.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/prettyPhoto/resources/images/dark_square/btnPrevious.png -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/prettyPhoto/resources/images/light_square/btnPrevious.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/prettyPhoto/resources/images/light_square/btnPrevious.png -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/plugins/com.gentics.aloha.plugins.Abbr/i18n/de.dict: -------------------------------------------------------------------------------- 1 | floatingmenu.tab.abbr=Abkürzung 2 | button.addabbr.tooltip=Abkürzung einfügen 3 | button.abbr.tooltip=Als Abkürzung formatieren 4 | newabbr.defaulttext=Abb 5 | -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/plugins/com.gentics.aloha.plugins.Link/i18n/fr.dict: -------------------------------------------------------------------------------- 1 | button.addlink.tooltip=Insérer un lien 2 | button.removelink.tooltip=Supprimer le lien 3 | newlink.defaulttext=Nouveau lien 4 | floatingmenu.tab.link=Lien 5 | -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/plugins/com.gentics.aloha.plugins.Link/i18n/ru.dict: -------------------------------------------------------------------------------- 1 | button.addlink.tooltip=Вставить ссылку 2 | button.removelink.tooltip=Убрать ссылку 3 | newlink.defaulttext=Новая ссылка 4 | floatingmenu.tab.link=Ссылка 5 | -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/plugins/com.gentics.aloha.plugins.Table/resources/wai_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/plugins/com.gentics.aloha.plugins.Table/resources/wai_red.png -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/default/button/s-arrow-b-noline.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/default/button/s-arrow-b-noline.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/default/grid/grid3-special-col-bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/default/grid/grid3-special-col-bg.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/default/grid/group-expand-sprite.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/default/grid/group-expand-sprite.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/default/grid/page-first-disabled.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/default/grid/page-first-disabled.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/default/grid/page-last-disabled.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/default/grid/page-last-disabled.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/default/grid/page-next-disabled.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/default/grid/page-next-disabled.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/default/grid/page-prev-disabled.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/default/grid/page-prev-disabled.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/default/panel/tools-sprites-trans.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/default/panel/tools-sprites-trans.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/default/tabs/tab-btm-over-left-bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/default/tabs/tab-btm-over-left-bg.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/default/toolbar/btn-arrow-light.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/default/toolbar/btn-arrow-light.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/default/toolbar/tb-xl-btn-sprite.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/default/toolbar/tb-xl-btn-sprite.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/default/tree/elbow-end-minus-nl.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/default/tree/elbow-end-minus-nl.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/gray/grid/grid3-special-col-bg2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/gray/grid/grid3-special-col-bg2.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/gray/panel/white-corners-sprite.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/gray/panel/white-corners-sprite.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/gray/tabs/tab-btm-over-right-bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/gray/tabs/tab-btm-over-right-bg.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/prettyPhoto/resources/images/dark_rounded/contentPattern.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/prettyPhoto/resources/images/dark_rounded/contentPattern.png -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/prettyPhoto/resources/images/dark_square/contentPattern.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/prettyPhoto/resources/images/dark_square/contentPattern.png -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/prettyPhoto/resources/images/facebook/contentPatternLeft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/prettyPhoto/resources/images/facebook/contentPatternLeft.png -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/prettyPhoto/resources/images/facebook/contentPatternTop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/prettyPhoto/resources/images/facebook/contentPatternTop.png -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/prettyPhoto/resources/images/light_rounded/btnPrevious.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/prettyPhoto/resources/images/light_rounded/btnPrevious.png -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/plugins/com.gentics.aloha.plugins.Abbr/i18n/en.dict: -------------------------------------------------------------------------------- 1 | floatingmenu.tab.abbr=Abbreviation 2 | button.addabbr.tooltip=insert abbreviation 3 | button.abbr.tooltip=format as abbreviation 4 | newabbr.defaulttext=Abbr 5 | -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/plugins/com.gentics.aloha.plugins.Link/i18n/de.dict: -------------------------------------------------------------------------------- 1 | button.addlink.tooltip=Verweis einfügen 2 | button.removelink.tooltip=Verweis entfernen 3 | newlink.defaulttext=Neuer Verweis 4 | floatingmenu.tab.link=Verweis 5 | -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/plugins/com.gentics.aloha.plugins.Table/resources/wai_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/plugins/com.gentics.aloha.plugins.Table/resources/wai_green.png -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/default/layout/panel-title-light-bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/default/layout/panel-title-light-bg.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/default/panel/white-corners-sprite.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/default/panel/white-corners-sprite.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/default/tabs/tab-btm-over-right-bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/default/tabs/tab-btm-over-right-bg.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/gray/grid/grid3-special-col-sel-bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/gray/grid/grid3-special-col-sel-bg.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/gray/tabs/tab-btm-inactive-left-bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/gray/tabs/tab-btm-inactive-left-bg.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/gray/tabs/tab-btm-inactive-right-bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/gray/tabs/tab-btm-inactive-right-bg.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/prettyPhoto/resources/images/facebook/contentPatternBottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/prettyPhoto/resources/images/facebook/contentPatternBottom.png -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/prettyPhoto/resources/images/facebook/contentPatternRight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/prettyPhoto/resources/images/facebook/contentPatternRight.png -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/i18n/de.dict: -------------------------------------------------------------------------------- 1 | floatingmenu.tab.format=Formatieren 2 | floatingmenu.tab.insert=Einfügen 3 | yes=Ja 4 | no=Nein 5 | cancel=Abbrechen 6 | repository.no_item_found=Keinen Eintrag gefunden. 7 | repository.loading=Es wird geladen -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/default/grid/grid3-special-col-sel-bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/default/grid/grid3-special-col-sel-bg.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/default/tabs/tab-btm-inactive-left-bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/default/tabs/tab-btm-inactive-left-bg.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/extjs/resources/images/default/tabs/tab-btm-inactive-right-bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/deps/extjs/resources/images/default/tabs/tab-btm-inactive-right-bg.gif -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/plugins/at.tapo.aloha.plugins.Image/resources/images/image-border.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/plugins/at.tapo.aloha.plugins.Image/resources/images/image-border.png -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/plugins/at.tapo.aloha.plugins.Image/resources/images/image-title.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/plugins/at.tapo.aloha.plugins.Image/resources/images/image-title.png -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/plugins/at.tapo.aloha.plugins.Image/resources/images/image-align-left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/plugins/at.tapo.aloha.plugins.Image/resources/images/image-align-left.png -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/plugins/at.tapo.aloha.plugins.Image/resources/images/image-align-none.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/plugins/at.tapo.aloha.plugins.Image/resources/images/image-align-none.png -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/plugins/at.tapo.aloha.plugins.Image/resources/images/image-align-right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalbutter/AlohaX/HEAD/assets/components/AlohaX/aloha/plugins/at.tapo.aloha.plugins.Image/resources/images/image-align-right.png -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/plugins/at.tapo.aloha.plugins.Image/i18n/en.dict: -------------------------------------------------------------------------------- 1 | floatingmenu.tab.image = Image 2 | align.left = Left of text 3 | align.right = Right of text 4 | align.none = Within the text 5 | image.title.prompt = Enter title for image: 6 | title = Modify Title 7 | border = Add Border to Image -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/plugins/at.tapo.aloha.plugins.Image/i18n/de.dict: -------------------------------------------------------------------------------- 1 | floatingmenu.tab.image=Bild 2 | align.left = Linksbüdig 3 | align.right = Rechtsbüdig 4 | align.none = Im Textfluss 5 | image.title.prompt = Titel für das Bild: 6 | title = Titel bearbeiten 7 | border = Rahmen hinzufügen -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/plugins/com.gentics.aloha.plugins.Link/css/Link.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * Aloha Editor 3 | * Author & Copyright (c) 2010 Gentics Software GmbH 4 | * aloha-sales@gentics.com 5 | * Licensed unter the terms of http://www.aloha-editor.com/license.html 6 | */ 7 | 8 | .GENTICS_link_pointer { 9 | cursor: pointer; 10 | } 11 | 12 | .GENTICS_link_text { 13 | cursor: text; 14 | } 15 | 16 | -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/plugins/com.gentics.aloha.plugins.LinkChecker/css/LinkChecker.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * Aloha Editor 3 | * Author & Copyright (c) 2010 Gentics Software GmbH 4 | * aloha-sales@gentics.com 5 | * Licensed unter the terms of http://www.aloha-editor.com/license.html 6 | */ 7 | 8 | .GENTICS_link_error { 9 | color: red !important; 10 | } 11 | 12 | .GENTICS_link_warn { 13 | color: red !important; 14 | } 15 | -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/plugins/com.gentics.aloha.plugins.HighlightEditables/css/HighlightEditables.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * Aloha Editor 3 | * Author & Copyright (c) 2010 Gentics Software GmbH 4 | * aloha-sales@gentics.com 5 | * Licensed unter the terms of http://www.aloha-editor.com/license.html 6 | */ 7 | 8 | .GENTICS_editable_highlight { 9 | outline: #FFE767 solid 5px !important; 10 | } 11 | 12 | .GENTICS_editable_active, .GENTICS_editable_active[contenteditable=true]:focus { 13 | outline: #B7D6FA solid 5px !important; 14 | } 15 | -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/plugins/at.tapo.aloha.plugins.Image/resources/imageplugin.css: -------------------------------------------------------------------------------- 1 | .TAPO_image_align_left { 2 | background-image: url(images/image-align-left.png) !important; 3 | } 4 | 5 | .TAPO_image_align_right { 6 | background-image: url(images/image-align-right.png) !important; 7 | } 8 | 9 | .TAPO_image_align_none { 10 | background-image: url(images/image-align-none.png) !important; 11 | } 12 | 13 | .TAPO_image_title { 14 | background-image: url(images/image-title.png) !important; 15 | } 16 | 17 | .TAPO_image_border { 18 | background-image: url(images/image-border.png) !important; 19 | } -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/plugins/com.gentics.aloha.plugins.Table/i18n/pl.dict: -------------------------------------------------------------------------------- 1 | floatingmenu.tab.table=Tabela 2 | deleterows.confirm=Czy na pewno chcesz usunąć zaznaczone wiersze? 3 | deletecolumns.confirm=Czy na pewno chcesz usunąć zaznaczone kolumny? 4 | deletetable.confirm=Czy na pewno chcesz usunąć tabelę? 5 | Table=Tabela 6 | button.createtable.tooltip=Wstaw tabelę 7 | button.addcolleft.tooltip=Dodaj kolumnę na lewo 8 | button.addcolright.tooltip=Dodaj kolumnę na prawo 9 | button.delcols.tooltip=Usuń kolumny 10 | button.addrowbefore.tooltip=Dodaj wiersz przed 11 | button.addrowafter.tooltip=Dodaj wiersz po 12 | button.delrows.tooltip=Usuń wiersze 13 | -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/plugins/com.gentics.aloha.plugins.Table/i18n/eo.dict: -------------------------------------------------------------------------------- 1 | floatingmenu.tab.table=Tabelo 2 | deleterows.confirm=�u vi vere volas vi�i la elektitajn vicojn? 3 | deletecolumns.confirm=�u vi vere volas vi�i la elektitajn kolumnojn? 4 | deletetable.confirm=�u vi vere volas forvi�i la tabelon? 5 | Table=Tabelo 6 | button.createtable.tooltip=Enmeti tabelon 7 | button.addcolleft.tooltip=Aldoni kolumnon maldekstre 8 | button.addcolright.tooltip=Aldoni kolumnon dekstre 9 | button.delcols.tooltip=Forvi�i kolumnojn 10 | button.addrowbefore.tooltip=Aldoni vicon anta�e 11 | button.addrowafter.tooltip=Aldoni vicon poste 12 | button.delrows.tooltip=Forvi�i vicojn -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/plugins/com.gentics.aloha.plugins.Table/i18n/fi.dict: -------------------------------------------------------------------------------- 1 | floatingmenu.tab.table=Taulukko 2 | deleterows.confirm=Oletko varma että haluat poistaa valitut rivit? 3 | deletecolumns.confirm=Oletko varma että haluat poistaa valitut sarakkeet? 4 | deletetable.confirm=Oletko varma että haluat poistaa taulukon? 5 | Table=Taulukko 6 | button.createtable.tooltip=Lisää taulukko 7 | button.addcolleft.tooltip=Lisää sarake vasemmalle 8 | button.addcolright.tooltip=Lisää sarake oikealle 9 | button.delcols.tooltip=Poista sarakkeet 10 | button.addrowbefore.tooltip=Lisää rivi ennen 11 | button.addrowafter.tooltip=Lisää rivi jälkeen 12 | button.delrows.tooltip=Poista rivit 13 | -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/plugins/com.gentics.aloha.plugins.Table/i18n/ru.dict: -------------------------------------------------------------------------------- 1 | floatingmenu.tab.table=Таблица 2 | deleterows.confirm=Вы действительно хотите удалить выбранные строки? 3 | deletecolumns.confirm=Вы действительно хотите удалить выбранные колонки? 4 | deletetable.confirm=Вы действительно хотите удалить таблицу? 5 | Table=Таблица 6 | button.createtable.tooltip=Вставить Таблицу 7 | button.addcolleft.tooltip=Добавить колонку слева 8 | button.addcolright.tooltip=Добавить колонку справа 9 | button.delcols.tooltip=Удалить Колонки 10 | button.addrowbefore.tooltip=Удалить пердыдущую строку 11 | button.addrowafter.tooltip=Удалть следующую строку 12 | button.delrows.tooltip=Удалить Строки 13 | -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/plugins/com.gentics.aloha.plugins.Table/i18n/it.dict: -------------------------------------------------------------------------------- 1 | floatingmenu.tab.table=Tabella 2 | deleterows.confirm=Vuoi davvero eliminare le righe selezionate? 3 | deletecolumns.confirm=Vuoi davvero eliminare le colonne selezionate? 4 | deletetable.confirm=Vuoi davvero eliminare la tabella? 5 | Table=Tabella 6 | button.createtable.tooltip=Crea una nuova tabella 7 | button.addcolleft.tooltip=Aggiungi una colonna a sinistra 8 | button.addcolright.tooltip=Aggiungi una colonna a destra 9 | button.delcols.tooltip=Elimina colonne 10 | button.addrowbefore.tooltip=Aggiungi una riga prima 11 | button.addrowafter.tooltip=Aggiungi una riga dopo 12 | button.delrows.tooltip=Elimina righe 13 | -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/plugins/com.gentics.aloha.plugins.Table/i18n/en.dict: -------------------------------------------------------------------------------- 1 | floatingmenu.tab.table=Table 2 | deleterows.confirm=Do you really want to delete the selected rows? 3 | deletecolumns.confirm=Do you really want to delete the selected columns? 4 | deletetable.confirm=Do you really want to delete the table? 5 | Table=Table 6 | button.createtable.tooltip=Insert Table 7 | button.addcolleft.tooltip=Add Column left 8 | button.addcolright.tooltip=Add Column right 9 | button.delcols.tooltip=Delete Columns 10 | button.addrowbefore.tooltip=Add Row before 11 | button.addrowafter.tooltip=Add Row after 12 | button.delrows.tooltip=Delete Rows 13 | button.caption.tooltip=Table caption 14 | empty.caption=Table caption -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/plugins/com.gentics.aloha.plugins.Table/i18n/fr.dict: -------------------------------------------------------------------------------- 1 | floatingmenu.tab.table=Table 2 | deleterows.confirm=Voulez-vous vraiment supprimer les lignes sélectionnées ? 3 | deletecolumns.confirm=Voulez-vous vraiment supprimer les colonnes sélectionnées ? 4 | deletetable.confirm=Voulez-vous vraiment supprimer la table ? 5 | Table=Tableau 6 | button.createtable.tooltip=Insérer un tableau 7 | button.addcolleft.tooltip=Ajouter une colonne à gauche 8 | button.addcolright.tooltip=Ajouter Colonne à droite 9 | button.delcols.tooltip=Colonnes Supprimer 10 | button.addrowbefore.tooltip=Ajouter une ligne avant 11 | button.addrowafter.tooltip=Ajouter une ligne après 12 | button.delrows.tooltip=supprimer des lignes -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/plugins/com.gentics.aloha.plugins.Table/i18n/de.dict: -------------------------------------------------------------------------------- 1 | floatingmenu.tab.table=Tabelle 2 | deleterows.confirm=Wollen Sie die ausgewählten Zeilen wirklich löschen? 3 | deletecolumns.confirm=Wollen Sie die ausgewählten Spalten wirklich löschen? 4 | deletetable.confirm=Wollen Sie wirklich die ganze Tabelle löschen? 5 | Table=Tabelle 6 | button.createtable.tooltip=Tabelle einfügen 7 | button.addcolleft.tooltip=Spalte links einfügen 8 | button.addcolright.tooltip=Spalte rechts einfügen 9 | button.delcols.tooltip=Spalten löschen 10 | button.addrowbefore.tooltip=Zeile darüber einfügen 11 | button.addrowafter.tooltip=Zeile darunter einfügen 12 | button.delrows.tooltip=Zeilen löschen 13 | button.caption.tooltip=Tabellen Bezeichnung 14 | empty.caption=Tabellen Bezeichnung -------------------------------------------------------------------------------- /core/components/AlohaX/docs/readme.txt: -------------------------------------------------------------------------------- 1 | h1. Install 2 | - Install the package (Hey, you're doing that now! Way to go!) 3 | - Put a snippet call into your template somewhere, make sure it is uncached so that your manager users are the only ones that see any of this AlohaX stuff. 4 | - Pass a list of fields, comma separated in the &fields variable. Try pagetitle and content to get started. '*' will work but won't play nice yet... 5 | - Wrap your editable fields inside an HTML element with the exact same name as the field you want to make editable. e.g.: 6 | - Load the page, hover the element and click into it to begin editing. For quicker editing see 'saveOnBlur' option here. 7 | - Report issues on github (https://github.com/digitalbutter/AlohaX), or fork it if you are 1337. 8 | 9 | h1. TODO: 10 | - Listen to feedback, fix bugs 11 | - Add english lexicon to the image plugin -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/plugins/com.gentics.aloha.plugins.Abbr/examples/AlohaAbbr.css: -------------------------------------------------------------------------------- 1 | body { 2 | font-family: sans-serif; 3 | } 4 | 5 | body { 6 | background-color: #ccc; 7 | } 8 | 9 | #bodyContent { 10 | font-size:0.9em; 11 | } 12 | 13 | h1, h2, h3, h4, h5, h6 { 14 | font-family: sans-serif; 15 | padding-bottom:0.1em; 16 | padding-top:0.5em; 17 | } 18 | h1 { 19 | border-bottom:1px solid #AAAAAA; 20 | } 21 | 22 | h1 { font-size: 188%; } 23 | h2 { font-size: 150%; } 24 | h3 { font-size: 132%; } 25 | h4 { font-size: 116%; } 26 | h5 { font-size: 100%; } 27 | h6 { font-size: 80%; } 28 | 29 | #main { 30 | width: 650px; 31 | margin-top: 40px; 32 | margin-left: auto ; 33 | margin-right: auto ; 34 | padding: 70px; 35 | background-color: white; 36 | border-radius: 1px; 37 | -moz-border-radius: 1px; 38 | box-shadow: 5px 5px rgba(0,0,0,0.3); 39 | -webkit-box-shadow: 5px 5px rgba(0,0,0,0.3); 40 | -moz-box-shadow: 5px 5px rgba(0,0,0,0.3); 41 | } 42 | 43 | abbr, acronym 44 | { 45 | border-bottom: .1em dotted; 46 | cursor: help; 47 | } 48 | 49 | -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- 1 | h1. Install 2 | - Fetch a package from the big Downloads button to the top right, or run the build script on your own installation and install the package through the package manager. 3 | - Put a snippet call into your template somewhere, make sure it is uncached so that your manager users are the only ones that see any of this AlohaX stuff. 4 | - Pass a list of fields, comma separated in the &fields variable. Try pagetitle and content to get started. '*' will work but won't play nice yet... 5 | - Wrap your editable fields inside an HTML element with the exact same name as the field you want to make editable. e.g.: 6 | - Load the page, hover the element and click into it to begin editing. For quicker editing see 'saveOnBlur' option here. 7 | - Report issues on github, or fork it if you are 1337. 8 | 9 | h1. TODO: 10 | - Listen to feedback, fix bugs 11 | - Make into a package for n00b install 12 | - Add english lexicon to the image plugin 13 | 14 | AholaX is licensed under the GPL v2 (or later) license. The entire license can be found in core/components/AholaX/docs/license.txt. -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/plugins/com.gentics.aloha.plugins.LinkChecker/examples/AlohaLinkChecker.css: -------------------------------------------------------------------------------- 1 | body { 2 | font-family: sans-serif; 3 | } 4 | 5 | body { 6 | background-color: #ccc; 7 | } 8 | 9 | #bodyContent { 10 | font-size:0.9em; 11 | } 12 | 13 | h1, h2, h3, h4, h5, h6 { 14 | font-family: sans-serif; 15 | padding-bottom:0.1em; 16 | padding-top:0.5em; 17 | } 18 | h1 { 19 | border-bottom:1px solid #AAAAAA; 20 | } 21 | 22 | h1 { font-size: 188%; } 23 | h2 { font-size: 150%; } 24 | h3 { font-size: 132%; } 25 | h4 { font-size: 116%; } 26 | h5 { font-size: 100%; } 27 | h6 { font-size: 80%; } 28 | 29 | #main { 30 | width: 650px; 31 | margin-top: 40px; 32 | margin-left: auto ; 33 | margin-right: auto ; 34 | padding: 70px; 35 | background-color: white; 36 | border-radius: 1px; 37 | -moz-border-radius: 1px; 38 | box-shadow: 5px 5px rgba(0,0,0,0.3); 39 | -webkit-box-shadow: 5px 5px rgba(0,0,0,0.3); 40 | -moz-box-shadow: 5px 5px rgba(0,0,0,0.3); 41 | } 42 | 43 | .GENTICS_link_error { 44 | color: red; 45 | } 46 | 47 | .GENTICS_link_warn { 48 | color: orange; 49 | } -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/plugins/com.gentics.aloha.plugins.Format/i18n/eo.dict: -------------------------------------------------------------------------------- 1 | button.i.tooltip=Oblikvigi 2 | button.u.tooltip=Substreki 3 | button.cite.tooltip=Citi 4 | button.q.tooltip= 5 | button.code.tooltip=Kodo 6 | button.abbr.tooltip=Mallongigo 7 | button.del.tooltip=Marki forvi�ita 8 | button.sub.tooltip=Superskripto 9 | button.sup.tooltip=Subskripto 10 | button.p.tooltip=Alineo 11 | button.h1.tooltip=Titolo 1 12 | button.h2.tooltip=Subtitolo 2 13 | button.h3.tooltip=Subtitolo 3 14 | button.h4.tooltip=Subtitolo 4 15 | button.h5.tooltip=Subtitolo 5 16 | button.h6.tooltip=Subtitolo 6 17 | button.pre.tooltip=Anta�formatigita teksto 18 | button.title.tooltip=Titolo 19 | button.removeFormat.tooltip=Forvi�i la formatigon 20 | button.removeFormat.text=Forvi�i la formatigon 21 | GENTICS_button_p=GENTICS_button_p 22 | GENTICS_button_h1=GENTICS_button_h1 23 | GENTICS_button_h2=GENTICS_button_h2 24 | GENTICS_button_h3=GENTICS_button_h3 25 | GENTICS_button_h4=GENTICS_button_h4 26 | GENTICS_button_h5=GENTICS_button_h5 27 | GENTICS_button_h6=GENTICS_button_h6 28 | GENTICS_button_pre=GENTICS_button_pre 29 | GENTICS_button_title=GENTICS_button_title -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/plugins/com.gentics.aloha.plugins.Format/i18n/fr.dict: -------------------------------------------------------------------------------- 1 | button.b.tooltip=Gras 2 | button.i.tooltip=Italique 3 | button.u.tooltip=Souligner 4 | button.cite.tooltip=Cité 5 | button.q.tooltip=Quote 6 | button.code.tooltip=Code 7 | button.abbr.tooltip=Abréviation 8 | button.del.tooltip=Barré 9 | button.sub.tooltip=Indice 10 | button.sup.tooltip=Exposant 11 | button.p.tooltip=Paragraphe 12 | button.h1.tooltip=Titre1 13 | button.h2.tooltip=Rubrique2 14 | button.h3.tooltip=Rubrique3 15 | button.h4.tooltip=Rubrique4 16 | button.h5.tooltip=Rubrique5 17 | button.h6.tooltip=Rubrique6 18 | button.pre.tooltip=texte préformaté 19 | button.title.tooltip=Titre 20 | button.removeFormat.tooltip=Supprimer le formatage 21 | button.removeFormat.text=Supprimer le formatage 22 | GENTICS_button_p=GENTICS_button_p 23 | GENTICS_button_h1=GENTICS_button_h1 24 | GENTICS_button_h2=GENTICS_button_h2 25 | GENTICS_button_h3=GENTICS_button_h3 26 | GENTICS_button_h4=GENTICS_button_h4 27 | GENTICS_button_h5=GENTICS_button_h5 28 | GENTICS_button_h6=GENTICS_button_h6 29 | GENTICS_button_pre=GENTICS_button_pre 30 | GENTICS_button_title=GENTICS_button_title -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/plugins/com.gentics.aloha.plugins.Format/i18n/en.dict: -------------------------------------------------------------------------------- 1 | button.b.tooltip=Bold 2 | button.i.tooltip=Italic 3 | button.u.tooltip=Underline 4 | button.cite.tooltip=Cite 5 | button.q.tooltip= 6 | button.code.tooltip=Code 7 | button.abbr.tooltip=Abbreviation 8 | button.del.tooltip=Strikethrough 9 | button.sub.tooltip=Subscript 10 | button.sup.tooltip=Superscript 11 | button.p.tooltip=Paragraph 12 | button.h1.tooltip=Heading 1 13 | button.h2.tooltip=Heading 2 14 | button.h3.tooltip=Heading 3 15 | button.h4.tooltip=Heading 4 16 | button.h5.tooltip=Heading 5 17 | button.h6.tooltip=Heading 6 18 | button.pre.tooltip=Pre formated text 19 | button.title.tooltip=Title 20 | button.removeFormat.tooltip=Remove formatting 21 | button.removeFormat.text=Remove formatting 22 | GENTICS_button_p=GENTICS_button_p 23 | GENTICS_button_h1=GENTICS_button_h1 24 | GENTICS_button_h2=GENTICS_button_h2 25 | GENTICS_button_h3=GENTICS_button_h3 26 | GENTICS_button_h4=GENTICS_button_h4 27 | GENTICS_button_h5=GENTICS_button_h5 28 | GENTICS_button_h6=GENTICS_button_h6 29 | GENTICS_button_pre=GENTICS_button_pre 30 | GENTICS_button_title=GENTICS_button_title -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/plugins/com.gentics.aloha.plugins.Format/i18n/it.dict: -------------------------------------------------------------------------------- 1 | button.b.tooltip=Grassetto 2 | button.i.tooltip=Corsivo 3 | button.u.tooltip=Sottolineato 4 | button.cite.tooltip=Citazione 5 | button.q.tooltip= 6 | button.code.tooltip=Codice 7 | button.abbr.tooltip=Abbreviazione 8 | button.del.tooltip=Barrato 9 | button.sub.tooltip=Pedice 10 | button.sup.tooltip=Apice 11 | button.p.tooltip=Paragrafo 12 | button.h1.tooltip=Titolo 1 13 | button.h2.tooltip=Titolo 2 14 | button.h3.tooltip=Titolo 3 15 | button.h4.tooltip=Titolo 4 16 | button.h5.tooltip=Titolo 5 17 | button.h6.tooltip=Titolo 6 18 | button.pre.tooltip=Testo pre formattato 19 | button.title.tooltip=Titolo 20 | button.removeFormat.tooltip=Rimuovi formattazione 21 | button.removeFormat.text=Rimuovi formattazione 22 | GENTICS_button_p=GENTICS_button_p 23 | GENTICS_button_h1=GENTICS_button_h1 24 | GENTICS_button_h2=GENTICS_button_h2 25 | GENTICS_button_h3=GENTICS_button_h3 26 | GENTICS_button_h4=GENTICS_button_h4 27 | GENTICS_button_h5=GENTICS_button_h5 28 | GENTICS_button_h6=GENTICS_button_h6 29 | GENTICS_button_pre=GENTICS_button_pre 30 | GENTICS_button_title=GENTICS_button_title 31 | -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/plugins/com.gentics.aloha.plugins.Format/i18n/fi.dict: -------------------------------------------------------------------------------- 1 | button.b.tooltip=Lihavointi 2 | button.i.tooltip=Kursiivi 3 | button.u.tooltip=Alleviivaus 4 | button.cite.tooltip=Lainaus 5 | button.q.tooltip= 6 | button.code.tooltip=Koodi 7 | button.abbr.tooltip=Lyhennelmä 8 | button.del.tooltip=Yliviivaus 9 | button.sub.tooltip=Alaindeksi 10 | button.sup.tooltip=Yläindeksi 11 | button.p.tooltip=Tekstikappale 12 | button.h1.tooltip=Otsikko 1 13 | button.h2.tooltip=Otsikko 2 14 | button.h3.tooltip=Otsikko 3 15 | button.h4.tooltip=Otsikko 4 16 | button.h5.tooltip=Otsikko 5 17 | button.h6.tooltip=Otsikko 6 18 | button.pre.tooltip=Muotoiltu teksti 19 | button.title.tooltip=Otsikko 20 | button.removeFormat.tooltip=Poista muotoilut 21 | button.removeFormat.text=Poista muotoilut 22 | GENTICS_button_p=GENTICS_button_p 23 | GENTICS_button_h1=GENTICS_button_h1 24 | GENTICS_button_h2=GENTICS_button_h2 25 | GENTICS_button_h3=GENTICS_button_h3 26 | GENTICS_button_h4=GENTICS_button_h4 27 | GENTICS_button_h5=GENTICS_button_h5 28 | GENTICS_button_h6=GENTICS_button_h6 29 | GENTICS_button_pre=GENTICS_button_pre 30 | GENTICS_button_title=GENTICS_button_title 31 | -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/plugins/com.gentics.aloha.plugins.Format/i18n/pl.dict: -------------------------------------------------------------------------------- 1 | button.b.tooltip=Pogrubienie 2 | button.i.tooltip=Kursywa 3 | button.u.tooltip=Podkreślenie 4 | button.cite.tooltip=Cytat 5 | button.q.tooltip= 6 | button.code.tooltip=Kod 7 | button.abbr.tooltip=Skrót 8 | button.del.tooltip=Przekreślenie 9 | button.sub.tooltip=Indeks dolny 10 | button.sup.tooltip=Indeks górny 11 | button.p.tooltip=Paragraf 12 | button.h1.tooltip=Nagłówek 1 13 | button.h2.tooltip=Nagłówek 2 14 | button.h3.tooltip=Nagłówek 3 15 | button.h4.tooltip=Nagłówek 4 16 | button.h5.tooltip=Nagłówek 5 17 | button.h6.tooltip=Nagłówek 6 18 | button.pre.tooltip=Tekst preformatowany 19 | button.title.tooltip=Tytuł 20 | button.removeFormat.tooltip=Usuń formatowanie 21 | button.removeFormat.text=Usuń formatowanie 22 | GENTICS_button_p=GENTICS_button_p 23 | GENTICS_button_h1=GENTICS_button_h1 24 | GENTICS_button_h2=GENTICS_button_h2 25 | GENTICS_button_h3=GENTICS_button_h3 26 | GENTICS_button_h4=GENTICS_button_h4 27 | GENTICS_button_h5=GENTICS_button_h5 28 | GENTICS_button_h6=GENTICS_button_h6 29 | GENTICS_button_pre=GENTICS_button_pre 30 | GENTICS_button_title=GENTICS_button_title -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/deps/MIT-LICENSE.txt: -------------------------------------------------------------------------------- 1 | Copyright (c) 2010 John Resig, http://jquery.com/ 2 | 3 | Permission is hereby granted, free of charge, to any person obtaining 4 | a copy of this software and associated documentation files (the 5 | "Software"), to deal in the Software without restriction, including 6 | without limitation the rights to use, copy, modify, merge, publish, 7 | distribute, sublicense, and/or sell copies of the Software, and to 8 | permit persons to whom the Software is furnished to do so, subject to 9 | the following conditions: 10 | 11 | The above copyright notice and this permission notice shall be 12 | included in all copies or substantial portions of the Software. 13 | 14 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, 15 | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF 16 | MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND 17 | NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE 18 | LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION 19 | OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION 20 | WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 21 | -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/plugins/com.gentics.aloha.plugins.Format/i18n/ru.dict: -------------------------------------------------------------------------------- 1 | button.b.tooltip=Полужирный 2 | button.i.tooltip=Курсив 3 | button.u.tooltip=Подчеркивание 4 | button.cite.tooltip=Цитировать 5 | button.q.tooltip=Цитата 6 | button.code.tooltip=Код 7 | button.abbr.tooltip=Аббривиатура 8 | button.del.tooltip=Перечеркивание 9 | button.sub.tooltip=Нижний индекс 10 | button.sup.tooltip=Верхний индекс 11 | button.p.tooltip=Параграф 12 | button.h1.tooltip=Заголовок 1 13 | button.h2.tooltip=Заголовок 2 14 | button.h3.tooltip=Заголовок 3 15 | button.h4.tooltip=Заголовок 4 16 | button.h5.tooltip=Заголовок 5 17 | button.h6.tooltip=Заголовок 6 18 | button.pre.tooltip=Отформатированный текс 19 | button.title.tooltip=Название 20 | button.removeFormat.tooltip=Убрать форматирование 21 | button.removeFormat.text=Убрать форматирование 22 | GENTICS_button_p=GENTICS_button_p 23 | GENTICS_button_h1=GENTICS_button_h1 24 | GENTICS_button_h2=GENTICS_button_h2 25 | GENTICS_button_h3=GENTICS_button_h3 26 | GENTICS_button_h4=GENTICS_button_h4 27 | GENTICS_button_h5=GENTICS_button_h5 28 | GENTICS_button_h6=GENTICS_button_h6 29 | GENTICS_button_pre=GENTICS_button_pre 30 | GENTICS_button_title=GENTICS_button_title -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/plugins/com.gentics.aloha.plugins.Format/i18n/de.dict: -------------------------------------------------------------------------------- 1 | button.b.tooltip=Fett 2 | button.i.tooltip=Kursiv 3 | button.u.tooltip=Unterstrichen 4 | button.cite.tooltip=Zitat 5 | button.q.tooltip= 6 | button.code.tooltip=Code 7 | button.abbr.tooltip=Abkürzung 8 | button.del.tooltip=Durchgestrichen 9 | button.sub.tooltip=Tiefgestellt 10 | button.sup.tooltip=Hochgestellt 11 | button.p.tooltip=Absatz 12 | button.h1.tooltip=Überschrift 1 13 | button.h2.tooltip=Überschrift 2 14 | button.h3.tooltip=Überschrift 3 15 | button.h4.tooltip=Überschrift 4 16 | button.h5.tooltip=Überschrift 5 17 | button.h6.tooltip=Überschrift 6 18 | button.pre.tooltip=Vorformatierter text 19 | button.title.tooltip=Titel 20 | button.removeFormat.tooltip=Formatierung entfernen 21 | button.removeFormat.text=Formatierung entfernen 22 | GENTICS_button_p=GENTICS_button_p_de 23 | GENTICS_button_h1=GENTICS_button_h1_de 24 | GENTICS_button_h2=GENTICS_button_h2_de 25 | GENTICS_button_h3=GENTICS_button_h3_de 26 | GENTICS_button_h4=GENTICS_button_h4_de 27 | GENTICS_button_h5=GENTICS_button_h5_de 28 | GENTICS_button_h6=GENTICS_button_h6_de 29 | GENTICS_button_pre=GENTICS_button_pre_de 30 | GENTICS_button_title=GENTICS_button_title_de -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/plugins/com.gentics.aloha.plugins.HighlightEditables/plugin.js: -------------------------------------------------------------------------------- 1 | /* 2 | * Aloha Editor 3 | * Author & Copyright (c) 2010 Gentics Software GmbH 4 | * aloha-sales@gentics.com 5 | * Licensed unter the terms of http://www.aloha-editor.com/license.html 6 | */ 7 | GENTICS.Aloha.HighlightEditables=new GENTICS.Aloha.Plugin("com.gentics.aloha.plugins.highlighteditables");GENTICS.Aloha.HighlightEditables.init=function(){var that=this;GENTICS.Utils.Position.addMouseMoveCallback(function(){for(var i=0;i 6 | * 7 | * This file is part of AholaX, a port of Ahola Editor (ahola-editor.com) for MODX Revolution. 8 | * 9 | * AholaX is free software; you can redistribute it and/or modify it under 10 | * the terms of the GNU General Public License as published by the Free Software 11 | * Foundation; either version 2 of the License, or (at your option) any later 12 | * version. 13 | * 14 | * AholaX is distributed in the hope that it will be useful, but WITHOUT ANY 15 | * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR 16 | * A PARTICULAR PURPOSE. See the GNU General Public License for more details. 17 | * 18 | * You should have received a copy of the GNU General Public License along with 19 | * AholaX; if not, write to the Free Software Foundation, Inc., 59 Temple Place, 20 | * Suite 330, Boston, MA 02111-1307 USA 21 | * 22 | */ 23 | $snippets = array(); 24 | 25 | $snippets[1]= $modx->newObject('modSnippet'); 26 | $snippets[1]->fromArray(array( 27 | 'id' => 1, 28 | 'name' => PKG_NAME, 29 | 'description' => 'AlohaX is a very front-end editing snippet powered by Aloha.', 30 | 'snippet' => getSnippetContent($sources['snippets'].'alohax.snippet.php'), 31 | )); 32 | //$properties = include $sources['data'].'properties/properties.cmcampers.php'; 33 | //$snippets[1]->setProperties($properties); 34 | 35 | return $snippets; 36 | 37 | ?> -------------------------------------------------------------------------------- /assets/components/AlohaX/connector.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * This file is part of AholaX, a port of Ahola Editor (ahola-editor.com) for MODX Revolution. 8 | * 9 | * AholaX is free software; you can redistribute it and/or modify it under 10 | * the terms of the GNU General Public License as published by the Free Software 11 | * Foundation; either version 2 of the License, or (at your option) any later 12 | * version. 13 | * 14 | * AholaX is distributed in the hope that it will be useful, but WITHOUT ANY 15 | * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR 16 | * A PARTICULAR PURPOSE. See the GNU General Public License for more details. 17 | * 18 | * You should have received a copy of the GNU General Public License along with 19 | * AholaX; if not, write to the Free Software Foundation, Inc., 59 Temple Place, 20 | * Suite 330, Boston, MA 02111-1307 USA 21 | * 22 | */ 23 | require_once dirname(dirname(dirname(dirname(__FILE__)))).'/config.core.php'; 24 | require_once MODX_CORE_PATH.'config/'.MODX_CONFIG_KEY.'.inc.php'; 25 | require_once MODX_CONNECTORS_PATH.'index.php'; 26 | 27 | /* Find the core path */ 28 | $corePath = $modx->getOption('alohax.core_path',null,MODX_BASE_PATH.'core/components/AlohaX/'); 29 | 30 | /* handle request */ 31 | $path = $corePath.'/processors/'; 32 | $modx->request->handleRequest(array( 33 | 'processors_path' => $path, 34 | 'location' => '', 35 | )); -------------------------------------------------------------------------------- /assets/components/AlohaX/statusbar/css/style.css: -------------------------------------------------------------------------------- 1 | #alohaXForm { 2 | display: none; 3 | } 4 | 5 | .alohaStatus-container { 6 | position: absolute; 7 | left: 0; 8 | width: 100%; 9 | display: none; 10 | -webkit-box-shadow: 0px 1px 10px ; 11 | -moz-box-shadow: 0px 1px 10px ; 12 | box-shadow: 0px 1px 10px ; 13 | } 14 | 15 | .alohaStatus{ 16 | height:50px; 17 | margin-left: auto; 18 | margin-right: auto; 19 | width:100%; 20 | background-color: #FFFFFF; 21 | position:relative; 22 | filter:progid:DXImageTransform.Microsoft.Alpha(opacity=95); 23 | opacity: 0.95; 24 | -moz-opacity: 0.95; 25 | text-align:center; 26 | z-index:9999999; 27 | padding:0px; 28 | } 29 | 30 | .alohaStatus-top{ 31 | top:0px; 32 | border-top:2px solid #fff; 33 | border-bottom: 1px solid #ebebeb; 34 | } 35 | .alohaStatus-bottom{ 36 | bottom:0px; 37 | border-bottom:2px solid #fff; 38 | border-top: 1px solid #ebebeb; 39 | color:#777; 40 | } 41 | .alohaStatus-content{ 42 | line-height:46px; 43 | font-size: 18px; 44 | font-family:'Lucida Grande',sans-serif; 45 | } 46 | a.alohaStatus-cross{ 47 | position:absolute; 48 | width:31px; 49 | height:31px; 50 | background:transparent url(../images/cross.png) no-repeat top left; 51 | cursor:pointer; 52 | right:10px; 53 | } 54 | a.alohaStatus-cross:hover{ 55 | background-image: url(../images/cross_hover.png) 56 | } 57 | .alohaStatus-top a.alohaStatus-cross{ 58 | top:8px; 59 | } 60 | .alohaStatus-bottom a.alohaStatus-cross{ 61 | bottom:8px; 62 | } 63 | 64 | .alohaStatus-success { 65 | color: green; 66 | } 67 | 68 | .alohaStatus-error { 69 | color: red; 70 | } -------------------------------------------------------------------------------- /core/components/AlohaX/processors/web/saveresource.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * This file is part of AholaX, a port of Ahola Editor (ahola-editor.com) for MODX Revolution. 8 | * 9 | * AholaX is free software; you can redistribute it and/or modify it under 10 | * the terms of the GNU General Public License as published by the Free Software 11 | * Foundation; either version 2 of the License, or (at your option) any later 12 | * version. 13 | * 14 | * AholaX is distributed in the hope that it will be useful, but WITHOUT ANY 15 | * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR 16 | * A PARTICULAR PURPOSE. See the GNU General Public License for more details. 17 | * 18 | * You should have received a copy of the GNU General Public License along with 19 | * AholaX; if not, write to the Free Software Foundation, Inc., 59 Temple Place, 20 | * Suite 330, Boston, MA 02111-1307 USA 21 | * 22 | */ 23 | $saved = false; 24 | 25 | if($resource = $modx->getObject('modResource', $scriptProperties['id'])){ 26 | foreach($scriptProperties['resource'] as $fieldname => $value){ 27 | //this is a temporary measure to avoid whitespace added by aloha and slashes added by serialise function. 28 | $scriptProperties['resource'][$fieldname] = stripslashes(trim($value)); 29 | } 30 | $resource->fromArray($scriptProperties['resource']); 31 | //save resource 32 | $saved = $resource->save(); 33 | $tvs = $resource->getMany('TemplateVars'); 34 | foreach($tvs as $tvId => $tv){ 35 | if(array_key_exists($tv->get('name'), $scriptProperties['resource'])){ 36 | //save a tv if the value is passed. 37 | $tv->setValue($resource->get('id'), $scriptProperties['resource'][$tv->get('name')]); 38 | $saved = $tv->save(); 39 | } 40 | } 41 | } 42 | 43 | if($saved){ 44 | $modx->cacheManager->clearCache(); 45 | return $modx->error->success("This page has now been saved."); 46 | } 47 | 48 | return $modx->error->failure("This page could not be saved."); -------------------------------------------------------------------------------- /core/components/AlohaX/processors/web/savefield.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * This file is part of AholaX, a port of Ahola Editor (ahola-editor.com) for MODX Revolution. 8 | * 9 | * AholaX is free software; you can redistribute it and/or modify it under 10 | * the terms of the GNU General Public License as published by the Free Software 11 | * Foundation; either version 2 of the License, or (at your option) any later 12 | * version. 13 | * 14 | * AholaX is distributed in the hope that it will be useful, but WITHOUT ANY 15 | * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR 16 | * A PARTICULAR PURPOSE. See the GNU General Public License for more details. 17 | * 18 | * You should have received a copy of the GNU General Public License along with 19 | * AholaX; if not, write to the Free Software Foundation, Inc., 59 Temple Place, 20 | * Suite 330, Boston, MA 02111-1307 USA 21 | * 22 | */ 23 | $saved = false; 24 | 25 | if($resource = $modx->getObject('modResource', $scriptProperties['id'])){ 26 | foreach($scriptProperties as $fieldname => $value){ 27 | //this is a temporary measure to avoid whitespace added by aloha 28 | $scriptProperties[$fieldname] = trim($value); 29 | } 30 | if(array_key_exists($scriptProperties['field'], $resource->toArray())){ 31 | $resource->set($scriptProperties['field'], $scriptProperties['content']); 32 | } else { 33 | //its a TV, maybe. if not it will go unsaved. 34 | $tvs = $resource->getMany('TemplateVars'); 35 | foreach($tvs as $tvId => $tv){ 36 | if($tv->get('name') == $scriptProperties['field']){ 37 | //save the tv value 38 | $tv->setValue($resource->get('id'), $scriptProperties['content']); 39 | $saved = $tv->save(); 40 | } 41 | } 42 | } 43 | $saved = $resource->save(); 44 | } 45 | 46 | if($saved){ 47 | $modx->cacheManager->clearCache(); 48 | return $modx->error->success("Successfully saved " . $scriptProperties['field'] . " field."); 49 | } 50 | 51 | return $modx->error->failure("Error! The " . $scriptProperties['field'] . " wasn't saved properly."); -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/plugins/com.gentics.aloha.plugins.Paste/plugin.js: -------------------------------------------------------------------------------- 1 | /* 2 | * Aloha Editor 3 | * Author & Copyright (c) 2010 Gentics Software GmbH 4 | * aloha-sales@gentics.com 5 | * Licensed unter the terms of http://www.aloha-editor.com/license.html 6 | */ 7 | GENTICS.Aloha.PastePlugin=new GENTICS.Aloha.Plugin("com.gentics.aloha.plugins.Paste");GENTICS.Aloha.PastePlugin.pasteHandlers=[];GENTICS.Aloha.PastePlugin.init=function(){var that=this;this.pasteDiv=jQuery('
');this.pasteDiv.attr("contentEditable","true");jQuery("body").append(this.pasteDiv);GENTICS.Aloha.EventRegistry.subscribe(GENTICS.Aloha,"editableCreated",function(event,editable){if(jQuery.browser.msie){editable.obj.bind("beforepaste",function(event){that.redirectPaste()})}else{editable.obj.bind("paste",function(event){that.redirectPaste();window.setTimeout(function(){that.getPastedContent()},10)})}});if(jQuery.browser.msie){this.pasteDiv.bind("paste",function(event){window.setTimeout(function(){that.getPastedContent()},10)})}};GENTICS.Aloha.PastePlugin.redirectPaste=function(){this.currentRange=new GENTICS.Utils.RangeObject(true);this.currentEditable=GENTICS.Aloha.activeEditable;this.pasteDiv.text("");if(this.currentEditable){this.currentEditable.blur()}GENTICS.Utils.Dom.setCursorInto(this.pasteDiv.get(0));this.pasteDiv.focus()};GENTICS.Aloha.PastePlugin.getPastedContent=function(){var that=this;for(var i=0;i=0;--i){GENTICS.Utils.Dom.insertIntoDOM(jQuery(pasteDivContents.get(i)),that.currentRange,that.currentEditable.obj,false)}this.currentEditable.activate();this.currentEditable.obj.focus();if(pasteDivContents.length>0){GENTICS.Utils.Dom.setCursorAfter(pasteDivContents.get(pasteDivContents.length-1))}else{this.currentRange.select()}}this.currentRange=false;this.currentEditable=false;this.pasteDiv.text("")};GENTICS.Aloha.PastePlugin.register=function(pasteHandler){this.pasteHandlers.push(pasteHandler)};GENTICS.Aloha.PastePlugin.PasteHandler=function(){GENTICS.Aloha.PastePlugin.register(this)};GENTICS.Aloha.PastePlugin.PasteHandler.prototype.handlePaste=function(jqPasteDiv){}; -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/plugins/com.gentics.aloha.plugins.LinkChecker/i18n/en.dict: -------------------------------------------------------------------------------- 1 | 2 | error.0=An Error occurred checking this URL. 3 | error.400=Bad Request. The request cannot be fulfilled due to bad syntax. 4 | error.401=Unauthorized. Authentication has failed or not yet been provided. 5 | error.402=Payment Required. 6 | error.403=Forbidden. The request was a legal request, but the server is refusing to respond to it. 7 | error.404=Not Found. The requested resource could not be found, but may be available in the future. 8 | error.405=Method Not Allowed. 9 | error.406=Not Acceptable. Your browser does not support the content. 10 | error.407=Proxy Authentication Required. 11 | error.408=Request Timeout. The server timed out waiting for the request. 12 | error.409=Conflict in the request. 13 | error.410=This resource is gone. 14 | error.411=Length Required by server. This Link may work in the browsers. 15 | error.412=Precondition Failed. This Link may work in the browsers. 16 | error.413=Request Entity Too Large. The request is larger than the server is willing or able to process. 17 | error.414=Request-URI Too Long. The URI provided was too long for the server to process. 18 | error.415=Unsupported Media Type. The request entity has a media type which the server or resource does not support. 19 | error.416=Requested Range Not Satisfiable. The client has asked for a portion of the file, but the server cannot supply that portion. 20 | error.417=Expectation Failed. The server cannot meet the requirements of your browser. 21 | error.418=I'm a teapot. ;-) 22 | error.500=Internal Server Error. A generic error message, given when no more specific message is suitable. 23 | error.501=Not Implemented. The server either does not recognise the request method, or it lacks the ability to fulfill the request. 24 | error.502=Bad Gateway. The server was acting as a gateway or proxy and received an invalid response from the upstream server. 25 | error.503=Service Unavailable. The server is currently unavailable (because it is overloaded or down for maintenance). Generally, this is a temporary state. 26 | error.504=Gateway Timeout. The server was acting as a gateway or proxy and did not receive a timely response from the upstream server. 27 | error.505=HTTP Version Not Supported. The server does not support the HTTP protocol version used in the request. 28 | -------------------------------------------------------------------------------- /assets/components/AlohaX/statusbar/jquery.statusbar.js: -------------------------------------------------------------------------------- 1 | /* 2 | THIS PLUGIN IS BASED ON jbar: http://tympanus.net/codrops/2009/10/29/jbar-a-jquery-notification-plugin/ 3 | */ 4 | (function($) { 5 | 6 | $.fn.alohaStatus = function(options) { 7 | var opts = $.extend({}, $.fn.alohaStatus.defaults, options); 8 | return this.each(function() { 9 | $this = $(this); 10 | var o = $.meta ? $.extend({}, opts, $this.data()) : opts; 11 | if(!$('.alohaStatus-container').length){ 12 | $('body').prepend('
'); 13 | } 14 | var container = $('.alohaStatus-container'); 15 | $(container).empty(); 16 | $(container).show(); 17 | if(!$('.alohaStatus').length){ 18 | if(!o.waitUntilClose){ 19 | timeout = setTimeout(function() { $.fn.alohaStatus.removebar(); },o.time); 20 | } else { 21 | //force remove button 22 | o.removebutton = true; 23 | } 24 | 25 | var _message_span = $(document.createElement('span')).addClass('alohaStatus-content').html(o.message); 26 | var _wrap_bar; 27 | (o.position == 'bottom') ? 28 | _wrap_bar = $(document.createElement('div')).addClass('alohaStatus alohaStatus-bottom'): 29 | _wrap_bar = $(document.createElement('div')).addClass('alohaStatus alohaStatus-top') ; 30 | 31 | _wrap_bar.css({"background-color" : o.background_color}); 32 | if(o.removebutton){ 33 | var _remove_cross = $(document.createElement('a')).addClass('alohaStatus-cross'); 34 | _remove_cross.click(function(e){$.fn.alohaStatus.removebar();}) 35 | } 36 | else{ 37 | _wrap_bar.css({"cursor" : "pointer"}); 38 | _wrap_bar.click(function(e){$.fn.alohaStatus.removebar();}) 39 | } 40 | 41 | _wrap_bar.addClass(o.type); 42 | if(o.type == 'warning'){ 43 | if(o.success){ 44 | _message_span.addClass('alohaStatus-success'); 45 | } else { 46 | _message_span.addClass('alohaStatus-error'); 47 | } 48 | } else { 49 | _message_span.css({"color" : o.color}); 50 | } 51 | 52 | _wrap_bar.append(_message_span).append(_remove_cross).hide().appendTo(container).fadeIn('fast'); 53 | } 54 | }); 55 | }; 56 | var timeout; 57 | $.fn.alohaStatus.removebar = function(txt) { 58 | if($('.alohaStatus').length){ 59 | clearTimeout(timeout); 60 | $('.alohaStatus').fadeOut('fast',function(){ 61 | $(this).remove(); 62 | $(".alohaStatus-container").hide(); 63 | }); 64 | } 65 | 66 | }; 67 | $.fn.alohaStatus.defaults = { 68 | background_color : '#FFFFFF', 69 | color : '#000', 70 | position : 'top', 71 | removebutton : true, 72 | time : 5000 , 73 | type : 'notice' 74 | }; 75 | 76 | })(jQuery); -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/plugins/com.gentics.aloha.plugins.Link/LinkList.js: -------------------------------------------------------------------------------- 1 | /* 2 | * Aloha Editor 3 | * Author & Copyright (c) 2010 Gentics Software GmbH 4 | * aloha-sales@gentics.com 5 | * Licensed unter the terms of http://www.aloha-editor.com/license.html 6 | */ 7 | if(!GENTICS.Aloha.Repositories){GENTICS.Aloha.Repositories={}}GENTICS.Aloha.Repositories.LinkList=new GENTICS.Aloha.Repository("com.gentics.aloha.repositories.LinkList");GENTICS.Aloha.Repositories.LinkList.settings.data=[{name:"Aloha Editor - The HTML5 Editor",url:"http://aloha-editor.com",type:"website"},{name:"Aloha Logo",url:"http://www.aloha-editor.com/images/aloha-editor-logo.png",type:"image"}];GENTICS.Aloha.Repositories.LinkList.folder=[];GENTICS.Aloha.Repositories.LinkList.init=function(){for(var i=0;i-1)&&(!p.inFolderId||p.inFolderId==e.parentId))});callback.call(this,d)};GENTICS.Aloha.Repositories.LinkList.getChildren=function(p,callback){var d=[];for(e in this.folder){var l=this.folder[e].parentId;if(typeof this.folder[e]!="function"&&(this.folder[e].parentId==p.inFolderId||(!this.folder[e].parentId&&p.inFolderId==this.repositoryId))){d.push(this.folder[e])}}callback.call(this,d)};GENTICS.Aloha.Repositories.LinkList.parseUri=function(str){var o={strictMode:false,key:["source","protocol","authority","userInfo","user","password","host","port","relative","path","directory","file","query","anchor"],q:{name:"queryKey",parser:/(?:^|&)([^&=]*)=?([^&]*)/g},parser:{strict:/^(?:([^:\/?#]+):)?(?:\/\/((?:(([^:@]*)(?::([^:@]*))?)?@)?([^:\/?#]*)(?::(\d*))?))?((((?:[^?#\/]*\/)*)([^?#]*))(?:\?([^#]*))?(?:#(.*))?)/,loose:/^(?:(?![^:@]+:[^:@\/]*@)([^:\/?#.]+):)?(?:\/\/)?((?:(([^:@]*)(?::([^:@]*))?)?@)?([^:\/?#]*)(?::(\d*))?)(((\/(?:[^?#](?![^?#\/]*\.[^?#\/.]+(?:[?#]|$)))*\/?)?([^?#\/]*))(?:\?([^#]*))?(?:#(.*))?)/}},m=o.parser[o.strictMode?"strict":"loose"].exec(str),uri={},i=14;while(i--){uri[o.key[i]]=m[i]||""}uri[o.q.name]={};uri[o.key[12]].replace(o.q.parser,function($0,$1,$2){if($1){uri[o.q.name][$1]=$2}});return uri}; -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/plugins/com.gentics.aloha.plugins.Link/delicious.js: -------------------------------------------------------------------------------- 1 | /* 2 | * Aloha Editor 3 | * Author & Copyright (c) 2010 Gentics Software GmbH 4 | * aloha-sales@gentics.com 5 | * Licensed unter the terms of http://www.aloha-editor.com/license.html 6 | */ 7 | if(!GENTICS.Aloha.Repositories){GENTICS.Aloha.Repositories={}}GENTICS.Aloha.Repositories.delicious=new GENTICS.Aloha.Repository("com.gentics.aloha.repositories.delicious");GENTICS.Aloha.Repositories.delicious.settings.username="draftkraft";GENTICS.Aloha.Repositories.delicious.settings.weight=0.35;GENTICS.Aloha.Repositories.delicious.init=function(){var that=this;if(this.settings.weight+0.15>1){this.settings.weight=1-0.15}this.deliciousURL="http://feeds.delicious.com/v2/json/";if(this.settings.username){this.deliciousURL+=this.settings.username+"/";this.repositoryName="deliciuos/"+this.settings.username;this.tags=[];jQuery.ajax({type:"GET",dataType:"jsonp",url:"http://feeds.delicious.com/v2/json/tags/"+that.settings.username,success:function(data){for(var tag in data){that.tags.push(tag)}}})}else{this.repositoryName="deliciuos/"+popular;this.deliciousURL+="tag/"}};GENTICS.Aloha.Repositories.delicious.query=function(p,callback){var that=this;if(p.objectTypeFilter&&jQuery.inArray("website",p.objectTypeFilter)==-1){callback.call(this,[])}else{var tags=[];if(this.settings.username){var queryTags=p.queryString?p.queryString.split(" "):[];for(var i=0;i0){tags.push(newtags[0])}}else{tags.push(queryTag)}}}else{tags=p.queryString.split(" ")}var folderTags=p.inFolderId?p.inFolderId.split("+"):[];jQuery.extend(tags,folderTags);if(p.queryString&&tags.length==0){callback.call(that,[]);return}jQuery.ajax({type:"GET",dataType:"jsonp",url:that.deliciousURL+tags.join("+"),success:function(data){var items=[];for(var i=0;i=0){var e=xhr.status}else{var e="0"}var o=jQuery(obj);if(o.attr("title")&&!o.attr("data-invalid")){o.attr("data-title",o.attr("title"))}o.attr("data-invalid","true");o.attr("title",cleanUrl+". "+that.i18n("error."+e));if(jQuery.inArray(xhr.status,that.warningCodes)>=0){o.addClass("GENTICS_link_warn")}else{o.addClass("GENTICS_link_error")}}},scope,timeout,delay)};GENTICS.Aloha.LinkChecker.urlExists=function(url,successFunc,failureFunc,scope,timeout,delay){var that=this;clearTimeout(this.timer[scope]);delay=(delay!=null&&delay!=undefined)?delay:700;var newTimer=setTimeout(function(){that.xhr[scope]=jQuery.ajax({url:url,timeout:timeout?10000:timeout,type:"HEAD",complete:function(xhr){clearTimeout(newTimer);try{if(xhr.status<400){successFunc.call(this,xhr)}else{failureFunc.call(this,xhr)}}catch(e){failureFunc.call(this,{status:0})}}})},delay);return newTimer};GENTICS.Aloha.LinkChecker.makeCleanLink=function(obj){if(obj){var o=jQuery(obj);if(o.attr("data-title")){o.attr("title",o.attr("data-title"))}else{o.removeAttr("title")}o.removeAttr("data-title");o.removeAttr("data-invalid");o.removeClass("GENTICS_link_error");o.removeClass("GENTICS_link_warn")}};GENTICS.Aloha.LinkChecker.makeClean=function(editable){var that=this;editable.find("a").each(function(){that.makeCleanLink(this)})};GENTICS.Aloha.LinkChecker.urlencode=function(str){str=(str+"").toString();return encodeURIComponent(str).replace(/!/g,"%21").replace(/'/g,"%27").replace(/\(/g,"%28").replace(/\)/g,"%29").replace(/\*/g,"%2A").replace(/%20/g,"+")}; -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/plugins/com.gentics.aloha.plugins.Abbr/examples/AlohaAbbr.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Aloha, Abbreviations ! 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 36 | 37 | 38 |
39 |
40 |
41 |

Aloha

42 |

Etymology

43 |

The word aloha derives from the Proto-Polynesian root *qalofa. It has cognates in other Polynesian languages, such as Samoan alofa 44 | and Māori aroha, also meaning "love."

45 |

AE is the word's most advanced browser based RTE made with aloha passion.

46 |

A folk etymology claims that it derives from a compound of the Hawaiian words alo meaning "presence", "front", "face", or "share"; and 47 | ha, meaning "breath of life" or "essence of life." Although alo does indeed mean "presence" etc., the word for breath is spelled with a macron 48 | or kahakō over the a (hā) whereas the word aloha does not have a long a.

49 |

Usage

50 |

Before contact with the West, the words used for greeting were welina and anoai. Today, "aloha kakahiaka" is the phrase for "good 51 | morning." "Aloha ʻauinalā" means "good afternoon" and "aloha ahiahi" means "good evening." "Aloha kākou" is a common form of "welcome to all."

52 |

In modern Hawaiʻi, numerous businesses have aloha in their names, with more than 3 pages of listings in the Oʻahu phone book alone.

53 |

Trends

54 |

Recent trends are popularizing the term elsewhere in the United States. Popular entertainer, Broadway star and Hollywood actress Bette 55 | Midler, born in Honolulu, uses the greeting frequently in national appearances. The word was also used frequently in the hit television drama 56 | Hawaii Five-O. In the influential 1982 film comedy Fast Times at Ridgemont High, the eccentric teacher Mr. Hand makes use of the greeting. The 57 | Aloha Spirit is a major concept in Lilo and Stitch, a very popular Disney series of movies and TV shows, set in Hawaiʻi. The drama series Lost, 58 | shot in Hawaiʻi, has a thank you note at the end of the credits saying "We thank the people of Hawaiʻi and their Aloha Spirit". Aloha is a term 59 | also used in the Nickelodeon program Rocket Power.

60 |
    61 |
  • Arguably the most famous historical Hawaiian song, "Aloha ʻOe" was written by the last queen of Hawaii, Liliʻuokalani.
  • 62 |
  • The term inspired the name of the ALOHA Protocol introduced in the 1970s by the University of Hawaii.
  • 63 |
  • In Hawaii someone can be said to have or show aloha in the way they treat others; whether family, friend, neighbor or stranger.
  • 64 |
65 |
66 |
67 |
68 | 69 | -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/plugins/com.gentics.aloha.plugins.Abbr/plugin.js: -------------------------------------------------------------------------------- 1 | /* 2 | * Aloha Editor 3 | * Author & Copyright (c) 2010 Gentics Software GmbH 4 | * aloha-sales@gentics.com 5 | * Licensed unter the terms of http://www.aloha-editor.com/license.html 6 | */ 7 | GENTICS.Aloha.Abbr=new GENTICS.Aloha.Plugin("com.gentics.aloha.plugins.Abbr");GENTICS.Aloha.Abbr.languages=["en","de"];GENTICS.Aloha.Abbr.config=["abbr"];GENTICS.Aloha.Abbr.init=function(){this.createButtons();this.subscribeEvents();this.bindInteractions()};GENTICS.Aloha.Abbr.createButtons=function(){var that=this;this.formatAbbrButton=new GENTICS.Aloha.ui.Button({iconClass:"GENTICS_button GENTICS_button_abbr",size:"small",onclick:function(){that.formatAbbr()},tooltip:this.i18n("button.abbr.tooltip"),toggle:true});GENTICS.Aloha.FloatingMenu.addButton("GENTICS.Aloha.continuoustext",this.formatAbbrButton,GENTICS.Aloha.i18n(GENTICS.Aloha,"floatingmenu.tab.format"),1);this.insertAbbrButton=new GENTICS.Aloha.ui.Button({iconClass:"GENTICS_button GENTICS_button_abbr",size:"small",onclick:function(){that.insertAbbr(false)},tooltip:this.i18n("button.addabbr.tooltip"),toggle:false});GENTICS.Aloha.FloatingMenu.addButton("GENTICS.Aloha.continuoustext",this.insertAbbrButton,GENTICS.Aloha.i18n(GENTICS.Aloha,"floatingmenu.tab.insert"),1);GENTICS.Aloha.FloatingMenu.createScope(this.getUID("abbr"),"GENTICS.Aloha.continuoustext");this.abbrField=new GENTICS.Aloha.ui.AttributeField({width:320});GENTICS.Aloha.FloatingMenu.addButton(this.getUID("abbr"),this.abbrField,this.i18n("floatingmenu.tab.abbr"),1)};GENTICS.Aloha.Abbr.bindInteractions=function(){var that=this;this.abbrField.addListener("blur",function(obj,event){if(this.getValue()==""){that.removeAbbr()}});for(var i=0;i'+abbrText+"");GENTICS.Utils.Dom.insertIntoDOM(newAbbr,range,jQuery(GENTICS.Aloha.activeEditable.obj));range.startContainer=range.endContainer=newAbbr.contents().get(0);range.startOffset=0;range.endOffset=abbrText.length}else{var newAbbr=jQuery('');GENTICS.Utils.Dom.addMarkup(range,newAbbr,false)}range.select();this.abbrField.focus()};GENTICS.Aloha.Abbr.removeAbbr=function(){var range=GENTICS.Aloha.Selection.getRangeObject();var foundMarkup=this.findAbbrMarkup();if(foundMarkup){GENTICS.Utils.Dom.removeFromDOM(foundMarkup,range,true);GENTICS.Aloha.activeEditable.obj[0].focus();range.select()}};GENTICS.Aloha.Abbr.makeClean=function(obj){}; -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/plugins/com.gentics.aloha.plugins.LinkChecker/examples/AlohaLinkChecker.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Aloha, link checker! 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 38 | 48 | 49 | 50 |
51 |
52 |
53 |

Aloha

54 |

Etymology

55 |

The word aloha derives from the Proto-Polynesian root *qalofa. It has cognates in other Polynesian languages, such as Samoan alofa 56 | and Māori aroha, also meaning "love."

57 |

invalid Aloha Editor is the word's most advanced browser based Editor made with aloha passion.

58 |

A folk etymology claims that it derives from a compound of the Hawaiian words alo meaning "presence", "front", "face", or "share"; and 59 | ha, meaning "breath of life" or "essence of life." Although alo does indeed mean "presence" etc., the word for breath is spelled with a macron 60 | or kahakō over the a (hā) whereas the word aloha does not have a long a.

61 |

Links are the web's Rocket Power.

62 |

Usage

63 |

Before contact with the West, the words used for greeting were welina and anoai. Today, "aloha kakahiaka" is the phrase for "good 64 | morning." "Aloha ʻauinalā" means "good afternoon" and "aloha ahiahi" means "good evening." "Aloha kākou" is a common form of "welcome to all."

65 |

In modern Hawaiʻi, numerous businesses have aloha in their names, with more than 3 pages of listings in the Oʻahu phone book alone.

66 |

Trends

67 |

Recent trends are popularizing the term elsewhere in the United States. Popular entertainer, Broadway star and Hollywood actress Bette 68 | Midler, born in Honolulu, uses the greeting frequently in national appearances. The word was also used frequently in the hit television drama 69 | Hawaii Five-O. In the influential 1982 film comedy Fast Times at Ridgemont High, the eccentric teacher Mr. Hand makes use of the greeting. The 70 | Aloha Spirit is a major concept in Lilo and Stitch, a very popular Disney series of movies and TV shows, set in Hawaiʻi. The drama series Lost, 71 | shot in Hawaiʻi, has a thank you note at the end of the credits saying "We thank the people of Hawaiʻi and their Aloha Spirit". Aloha is a term 72 | also used in the Nickelodeon program Rocket Power.

73 |
    74 |
  • Arguably the most famous historical Hawaiian song, "Aloha ʻOe" was written by the last queen of Hawaii, Liliʻuokalani.
  • 75 |
  • The term inspired the name of the ALOHA Protocol introduced in the 1970s by the University of Hawaii.
  • 76 |
  • In Hawaii someone can be said to have or show aloha in the way they treat others; whether family, friend, neighbor or stranger.
  • 77 |
78 |
79 |
80 |
81 | 82 | -------------------------------------------------------------------------------- /assets/components/AlohaX/aloha/plugins/com.gentics.aloha.plugins.Paste/wordpastehandler.js: -------------------------------------------------------------------------------- 1 | /* 2 | * Aloha Editor 3 | * Author & Copyright (c) 2010 Gentics Software GmbH 4 | * aloha-sales@gentics.com 5 | * Licensed unter the terms of http://www.aloha-editor.com/license.html 6 | */ 7 | GENTICS.Aloha.PastePlugin.WordPasteHandler=new GENTICS.Aloha.PastePlugin.PasteHandler();GENTICS.Aloha.PastePlugin.WordPasteHandler.handlePaste=function(jqPasteDiv){if(this.detectWordContent(jqPasteDiv)){this.transformWordContent(jqPasteDiv)}};GENTICS.Aloha.PastePlugin.WordPasteHandler.detectWordContent=function(jqPasteDiv){var wordDetected=false;jqPasteDiv.find("*").each(function(){var style=jQuery(this).attr("style");if(style){if(style.toLowerCase().indexOf("mso")>=0){wordDetected=true;return false}}var clazz=jQuery(this).attr("class");if(clazz){if(clazz.toLowerCase().indexOf("mso")>=0){wordDetected=true;return false}}});return wordDetected};GENTICS.Aloha.PastePlugin.WordPasteHandler.isOrderedList=function(listSpan){if(listSpan.css("fontFamily")=="Wingdings"){return false}return listSpan.text().match(/^\(?[0-9a-cA-C]/)?true:false};GENTICS.Aloha.PastePlugin.WordPasteHandler.transformListsFromWord=function(jqPasteDiv){var that=this;jqPasteDiv.find("p.MsoListParagraphCxSpFirst,p.MsoListParagraph").each(function(){var jqElem=jQuery(this);jqElem.find("font").each(function(){jQuery(this).contents().unwrap()});var nestLevel=0;var margin=parseFloat(jqElem.css("marginLeft"));var lists=[];var following=jqElem.nextUntil(":not(p.MsoListParagraphCxSpMiddle,p.MsoListParagraphCxSpLast)");var firstSpan=jQuery(jqElem.children("span:first"));var ordered=that.isOrderedList(firstSpan);firstSpan.remove();var jqList=jQuery(ordered?"
    ":"
      ");lists.push(jqList);var jqNewLi=jQuery("
    • ");jqList.append(jqNewLi);jqElem.contents().appendTo(jqNewLi);jqElem.replaceWith(jqList);following.each(function(){var jqElem=jQuery(this);jqElem.find("font").each(function(){jQuery(this).contents().unwrap()});var newMargin=parseFloat(jqElem.css("marginLeft"));firstSpan=jQuery(jqElem.children("span:first"));ordered=that.isOrderedList(firstSpan);firstSpan.remove();if(newMargin>margin){var jqNewList=jQuery(ordered?"
        ":"
          ");jqList.children(":last").append(jqNewList);jqList=jqNewList;lists.push(jqList);nestLevel++;margin=newMargin}else{if(newMargin0){lists.pop();nestLevel--;jqList=lists[nestLevel];margin=newMargin}}jqNewLi=jQuery("
        • ");jqList.append(jqNewLi);jqElem.contents().appendTo(jqNewLi);jqElem.remove()})})};GENTICS.Aloha.PastePlugin.WordPasteHandler.transformTitles=function(jqPasteDiv){jqPasteDiv.find("p.MsoTitle").each(function(){GENTICS.Aloha.Markup.transformDomObject(jQuery(this),"h1")});jqPasteDiv.find("p.MsoSubtitle").each(function(){GENTICS.Aloha.Markup.transformDomObject(jQuery(this),"h2")})};GENTICS.Aloha.PastePlugin.WordPasteHandler.transformTables=function(jqPasteDiv){jqPasteDiv.find("table").each(function(){jQuery(this).removeAttr("border").removeAttr("cellspacing").removeAttr("cellpadding")});jqPasteDiv.find("td").each(function(){jQuery(this).removeAttr("width").removeAttr("height").removeAttr("valign")})};GENTICS.Aloha.PastePlugin.WordPasteHandler.transformFormattings=function(jqPasteDiv){jqPasteDiv.find("strong,em,s,u").each(function(){if(this.nodeName.toLowerCase()=="strong"){GENTICS.Aloha.Markup.transformDomObject(jQuery(this),"b")}else{if(this.nodeName.toLowerCase()=="em"){GENTICS.Aloha.Markup.transformDomObject(jQuery(this),"i")}else{if(this.nodeName.toLowerCase()=="s"){GENTICS.Aloha.Markup.transformDomObject(jQuery(this),"del")}else{if(this.nodeName.toLowerCase()=="u"){jQuery(this).contents().unwrap()}}}}})};GENTICS.Aloha.PastePlugin.WordPasteHandler.removeComments=function(jqPasteDiv){jqPasteDiv.contents().each(function(){if(this.nodeType==8){jQuery(this).remove()}})};GENTICS.Aloha.PastePlugin.WordPasteHandler.unwrapTags=function(jqPasteDiv){jqPasteDiv.find("span,font,div").each(function(){jQuery(this).contents().unwrap()})};GENTICS.Aloha.PastePlugin.WordPasteHandler.removeStyles=function(jqPasteDiv){jqPasteDiv.find("*").each(function(){jQuery(this).removeAttr("style").removeClass()})};GENTICS.Aloha.PastePlugin.WordPasteHandler.removeNamespacedElements=function(jqPasteDiv){jqPasteDiv.find("*").each(function(){var nsPrefix=this.prefix?this.prefix:(this.scopeName?this.scopeName:undefined);if(nsPrefix&&nsPrefix!="HTML"){jQuery(this).remove()}})};GENTICS.Aloha.PastePlugin.WordPasteHandler.transformWordContent=function(jqPasteDiv){this.transformListsFromWord(jqPasteDiv);this.transformTables(jqPasteDiv);this.transformTitles(jqPasteDiv);this.removeComments(jqPasteDiv);this.unwrapTags(jqPasteDiv);this.removeStyles(jqPasteDiv);this.removeNamespacedElements(jqPasteDiv);this.transformFormattings(jqPasteDiv)}; -------------------------------------------------------------------------------- /core/components/AlohaX/elements/snippets/alohax.snippet.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * This file is part of AholaX, a port of Ahola Editor (ahola-editor.com) for MODX Revolution. 8 | * 9 | * AholaX is free software; you can redistribute it and/or modify it under 10 | * the terms of the GNU General Public License as published by the Free Software 11 | * Foundation; either version 2 of the License, or (at your option) any later 12 | * version. 13 | * 14 | * AholaX is distributed in the hope that it will be useful, but WITHOUT ANY 15 | * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR 16 | * A PARTICULAR PURPOSE. See the GNU General Public License for more details. 17 | * 18 | * You should have received a copy of the GNU General Public License along with 19 | * AholaX; if not, write to the Free Software Foundation, Inc., 59 Temple Place, 20 | * Suite 330, Boston, MA 02111-1307 USA 21 | * 22 | */ 23 | /* 24 | 25 | Purpose of this snippet is to inject javascripts that will allow editing on the front end. 26 | For now, only managers will have access unless the below is modified. 27 | 28 | */ 29 | 30 | //#Auth 31 | 32 | if(!$modx->getAuthenticatedUser('mgr')){ 33 | return; 34 | } 35 | 36 | //#End Auth 37 | 38 | //get options 39 | $assetsPath = $modx->getOption('alohax.assets_path',null,$modx->getOption('assetsPath', $scriptProperties, 'assets/components/AlohaX/')); 40 | $saveOnBlur = (int)$modx->getOption('saveOnBlur', $scriptProperties, 0); 41 | $fields = $modx->getOption('fields', $scriptProperties, 'pagetitle,longtitle,menutitle,introtext,content'); 42 | $generateLinkList = $modx->getOption('generateLinkList', $scriptProperties, 1);//this is not very scaleable... 43 | 44 | //load this up so we can use it on the front end for storage. 45 | $resource = $modx->getObject('modResource', $modx->resourceIdentifier); 46 | $tvs = $resource->getMany('TemplateVars'); 47 | $tvValues = array(); 48 | foreach($tvs as $tvId => $tv){ 49 | $tvValues[$tv->get('name')] = $tv->getValue($resource->get('id')); 50 | } 51 | 52 | $resourceGraph = array_merge($tvValues, $resource->toArray()); 53 | 54 | $dirtyFields = $resourceGraph; 55 | foreach($dirtyFields as $fieldName => $val){ 56 | $dirtyFields[$fieldName] = 0; 57 | } 58 | 59 | if($fields == '*'){ 60 | //get resource fields 61 | $fields = $resourceGraph; 62 | $fields = array_keys($fields); 63 | } else { 64 | $fields = explode(',', $fields); 65 | } 66 | 67 | $resourceJSON = array(); 68 | foreach($fields as $field){ 69 | $resourceJSON = array( 70 | $field => $resourceGraph[$field] 71 | ); 72 | } 73 | 74 | $statusBarAssets = array( 75 | 'jquery.statusbar.js' 76 | ,'css/style.css' 77 | ); 78 | 79 | $alohaAssets = array( 80 | 'aloha.js' 81 | ,'plugins/com.gentics.aloha.plugins.Format/plugin.js' 82 | ,'plugins/com.gentics.aloha.plugins.Table/plugin.js' 83 | ,'plugins/com.gentics.aloha.plugins.List/plugin.js' 84 | ,'plugins/com.gentics.aloha.plugins.Link/plugin.js' 85 | ,'plugins/com.gentics.aloha.plugins.HighlightEditables/plugin.js' 86 | ,'plugins/com.gentics.aloha.plugins.Link/LinkList.js' 87 | ,'plugins/com.gentics.aloha.plugins.Paste/plugin.js' 88 | ,'plugins/com.gentics.aloha.plugins.Paste/wordpastehandler.js' 89 | ,'plugins/at.tapo.aloha.plugins.Image/plugin.js' 90 | ,'alohax.js' 91 | ); 92 | //plugin.js is not properly translated 93 | 94 | $siteId = $_SESSION["modx.mgr.user.token"]; 95 | //used to be $modx->siteId? 96 | 97 | $vars = array( 98 | 'assetsPath' => $assetsPath 99 | ,'HTTP_MODAUTH' => $siteId 100 | ,'saveOnBlur' => $saveOnBlur 101 | ,'resourceIdentifier' => $modx->resourceIdentifier 102 | ,'fields' => $fields 103 | ,'resource' => $resourceJSON 104 | ,'dirtyFields' => $dirtyFields 105 | ); 106 | 107 | $json = $modx->toJSON($vars); 108 | $modx->regClientStartupHTMLBlock( 109 | '' 112 | ); 113 | 114 | foreach($alohaAssets as $script){ 115 | //register all scripts in order. 116 | $modx->regClientStartupScript($assetsPath . 'aloha/' . $script); 117 | } 118 | 119 | foreach($statusBarAssets as $script){ 120 | //register all scripts in order. 121 | if(end(explode('.', $script)) == 'js'){ 122 | $modx->regClientStartupScript($assetsPath . 'statusbar/' . $script); 123 | } else { 124 | $modx->regClientCSS($assetsPath . 'statusbar/' . $script); 125 | } 126 | 127 | } 128 | 129 | if($generateLinkList){ 130 | $links = array(); 131 | $allResources = $modx->getCollection('modResource', array('published' => 1, 'deleted' => 0)); 132 | foreach($allResources as $resourceId => $resource){ 133 | $links[] = array( 134 | 'name' => strip_tags($resource->get('pagetitle')) 135 | ,'url' => $modx->makeURL($resource->get('id'), '', '', 'full') 136 | ,'type' => 'modx-link' 137 | ); 138 | } 139 | $links = $modx->toJSON($links); 140 | $modx->regClientStartupHTMLBlock( 141 | '' 144 | ) ; 145 | } 146 | 147 | 148 | --------------------------------------------------------------------------------