├── .codeclimate.yml ├── .csslintrc ├── .editorconfig ├── .eslintignore ├── .eslintrc ├── .gitattributes ├── .gitignore ├── .htaccess ├── LICENSE ├── README.md ├── app ├── App.php ├── config │ ├── app.json │ ├── database.json │ └── security.json ├── lang │ ├── de_DE │ │ ├── LC_MESSAGES │ │ │ ├── project.mo │ │ │ └── project.po │ │ ├── core.ini │ │ └── main.ini │ ├── en_GB │ │ ├── LC_MESSAGES │ │ │ ├── project.mo │ │ │ └── project.po │ │ ├── core.ini │ │ └── main.ini │ └── nl_NL │ │ ├── LC_MESSAGES │ │ ├── project.mo │ │ └── project.po │ │ ├── core.ini │ │ ├── main.ini │ │ └── shop.ini ├── layout │ └── base │ │ ├── link │ │ ├── css.body.php │ │ ├── css.html.php │ │ ├── js.body.php │ │ └── js.html.php │ │ ├── res │ │ ├── css │ │ │ ├── core.alert.css │ │ │ └── default.css │ │ └── js │ │ │ └── default.js │ │ └── template │ │ ├── default.ajax.phtml │ │ ├── default.crud.phtml │ │ └── default.html.phtml └── modules │ └── node │ ├── res │ ├── css │ │ └── default.css │ └── js │ │ └── default.js │ └── template │ ├── homepage.phtml │ └── page.phtml ├── composer.json ├── composer.lock ├── core ├── config │ ├── app.json │ ├── dev │ │ ├── app.json │ │ ├── layout.json │ │ ├── mail.json │ │ └── security.json │ ├── i18n.json │ ├── layout.json │ ├── mail.json │ ├── misc.json │ ├── routes.json │ ├── security.json │ ├── services.json │ ├── session.json │ ├── shop.json │ └── user.json ├── layout │ ├── admin │ │ ├── link │ │ │ ├── css.ajax.php │ │ │ ├── css.crud.php │ │ │ ├── css.html.php │ │ │ ├── js.ajax.php │ │ │ ├── js.crud.php │ │ │ └── js.html.php │ │ ├── res │ │ │ ├── css │ │ │ │ ├── bootstrap.css │ │ │ │ ├── chosen.css │ │ │ │ ├── ckeditor.css │ │ │ │ ├── core.alert.css │ │ │ │ ├── core.shortcut.css │ │ │ │ ├── dark.css │ │ │ │ ├── default.crud.css │ │ │ │ ├── default.css │ │ │ │ ├── default.phone.css │ │ │ │ ├── default.tablet.css │ │ │ │ ├── picker.css │ │ │ │ ├── selectize.css │ │ │ │ └── yellow.css │ │ │ └── js │ │ │ │ ├── core.alert.js │ │ │ │ ├── core.lazy.js │ │ │ │ ├── core.shortcut.js │ │ │ │ ├── core.timeout.js │ │ │ │ ├── default.js │ │ │ │ ├── i18n.de.js │ │ │ │ ├── i18n.en.js │ │ │ │ └── i18n.nl.js │ │ └── template │ │ │ ├── default.ajax.phtml │ │ │ ├── default.crud.phtml │ │ │ └── default.html.phtml │ └── empty │ │ └── template │ │ ├── default.crud.phtml │ │ ├── default.html.phtml │ │ └── default.json.phtml └── modules │ ├── _core │ ├── README │ ├── _coreComponentController.php │ ├── _coreController.php │ ├── _coreCrudController.php │ ├── _coreDebuggerController.php │ ├── res │ │ ├── css │ │ │ ├── component │ │ │ │ └── form │ │ │ │ │ └── upload.css │ │ │ ├── crud │ │ │ │ ├── edit.css │ │ │ │ ├── edit │ │ │ │ │ └── layout.css │ │ │ │ ├── field │ │ │ │ │ ├── file.css │ │ │ │ │ ├── fk.css │ │ │ │ │ ├── header.css │ │ │ │ │ ├── i18n.css │ │ │ │ │ ├── icon.css │ │ │ │ │ ├── media.css │ │ │ │ │ ├── multiple.css │ │ │ │ │ ├── picker.css │ │ │ │ │ └── spatial.css │ │ │ │ └── list.css │ │ │ └── debugger │ │ │ │ ├── handler.css │ │ │ │ └── view.css │ │ └── js │ │ │ ├── component │ │ │ ├── form │ │ │ │ ├── ajax.js │ │ │ │ └── upload.js │ │ │ └── shortcut.js │ │ │ ├── crud │ │ │ ├── default.js │ │ │ ├── edit.js │ │ │ ├── edit │ │ │ │ └── revisions.js │ │ │ ├── field │ │ │ │ ├── boolean.js │ │ │ │ ├── file.js │ │ │ │ ├── fk.js │ │ │ │ ├── i18n.js │ │ │ │ ├── icon.js │ │ │ │ ├── media.js │ │ │ │ ├── multiple.js │ │ │ │ ├── picker.js │ │ │ │ ├── publish.js │ │ │ │ ├── spatial.js │ │ │ │ ├── text.js │ │ │ │ ├── text │ │ │ │ │ ├── aloha.js │ │ │ │ │ ├── ckeditor.js │ │ │ │ │ └── jwysiwyg.js │ │ │ │ └── timespan.js │ │ │ ├── list.js │ │ │ └── mainfilter.js │ │ │ └── debugger │ │ │ └── view.js │ └── template │ │ ├── component │ │ ├── form │ │ │ ├── ajax.phtml │ │ │ ├── form.phtml │ │ │ └── upload.phtml │ │ ├── image │ │ │ ├── base64.phtml │ │ │ └── show.phtml │ │ └── qrcode │ │ │ └── show.phtml │ │ ├── crud │ │ ├── edit.phtml │ │ ├── edit │ │ │ ├── form.phtml │ │ │ ├── layout.phtml │ │ │ └── revisions.phtml │ │ ├── field.phtml │ │ ├── field │ │ │ ├── boolean.phtml │ │ │ ├── date.phtml │ │ │ ├── enum.phtml │ │ │ ├── file.phtml │ │ │ ├── fk.phtml │ │ │ ├── header.phtml │ │ │ ├── i18n.phtml │ │ │ ├── icon.phtml │ │ │ ├── media.phtml │ │ │ ├── multiple.phtml │ │ │ ├── numeric.phtml │ │ │ ├── picker.phtml │ │ │ ├── publish.phtml │ │ │ ├── sort.phtml │ │ │ ├── spatial.phtml │ │ │ ├── text.phtml │ │ │ ├── time.phtml │ │ │ └── timespan.phtml │ │ ├── list.phtml │ │ └── mainfilter.phtml │ │ └── debugger │ │ ├── ajax.phtml │ │ └── view.phtml │ ├── acl │ ├── AclController.php │ └── model │ │ ├── AclCollection.php │ │ └── AclModel.php │ ├── admin │ ├── AdminAclController.php │ ├── AdminCmsController.php │ ├── AdminController.php │ ├── AdminEmailController.php │ ├── AdminFormController.php │ ├── AdminMediaController.php │ ├── AdminMenuController.php │ ├── AdminNodeController.php │ ├── AdminSetupController.php │ ├── AdminShopController.php │ ├── AdminSystemController.php │ ├── AdminTagController.php │ ├── AdminUserController.php │ ├── model │ │ ├── LogCollection.php │ │ ├── LogModel.php │ │ ├── MediatypeCollection.php │ │ ├── MediatypeModel.php │ │ ├── MenuCollection.php │ │ ├── MenuModel.php │ │ ├── MetaCollection.php │ │ ├── MetaModel.php │ │ ├── NodetypeCollection.php │ │ ├── NodetypeModel.php │ │ ├── RevisionCollection.php │ │ ├── RevisionModel.php │ │ ├── SettingCollection.php │ │ └── SettingModel.php │ ├── res │ │ ├── css │ │ │ ├── acl │ │ │ │ └── menu.css │ │ │ ├── cms │ │ │ │ └── nav.css │ │ │ ├── media │ │ │ │ ├── driveButton.css │ │ │ │ ├── uploadButton.css │ │ │ │ └── view.css │ │ │ ├── system │ │ │ │ ├── chromeApp.css │ │ │ │ └── update.css │ │ │ └── view.css │ │ └── js │ │ │ ├── acl │ │ │ ├── model.js │ │ │ └── page.js │ │ │ ├── cms │ │ │ └── nav.js │ │ │ ├── media │ │ │ ├── driveButton.js │ │ │ ├── typeBtn.js │ │ │ ├── upload.js │ │ │ └── uploadButton.js │ │ │ ├── node │ │ │ ├── panel.js │ │ │ ├── update.js │ │ │ └── view.js │ │ │ ├── setup │ │ │ └── nodes.js │ │ │ ├── shop │ │ │ └── transactions.js │ │ │ ├── system │ │ │ └── update.js │ │ │ ├── user │ │ │ └── view.js │ │ │ └── view.js │ └── template │ │ ├── acl │ │ ├── menu.phtml │ │ ├── model.phtml │ │ ├── page.phtml │ │ └── view.phtml │ │ ├── cms │ │ ├── _menu.phtml │ │ ├── menu.phtml │ │ ├── nav.phtml │ │ ├── settings.phtml │ │ ├── settingsmenu.phtml │ │ └── setupmenu.phtml │ │ ├── email │ │ ├── field.phtml │ │ ├── history.phtml │ │ ├── menu.phtml │ │ ├── template.phtml │ │ └── view.phtml │ │ ├── form │ │ ├── menu.phtml │ │ ├── submission.phtml │ │ └── view.phtml │ │ ├── media │ │ ├── driveButton.phtml │ │ ├── typeBtn.phtml │ │ ├── upload.phtml │ │ ├── uploadButton.phtml │ │ └── view.phtml │ │ ├── menu │ │ └── view.phtml │ │ ├── nav.phtml │ │ ├── node │ │ ├── panel.phtml │ │ └── view.phtml │ │ ├── setup │ │ ├── media.phtml │ │ ├── menus.phtml │ │ ├── meta.phtml │ │ ├── nodes.phtml │ │ └── settings.phtml │ │ ├── shop │ │ ├── carts.phtml │ │ ├── menu.phtml │ │ ├── products.phtml │ │ └── transactions.phtml │ │ ├── system │ │ ├── check.phtml │ │ ├── chromeApp.phtml │ │ ├── cleanuploads.phtml │ │ ├── log.phtml │ │ ├── logpanel.phtml │ │ └── update.phtml │ │ ├── tag │ │ └── view.phtml │ │ ├── user │ │ └── view.phtml │ │ └── view.phtml │ ├── api │ ├── ApiController.php │ └── ApiV1Controller.php │ ├── email │ └── model │ │ ├── EmailCollection.php │ │ ├── EmailModel.php │ │ ├── MailerlogCollection.php │ │ ├── MailerlogModel.php │ │ ├── TemplateCollection.php │ │ └── TemplateModel.php │ ├── form │ ├── FormController.php │ ├── model │ │ ├── FormCollection.php │ │ ├── FormModel.php │ │ ├── SubmissionCollection.php │ │ └── SubmissionModel.php │ ├── res │ │ └── css │ │ │ └── view.css │ └── template │ │ └── view.phtml │ ├── lang │ ├── LangController.php │ └── template │ │ ├── links.phtml │ │ └── switcher.phtml │ ├── main │ ├── MainController.php │ ├── model │ │ ├── TestCollection.php │ │ └── TestModel.php │ ├── res │ │ ├── css │ │ │ └── default.css │ │ └── js │ │ │ └── default.js │ └── template │ │ ├── code403.phtml │ │ ├── code404.phtml │ │ └── code500.phtml │ ├── media │ ├── MediaController.php │ ├── model │ │ ├── MediaCollection.php │ │ └── MediaModel.php │ └── template │ │ └── edit.phtml │ ├── node │ ├── NodeController.php │ └── model │ │ ├── NodeCollection.php │ │ └── NodeModel.php │ ├── shop │ ├── ShopCartController.php │ ├── ShopController.php │ ├── ShopTransactionController.php │ ├── model │ │ ├── CartCollection.php │ │ ├── CartItemCollection.php │ │ ├── CartItemModel.php │ │ ├── CartModel.php │ │ ├── PickupModel.php │ │ ├── ProductCollection.php │ │ ├── ProductModel.php │ │ ├── ShippingModel.php │ │ ├── TntModel.php │ │ ├── TransactionCollection.php │ │ ├── TransactionItemCollection.php │ │ ├── TransactionItemModel.php │ │ ├── TransactionModel.php │ │ ├── VatCollection.php │ │ └── VatModel.php │ ├── res │ │ ├── css │ │ │ ├── cart │ │ │ │ ├── add.css │ │ │ │ ├── default.css │ │ │ │ └── edit.css │ │ │ ├── checkout.css │ │ │ ├── default.css │ │ │ ├── transaction │ │ │ │ ├── default.css │ │ │ │ ├── payment.css │ │ │ │ ├── setup.css │ │ │ │ ├── shipment.css │ │ │ │ ├── view.css │ │ │ │ └── view.print.css │ │ │ └── view.css │ │ └── js │ │ │ ├── cart │ │ │ ├── add.js │ │ │ ├── edit.js │ │ │ └── widget.js │ │ │ └── transaction │ │ │ ├── payment.js │ │ │ ├── setup.js │ │ │ └── shipment.js │ └── template │ │ ├── cart │ │ ├── add.phtml │ │ ├── edit.phtml │ │ └── widget.phtml │ │ ├── checkout.phtml │ │ ├── item.phtml │ │ ├── legal.body.phtml │ │ ├── legal.phtml │ │ ├── transaction │ │ ├── callback.phtml │ │ ├── complete.phtml │ │ ├── countries.phtml │ │ ├── iban │ │ │ └── confirm.phtml │ │ ├── payment.phtml │ │ ├── postproxy.phtml │ │ ├── refused.phtml │ │ ├── setup.phtml │ │ ├── shipment.phtml │ │ ├── test │ │ │ └── confirm.phtml │ │ └── view.phtml │ │ └── view.phtml │ ├── tag │ └── model │ │ ├── TagCollection.php │ │ └── TagModel.php │ └── user │ ├── UserController.php │ ├── UserSsoController.php │ ├── model │ ├── SsoCollection.php │ ├── SsoModel.php │ ├── UserCollection.php │ ├── UserModel.php │ ├── UsergroupCollection.php │ └── UsergroupModel.php │ ├── res │ ├── css │ │ ├── default.css │ │ ├── logon.css │ │ ├── register.css │ │ └── settings.css │ └── js │ │ ├── forgot.js │ │ ├── logon.js │ │ ├── register.js │ │ ├── reset.js │ │ └── settings.js │ └── template │ ├── app.phtml │ ├── forgot.phtml │ ├── logon.phtml │ ├── menu.phtml │ ├── profile.phtml │ ├── register.phtml │ ├── relogon.phtml │ ├── reset.phtml │ ├── settings.phtml │ └── social.phtml ├── dev ├── app.pem └── db │ └── v1.0.0.sql ├── lib └── Ajde │ ├── Acl.php │ ├── Acl │ ├── Collection.php │ ├── Controller.php │ └── Proxy │ │ ├── Collection.php │ │ └── Model.php │ ├── Api │ └── Controller.php │ ├── Application.php │ ├── BootstrapInterface.php │ ├── Cache.php │ ├── Cms.php │ ├── Collection.php │ ├── Collection │ ├── Paginator.php │ ├── View.php │ └── With │ │ ├── Acl.php │ │ ├── AclI18n.php │ │ ├── AclI18nDummy.php │ │ └── I18n.php │ ├── Component.php │ ├── Component │ ├── Crud.php │ ├── Css.php │ ├── Embed.php │ ├── Exception.php │ ├── Form.php │ ├── Form │ │ └── UploadHelper.php │ ├── Image.php │ ├── Include.php │ ├── Js.php │ ├── Markdown.php │ ├── Markdown │ │ ├── License.text │ │ ├── PHP Markdown Readme.text │ │ └── markdown.php │ ├── Qrcode.php │ ├── Resource.php │ ├── String.php │ └── lib │ │ └── finediff.php │ ├── Config.php │ ├── Config │ └── Repository.php │ ├── Controller.php │ ├── Controller │ └── Exception.php │ ├── Cookie.php │ ├── Core │ ├── Array.php │ ├── Autodebug.php │ ├── Autoloader │ │ ├── Combinator.php │ │ └── Exception.php │ ├── Bootstrap.php │ ├── Documentation.php │ ├── Exception │ │ ├── Deprecated.php │ │ ├── Routing.php │ │ └── Security.php │ ├── ExternalLibs.php │ └── Route.php │ ├── Crud.php │ ├── Crud │ ├── Cms │ │ ├── Meta.php │ │ └── Meta │ │ │ ├── Decorator.php │ │ │ ├── Fieldlist.php │ │ │ ├── Type.php │ │ │ └── Type │ │ │ ├── Date.php │ │ │ ├── Form.php │ │ │ ├── Grouper.php │ │ │ ├── Listofoptions.php │ │ │ ├── Media.php │ │ │ ├── Nodelink.php │ │ │ ├── Numeric.php │ │ │ ├── Products.php │ │ │ ├── Publish.php │ │ │ ├── Spatial.php │ │ │ ├── Text.php │ │ │ ├── Time.php │ │ │ ├── Timespan.php │ │ │ ├── Toggle.php │ │ │ └── User.php │ ├── Editor.php │ ├── Editor │ │ ├── Aloha.php │ │ ├── Ckeditor.php │ │ ├── Jwysiwyg.php │ │ └── None.php │ ├── Export.php │ ├── Export │ │ ├── Excel.php │ │ ├── Interface.php │ │ └── excel.lib.php │ ├── Field.php │ ├── Field │ │ ├── Boolean.php │ │ ├── Date.php │ │ ├── Enum.php │ │ ├── File.php │ │ ├── Fk.php │ │ ├── Header.php │ │ ├── I18n.php │ │ ├── Icon.php │ │ ├── Media.php │ │ ├── Multiple.php │ │ ├── Numeric.php │ │ ├── Publish.php │ │ ├── Sort.php │ │ ├── Spatial.php │ │ ├── Text.php │ │ ├── Time.php │ │ └── Timespan.php │ ├── Options.php │ └── Options │ │ ├── Edit.php │ │ ├── Edit │ │ ├── Layout.php │ │ └── Layout │ │ │ ├── Rows.php │ │ │ └── Rows │ │ │ ├── Row.php │ │ │ └── Row │ │ │ ├── Columns.php │ │ │ └── Columns │ │ │ ├── Column.php │ │ │ └── Column │ │ │ ├── Blocks.php │ │ │ └── Blocks │ │ │ └── Block.php │ │ ├── Fields.php │ │ ├── Fields │ │ └── Field.php │ │ ├── List.php │ │ └── List │ │ ├── Buttons.php │ │ └── View.php │ ├── Db.php │ ├── Db │ ├── Adapter │ │ ├── Abstract.php │ │ └── Mysql.php │ ├── Cache.php │ ├── Exception.php │ ├── Function.php │ ├── IntegrityException.php │ ├── PDO.php │ ├── PDOStatement.php │ └── Table.php │ ├── Document.php │ ├── Document │ ├── Format │ │ ├── Ajax.php │ │ ├── Body.php │ │ ├── Crud.php │ │ ├── Css.php │ │ ├── Data.php │ │ ├── Generated.php │ │ ├── Html.php │ │ ├── Js.php │ │ ├── Json.php │ │ ├── Pdf.php │ │ └── Xml.php │ ├── Processor.php │ └── Processor │ │ ├── Css │ │ ├── Less.php │ │ ├── Maximizer.php │ │ └── lib │ │ │ ├── less │ │ │ └── lessc.inc.php │ │ │ └── maximizer │ │ │ ├── CSS3Maximizer.php │ │ │ └── inc │ │ │ └── ColorSpace.php │ │ └── Html │ │ ├── Beautifier.php │ │ ├── Compressor.php │ │ └── Debugger.php │ ├── Dump.php │ ├── Embed.php │ ├── Embed │ ├── Mixcloud.php │ ├── Soundcloud.php │ ├── Vimeo.php │ └── Youtube.php │ ├── Environment.php │ ├── Event.php │ ├── Exception.php │ ├── Exception │ ├── Handler.php │ └── Log.php │ ├── Filter.php │ ├── Filter │ ├── Having.php │ ├── HavingGroup.php │ ├── Join.php │ ├── LeftJoin.php │ ├── Link.php │ ├── Match.php │ ├── MatchGroup.php │ ├── Where.php │ └── WhereGroup.php │ ├── Fs │ ├── Directory.php │ ├── File.php │ ├── Find.php │ └── mimetypes.php │ ├── Http │ ├── Curl.php │ ├── Request.php │ ├── Response.php │ └── Url.php │ ├── Lang.php │ ├── Lang │ ├── Adapter │ │ ├── Abstract.php │ │ ├── Gettext.php │ │ └── Ini.php │ └── Proxy │ │ ├── Collection.php │ │ └── Model.php │ ├── Layout.php │ ├── Log.php │ ├── Log │ └── Writer │ │ ├── Abstract.php │ │ ├── Db.php │ │ ├── File.php │ │ └── Php.php │ ├── Mailer.php │ ├── Mailer │ ├── CssInliner │ │ ├── CssInlinerInterface.php │ │ ├── Dialect.php │ │ ├── Emogrifier.php │ │ ├── Passthrough.php │ │ └── Torchbox.php │ ├── PHPMailerAutoload.php │ ├── class.phpmailer.php │ ├── class.pop3.php │ └── class.smtp.php │ ├── Model.php │ ├── Model │ ├── Autocorrect │ │ └── Date.php │ ├── AutocorrectAbstract.php │ ├── Autocorrector.php │ ├── Revision.php │ ├── Validator.php │ ├── Validator │ │ ├── Date.php │ │ ├── Enum.php │ │ ├── HasChildren.php │ │ ├── Numeric.php │ │ ├── Required.php │ │ ├── Spatial.php │ │ ├── Text.php │ │ └── Unique.php │ ├── ValidatorAbstract.php │ └── With │ │ ├── Acl.php │ │ ├── AclI18n.php │ │ ├── AclI18nDummy.php │ │ ├── AclI18nRevision.php │ │ ├── AclI18nRevisionDummy.php │ │ ├── AclRevision.php │ │ ├── AclRevisionDummy.php │ │ ├── I18n.php │ │ └── Revision.php │ ├── Object.php │ ├── Object │ ├── Magic.php │ ├── Singleton.php │ ├── SingletonInterface.php │ ├── Standard.php │ └── Static.php │ ├── Publisher.php │ ├── Publisher │ ├── Mail │ │ └── Mail.php │ └── Twitter │ │ └── Twitter.php │ ├── Query.php │ ├── Resource.php │ ├── Resource │ ├── FileIcon.php │ ├── GWebFont.php │ ├── Image.php │ ├── Image │ │ └── Gravatar.php │ ├── JsLibrary.php │ ├── Local.php │ ├── Local │ │ ├── Compressed.php │ │ ├── Compressor.php │ │ └── Compressor │ │ │ ├── Css.php │ │ │ ├── Js.php │ │ │ └── lib │ │ │ ├── Closure.php │ │ │ ├── Cssmin.php │ │ │ └── Packer.php │ ├── Public.php │ ├── Qrcode.php │ ├── Qrcode │ │ └── lib │ │ │ └── phpqrcode.php │ └── Remote.php │ ├── Session.php │ ├── Session │ └── Flash.php │ ├── Shop │ ├── Cart.php │ ├── Cart │ │ ├── Item.php │ │ ├── Item │ │ │ └── Collection.php │ │ └── Merge.php │ ├── Shipping.php │ ├── Shipping │ │ └── Method.php │ ├── Transaction.php │ └── Transaction │ │ ├── Provider.php │ │ └── Provider │ │ ├── Creditcard.Mollie.php │ │ ├── Iban.php │ │ ├── Mollie.php │ │ ├── Mollie │ │ ├── API │ │ │ ├── Autoloader.php │ │ │ ├── Client.php │ │ │ ├── Exception.php │ │ │ ├── Object │ │ │ │ ├── Issuer.php │ │ │ │ ├── List.php │ │ │ │ ├── Method.php │ │ │ │ └── Payment.php │ │ │ └── Resource │ │ │ │ ├── Base.php │ │ │ │ ├── Issuers.php │ │ │ │ ├── Methods.php │ │ │ │ └── Payments.php │ │ └── Ideal.php │ │ ├── Paypal.php │ │ ├── Paypal │ │ └── Creditcard.php │ │ ├── Test.php │ │ └── Wedeal.php │ ├── Social │ └── Provider │ │ ├── Facebook │ │ ├── Facebook.lib.php │ │ ├── Facebook.php │ │ └── base_facebook.php │ │ ├── Google │ │ ├── Google.php │ │ └── Google │ │ │ ├── Auth │ │ │ ├── Abstract.php │ │ │ ├── AssertionCredentials.php │ │ │ ├── Exception.php │ │ │ ├── LoginTicket.php │ │ │ ├── OAuth2.php │ │ │ └── Simple.php │ │ │ ├── Cache │ │ │ ├── Abstract.php │ │ │ ├── Apc.php │ │ │ ├── Exception.php │ │ │ ├── File.php │ │ │ └── Memcache.php │ │ │ ├── Client.php │ │ │ ├── Collection.php │ │ │ ├── Config.php │ │ │ ├── Exception.php │ │ │ ├── Http │ │ │ ├── Batch.php │ │ │ ├── CacheParser.php │ │ │ ├── MediaFileUpload.php │ │ │ ├── REST.php │ │ │ └── Request.php │ │ │ ├── IO │ │ │ ├── Abstract.php │ │ │ ├── Exception.php │ │ │ └── Stream.php │ │ │ ├── Model.php │ │ │ ├── Service.php │ │ │ ├── Service │ │ │ ├── Exception.php │ │ │ ├── Plus.php │ │ │ └── Resource.php │ │ │ ├── Signer │ │ │ ├── Abstract.php │ │ │ └── P12.php │ │ │ ├── Utils.php │ │ │ ├── Utils │ │ │ └── URITemplate.php │ │ │ └── Verifier │ │ │ ├── Abstract.php │ │ │ └── Pem.php │ │ └── Twitter │ │ ├── OAuth.php │ │ ├── Twitter.php │ │ └── twitteroauth.php │ ├── Template.php │ ├── Template │ ├── Parser.php │ └── Parser │ │ ├── Phtml.php │ │ ├── Phtml │ │ └── Helper.php │ │ ├── Xhtml.php │ │ └── Xhtml │ │ └── Element.php │ ├── User.php │ ├── User │ ├── Autologon.php │ ├── Controller.php │ ├── Sso.php │ └── Sso │ │ ├── Facebook.php │ │ ├── Google.php │ │ ├── Interface.php │ │ └── Twitter.php │ ├── View.php │ └── helpers.php ├── public ├── .htaccess ├── assets │ ├── .htaccess │ ├── css │ │ └── core │ │ │ ├── aloha │ │ │ ├── aloha-core.css │ │ │ ├── aloha-sidebar.css │ │ │ ├── aloha.css │ │ │ ├── ext-aloha-reset.css │ │ │ └── ext-aloha.css │ │ │ ├── bootstrap │ │ │ ├── bootstrap-cosmo.css │ │ │ ├── bootstrap-responsive.css │ │ │ ├── bootstrap3-journal.min.css │ │ │ └── bootstrap3.min.css │ │ │ ├── chosen │ │ │ ├── chosen-sprite.png │ │ │ ├── chosen-sprite@2x.png │ │ │ ├── chosen.css │ │ │ └── chosen.min.css │ │ │ ├── ckeditor │ │ │ └── style.css │ │ │ ├── datetimepicker │ │ │ └── jquery.simple-dtpicker.css │ │ │ ├── email │ │ │ ├── sans-serif.css │ │ │ └── serif.css │ │ │ ├── fancybox │ │ │ ├── blank.gif │ │ │ ├── fancybox_loading.gif │ │ │ ├── fancybox_loading@2x.gif │ │ │ ├── fancybox_overlay.png │ │ │ ├── fancybox_sprite.png │ │ │ ├── fancybox_sprite@2x.png │ │ │ ├── helpers │ │ │ │ ├── fancybox_buttons.png │ │ │ │ ├── jquery.fancybox-buttons.css │ │ │ │ └── jquery.fancybox-thumbs.css │ │ │ └── jquery.fancybox.css │ │ │ ├── fineuploader │ │ │ ├── fineuploader-3.4.1.css │ │ │ ├── loading.gif │ │ │ └── processing.gif │ │ │ ├── flags.css │ │ │ ├── fonts │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ └── glyphicons-halflings-regular.woff │ │ │ ├── jqtree │ │ │ ├── jqtree-circle.png │ │ │ ├── jqtree.css │ │ │ └── spinner.gif │ │ │ ├── jwysiwyg │ │ │ ├── jwysiwyg.css │ │ │ ├── jwysiwyg.editor.css │ │ │ └── wysiwyg.gif │ │ │ ├── picker │ │ │ ├── jquery.fs.picker-icon.png │ │ │ └── jquery.fs.picker.css │ │ │ └── selectize │ │ │ ├── selectize.bootstrap2.css │ │ │ ├── selectize.bootstrap3.css │ │ │ ├── selectize.css │ │ │ ├── selectize.default.css │ │ │ └── selectize.legacy.css │ ├── js │ │ └── core │ │ │ ├── aloha │ │ │ ├── ajde.js │ │ │ └── readme.txt │ │ │ ├── bootstrap │ │ │ ├── bootstrap.min.js │ │ │ └── bootstrap3.min.js │ │ │ ├── chosen │ │ │ ├── chosen.jquery.js │ │ │ ├── chosen.jquery.min.js │ │ │ ├── chosen.proto.js │ │ │ └── chosen.proto.min.js │ │ │ ├── ckeditor │ │ │ └── lib │ │ │ │ ├── CHANGES.md │ │ │ │ ├── LICENSE.md │ │ │ │ ├── README.md │ │ │ │ ├── adapters │ │ │ │ └── jquery.js │ │ │ │ ├── build-config.js │ │ │ │ ├── ckeditor.js │ │ │ │ ├── config.js │ │ │ │ ├── contents.css │ │ │ │ ├── lang │ │ │ │ └── en.js │ │ │ │ ├── plugins │ │ │ │ ├── a11yhelp │ │ │ │ │ └── dialogs │ │ │ │ │ │ ├── a11yhelp.js │ │ │ │ │ │ └── lang │ │ │ │ │ │ ├── _translationstatus.txt │ │ │ │ │ │ ├── ar.js │ │ │ │ │ │ ├── bg.js │ │ │ │ │ │ ├── ca.js │ │ │ │ │ │ ├── cs.js │ │ │ │ │ │ ├── cy.js │ │ │ │ │ │ ├── da.js │ │ │ │ │ │ ├── de.js │ │ │ │ │ │ ├── el.js │ │ │ │ │ │ ├── en.js │ │ │ │ │ │ ├── eo.js │ │ │ │ │ │ ├── es.js │ │ │ │ │ │ ├── et.js │ │ │ │ │ │ ├── fa.js │ │ │ │ │ │ ├── fi.js │ │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ │ ├── fr.js │ │ │ │ │ │ ├── gl.js │ │ │ │ │ │ ├── gu.js │ │ │ │ │ │ ├── he.js │ │ │ │ │ │ ├── hi.js │ │ │ │ │ │ ├── hr.js │ │ │ │ │ │ ├── hu.js │ │ │ │ │ │ ├── id.js │ │ │ │ │ │ ├── it.js │ │ │ │ │ │ ├── ja.js │ │ │ │ │ │ ├── km.js │ │ │ │ │ │ ├── ku.js │ │ │ │ │ │ ├── lt.js │ │ │ │ │ │ ├── lv.js │ │ │ │ │ │ ├── mk.js │ │ │ │ │ │ ├── mn.js │ │ │ │ │ │ ├── nb.js │ │ │ │ │ │ ├── nl.js │ │ │ │ │ │ ├── no.js │ │ │ │ │ │ ├── pl.js │ │ │ │ │ │ ├── pt-br.js │ │ │ │ │ │ ├── pt.js │ │ │ │ │ │ ├── ro.js │ │ │ │ │ │ ├── ru.js │ │ │ │ │ │ ├── si.js │ │ │ │ │ │ ├── sk.js │ │ │ │ │ │ ├── sl.js │ │ │ │ │ │ ├── sq.js │ │ │ │ │ │ ├── sr-latn.js │ │ │ │ │ │ ├── sr.js │ │ │ │ │ │ ├── sv.js │ │ │ │ │ │ ├── th.js │ │ │ │ │ │ ├── tr.js │ │ │ │ │ │ ├── ug.js │ │ │ │ │ │ ├── uk.js │ │ │ │ │ │ ├── vi.js │ │ │ │ │ │ └── zh-cn.js │ │ │ │ ├── about │ │ │ │ │ └── dialogs │ │ │ │ │ │ ├── about.js │ │ │ │ │ │ ├── hidpi │ │ │ │ │ │ └── logo_ckeditor.png │ │ │ │ │ │ └── logo_ckeditor.png │ │ │ │ ├── autogrow │ │ │ │ │ ├── plugin.js │ │ │ │ │ └── samples │ │ │ │ │ │ └── autogrow.html │ │ │ │ ├── clipboard │ │ │ │ │ └── dialogs │ │ │ │ │ │ └── paste.js │ │ │ │ ├── dialog │ │ │ │ │ └── dialogDefinition.js │ │ │ │ ├── fakeobjects │ │ │ │ │ └── images │ │ │ │ │ │ └── spacer.gif │ │ │ │ ├── icons.png │ │ │ │ ├── icons_hidpi.png │ │ │ │ ├── image │ │ │ │ │ ├── dialogs │ │ │ │ │ │ └── image.js │ │ │ │ │ └── images │ │ │ │ │ │ └── noimage.png │ │ │ │ ├── justify │ │ │ │ │ ├── icons │ │ │ │ │ │ ├── hidpi │ │ │ │ │ │ │ ├── justifyblock.png │ │ │ │ │ │ │ ├── justifycenter.png │ │ │ │ │ │ │ ├── justifyleft.png │ │ │ │ │ │ │ └── justifyright.png │ │ │ │ │ │ ├── justifyblock.png │ │ │ │ │ │ ├── justifycenter.png │ │ │ │ │ │ ├── justifyleft.png │ │ │ │ │ │ └── justifyright.png │ │ │ │ │ ├── lang │ │ │ │ │ │ ├── af.js │ │ │ │ │ │ ├── ar.js │ │ │ │ │ │ ├── bg.js │ │ │ │ │ │ ├── bn.js │ │ │ │ │ │ ├── bs.js │ │ │ │ │ │ ├── ca.js │ │ │ │ │ │ ├── cs.js │ │ │ │ │ │ ├── cy.js │ │ │ │ │ │ ├── da.js │ │ │ │ │ │ ├── de.js │ │ │ │ │ │ ├── el.js │ │ │ │ │ │ ├── en-au.js │ │ │ │ │ │ ├── en-ca.js │ │ │ │ │ │ ├── en-gb.js │ │ │ │ │ │ ├── en.js │ │ │ │ │ │ ├── eo.js │ │ │ │ │ │ ├── es.js │ │ │ │ │ │ ├── et.js │ │ │ │ │ │ ├── eu.js │ │ │ │ │ │ ├── fa.js │ │ │ │ │ │ ├── fi.js │ │ │ │ │ │ ├── fo.js │ │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ │ ├── fr.js │ │ │ │ │ │ ├── gl.js │ │ │ │ │ │ ├── gu.js │ │ │ │ │ │ ├── he.js │ │ │ │ │ │ ├── hi.js │ │ │ │ │ │ ├── hr.js │ │ │ │ │ │ ├── hu.js │ │ │ │ │ │ ├── id.js │ │ │ │ │ │ ├── is.js │ │ │ │ │ │ ├── it.js │ │ │ │ │ │ ├── ja.js │ │ │ │ │ │ ├── ka.js │ │ │ │ │ │ ├── km.js │ │ │ │ │ │ ├── ko.js │ │ │ │ │ │ ├── ku.js │ │ │ │ │ │ ├── lt.js │ │ │ │ │ │ ├── lv.js │ │ │ │ │ │ ├── mk.js │ │ │ │ │ │ ├── mn.js │ │ │ │ │ │ ├── ms.js │ │ │ │ │ │ ├── nb.js │ │ │ │ │ │ ├── nl.js │ │ │ │ │ │ ├── no.js │ │ │ │ │ │ ├── pl.js │ │ │ │ │ │ ├── pt-br.js │ │ │ │ │ │ ├── pt.js │ │ │ │ │ │ ├── ro.js │ │ │ │ │ │ ├── ru.js │ │ │ │ │ │ ├── si.js │ │ │ │ │ │ ├── sk.js │ │ │ │ │ │ ├── sl.js │ │ │ │ │ │ ├── sq.js │ │ │ │ │ │ ├── sr-latn.js │ │ │ │ │ │ ├── sr.js │ │ │ │ │ │ ├── sv.js │ │ │ │ │ │ ├── th.js │ │ │ │ │ │ ├── tr.js │ │ │ │ │ │ ├── ug.js │ │ │ │ │ │ ├── uk.js │ │ │ │ │ │ ├── vi.js │ │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ │ └── zh.js │ │ │ │ │ └── plugin.js │ │ │ │ ├── link │ │ │ │ │ ├── dialogs │ │ │ │ │ │ ├── anchor.js │ │ │ │ │ │ └── link.js │ │ │ │ │ └── images │ │ │ │ │ │ ├── anchor.png │ │ │ │ │ │ └── hidpi │ │ │ │ │ │ └── anchor.png │ │ │ │ ├── magicline │ │ │ │ │ └── images │ │ │ │ │ │ ├── hidpi │ │ │ │ │ │ └── icon.png │ │ │ │ │ │ └── icon.png │ │ │ │ ├── onchange │ │ │ │ │ └── docs │ │ │ │ │ │ ├── install.html │ │ │ │ │ │ └── styles.css │ │ │ │ ├── pastefromword │ │ │ │ │ └── filter │ │ │ │ │ │ └── default.js │ │ │ │ ├── scayt │ │ │ │ │ ├── LICENSE.md │ │ │ │ │ ├── README.md │ │ │ │ │ └── dialogs │ │ │ │ │ │ ├── options.js │ │ │ │ │ │ └── toolbar.css │ │ │ │ ├── specialchar │ │ │ │ │ └── dialogs │ │ │ │ │ │ ├── lang │ │ │ │ │ │ ├── _translationstatus.txt │ │ │ │ │ │ ├── ar.js │ │ │ │ │ │ ├── bg.js │ │ │ │ │ │ ├── ca.js │ │ │ │ │ │ ├── cs.js │ │ │ │ │ │ ├── cy.js │ │ │ │ │ │ ├── de.js │ │ │ │ │ │ ├── el.js │ │ │ │ │ │ ├── en.js │ │ │ │ │ │ ├── eo.js │ │ │ │ │ │ ├── es.js │ │ │ │ │ │ ├── et.js │ │ │ │ │ │ ├── fa.js │ │ │ │ │ │ ├── fi.js │ │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ │ ├── fr.js │ │ │ │ │ │ ├── gl.js │ │ │ │ │ │ ├── he.js │ │ │ │ │ │ ├── hr.js │ │ │ │ │ │ ├── hu.js │ │ │ │ │ │ ├── id.js │ │ │ │ │ │ ├── it.js │ │ │ │ │ │ ├── ja.js │ │ │ │ │ │ ├── ku.js │ │ │ │ │ │ ├── lv.js │ │ │ │ │ │ ├── nb.js │ │ │ │ │ │ ├── nl.js │ │ │ │ │ │ ├── no.js │ │ │ │ │ │ ├── pl.js │ │ │ │ │ │ ├── pt-br.js │ │ │ │ │ │ ├── pt.js │ │ │ │ │ │ ├── ru.js │ │ │ │ │ │ ├── si.js │ │ │ │ │ │ ├── sk.js │ │ │ │ │ │ ├── sl.js │ │ │ │ │ │ ├── sq.js │ │ │ │ │ │ ├── sv.js │ │ │ │ │ │ ├── th.js │ │ │ │ │ │ ├── tr.js │ │ │ │ │ │ ├── ug.js │ │ │ │ │ │ ├── uk.js │ │ │ │ │ │ ├── vi.js │ │ │ │ │ │ └── zh-cn.js │ │ │ │ │ │ └── specialchar.js │ │ │ │ ├── table │ │ │ │ │ └── dialogs │ │ │ │ │ │ └── table.js │ │ │ │ ├── tabletools │ │ │ │ │ └── dialogs │ │ │ │ │ │ └── tableCell.js │ │ │ │ └── wsc │ │ │ │ │ ├── LICENSE.md │ │ │ │ │ ├── README.md │ │ │ │ │ └── dialogs │ │ │ │ │ ├── ciframe.html │ │ │ │ │ ├── tmp.html │ │ │ │ │ ├── tmpFrameset.html │ │ │ │ │ ├── wsc.css │ │ │ │ │ ├── wsc.js │ │ │ │ │ └── wsc_ie.js │ │ │ │ ├── skins │ │ │ │ └── moono │ │ │ │ │ ├── dialog.css │ │ │ │ │ ├── dialog_ie.css │ │ │ │ │ ├── dialog_ie7.css │ │ │ │ │ ├── dialog_ie8.css │ │ │ │ │ ├── dialog_iequirks.css │ │ │ │ │ ├── dialog_opera.css │ │ │ │ │ ├── editor.css │ │ │ │ │ ├── editor_gecko.css │ │ │ │ │ ├── editor_ie.css │ │ │ │ │ ├── editor_ie7.css │ │ │ │ │ ├── editor_ie8.css │ │ │ │ │ ├── editor_iequirks.css │ │ │ │ │ ├── icons.png │ │ │ │ │ ├── icons_hidpi.png │ │ │ │ │ ├── images │ │ │ │ │ ├── arrow.png │ │ │ │ │ ├── close.png │ │ │ │ │ ├── hidpi │ │ │ │ │ │ ├── close.png │ │ │ │ │ │ ├── lock-open.png │ │ │ │ │ │ ├── lock.png │ │ │ │ │ │ └── refresh.png │ │ │ │ │ ├── lock-open.png │ │ │ │ │ ├── lock.png │ │ │ │ │ └── refresh.png │ │ │ │ │ └── readme.md │ │ │ │ └── styles.js │ │ │ ├── complexify │ │ │ ├── jquery.complexify.banlist.js │ │ │ └── jquery.complexify.min.js │ │ │ ├── datetimepicker │ │ │ └── jquery.simple-dtpicker.js │ │ │ ├── fancybox │ │ │ ├── helpers │ │ │ │ ├── jquery.fancybox-buttons.js │ │ │ │ ├── jquery.fancybox-media.js │ │ │ │ └── jquery.fancybox-thumbs.js │ │ │ └── jquery.fancybox.pack.js │ │ │ ├── fastclick.js │ │ │ ├── fineuploader │ │ │ ├── iframe.xss.response-3.4.1.js │ │ │ ├── jquery.fineuploader-3.4.1.js │ │ │ └── jquery.fineuploader-3.4.1.min.js │ │ │ ├── html5shiv.js │ │ │ ├── jqBootstrapValidation.js │ │ │ ├── jqCombo.js │ │ │ ├── jqtree │ │ │ └── tree.jquery.js │ │ │ ├── jquery.autocomplete.min.js │ │ │ ├── jquery.bsClasses.js │ │ │ ├── jquery.cookie.js │ │ │ ├── jquery.lazyload.min.js │ │ │ ├── jquery.scrollTo.min.js │ │ │ ├── jquery.tablednd.js │ │ │ ├── jquery │ │ │ ├── 1.11.3 │ │ │ │ ├── jquery-1.11.3.js │ │ │ │ └── jquery-1.11.3.min.js │ │ │ ├── 1.7.2 │ │ │ │ ├── jquery-1.7.2.js │ │ │ │ └── jquery-1.7.2.min.js │ │ │ └── 2.1.4 │ │ │ │ ├── jquery-2.1.4.js │ │ │ │ └── jquery-2.1.4.min.js │ │ │ ├── jqueryui │ │ │ └── sortable │ │ │ │ ├── jquery-ui.js │ │ │ │ └── jquery-ui.min.js │ │ │ ├── jwysiwyg │ │ │ └── jwysiwyg.js │ │ │ ├── oocharts.min.js │ │ │ ├── picker │ │ │ └── jquery.fs.picker.min.js │ │ │ ├── selectize │ │ │ ├── selectize.js │ │ │ └── selectize.min.js │ │ │ └── sugar.dates.min.js │ └── media │ │ ├── .thumbnails │ │ └── .gitignore │ │ ├── 404.png │ │ ├── admin-bg.png │ │ ├── admin-cover.png │ │ ├── ajde-medium.png │ │ ├── ajde-small.png │ │ ├── ajde.png │ │ ├── app.png │ │ ├── checkerboard.png │ │ ├── core │ │ ├── crud │ │ │ ├── accepted_16.png │ │ │ ├── add_16.png │ │ │ ├── apply_16.png │ │ │ ├── cancel_16.png │ │ │ ├── cross_16.png │ │ │ ├── doogle-drive.png │ │ │ ├── doogle-drive_32.png │ │ │ ├── down_16.png │ │ │ ├── google-drive_16.png │ │ │ ├── key_16.png │ │ │ ├── monitor_16.png │ │ │ ├── next_16.png │ │ │ ├── next_21.png │ │ │ ├── pencil_16.png │ │ │ ├── prev_16.png │ │ │ ├── search_16.png │ │ │ ├── up_16.png │ │ │ └── upload_16.png │ │ ├── globe_16.png │ │ ├── loading.gif │ │ ├── shop │ │ │ ├── creditcard.png │ │ │ ├── iban.png │ │ │ ├── ideal.png │ │ │ ├── paypal.png │ │ │ └── test.png │ │ ├── warning_16.png │ │ └── warning_48.png │ │ ├── favicon.png │ │ ├── flags │ │ └── flags.png │ │ ├── gray.gif │ │ ├── icons │ │ ├── 16 │ │ │ ├── arrow_down.png │ │ │ ├── arrow_left-down.png │ │ │ ├── arrow_left-up.png │ │ │ ├── arrow_left.png │ │ │ ├── arrow_right-down.png │ │ │ ├── arrow_right-up.png │ │ │ ├── arrow_right.png │ │ │ ├── arrow_up.png │ │ │ ├── attachment.png │ │ │ ├── attention.png │ │ │ ├── backward.png │ │ │ ├── bag.png │ │ │ ├── base.png │ │ │ ├── bonus.png │ │ │ ├── bug.png │ │ │ ├── calculator.png │ │ │ ├── calendar.png │ │ │ ├── cd_dvd.png │ │ │ ├── check-64.png │ │ │ ├── check.png │ │ │ ├── check_2.png │ │ │ ├── close_delete.png │ │ │ ├── close_delete_2.png │ │ │ ├── closed.png │ │ │ ├── comment.png │ │ │ ├── computer.png │ │ │ ├── computer_monitor.png │ │ │ ├── copy.png │ │ │ ├── credit_card.png │ │ │ ├── credit_card_back.png │ │ │ ├── cut.png │ │ │ ├── delete_2.png │ │ │ ├── document_file.png │ │ │ ├── email.png │ │ │ ├── eraser.png │ │ │ ├── favorite_love.png │ │ │ ├── flag_mark_blue.png │ │ │ ├── flag_mark_gray.png │ │ │ ├── flag_mark_green.png │ │ │ ├── flag_mark_red.png │ │ │ ├── flag_mark_violet.png │ │ │ ├── flag_mark_yellow.png │ │ │ ├── folder.png │ │ │ ├── forward.png │ │ │ ├── friends_group.png │ │ │ ├── help.png │ │ │ ├── help_ring-buoy.png │ │ │ ├── home.png │ │ │ ├── information.png │ │ │ ├── ipod.png │ │ │ ├── key_login.png │ │ │ ├── lamp_active.png │ │ │ ├── lamp_inactive.png │ │ │ ├── lock.png │ │ │ ├── minus.png │ │ │ ├── minus_2.png │ │ │ ├── mobile_phone.png │ │ │ ├── network.png │ │ │ ├── network_close.png │ │ │ ├── new_email.png │ │ │ ├── next.png │ │ │ ├── opened.png │ │ │ ├── options.png │ │ │ ├── options_2.png │ │ │ ├── paste.png │ │ │ ├── pause.png │ │ │ ├── pencil_edit.png │ │ │ ├── pie-chart_diagram.png │ │ │ ├── pie-chart_graph.png │ │ │ ├── play.png │ │ │ ├── plus.png │ │ │ ├── plus_2.png │ │ │ ├── previous.png │ │ │ ├── printer.png │ │ │ ├── radio-button_off.png │ │ │ ├── radio-button_on.png │ │ │ ├── record.png │ │ │ ├── refresh.png │ │ │ ├── rss.png │ │ │ ├── save_as.png │ │ │ ├── save_diskette_floppy_disk.png │ │ │ ├── search_lense.png │ │ │ ├── shield_protect_off.png │ │ │ ├── shield_protect_on.png │ │ │ ├── shopping_cart.png │ │ │ ├── shopping_cart_empty.png │ │ │ ├── smartphone_2.png │ │ │ ├── smartphone_iphone.png │ │ │ ├── sound_music-off.png │ │ │ ├── sound_music-on.png │ │ │ ├── star.png │ │ │ ├── star_2.png │ │ │ ├── star_3.png │ │ │ ├── stop.png │ │ │ ├── stop_2.png │ │ │ ├── tag_blue.png │ │ │ ├── tag_gray.png │ │ │ ├── tag_green.png │ │ │ ├── tag_orange.png │ │ │ ├── tag_red.png │ │ │ ├── tag_violet.png │ │ │ ├── tag_white.png │ │ │ ├── tag_yellow.png │ │ │ ├── time_clock.png │ │ │ ├── trash_box.png │ │ │ ├── trash_box_2.png │ │ │ ├── unlock.png │ │ │ ├── user_friend.png │ │ │ ├── user_woman.png │ │ │ ├── vote_no.png │ │ │ ├── vote_yes.png │ │ │ └── wizard.png │ │ ├── 32 │ │ │ ├── arrow_down.png │ │ │ ├── arrow_left-down.png │ │ │ ├── arrow_left-up.png │ │ │ ├── arrow_left.png │ │ │ ├── arrow_right-down.png │ │ │ ├── arrow_right-up.png │ │ │ ├── arrow_right.png │ │ │ ├── arrow_up.png │ │ │ ├── attention.png │ │ │ ├── backward.png │ │ │ ├── bag.png │ │ │ ├── base.png │ │ │ ├── bonus.png │ │ │ ├── bug.png │ │ │ ├── calculator.png │ │ │ ├── calendar.png │ │ │ ├── cd_dvd.png │ │ │ ├── check-64.png │ │ │ ├── check.png │ │ │ ├── check_2.png │ │ │ ├── close_delete.png │ │ │ ├── close_delete_2.png │ │ │ ├── closed.png │ │ │ ├── comment.png │ │ │ ├── computer.png │ │ │ ├── computer_monitor.png │ │ │ ├── copy.png │ │ │ ├── credit_card.png │ │ │ ├── credit_card_back.png │ │ │ ├── cut.png │ │ │ ├── delete_2.png │ │ │ ├── document_file.png │ │ │ ├── email.png │ │ │ ├── eraser.png │ │ │ ├── favorite_love.png │ │ │ ├── flag_mark_blue.png │ │ │ ├── flag_mark_gray.png │ │ │ ├── flag_mark_green.png │ │ │ ├── flag_mark_red.png │ │ │ ├── flag_mark_violet.png │ │ │ ├── flag_mark_yellow.png │ │ │ ├── folder.png │ │ │ ├── forward.png │ │ │ ├── friends_group.png │ │ │ ├── help.png │ │ │ ├── help_ring-buoy.png │ │ │ ├── home.png │ │ │ ├── information.png │ │ │ ├── ipod.png │ │ │ ├── key_login.png │ │ │ ├── lamp_active.png │ │ │ ├── lamp_inactive.png │ │ │ ├── lock.png │ │ │ ├── minus.png │ │ │ ├── minus_2.png │ │ │ ├── mobile_phone.png │ │ │ ├── network.png │ │ │ ├── network_close.png │ │ │ ├── new_email.png │ │ │ ├── next.png │ │ │ ├── opened.png │ │ │ ├── options.png │ │ │ ├── options_2.png │ │ │ ├── paste.png │ │ │ ├── pause.png │ │ │ ├── pencil_edit.png │ │ │ ├── pie-chart_diagram.png │ │ │ ├── pie-chart_graph.png │ │ │ ├── play.png │ │ │ ├── plus.png │ │ │ ├── plus_2.png │ │ │ ├── previous.png │ │ │ ├── printer.png │ │ │ ├── radio-button_off.png │ │ │ ├── radio-button_on.png │ │ │ ├── record.png │ │ │ ├── refresh.png │ │ │ ├── rss.png │ │ │ ├── save_as.png │ │ │ ├── save_diskette_floppy_disk.png │ │ │ ├── search_lense.png │ │ │ ├── shield_protect_off.png │ │ │ ├── shield_protect_on.png │ │ │ ├── shopping_cart.png │ │ │ ├── shopping_cart_empty.png │ │ │ ├── smartphone_2.png │ │ │ ├── smartphone_iphone.png │ │ │ ├── sound_music-off.png │ │ │ ├── sound_music-on.png │ │ │ ├── star.png │ │ │ ├── star_2.png │ │ │ ├── star_3.png │ │ │ ├── stop.png │ │ │ ├── stop_2.png │ │ │ ├── tag_blue.png │ │ │ ├── tag_gray.png │ │ │ ├── tag_green.png │ │ │ ├── tag_orange.png │ │ │ ├── tag_red.png │ │ │ ├── tag_violet.png │ │ │ ├── tag_white.png │ │ │ ├── tag_yellow.png │ │ │ ├── time_clock.png │ │ │ ├── trash_box.png │ │ │ ├── trash_box_2.png │ │ │ ├── unlock.png │ │ │ ├── user_friend.png │ │ │ ├── user_woman.png │ │ │ ├── vote_no.png │ │ │ ├── vote_yes.png │ │ │ └── wizard.png │ │ ├── glyphicons-halflings-white.png │ │ ├── glyphicons-halflings.png │ │ └── readme.txt │ │ ├── loading-cms.gif │ │ ├── loading.gif │ │ ├── notfound.png │ │ ├── nothumb.png │ │ └── upload │ │ ├── .gitignore │ │ ├── .thumbnails │ │ └── .gitignore │ │ ├── ajde.jpg │ │ ├── avatar │ │ ├── .gitignore │ │ └── .thumbnails │ │ │ └── .gitignore │ │ └── shop │ │ ├── .gitignore │ │ └── .thumbnails │ │ └── .gitignore ├── error.php ├── humans.txt ├── index.php └── robots.txt └── var ├── cache └── .gitignore ├── log └── .gitignore └── tmp └── .gitignore /.codeclimate.yml: -------------------------------------------------------------------------------- 1 | --- 2 | engines: 3 | csslint: 4 | enabled: true 5 | duplication: 6 | enabled: true 7 | config: 8 | languages: 9 | - javascript 10 | - php 11 | eslint: 12 | enabled: true 13 | fixme: 14 | enabled: true 15 | phpmd: 16 | enabled: true 17 | ratings: 18 | paths: 19 | - "**.css" 20 | - "**.js" 21 | - "**.php" 22 | - "**.phtml" 23 | exclude_paths: [] 24 | -------------------------------------------------------------------------------- /.csslintrc: -------------------------------------------------------------------------------- 1 | --exclude-exts=.min.css 2 | --ignore=adjoining-classes,box-model,ids,order-alphabetical,unqualified-attributes 3 | -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- 1 | root = true 2 | 3 | [*] 4 | charset = utf-8 5 | end_of_line = lf 6 | indent_size = 4 7 | indent_style = space 8 | insert_final_newline = true 9 | trim_trailing_whitespace = true 10 | 11 | [*.md] 12 | trim_trailing_whitespace = false 13 | 14 | [{.travis.yml,package.json}] 15 | # The indent size used in the `package.json` file cannot be changed 16 | # https://github.com/npm/npm/pull/3180#issuecomment-16336516 17 | indent_size = 2 18 | indent_style = space 19 | -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | **/*{.,-}min.js 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # environment 2 | .env 3 | 4 | # vendor files 5 | /vendor/ 6 | -------------------------------------------------------------------------------- /.htaccess: -------------------------------------------------------------------------------- 1 | 2 | RewriteEngine on 3 | RewriteRule ^[a-zA-Z]{2}?\/assets\/(.*)$ public/assets/$1 [L] 4 | RewriteRule ^(.*)$ public/$1 [L] 5 | 6 | -------------------------------------------------------------------------------- /app/config/app.json: -------------------------------------------------------------------------------- 1 | { 2 | "id": "project", 3 | "title": "Project name", 4 | "description": "Project description", 5 | "author": "Author name", 6 | "email": "info@example.com", 7 | "version": "v1.0.0", 8 | "timezone": "Europe/Amsterdam", 9 | "bootstrap": [ 10 | "App" 11 | ] 12 | } 13 | -------------------------------------------------------------------------------- /app/config/database.json: -------------------------------------------------------------------------------- 1 | { 2 | "adapter": "mysql", 3 | "host": "localhost", 4 | "db": "ajde", 5 | "user": "ajde_user", 6 | "password": "ajde_pass" 7 | } 8 | -------------------------------------------------------------------------------- /app/config/security.json: -------------------------------------------------------------------------------- 1 | { 2 | "secret": "_RANDOM_12_16_OR_32_CHAR_STRING_" 3 | } 4 | -------------------------------------------------------------------------------- /app/lang/de_DE/LC_MESSAGES/project.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/app/lang/de_DE/LC_MESSAGES/project.mo -------------------------------------------------------------------------------- /app/lang/de_DE/core.ini: -------------------------------------------------------------------------------- 1 | Required field = Verplicht veld 2 | No filter = Geen filter 3 | 'Off' = Uit 4 | 'On' = Aan 5 | Search = Zoeken 6 | No items found = Geen items gevonden 7 | Show = Toon 8 | -------------------------------------------------------------------------------- /app/lang/de_DE/main.ini: -------------------------------------------------------------------------------- 1 | welcome = Welkom op de homepage 2 | -------------------------------------------------------------------------------- /app/lang/en_GB/LC_MESSAGES/project.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/app/lang/en_GB/LC_MESSAGES/project.mo -------------------------------------------------------------------------------- /app/lang/en_GB/core.ini: -------------------------------------------------------------------------------- 1 | Required field = "Required field" 2 | No filter = "No filter" 3 | 'Off' = "Off" 4 | 'On' = "On" 5 | Search = "Search" 6 | No items found = "No items found" 7 | Show = "Show" 8 | -------------------------------------------------------------------------------- /app/lang/en_GB/main.ini: -------------------------------------------------------------------------------- 1 | welcome = Welcome to our homepage 2 | -------------------------------------------------------------------------------- /app/lang/nl_NL/LC_MESSAGES/project.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/app/lang/nl_NL/LC_MESSAGES/project.mo -------------------------------------------------------------------------------- /app/lang/nl_NL/core.ini: -------------------------------------------------------------------------------- 1 | Required field = Verplicht veld 2 | No filter = Geen filter 3 | 'Off' = Uit 4 | 'On' = Aan 5 | Search = Zoeken 6 | No items found = Geen items gevonden 7 | Show = Toon 8 | Form submitted successfully = Formulier verzonden 9 | -------------------------------------------------------------------------------- /app/layout/base/link/css.body.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/app/layout/base/link/css.body.php -------------------------------------------------------------------------------- /app/layout/base/link/css.html.php: -------------------------------------------------------------------------------- 1 | /> -------------------------------------------------------------------------------- /app/layout/base/link/js.body.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/app/layout/base/link/js.body.php -------------------------------------------------------------------------------- /app/layout/base/link/js.html.php: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /app/layout/base/res/js/default.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Main JS application 3 | */ 4 | 5 | ; 6 | (function($) { 7 | 8 | var bootstrap = function() { 9 | 10 | $('body').removeClass('loading'); 11 | 12 | }; 13 | 14 | $(document).ready(bootstrap); 15 | 16 | })(jQuery); -------------------------------------------------------------------------------- /app/modules/node/res/css/default.css: -------------------------------------------------------------------------------- 1 | /** 2 | * Styles for Home module 3 | */ -------------------------------------------------------------------------------- /app/modules/node/res/js/default.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Main JS application 3 | */ 4 | 5 | ; 6 | (function($) { 7 | 8 | var bootstrap = function() { 9 | // ... 10 | }; 11 | 12 | $(document).ready(bootstrap); 13 | 14 | })(jQuery); -------------------------------------------------------------------------------- /app/modules/node/template/homepage.phtml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/config/app.json: -------------------------------------------------------------------------------- 1 | { 2 | "debug": false, 3 | "registerNamespaces": [], 4 | "overrideClass": [], 5 | "bootstrap": [ 6 | "Ajde_Exception_Handler", 7 | "Ajde_Session", 8 | "Ajde_Core_ExternalLibs", 9 | "Ajde_User_Autologon", 10 | "Ajde_Core_Autodebug", 11 | "Ajde_Shop_Cart_Merge", 12 | "Ajde_Cms" 13 | ], 14 | "protocol": null, 15 | "domain": null, 16 | "path": null, 17 | "rootUrl": null 18 | } 19 | -------------------------------------------------------------------------------- /core/config/dev/app.json: -------------------------------------------------------------------------------- 1 | { 2 | "debug": true 3 | } 4 | -------------------------------------------------------------------------------- /core/config/dev/layout.json: -------------------------------------------------------------------------------- 1 | { 2 | "filters": { 3 | "compressResources": false, 4 | "documentProcessors": { 5 | "html": [ 6 | "Debugger" 7 | ] 8 | } 9 | }, 10 | "cache": { 11 | "enabled": false, 12 | "externalPageCache": false 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /core/config/dev/mail.json: -------------------------------------------------------------------------------- 1 | { 2 | "debug": true 3 | } 4 | -------------------------------------------------------------------------------- /core/config/dev/security.json: -------------------------------------------------------------------------------- 1 | { 2 | "log": { 3 | "level": "8:Debug" 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /core/config/i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "enabled": true, 3 | "default": "en_GB", 4 | "autodetect": true, 5 | "adapter": "ini", 6 | "rootUrl": null 7 | } 8 | -------------------------------------------------------------------------------- /core/config/layout.json: -------------------------------------------------------------------------------- 1 | { 2 | "frontend": "base", 3 | "admin": "admin", 4 | "titleFormat": "%2$s - %1$s", 5 | "textEditor": "ckeditor", 6 | "filters": { 7 | "compressResources": true, 8 | "documentProcessors": { 9 | "html": [], 10 | "css": [ 11 | "Less" 12 | ] 13 | } 14 | }, 15 | "cache": { 16 | "enabled": true, 17 | "externalPageCache": true 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /core/config/mail.json: -------------------------------------------------------------------------------- 1 | { 2 | "mailer": "mail", 3 | "config": {}, 4 | "debug": false 5 | } 6 | -------------------------------------------------------------------------------- /core/config/misc.json: -------------------------------------------------------------------------------- 1 | { 2 | "pdf": { 3 | "method": "snappy", 4 | "web2PdfApi": false 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /core/config/routes.json: -------------------------------------------------------------------------------- 1 | { 2 | "homepage": "home", 3 | "default": { 4 | "module": "node", 5 | "controller": null, 6 | "action": "view", 7 | "format": "html", 8 | "slug": null, 9 | "id": null 10 | }, 11 | "aliases": [], 12 | "list": [], 13 | "errors": { 14 | "401": "user/logon.html", 15 | "403": "main/code403.html", 16 | "404": "main/code404.html", 17 | "500": "main/code500.html" 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /core/config/services.json: -------------------------------------------------------------------------------- 1 | { 2 | "twitter": { 3 | "key": "", 4 | "secret": "" 5 | }, 6 | "facebook": { 7 | "key": "", 8 | "secret": "" 9 | }, 10 | "google": { 11 | "key": "", 12 | "secret": "" 13 | }, 14 | "soundcloud": { 15 | "key": "" 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /core/config/session.json: -------------------------------------------------------------------------------- 1 | { 2 | "lifetime": 60, 3 | "savepath": false 4 | } 5 | -------------------------------------------------------------------------------- /core/config/user.json: -------------------------------------------------------------------------------- 1 | { 2 | "sso": { 3 | "enabled": true, 4 | "providers": [ 5 | "google", 6 | "facebook", 7 | "twitter" 8 | ] 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /core/layout/admin/link/css.ajax.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/core/layout/admin/link/css.ajax.php -------------------------------------------------------------------------------- /core/layout/admin/link/css.crud.php: -------------------------------------------------------------------------------- 1 | /> -------------------------------------------------------------------------------- /core/layout/admin/link/css.html.php: -------------------------------------------------------------------------------- 1 | /> -------------------------------------------------------------------------------- /core/layout/admin/link/js.ajax.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/core/layout/admin/link/js.ajax.php -------------------------------------------------------------------------------- /core/layout/admin/link/js.crud.php: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /core/layout/admin/link/js.html.php: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /core/layout/admin/res/css/dark.css: -------------------------------------------------------------------------------- 1 | body { 2 | background-image: url('../assets/media/admin-bg.png'); 3 | } 4 | 5 | body, 6 | legend, 7 | .nav-list>li>a, .nav-list .nav-header { 8 | color: rgb(192, 192, 192); 9 | } 10 | 11 | .page-header h1 { 12 | color: rgb(202, 129, 61); 13 | } 14 | 15 | .well, 16 | .form-actions { 17 | background: rgba(255, 255, 255, 0.2); 18 | } 19 | 20 | .nav-list>li>a, .nav-list .nav-header { 21 | text-shadow: inherit; 22 | } 23 | -------------------------------------------------------------------------------- /core/layout/admin/res/css/picker.css: -------------------------------------------------------------------------------- 1 | .picker-container { 2 | padding-top: 7px; 3 | } 4 | 5 | .picker { 6 | margin-bottom: 0; 7 | } 8 | 9 | .picker-label { 10 | font-weight: 300; 11 | padding-left: 0; 12 | color: inherit !important; 13 | } 14 | 15 | .picker-handle { 16 | height: 14px !important; 17 | width: 14px !important; 18 | } -------------------------------------------------------------------------------- /core/layout/admin/res/css/selectize.css: -------------------------------------------------------------------------------- 1 | .selectize-input { 2 | box-shadow: none; 3 | -webkit-box-shadow: none; 4 | border-radius: 0; 5 | } 6 | -------------------------------------------------------------------------------- /core/layout/admin/res/js/core.lazy.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Lazy JS application 3 | */ 4 | 5 | ; 6 | (function($) { 7 | 8 | var bootstrap = function() { 9 | if (jQuery().lazyload) { 10 | $("img.lazy").lazyload({ 11 | effect : "fadeIn" 12 | }); 13 | } 14 | }; 15 | 16 | $(document).ready(bootstrap); 17 | 18 | })(jQuery); -------------------------------------------------------------------------------- /core/layout/empty/template/default.crud.phtml: -------------------------------------------------------------------------------- 1 | getDocument()->getBody(); -------------------------------------------------------------------------------- /core/layout/empty/template/default.html.phtml: -------------------------------------------------------------------------------- 1 | getDocument()->getBody(); -------------------------------------------------------------------------------- /core/layout/empty/template/default.json.phtml: -------------------------------------------------------------------------------- 1 | getDocument()->getBody(); -------------------------------------------------------------------------------- /core/modules/_core/README: -------------------------------------------------------------------------------- 1 | ______________________ 2 | Ajde PHP Web Framework 3 | ¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯ 4 | 5 | The _core module is part of the core of Ajde as it provides front-end 6 | access to various Ajde_Components, such as debuggerm resources and forms. 7 | Don't remove this module as the Ajde core uses the resource component. -------------------------------------------------------------------------------- /core/modules/_core/_coreController.php: -------------------------------------------------------------------------------- 1 | getResponse()->redirectNotFound(); 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /core/modules/_core/res/css/crud/field/fk.css: -------------------------------------------------------------------------------- 1 | div.input i.icon-loading { 2 | background-image: url('../../assets/media/loading-cms.gif'); 3 | background-position: 0 0; 4 | } 5 | -------------------------------------------------------------------------------- /core/modules/_core/res/css/crud/field/header.css: -------------------------------------------------------------------------------- 1 | legend.header { 2 | margin-bottom: 0; 3 | } -------------------------------------------------------------------------------- /core/modules/_core/res/css/crud/field/i18n.css: -------------------------------------------------------------------------------- 1 | select.lang { 2 | width: inherit; 3 | } 4 | 5 | div.translations { 6 | margin-top: 10px; 7 | } 8 | 9 | div.translations a.new { 10 | color: rgb(245, 15, 67); 11 | } -------------------------------------------------------------------------------- /core/modules/_core/res/css/crud/field/icon.css: -------------------------------------------------------------------------------- 1 | a.picker-icon { 2 | display: inline-block; 3 | 4 | padding: 1px; 5 | margin: 1px; 6 | 7 | width: 18px; 8 | height: 20px; 9 | } 10 | 11 | a.picker-icon.active { 12 | background-color: rgb(0, 114, 230); 13 | } -------------------------------------------------------------------------------- /core/modules/_core/res/js/crud/field/icon.js: -------------------------------------------------------------------------------- 1 | ;$(document).ready(function() { 2 | $('a.picker-icon').click(function() { 3 | $(this).prevAll('input').val( $(this).data('value')).trigger('change'); 4 | $(this).parent().children('a').removeClass('active'); 5 | $(this).addClass('active'); 6 | }); 7 | }); -------------------------------------------------------------------------------- /core/modules/_core/res/js/crud/field/publish.js: -------------------------------------------------------------------------------- 1 | ;$(document).ready(function() { 2 | 3 | }); -------------------------------------------------------------------------------- /core/modules/_core/res/js/crud/field/text.js: -------------------------------------------------------------------------------- 1 | ; 2 | if (typeof AC === "undefined") { 3 | AC = function () { 4 | } 5 | } 6 | if (typeof AC.Crud === "undefined") { 7 | AC.Crud = function () { 8 | } 9 | } 10 | if (typeof AC.Crud.Edit === "undefined") { 11 | AC.Crud.Edit = function () { 12 | } 13 | } 14 | AC.Crud.Edit.Text = function() { 15 | 16 | return { 17 | 18 | init: function() { 19 | /* ... */ 20 | } 21 | 22 | }; 23 | }(); 24 | 25 | (function($) { 26 | // BOOTSTRAP 27 | $(function() { 28 | AC.Crud.Edit.Text.init(); 29 | }); 30 | })(jQuery); 31 | -------------------------------------------------------------------------------- /core/modules/_core/template/component/form/ajax.phtml: -------------------------------------------------------------------------------- 1 |
2 | 3 | innerXml)) { ?> 4 | innerXml; ?> 5 |
6 | 7 | -------------------------------------------------------------------------------- /core/modules/_core/template/component/form/form.phtml: -------------------------------------------------------------------------------- 1 |
2 | 3 | innerXml)) { ?> 4 | innerXml; ?> 5 |
6 | 7 | -------------------------------------------------------------------------------- /core/modules/_core/template/component/image/base64.phtml: -------------------------------------------------------------------------------- 1 | width) { echo "width='$this->width' "; } ?> 4 | height) { echo "height='$this->height' "; } ?> 5 | extraClass) { echo "class='$this->extraClass' "; } ?> 6 | /> -------------------------------------------------------------------------------- /core/modules/_core/template/component/qrcode/show.phtml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/modules/_core/template/crud/field/icon.phtml: -------------------------------------------------------------------------------- 1 | field; 4 | ?> 5 | 6 | getHtmlAttributes(); ?> 8 | /> 9 | 10 | getIconPackage() as $key => $icon) { ?> 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /core/modules/_core/template/crud/field/numeric.phtml: -------------------------------------------------------------------------------- 1 | field; ?> 2 | 3 | getHtmlAttributes(); ?> 5 | /> -------------------------------------------------------------------------------- /core/modules/_core/template/crud/field/sort.phtml: -------------------------------------------------------------------------------- 1 | field; ?> 2 | 3 | getIsAutoUpdate() === true) { 4 | if ($field->getValue() === 'CURRENT_TIMESTAMP') { 5 | echo ''; 6 | } else { 7 | echo $field->getValue(); 8 | } 9 | $field->setValue(null); ?> 10 |
11 | getHtmlAttributes(); ?> 13 | /> 14 |
15 | 16 | getHtmlAttributes(); ?> 18 | /> 19 | -------------------------------------------------------------------------------- /core/modules/_core/template/crud/field/timespan.phtml: -------------------------------------------------------------------------------- 1 | field; 4 | ?> 5 | 6 | getHtmlAttributes(); ?> 8 | /> 9 | hasReadonly() && $field->getReadonly() === true) { 11 | echo 'readonly="readonly"'; 12 | } ?> 13 | /> -------------------------------------------------------------------------------- /core/modules/_core/template/debugger/ajax.phtml: -------------------------------------------------------------------------------- 1 | dump)) { 5 | foreach($this->dump as $source => $var) { 6 | var_dump($var[0]); 7 | } 8 | } -------------------------------------------------------------------------------- /core/modules/acl/AclController.php: -------------------------------------------------------------------------------- 1 | getDocument()->setTitle('Forms'); 8 | 9 | return $this->render(); 10 | } 11 | 12 | public function submission() 13 | { 14 | Ajde::app()->getDocument()->setTitle('Submissions'); 15 | 16 | return $this->render(); 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /core/modules/admin/AdminMenuController.php: -------------------------------------------------------------------------------- 1 | getDocument()->setTitle('Menu editor'); 8 | 9 | return $this->render(); 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /core/modules/admin/AdminTagController.php: -------------------------------------------------------------------------------- 1 | getDocument()->setTitle('Tag manager'); 8 | 9 | return $this->render(); 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /core/modules/admin/model/LogCollection.php: -------------------------------------------------------------------------------- 1 | getPK(); 9 | } 10 | $this->addFilter(new Ajde_Filter_Where('parent', Ajde_Filter::FILTER_EQUALS, $menuId)); 11 | 12 | return $this; 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /core/modules/admin/model/NodetypeCollection.php: -------------------------------------------------------------------------------- 1 | orderBy('category'); 5 | $nodeTypes->orderBy('sort'); 6 | 7 | $currentGrouper = ''; 8 | ?> 9 | 10 | 14 | -------------------------------------------------------------------------------- /core/modules/admin/template/form/menu.phtml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/modules/admin/template/media/uploadButton.phtml: -------------------------------------------------------------------------------- 1 | 2 | 3 | $this->uploaddir, 6 | 'extensions' => $this->extensions, 7 | 'multiple' => true, 8 | 'overwrite' => false 9 | ); 10 | echo $this->ACAjaxUpload('files', $options, 'uploadButton', 'uploadButton'); 11 | ?> -------------------------------------------------------------------------------- /core/modules/admin/template/shop/menu.phtml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/modules/api/ApiController.php: -------------------------------------------------------------------------------- 1 | getId(); 8 | $route = new Ajde_Core_Route('api/v1:'.$id.'.json'); 9 | 10 | return Ajde_Controller::fromRoute($route)->invoke(); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /core/modules/api/ApiV1Controller.php: -------------------------------------------------------------------------------- 1 | orderBy('updated'); 10 | 11 | // add node type 12 | $collection->joinNodetype(); 13 | $collection->getQuery()->addSelect('nodetype.name AS nodetype_name'); 14 | 15 | return (object) ['data' => $collection->toArray()]; 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /core/modules/email/model/EmailCollection.php: -------------------------------------------------------------------------------- 1 | get('added')); 13 | $timestamp = $timestamp->format('U'); 14 | 15 | return Ajde_Component_String::time2str($timestamp); 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /core/modules/form/res/css/view.css: -------------------------------------------------------------------------------- 1 | /*#!less*/ 2 | 3 | input, textarea { 4 | &.span12 { 5 | width: 100%; 6 | } 7 | } 8 | 9 | input[type="radio"], input[type="checkbox"] { 10 | display: block; 11 | clear: left; 12 | float: left; 13 | } 14 | 15 | label.radio { 16 | padding-left: 5px; 17 | display: block; 18 | float: left; 19 | margin: 0; 20 | } 21 | 22 | .control-group.error { 23 | input, select, textarea { 24 | border: 1px solid #eb6864; 25 | } 26 | } -------------------------------------------------------------------------------- /core/modules/lang/LangController.php: -------------------------------------------------------------------------------- 1 | render(); 8 | } 9 | 10 | public function switcher() 11 | { 12 | return $this->render(); 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /core/modules/lang/template/links.phtml: -------------------------------------------------------------------------------- 1 | getAvailableNiceNames() as $k => $v) { 7 | ?> 8 | 9 | -------------------------------------------------------------------------------- /core/modules/lang/template/switcher.phtml: -------------------------------------------------------------------------------- 1 | requireCssPublic('core/flags.css'); 4 | 5 | $lang = Ajde_Lang::getInstance(); 6 | 7 | 8 | foreach($lang->getAvailableNiceNames() as $k => $v) { ?> 9 | 10 | 11 | '; ?> 12 |   13 | 14 | 15 | -------------------------------------------------------------------------------- /core/modules/main/model/TestCollection.php: -------------------------------------------------------------------------------- 1 | getDocument()->getLayout()->setAction('admin'); 8 | 9 | return $this->render(); 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /core/modules/shop/model/CartCollection.php: -------------------------------------------------------------------------------- 1 | getEntity(); 10 | if (!$entity instanceof Ajde_Model || !$entity->hasLoaded()) { 11 | return trans('(item is unavailable)'); 12 | } 13 | 14 | return $entity->getTitle(); 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /core/modules/shop/model/CartModel.php: -------------------------------------------------------------------------------- 1 | addFilter(new Ajde_Filter_Where('published', Ajde_Filter::FILTER_EQUALS, 1)); 8 | } 9 | 10 | public function load() 11 | { 12 | if (Ajde::app()->getRequest()->getParam('filterPublished', false) == true) { 13 | $this->filterPublished(); 14 | } 15 | 16 | return parent::load(); 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /core/modules/shop/model/TransactionItemCollection.php: -------------------------------------------------------------------------------- 1 | tbody > tr > td:first-child { 11 | white-space: nowrap; 12 | padding-right: 20px; 13 | } 14 | > tbody > tr > td:not(:first-child) { 15 | font-weight: bold; 16 | width: 80%; 17 | } 18 | } -------------------------------------------------------------------------------- /core/modules/shop/res/css/view.css: -------------------------------------------------------------------------------- 1 | /*#!less*/ 2 | 3 | a.panel-body { 4 | display: block; 5 | 6 | p { 7 | color: initial; 8 | } 9 | 10 | &:hover { 11 | text-decoration: none; 12 | 13 | h3 { 14 | text-decoration: underline; 15 | } 16 | } 17 | } -------------------------------------------------------------------------------- /core/modules/shop/template/cart/add.phtml: -------------------------------------------------------------------------------- 1 | 4 | 5 | ACAjaxForm('shop/cart:add.json', null, 'addToCart'); ?> 6 | 7 | 8 | 9 | ' class="btn btn-sm btn-default" /> 10 | 11 | -------------------------------------------------------------------------------- /core/modules/shop/template/legal.body.phtml: -------------------------------------------------------------------------------- 1 | 4 |

5 |
6 | ... 7 |

8 | -------------------------------------------------------------------------------- /core/modules/shop/template/legal.phtml: -------------------------------------------------------------------------------- 1 | 4 | 5 |
6 | 7 |
8 |
9 |

getDocument()->getTitle()); ?>

10 |
11 |
12 | 13 |
14 |
15 |
16 | includeModule('shop/legal.body'); ?> 17 |
18 |
19 | 20 |
21 | -------------------------------------------------------------------------------- /core/modules/shop/template/transaction/postproxy.phtml: -------------------------------------------------------------------------------- 1 | provider; 6 | 7 | ?> 8 | 9 |
10 | getRedirectParams() as $name => $value) { ?> 11 | 12 | 13 |
14 | -------------------------------------------------------------------------------- /core/modules/tag/model/TagCollection.php: -------------------------------------------------------------------------------- 1 | setEncryptedFields([ 9 | 'data', 10 | ]); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /core/modules/user/model/UserCollection.php: -------------------------------------------------------------------------------- 1 | required(); 8 | $this->readonly(); 9 | $this->help(); 10 | $this->defaultValue(); 11 | 12 | return parent::getFields(); 13 | } 14 | 15 | public function getMetaField(MetaModel $meta) 16 | { 17 | $field = $this->decorationFactory($meta); 18 | $field->setType('date'); 19 | 20 | return $field; 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /lib/Ajde/Crud/Cms/Meta/Type/Grouper.php: -------------------------------------------------------------------------------- 1 | decorationFactory($meta); 8 | $field->setType('header'); 9 | 10 | return $field; 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /lib/Ajde/Crud/Cms/Meta/Type/Time.php: -------------------------------------------------------------------------------- 1 | required(); 8 | $this->readonly(); 9 | $this->help(); 10 | $this->defaultValue(); 11 | 12 | return parent::getFields(); 13 | } 14 | 15 | public function getMetaField(MetaModel $meta) 16 | { 17 | $field = $this->decorationFactory($meta); 18 | $field->setType('time'); 19 | 20 | return $field; 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /lib/Ajde/Crud/Cms/Meta/Type/Timespan.php: -------------------------------------------------------------------------------- 1 | required(); 8 | $this->readonly(); 9 | $this->help(); 10 | $this->defaultValue(); 11 | 12 | return parent::getFields(); 13 | } 14 | 15 | public function getMetaField(MetaModel $meta) 16 | { 17 | $field = $this->decorationFactory($meta); 18 | $field->setType('timespan'); 19 | 20 | return $field; 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /lib/Ajde/Crud/Cms/Meta/Type/Toggle.php: -------------------------------------------------------------------------------- 1 | readonly(); 8 | $this->help(); 9 | $this->defaultValue(); 10 | 11 | return parent::getFields(); 12 | } 13 | 14 | public function getMetaField(MetaModel $meta) 15 | { 16 | $field = $this->decorationFactory($meta); 17 | $field->setType('boolean'); 18 | 19 | return $field; 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /lib/Ajde/Crud/Editor.php: -------------------------------------------------------------------------------- 1 | _getInputTemplate(); 8 | $template->assign('field', $this); 9 | 10 | return $template->render(); 11 | } 12 | 13 | public function getInput($id = null) 14 | { 15 | return ''; 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /lib/Ajde/Crud/Field/Sort.php: -------------------------------------------------------------------------------- 1 | getValue()); 10 | if ($this->hasReadonly() && $this->getReadonly() === true) { 11 | $attributes['readonly'] = 'readonly'; 12 | } 13 | 14 | return $attributes; 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /lib/Ajde/Crud/Options/Edit/Layout/Rows.php: -------------------------------------------------------------------------------- 1 | _function = $functionName; 18 | } 19 | 20 | /** 21 | * @return string 22 | */ 23 | public function __toString() 24 | { 25 | return (string) $this->_function; 26 | } 27 | } 28 | -------------------------------------------------------------------------------- /lib/Ajde/Db/IntegrityException.php: -------------------------------------------------------------------------------- 1 | getDocument()->setLayout(new Ajde_Layout('empty')); 11 | 12 | return parent::render(); 13 | } 14 | 15 | public function getBody() 16 | { 17 | return $this->get('body'); 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /lib/Ajde/Document/Format/Crud.php: -------------------------------------------------------------------------------- 1 | getResponse()->removeHeader('Set-Cookie'); 11 | 12 | // Get the controller to output the right headers and body 13 | return parent::getBody(); 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /lib/Ajde/Document/Format/Generated.php: -------------------------------------------------------------------------------- 1 | getDocument()->setLayout(new Ajde_Layout('empty')); 11 | Ajde::app()->getResponse()->removeHeader('Set-Cookie'); 12 | 13 | return parent::render(); 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /lib/Ajde/Document/Format/Xml.php: -------------------------------------------------------------------------------- 1 | _traceOnOutput = $traceOnOutput; 10 | parent::__construct($message, $code); 11 | } 12 | 13 | public function traceOnOutput() 14 | { 15 | return $this->_traceOnOutput; 16 | } 17 | 18 | public function process() 19 | { 20 | return Ajde_Exception_Handler::handler($this); 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /lib/Ajde/Lang/Proxy/Collection.php: -------------------------------------------------------------------------------- 1 | languageField; 11 | } 12 | 13 | public function getLanguageRootField() 14 | { 15 | return $this->languageRootField; 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /lib/Ajde/Log/Writer/Php.php: -------------------------------------------------------------------------------- 1 | emogrify(); 16 | } else { 17 | return $html; 18 | } 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /lib/Ajde/Mailer/CssInliner/Passthrough.php: -------------------------------------------------------------------------------- 1 | '1', 15 | 'source' => $html, 16 | ]; 17 | 18 | return Ajde_Http_Curl::post($url, $data); 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /lib/Ajde/Mailer/PHPMailerAutoload.php: -------------------------------------------------------------------------------- 1 | true]; 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /lib/Ajde/Model/Validator/Enum.php: -------------------------------------------------------------------------------- 1 | true]; 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /lib/Ajde/Model/Validator/Numeric.php: -------------------------------------------------------------------------------- 1 | _value)) { 8 | if (!is_numeric($this->_value)) { 9 | return ['valid' => false, 'error' => trans('Not a number')]; 10 | } 11 | } 12 | 13 | return ['valid' => true]; 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /lib/Ajde/Model/Validator/Required.php: -------------------------------------------------------------------------------- 1 | _value)) { 8 | if (!$this->getIsAutoIncrement()) { 9 | return ['valid' => false, 'error' => trans('Required field')]; 10 | } 11 | } 12 | 13 | return ['valid' => true]; 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /lib/Ajde/Model/Validator/Spatial.php: -------------------------------------------------------------------------------- 1 | _value); 8 | if ($this->getIsRequired() && empty($trimmed)) { 9 | return ['valid' => false, 'error' => trans('Required field')]; 10 | } 11 | 12 | return ['valid' => true]; 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /lib/Ajde/Model/With/Acl.php: -------------------------------------------------------------------------------- 1 | setUrl($url); 9 | $this->setArguments($arguments); 10 | parent::__construct($type); 11 | } 12 | 13 | public function getFilename() 14 | { 15 | return $this->getUrl(); 16 | } 17 | 18 | protected function getLinkUrl() 19 | { 20 | return $this->getUrl(); 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /lib/Ajde/Resource/Remote.php: -------------------------------------------------------------------------------- 1 | setUrl($url); 8 | $this->setArguments($arguments); 9 | parent::__construct($type); 10 | } 11 | 12 | public function getFilename() 13 | { 14 | return $this->getUrl(); 15 | } 16 | 17 | protected function getLinkUrl() 18 | { 19 | return $this->getUrl(); 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /lib/Ajde/Shop/Transaction/Provider/Creditcard.Mollie.php: -------------------------------------------------------------------------------- 1 | _key = config('services.twitter.key'); 13 | $this->_secret = config('services.twitter.secret'); 14 | 15 | parent::__construct($this->_key, $this->_secret, $oauth_token, $oauth_token_secret); 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /lib/Ajde/Template/Parser/Phtml.php: -------------------------------------------------------------------------------- 1 | verifyCookie(false); 19 | 20 | return true; 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /lib/Ajde/User/Sso.php: -------------------------------------------------------------------------------- 1 | getUidHash(); 8 | $model = new SsoModel(); 9 | if ($hash && $model->loadByField('uid', $hash)) { 10 | $model->loadParent('user'); 11 | 12 | return $model->getUser(); 13 | } else { 14 | return false; 15 | } 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /public/assets/.htaccess: -------------------------------------------------------------------------------- 1 | Options -ExecCGI -Includes 2 | 3 | RemoveHandler .php .phtml .php3 4 | RemoveType .php .phtml .php3 5 | 6 | 7 | php_flag engine off 8 | -------------------------------------------------------------------------------- /public/assets/css/core/chosen/chosen-sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/css/core/chosen/chosen-sprite.png -------------------------------------------------------------------------------- /public/assets/css/core/chosen/chosen-sprite@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/css/core/chosen/chosen-sprite@2x.png -------------------------------------------------------------------------------- /public/assets/css/core/email/serif.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/css/core/email/serif.css -------------------------------------------------------------------------------- /public/assets/css/core/fancybox/blank.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/css/core/fancybox/blank.gif -------------------------------------------------------------------------------- /public/assets/css/core/fancybox/fancybox_loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/css/core/fancybox/fancybox_loading.gif -------------------------------------------------------------------------------- /public/assets/css/core/fancybox/fancybox_loading@2x.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/css/core/fancybox/fancybox_loading@2x.gif -------------------------------------------------------------------------------- /public/assets/css/core/fancybox/fancybox_overlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/css/core/fancybox/fancybox_overlay.png -------------------------------------------------------------------------------- /public/assets/css/core/fancybox/fancybox_sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/css/core/fancybox/fancybox_sprite.png -------------------------------------------------------------------------------- /public/assets/css/core/fancybox/fancybox_sprite@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/css/core/fancybox/fancybox_sprite@2x.png -------------------------------------------------------------------------------- /public/assets/css/core/fancybox/helpers/fancybox_buttons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/css/core/fancybox/helpers/fancybox_buttons.png -------------------------------------------------------------------------------- /public/assets/css/core/fineuploader/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/css/core/fineuploader/loading.gif -------------------------------------------------------------------------------- /public/assets/css/core/fineuploader/processing.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/css/core/fineuploader/processing.gif -------------------------------------------------------------------------------- /public/assets/css/core/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/css/core/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /public/assets/css/core/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/css/core/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /public/assets/css/core/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/css/core/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /public/assets/css/core/jqtree/jqtree-circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/css/core/jqtree/jqtree-circle.png -------------------------------------------------------------------------------- /public/assets/css/core/jqtree/spinner.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/css/core/jqtree/spinner.gif -------------------------------------------------------------------------------- /public/assets/css/core/jwysiwyg/jwysiwyg.editor.css: -------------------------------------------------------------------------------- 1 | body { 2 | font-family: sans-serif; 3 | padding: 10px 0 0 10px; 4 | } 5 | 6 | p { 7 | margin-top: 0; 8 | } -------------------------------------------------------------------------------- /public/assets/css/core/jwysiwyg/wysiwyg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/css/core/jwysiwyg/wysiwyg.gif -------------------------------------------------------------------------------- /public/assets/css/core/picker/jquery.fs.picker-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/css/core/picker/jquery.fs.picker-icon.png -------------------------------------------------------------------------------- /public/assets/js/core/aloha/readme.txt: -------------------------------------------------------------------------------- 1 | Please download the Aloha Editor package from http://aloha-editor.org/index.php 2 | Copy the following directories here: 3 | 4 | css 5 | img 6 | lib 7 | plugins -------------------------------------------------------------------------------- /public/assets/js/core/ckeditor/lib/plugins/about/dialogs/hidpi/logo_ckeditor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/js/core/ckeditor/lib/plugins/about/dialogs/hidpi/logo_ckeditor.png -------------------------------------------------------------------------------- /public/assets/js/core/ckeditor/lib/plugins/about/dialogs/logo_ckeditor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/js/core/ckeditor/lib/plugins/about/dialogs/logo_ckeditor.png -------------------------------------------------------------------------------- /public/assets/js/core/ckeditor/lib/plugins/dialog/dialogDefinition.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | -------------------------------------------------------------------------------- /public/assets/js/core/ckeditor/lib/plugins/fakeobjects/images/spacer.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/js/core/ckeditor/lib/plugins/fakeobjects/images/spacer.gif -------------------------------------------------------------------------------- /public/assets/js/core/ckeditor/lib/plugins/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/js/core/ckeditor/lib/plugins/icons.png -------------------------------------------------------------------------------- /public/assets/js/core/ckeditor/lib/plugins/icons_hidpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/js/core/ckeditor/lib/plugins/icons_hidpi.png -------------------------------------------------------------------------------- /public/assets/js/core/ckeditor/lib/plugins/image/images/noimage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/js/core/ckeditor/lib/plugins/image/images/noimage.png -------------------------------------------------------------------------------- /public/assets/js/core/ckeditor/lib/plugins/justify/icons/hidpi/justifyblock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/js/core/ckeditor/lib/plugins/justify/icons/hidpi/justifyblock.png -------------------------------------------------------------------------------- /public/assets/js/core/ckeditor/lib/plugins/justify/icons/hidpi/justifycenter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/js/core/ckeditor/lib/plugins/justify/icons/hidpi/justifycenter.png -------------------------------------------------------------------------------- /public/assets/js/core/ckeditor/lib/plugins/justify/icons/hidpi/justifyleft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/js/core/ckeditor/lib/plugins/justify/icons/hidpi/justifyleft.png -------------------------------------------------------------------------------- /public/assets/js/core/ckeditor/lib/plugins/justify/icons/hidpi/justifyright.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/js/core/ckeditor/lib/plugins/justify/icons/hidpi/justifyright.png -------------------------------------------------------------------------------- /public/assets/js/core/ckeditor/lib/plugins/justify/icons/justifyblock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/js/core/ckeditor/lib/plugins/justify/icons/justifyblock.png -------------------------------------------------------------------------------- /public/assets/js/core/ckeditor/lib/plugins/justify/icons/justifycenter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/js/core/ckeditor/lib/plugins/justify/icons/justifycenter.png -------------------------------------------------------------------------------- /public/assets/js/core/ckeditor/lib/plugins/justify/icons/justifyleft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/js/core/ckeditor/lib/plugins/justify/icons/justifyleft.png -------------------------------------------------------------------------------- /public/assets/js/core/ckeditor/lib/plugins/justify/icons/justifyright.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/js/core/ckeditor/lib/plugins/justify/icons/justifyright.png -------------------------------------------------------------------------------- /public/assets/js/core/ckeditor/lib/plugins/justify/lang/af.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'justify', 'af', { 6 | block: 'Uitvul', 7 | center: 'Sentreer', 8 | left: 'Links oplyn', 9 | right: 'Regs oplyn' 10 | } ); 11 | -------------------------------------------------------------------------------- /public/assets/js/core/ckeditor/lib/plugins/justify/lang/ar.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'justify', 'ar', { 6 | block: 'ضبط', 7 | center: 'توسيط', 8 | left: 'محاذاة إلى اليسار', 9 | right: 'محاذاة إلى اليمين' 10 | } ); 11 | -------------------------------------------------------------------------------- /public/assets/js/core/ckeditor/lib/plugins/justify/lang/bg.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'justify', 'bg', { 6 | block: 'Двустранно подравняване', 7 | center: 'Център', 8 | left: 'Подравни в ляво', 9 | right: 'Подравни в дясно' 10 | } ); 11 | -------------------------------------------------------------------------------- /public/assets/js/core/ckeditor/lib/plugins/justify/lang/bn.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'justify', 'bn', { 6 | block: 'ব্লক জাস্টিফাই', 7 | center: 'মাঝ বরাবর ঘেষা', 8 | left: 'বা দিকে ঘেঁষা', 9 | right: 'ডান দিকে ঘেঁষা' 10 | } ); 11 | -------------------------------------------------------------------------------- /public/assets/js/core/ckeditor/lib/plugins/justify/lang/bs.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'justify', 'bs', { 6 | block: 'Puno poravnanje', 7 | center: 'Centralno poravnanje', 8 | left: 'Lijevo poravnanje', 9 | right: 'Desno poravnanje' 10 | } ); 11 | -------------------------------------------------------------------------------- /public/assets/js/core/ckeditor/lib/plugins/justify/lang/ca.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'justify', 'ca', { 6 | block: 'Justificat', 7 | center: 'Centrat', 8 | left: 'Alinea a l\'esquerra', 9 | right: 'Alinea a la dreta' 10 | } ); 11 | -------------------------------------------------------------------------------- /public/assets/js/core/ckeditor/lib/plugins/justify/lang/cs.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'justify', 'cs', { 6 | block: 'Zarovnat do bloku', 7 | center: 'Zarovnat na střed', 8 | left: 'Zarovnat vlevo', 9 | right: 'Zarovnat vpravo' 10 | } ); 11 | -------------------------------------------------------------------------------- /public/assets/js/core/ckeditor/lib/plugins/justify/lang/cy.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'justify', 'cy', { 6 | block: 'Unioni', 7 | center: 'Alinio i\'r Canol', 8 | left: 'Alinio i\'r Chwith', 9 | right: 'Alinio i\'r Dde' 10 | } ); 11 | -------------------------------------------------------------------------------- /public/assets/js/core/ckeditor/lib/plugins/justify/lang/da.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'justify', 'da', { 6 | block: 'Lige margener', 7 | center: 'Centreret', 8 | left: 'Venstrestillet', 9 | right: 'Højrestillet' 10 | } ); 11 | -------------------------------------------------------------------------------- /public/assets/js/core/ckeditor/lib/plugins/justify/lang/de.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'justify', 'de', { 6 | block: 'Blocksatz', 7 | center: 'Zentriert', 8 | left: 'Linksbündig', 9 | right: 'Rechtsbündig' 10 | } ); 11 | -------------------------------------------------------------------------------- /public/assets/js/core/ckeditor/lib/plugins/justify/lang/el.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'justify', 'el', { 6 | block: 'Πλήρης Στοίχιση', 7 | center: 'Στο Κέντρο', 8 | left: 'Στοίχιση Αριστερά', 9 | right: 'Στοίχιση Δεξιά' 10 | } ); 11 | -------------------------------------------------------------------------------- /public/assets/js/core/ckeditor/lib/plugins/justify/lang/en-au.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'justify', 'en-au', { 6 | block: 'Justify', 7 | center: 'Centre', 8 | left: 'Align Left', 9 | right: 'Align Right' 10 | } ); 11 | -------------------------------------------------------------------------------- /public/assets/js/core/ckeditor/lib/plugins/justify/lang/en-ca.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'justify', 'en-ca', { 6 | block: 'Justify', 7 | center: 'Centre', 8 | left: 'Align Left', 9 | right: 'Align Right' 10 | } ); 11 | -------------------------------------------------------------------------------- /public/assets/js/core/ckeditor/lib/plugins/justify/lang/en-gb.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'justify', 'en-gb', { 6 | block: 'Justify', 7 | center: 'Centre', 8 | left: 'Align Left', 9 | right: 'Align Right' 10 | } ); 11 | -------------------------------------------------------------------------------- /public/assets/js/core/ckeditor/lib/plugins/justify/lang/en.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'justify', 'en', { 6 | block: 'Justify', 7 | center: 'Center', 8 | left: 'Align Left', 9 | right: 'Align Right' 10 | } ); 11 | -------------------------------------------------------------------------------- /public/assets/js/core/ckeditor/lib/plugins/justify/lang/eo.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'justify', 'eo', { 6 | block: 'Ĝisrandigi Ambaŭflanke', 7 | center: 'Centrigi', 8 | left: 'Ĝisrandigi maldekstren', 9 | right: 'Ĝisrandigi dekstren' 10 | } ); 11 | -------------------------------------------------------------------------------- /public/assets/js/core/ckeditor/lib/plugins/justify/lang/es.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'justify', 'es', { 6 | block: 'Justificado', 7 | center: 'Centrar', 8 | left: 'Alinear a Izquierda', 9 | right: 'Alinear a Derecha' 10 | } ); 11 | -------------------------------------------------------------------------------- /public/assets/js/core/ckeditor/lib/plugins/justify/lang/et.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'justify', 'et', { 6 | block: 'Rööpjoondus', 7 | center: 'Keskjoondus', 8 | left: 'Vasakjoondus', 9 | right: 'Paremjoondus' 10 | } ); 11 | -------------------------------------------------------------------------------- /public/assets/js/core/ckeditor/lib/plugins/justify/lang/eu.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'justify', 'eu', { 6 | block: 'Justifikatu', 7 | center: 'Lerrokatu Erdian', 8 | left: 'Lerrokatu Ezkerrean', 9 | right: 'Lerrokatu Eskuman' 10 | } ); 11 | -------------------------------------------------------------------------------- /public/assets/js/core/ckeditor/lib/plugins/justify/lang/fa.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'justify', 'fa', { 6 | block: 'بلوک چین', 7 | center: 'میان چین', 8 | left: 'چپ چین', 9 | right: 'راست چین' 10 | } ); 11 | -------------------------------------------------------------------------------- /public/assets/js/core/ckeditor/lib/plugins/justify/lang/fi.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'justify', 'fi', { 6 | block: 'Tasaa molemmat reunat', 7 | center: 'Keskitä', 8 | left: 'Tasaa vasemmat reunat', 9 | right: 'Tasaa oikeat reunat' 10 | } ); 11 | -------------------------------------------------------------------------------- /public/assets/js/core/ckeditor/lib/plugins/justify/lang/fo.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'justify', 'fo', { 6 | block: 'Javnir tekstkantar', 7 | center: 'Miðsett', 8 | left: 'Vinstrasett', 9 | right: 'Høgrasett' 10 | } ); 11 | -------------------------------------------------------------------------------- /public/assets/js/core/ckeditor/lib/plugins/justify/lang/fr-ca.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'justify', 'fr-ca', { 6 | block: 'Justifié', 7 | center: 'Centré', 8 | left: 'Aligner à gauche', 9 | right: 'Aligner à Droite' 10 | } ); 11 | -------------------------------------------------------------------------------- /public/assets/js/core/ckeditor/lib/plugins/justify/lang/fr.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'justify', 'fr', { 6 | block: 'Justifier', 7 | center: 'Centrer', 8 | left: 'Aligner à gauche', 9 | right: 'Aligner à droite' 10 | } ); 11 | -------------------------------------------------------------------------------- /public/assets/js/core/ckeditor/lib/plugins/justify/lang/gl.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'justify', 'gl', { 6 | block: 'Xustificado', 7 | center: 'Centrado', 8 | left: 'Aliñar á esquerda', 9 | right: 'Aliñar á dereita' 10 | } ); 11 | -------------------------------------------------------------------------------- /public/assets/js/core/ckeditor/lib/plugins/justify/lang/gu.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'justify', 'gu', { 6 | block: 'બ્લૉક, અંતરાય જસ્ટિફાઇ', 7 | center: 'સંકેંદ્રણ/સેંટરિંગ', 8 | left: 'ડાબી બાજુએ/બાજુ તરફ', 9 | right: 'જમણી બાજુએ/બાજુ તરફ' 10 | } ); 11 | -------------------------------------------------------------------------------- /public/assets/js/core/ckeditor/lib/plugins/justify/lang/he.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'justify', 'he', { 6 | block: 'יישור לשוליים', 7 | center: 'מרכוז', 8 | left: 'יישור לשמאל', 9 | right: 'יישור לימין' 10 | } ); 11 | -------------------------------------------------------------------------------- /public/assets/js/core/ckeditor/lib/plugins/justify/lang/hi.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'justify', 'hi', { 6 | block: 'ब्लॉक जस्टीफ़ाई', 7 | center: 'बीच में', 8 | left: 'बायीं तरफ', 9 | right: 'दायीं तरफ' 10 | } ); 11 | -------------------------------------------------------------------------------- /public/assets/js/core/ckeditor/lib/plugins/justify/lang/hr.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'justify', 'hr', { 6 | block: 'Blok poravnanje', 7 | center: 'Središnje poravnanje', 8 | left: 'Lijevo poravnanje', 9 | right: 'Desno poravnanje' 10 | } ); 11 | -------------------------------------------------------------------------------- /public/assets/js/core/ckeditor/lib/plugins/justify/lang/hu.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'justify', 'hu', { 6 | block: 'Sorkizárt', 7 | center: 'Középre', 8 | left: 'Balra', 9 | right: 'Jobbra' 10 | } ); 11 | -------------------------------------------------------------------------------- /public/assets/js/core/ckeditor/lib/plugins/justify/lang/id.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'justify', 'id', { 6 | block: 'Rata kiri-kanan', 7 | center: 'Pusat', 8 | left: 'Align Left', // MISSING 9 | right: 'Align Right' // MISSING 10 | } ); 11 | -------------------------------------------------------------------------------- /public/assets/js/core/ckeditor/lib/plugins/justify/lang/is.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'justify', 'is', { 6 | block: 'Jafna báðum megin', 7 | center: 'Miðja texta', 8 | left: 'Vinstrijöfnun', 9 | right: 'Hægrijöfnun' 10 | } ); 11 | -------------------------------------------------------------------------------- /public/assets/js/core/ckeditor/lib/plugins/justify/lang/it.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'justify', 'it', { 6 | block: 'Giustifica', 7 | center: 'Centra', 8 | left: 'Allinea a sinistra', 9 | right: 'Allinea a destra' 10 | } ); 11 | -------------------------------------------------------------------------------- /public/assets/js/core/ckeditor/lib/plugins/justify/lang/ja.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'justify', 'ja', { 6 | block: '両端揃え', 7 | center: '中央揃え', 8 | left: '左揃え', 9 | right: '右揃え' 10 | } ); 11 | -------------------------------------------------------------------------------- /public/assets/js/core/ckeditor/lib/plugins/justify/lang/ka.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'justify', 'ka', { 6 | block: 'გადასწორება', 7 | center: 'შუაში სწორება', 8 | left: 'მარცხნივ სწორება', 9 | right: 'მარჯვნივ სწორება' 10 | } ); 11 | -------------------------------------------------------------------------------- /public/assets/js/core/ckeditor/lib/plugins/justify/lang/km.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'justify', 'km', { 6 | block: 'តម្រឹម​ពេញ', 7 | center: 'កណ្ដាល', 8 | left: 'តម្រឹម​ឆ្វេង', 9 | right: 'តម្រឹម​ស្ដាំ' 10 | } ); 11 | -------------------------------------------------------------------------------- /public/assets/js/core/ckeditor/lib/plugins/justify/lang/ko.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'justify', 'ko', { 6 | block: '양쪽 맞춤', 7 | center: '가운데 정렬', 8 | left: '왼쪽 정렬', 9 | right: '오른쪽 정렬' 10 | } ); 11 | -------------------------------------------------------------------------------- /public/assets/js/core/ckeditor/lib/plugins/justify/lang/ku.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'justify', 'ku', { 6 | block: 'هاوستوونی', 7 | center: 'ناوەڕاست', 8 | left: 'بەهێڵ کردنی چەپ', 9 | right: 'بەهێڵ کردنی ڕاست' 10 | } ); 11 | -------------------------------------------------------------------------------- /public/assets/js/core/ckeditor/lib/plugins/justify/lang/lt.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'justify', 'lt', { 6 | block: 'Lygiuoti abi puses', 7 | center: 'Centruoti', 8 | left: 'Lygiuoti kairę', 9 | right: 'Lygiuoti dešinę' 10 | } ); 11 | -------------------------------------------------------------------------------- /public/assets/js/core/ckeditor/lib/plugins/justify/lang/lv.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'justify', 'lv', { 6 | block: 'Izlīdzināt malas', 7 | center: 'Izlīdzināt pret centru', 8 | left: 'Izlīdzināt pa kreisi', 9 | right: 'Izlīdzināt pa labi' 10 | } ); 11 | -------------------------------------------------------------------------------- /public/assets/js/core/ckeditor/lib/plugins/justify/lang/mk.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'justify', 'mk', { 6 | block: 'Justify', // MISSING 7 | center: 'Center', // MISSING 8 | left: 'Align Left', // MISSING 9 | right: 'Align Right' // MISSING 10 | } ); 11 | -------------------------------------------------------------------------------- /public/assets/js/core/ckeditor/lib/plugins/justify/lang/mn.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'justify', 'mn', { 6 | block: 'Тэгшлэх', 7 | center: 'Голлуулах', 8 | left: 'Зүүн талд тулгах', 9 | right: 'Баруун талд тулгах' 10 | } ); 11 | -------------------------------------------------------------------------------- /public/assets/js/core/ckeditor/lib/plugins/justify/lang/ms.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'justify', 'ms', { 6 | block: 'Jajaran Blok', 7 | center: 'Jajaran Tengah', 8 | left: 'Jajaran Kiri', 9 | right: 'Jajaran Kanan' 10 | } ); 11 | -------------------------------------------------------------------------------- /public/assets/js/core/ckeditor/lib/plugins/justify/lang/nb.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'justify', 'nb', { 6 | block: 'Blokkjuster', 7 | center: 'Midtstill', 8 | left: 'Venstrejuster', 9 | right: 'Høyrejuster' 10 | } ); 11 | -------------------------------------------------------------------------------- /public/assets/js/core/ckeditor/lib/plugins/justify/lang/nl.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'justify', 'nl', { 6 | block: 'Uitvullen', 7 | center: 'Centreren', 8 | left: 'Links uitlijnen', 9 | right: 'Rechts uitlijnen' 10 | } ); 11 | -------------------------------------------------------------------------------- /public/assets/js/core/ckeditor/lib/plugins/justify/lang/no.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'justify', 'no', { 6 | block: 'Blokkjuster', 7 | center: 'Midtstill', 8 | left: 'Venstrejuster', 9 | right: 'Høyrejuster' 10 | } ); 11 | -------------------------------------------------------------------------------- /public/assets/js/core/ckeditor/lib/plugins/justify/lang/pl.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'justify', 'pl', { 6 | block: 'Wyjustuj', 7 | center: 'Wyśrodkuj', 8 | left: 'Wyrównaj do lewej', 9 | right: 'Wyrównaj do prawej' 10 | } ); 11 | -------------------------------------------------------------------------------- /public/assets/js/core/ckeditor/lib/plugins/justify/lang/pt-br.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'justify', 'pt-br', { 6 | block: 'Justificado', 7 | center: 'Centralizar', 8 | left: 'Alinhar Esquerda', 9 | right: 'Alinhar Direita' 10 | } ); 11 | -------------------------------------------------------------------------------- /public/assets/js/core/ckeditor/lib/plugins/justify/lang/pt.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'justify', 'pt', { 6 | block: 'Justificado', 7 | center: 'Alinhar ao Centro', 8 | left: 'Alinhar à Esquerda', 9 | right: 'Alinhar à Direita' 10 | } ); 11 | -------------------------------------------------------------------------------- /public/assets/js/core/ckeditor/lib/plugins/justify/lang/ro.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'justify', 'ro', { 6 | block: 'Aliniere în bloc (Block Justify)', 7 | center: 'Aliniere centrală', 8 | left: 'Aliniere la stânga', 9 | right: 'Aliniere la dreapta' 10 | } ); 11 | -------------------------------------------------------------------------------- /public/assets/js/core/ckeditor/lib/plugins/justify/lang/ru.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'justify', 'ru', { 6 | block: 'По ширине', 7 | center: 'По центру', 8 | left: 'По левому краю', 9 | right: 'По правому краю' 10 | } ); 11 | -------------------------------------------------------------------------------- /public/assets/js/core/ckeditor/lib/plugins/justify/lang/si.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'justify', 'si', { 6 | block: 'Justify', // MISSING 7 | center: 'මධ්‍ය', 8 | left: 'Align Left', // MISSING 9 | right: 'Align Right' // MISSING 10 | } ); 11 | -------------------------------------------------------------------------------- /public/assets/js/core/ckeditor/lib/plugins/justify/lang/sk.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'justify', 'sk', { 6 | block: 'Zarovnať do bloku', 7 | center: 'Zarovnať na stred', 8 | left: 'Zarovnať vľavo', 9 | right: 'Zarovnať vpravo' 10 | } ); 11 | -------------------------------------------------------------------------------- /public/assets/js/core/ckeditor/lib/plugins/justify/lang/sl.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'justify', 'sl', { 6 | block: 'Obojestranska poravnava', 7 | center: 'Sredinska poravnava', 8 | left: 'Leva poravnava', 9 | right: 'Desna poravnava' 10 | } ); 11 | -------------------------------------------------------------------------------- /public/assets/js/core/ckeditor/lib/plugins/justify/lang/sq.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'justify', 'sq', { 6 | block: 'Zgjero', 7 | center: 'Qendër', 8 | left: 'Rreshto majtas', 9 | right: 'Rreshto Djathtas' 10 | } ); 11 | -------------------------------------------------------------------------------- /public/assets/js/core/ckeditor/lib/plugins/justify/lang/sr-latn.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'justify', 'sr-latn', { 6 | block: 'Obostrano ravnanje', 7 | center: 'Centriran tekst', 8 | left: 'Levo ravnanje', 9 | right: 'Desno ravnanje' 10 | } ); 11 | -------------------------------------------------------------------------------- /public/assets/js/core/ckeditor/lib/plugins/justify/lang/sr.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'justify', 'sr', { 6 | block: 'Обострано равнање', 7 | center: 'Центриран текст', 8 | left: 'Лево равнање', 9 | right: 'Десно равнање' 10 | } ); 11 | -------------------------------------------------------------------------------- /public/assets/js/core/ckeditor/lib/plugins/justify/lang/sv.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'justify', 'sv', { 6 | block: 'Justera till marginaler', 7 | center: 'Centrera', 8 | left: 'Vänsterjustera', 9 | right: 'Högerjustera' 10 | } ); 11 | -------------------------------------------------------------------------------- /public/assets/js/core/ckeditor/lib/plugins/justify/lang/th.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'justify', 'th', { 6 | block: 'จัดพอดีหน้ากระดาษ', 7 | center: 'จัดกึ่งกลาง', 8 | left: 'จัดชิดซ้าย', 9 | right: 'จัดชิดขวา' 10 | } ); 11 | -------------------------------------------------------------------------------- /public/assets/js/core/ckeditor/lib/plugins/justify/lang/tr.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'justify', 'tr', { 6 | block: 'İki Kenara Yaslanmış', 7 | center: 'Ortalanmış', 8 | left: 'Sola Dayalı', 9 | right: 'Sağa Dayalı' 10 | } ); 11 | -------------------------------------------------------------------------------- /public/assets/js/core/ckeditor/lib/plugins/justify/lang/ug.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'justify', 'ug', { 6 | block: 'ئىككى تەرەپتىن توغرىلا', 7 | center: 'ئوتتۇرىغا توغرىلا', 8 | left: 'سولغا توغرىلا', 9 | right: 'ئوڭغا توغرىلا' 10 | } ); 11 | -------------------------------------------------------------------------------- /public/assets/js/core/ckeditor/lib/plugins/justify/lang/uk.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'justify', 'uk', { 6 | block: 'По ширині', 7 | center: 'По центру', 8 | left: 'По лівому краю', 9 | right: 'По правому краю' 10 | } ); 11 | -------------------------------------------------------------------------------- /public/assets/js/core/ckeditor/lib/plugins/justify/lang/vi.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'justify', 'vi', { 6 | block: 'Canh đều', 7 | center: 'Canh giữa', 8 | left: 'Canh trái', 9 | right: 'Canh phải' 10 | } ); 11 | -------------------------------------------------------------------------------- /public/assets/js/core/ckeditor/lib/plugins/justify/lang/zh-cn.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'justify', 'zh-cn', { 6 | block: '两端对齐', 7 | center: '居中', 8 | left: '左对齐', 9 | right: '右对齐' 10 | } ); 11 | -------------------------------------------------------------------------------- /public/assets/js/core/ckeditor/lib/plugins/justify/lang/zh.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'justify', 'zh', { 6 | block: '左右對齊', 7 | center: '置中', 8 | left: '靠左對齊', 9 | right: '靠右對齊' 10 | } ); 11 | -------------------------------------------------------------------------------- /public/assets/js/core/ckeditor/lib/plugins/link/images/anchor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/js/core/ckeditor/lib/plugins/link/images/anchor.png -------------------------------------------------------------------------------- /public/assets/js/core/ckeditor/lib/plugins/link/images/hidpi/anchor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/js/core/ckeditor/lib/plugins/link/images/hidpi/anchor.png -------------------------------------------------------------------------------- /public/assets/js/core/ckeditor/lib/plugins/magicline/images/hidpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/js/core/ckeditor/lib/plugins/magicline/images/hidpi/icon.png -------------------------------------------------------------------------------- /public/assets/js/core/ckeditor/lib/plugins/magicline/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/js/core/ckeditor/lib/plugins/magicline/images/icon.png -------------------------------------------------------------------------------- /public/assets/js/core/ckeditor/lib/skins/moono/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/js/core/ckeditor/lib/skins/moono/icons.png -------------------------------------------------------------------------------- /public/assets/js/core/ckeditor/lib/skins/moono/icons_hidpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/js/core/ckeditor/lib/skins/moono/icons_hidpi.png -------------------------------------------------------------------------------- /public/assets/js/core/ckeditor/lib/skins/moono/images/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/js/core/ckeditor/lib/skins/moono/images/arrow.png -------------------------------------------------------------------------------- /public/assets/js/core/ckeditor/lib/skins/moono/images/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/js/core/ckeditor/lib/skins/moono/images/close.png -------------------------------------------------------------------------------- /public/assets/js/core/ckeditor/lib/skins/moono/images/hidpi/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/js/core/ckeditor/lib/skins/moono/images/hidpi/close.png -------------------------------------------------------------------------------- /public/assets/js/core/ckeditor/lib/skins/moono/images/hidpi/lock-open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/js/core/ckeditor/lib/skins/moono/images/hidpi/lock-open.png -------------------------------------------------------------------------------- /public/assets/js/core/ckeditor/lib/skins/moono/images/hidpi/lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/js/core/ckeditor/lib/skins/moono/images/hidpi/lock.png -------------------------------------------------------------------------------- /public/assets/js/core/ckeditor/lib/skins/moono/images/hidpi/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/js/core/ckeditor/lib/skins/moono/images/hidpi/refresh.png -------------------------------------------------------------------------------- /public/assets/js/core/ckeditor/lib/skins/moono/images/lock-open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/js/core/ckeditor/lib/skins/moono/images/lock-open.png -------------------------------------------------------------------------------- /public/assets/js/core/ckeditor/lib/skins/moono/images/lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/js/core/ckeditor/lib/skins/moono/images/lock.png -------------------------------------------------------------------------------- /public/assets/js/core/ckeditor/lib/skins/moono/images/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/js/core/ckeditor/lib/skins/moono/images/refresh.png -------------------------------------------------------------------------------- /public/assets/js/core/fineuploader/iframe.xss.response-3.4.1.js: -------------------------------------------------------------------------------- 1 | (function() { 2 | var match = /(\{.+\}).+/.exec(document.body.innerHTML); 3 | if (match) { 4 | parent.postMessage(match[1], '*'); 5 | } 6 | }()); 7 | -------------------------------------------------------------------------------- /public/assets/media/.thumbnails/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore -------------------------------------------------------------------------------- /public/assets/media/404.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/media/404.png -------------------------------------------------------------------------------- /public/assets/media/admin-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/media/admin-bg.png -------------------------------------------------------------------------------- /public/assets/media/admin-cover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/media/admin-cover.png -------------------------------------------------------------------------------- /public/assets/media/ajde-medium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/media/ajde-medium.png -------------------------------------------------------------------------------- /public/assets/media/ajde-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/media/ajde-small.png -------------------------------------------------------------------------------- /public/assets/media/ajde.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/media/ajde.png -------------------------------------------------------------------------------- /public/assets/media/app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/media/app.png -------------------------------------------------------------------------------- /public/assets/media/checkerboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/media/checkerboard.png -------------------------------------------------------------------------------- /public/assets/media/core/crud/accepted_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/media/core/crud/accepted_16.png -------------------------------------------------------------------------------- /public/assets/media/core/crud/add_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/media/core/crud/add_16.png -------------------------------------------------------------------------------- /public/assets/media/core/crud/apply_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/media/core/crud/apply_16.png -------------------------------------------------------------------------------- /public/assets/media/core/crud/cancel_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/media/core/crud/cancel_16.png -------------------------------------------------------------------------------- /public/assets/media/core/crud/cross_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/media/core/crud/cross_16.png -------------------------------------------------------------------------------- /public/assets/media/core/crud/doogle-drive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/media/core/crud/doogle-drive.png -------------------------------------------------------------------------------- /public/assets/media/core/crud/doogle-drive_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/media/core/crud/doogle-drive_32.png -------------------------------------------------------------------------------- /public/assets/media/core/crud/down_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/media/core/crud/down_16.png -------------------------------------------------------------------------------- /public/assets/media/core/crud/google-drive_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/media/core/crud/google-drive_16.png -------------------------------------------------------------------------------- /public/assets/media/core/crud/key_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/media/core/crud/key_16.png -------------------------------------------------------------------------------- /public/assets/media/core/crud/monitor_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/media/core/crud/monitor_16.png -------------------------------------------------------------------------------- /public/assets/media/core/crud/next_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/media/core/crud/next_16.png -------------------------------------------------------------------------------- /public/assets/media/core/crud/next_21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/media/core/crud/next_21.png -------------------------------------------------------------------------------- /public/assets/media/core/crud/pencil_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/media/core/crud/pencil_16.png -------------------------------------------------------------------------------- /public/assets/media/core/crud/prev_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/media/core/crud/prev_16.png -------------------------------------------------------------------------------- /public/assets/media/core/crud/search_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/media/core/crud/search_16.png -------------------------------------------------------------------------------- /public/assets/media/core/crud/up_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/media/core/crud/up_16.png -------------------------------------------------------------------------------- /public/assets/media/core/crud/upload_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/media/core/crud/upload_16.png -------------------------------------------------------------------------------- /public/assets/media/core/globe_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/media/core/globe_16.png -------------------------------------------------------------------------------- /public/assets/media/core/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/media/core/loading.gif -------------------------------------------------------------------------------- /public/assets/media/core/shop/creditcard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/media/core/shop/creditcard.png -------------------------------------------------------------------------------- /public/assets/media/core/shop/iban.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/media/core/shop/iban.png -------------------------------------------------------------------------------- /public/assets/media/core/shop/ideal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/media/core/shop/ideal.png -------------------------------------------------------------------------------- /public/assets/media/core/shop/paypal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/media/core/shop/paypal.png -------------------------------------------------------------------------------- /public/assets/media/core/shop/test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/media/core/shop/test.png -------------------------------------------------------------------------------- /public/assets/media/core/warning_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/media/core/warning_16.png -------------------------------------------------------------------------------- /public/assets/media/core/warning_48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/media/core/warning_48.png -------------------------------------------------------------------------------- /public/assets/media/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/media/favicon.png -------------------------------------------------------------------------------- /public/assets/media/flags/flags.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/media/flags/flags.png -------------------------------------------------------------------------------- /public/assets/media/gray.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/media/gray.gif -------------------------------------------------------------------------------- /public/assets/media/icons/16/arrow_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/media/icons/16/arrow_down.png -------------------------------------------------------------------------------- /public/assets/media/icons/16/arrow_left-down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/media/icons/16/arrow_left-down.png -------------------------------------------------------------------------------- /public/assets/media/icons/16/arrow_left-up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/media/icons/16/arrow_left-up.png -------------------------------------------------------------------------------- /public/assets/media/icons/16/arrow_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/media/icons/16/arrow_left.png -------------------------------------------------------------------------------- /public/assets/media/icons/16/arrow_right-down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/media/icons/16/arrow_right-down.png -------------------------------------------------------------------------------- /public/assets/media/icons/16/arrow_right-up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/media/icons/16/arrow_right-up.png -------------------------------------------------------------------------------- /public/assets/media/icons/16/arrow_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/media/icons/16/arrow_right.png -------------------------------------------------------------------------------- /public/assets/media/icons/16/arrow_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/media/icons/16/arrow_up.png -------------------------------------------------------------------------------- /public/assets/media/icons/16/attachment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/media/icons/16/attachment.png -------------------------------------------------------------------------------- /public/assets/media/icons/16/attention.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/media/icons/16/attention.png -------------------------------------------------------------------------------- /public/assets/media/icons/16/backward.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/media/icons/16/backward.png -------------------------------------------------------------------------------- /public/assets/media/icons/16/bag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/media/icons/16/bag.png -------------------------------------------------------------------------------- /public/assets/media/icons/16/base.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/media/icons/16/base.png -------------------------------------------------------------------------------- /public/assets/media/icons/16/bonus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/media/icons/16/bonus.png -------------------------------------------------------------------------------- /public/assets/media/icons/16/bug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/media/icons/16/bug.png -------------------------------------------------------------------------------- /public/assets/media/icons/16/calculator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/media/icons/16/calculator.png -------------------------------------------------------------------------------- /public/assets/media/icons/16/calendar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/media/icons/16/calendar.png -------------------------------------------------------------------------------- /public/assets/media/icons/16/cd_dvd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/media/icons/16/cd_dvd.png -------------------------------------------------------------------------------- /public/assets/media/icons/16/check-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/media/icons/16/check-64.png -------------------------------------------------------------------------------- /public/assets/media/icons/16/check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/media/icons/16/check.png -------------------------------------------------------------------------------- /public/assets/media/icons/16/check_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/media/icons/16/check_2.png -------------------------------------------------------------------------------- /public/assets/media/icons/16/close_delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/media/icons/16/close_delete.png -------------------------------------------------------------------------------- /public/assets/media/icons/16/close_delete_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/media/icons/16/close_delete_2.png -------------------------------------------------------------------------------- /public/assets/media/icons/16/closed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/media/icons/16/closed.png -------------------------------------------------------------------------------- /public/assets/media/icons/16/comment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/media/icons/16/comment.png -------------------------------------------------------------------------------- /public/assets/media/icons/16/computer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/media/icons/16/computer.png -------------------------------------------------------------------------------- /public/assets/media/icons/16/computer_monitor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/media/icons/16/computer_monitor.png -------------------------------------------------------------------------------- /public/assets/media/icons/16/copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/media/icons/16/copy.png -------------------------------------------------------------------------------- /public/assets/media/icons/16/credit_card.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/media/icons/16/credit_card.png -------------------------------------------------------------------------------- /public/assets/media/icons/16/credit_card_back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/media/icons/16/credit_card_back.png -------------------------------------------------------------------------------- /public/assets/media/icons/16/cut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/media/icons/16/cut.png -------------------------------------------------------------------------------- /public/assets/media/icons/16/delete_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/media/icons/16/delete_2.png -------------------------------------------------------------------------------- /public/assets/media/icons/16/document_file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/media/icons/16/document_file.png -------------------------------------------------------------------------------- /public/assets/media/icons/16/email.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/media/icons/16/email.png -------------------------------------------------------------------------------- /public/assets/media/icons/16/eraser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/media/icons/16/eraser.png -------------------------------------------------------------------------------- /public/assets/media/icons/16/favorite_love.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/media/icons/16/favorite_love.png -------------------------------------------------------------------------------- /public/assets/media/icons/16/flag_mark_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/media/icons/16/flag_mark_blue.png -------------------------------------------------------------------------------- /public/assets/media/icons/16/flag_mark_gray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/media/icons/16/flag_mark_gray.png -------------------------------------------------------------------------------- /public/assets/media/icons/16/flag_mark_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/media/icons/16/flag_mark_green.png -------------------------------------------------------------------------------- /public/assets/media/icons/16/flag_mark_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/media/icons/16/flag_mark_red.png -------------------------------------------------------------------------------- /public/assets/media/icons/16/flag_mark_violet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/media/icons/16/flag_mark_violet.png -------------------------------------------------------------------------------- /public/assets/media/icons/16/flag_mark_yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/media/icons/16/flag_mark_yellow.png -------------------------------------------------------------------------------- /public/assets/media/icons/16/folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/media/icons/16/folder.png -------------------------------------------------------------------------------- /public/assets/media/icons/16/forward.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/media/icons/16/forward.png -------------------------------------------------------------------------------- /public/assets/media/icons/16/friends_group.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/media/icons/16/friends_group.png -------------------------------------------------------------------------------- /public/assets/media/icons/16/help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/media/icons/16/help.png -------------------------------------------------------------------------------- /public/assets/media/icons/16/help_ring-buoy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/media/icons/16/help_ring-buoy.png -------------------------------------------------------------------------------- /public/assets/media/icons/16/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/media/icons/16/home.png -------------------------------------------------------------------------------- /public/assets/media/icons/16/information.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/media/icons/16/information.png -------------------------------------------------------------------------------- /public/assets/media/icons/16/ipod.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/media/icons/16/ipod.png -------------------------------------------------------------------------------- /public/assets/media/icons/16/key_login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/media/icons/16/key_login.png -------------------------------------------------------------------------------- /public/assets/media/icons/16/lamp_active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/media/icons/16/lamp_active.png -------------------------------------------------------------------------------- /public/assets/media/icons/16/lamp_inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/media/icons/16/lamp_inactive.png -------------------------------------------------------------------------------- /public/assets/media/icons/16/lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/media/icons/16/lock.png -------------------------------------------------------------------------------- /public/assets/media/icons/16/minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/media/icons/16/minus.png -------------------------------------------------------------------------------- /public/assets/media/icons/16/minus_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/media/icons/16/minus_2.png -------------------------------------------------------------------------------- /public/assets/media/icons/16/mobile_phone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/media/icons/16/mobile_phone.png -------------------------------------------------------------------------------- /public/assets/media/icons/16/network.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/media/icons/16/network.png -------------------------------------------------------------------------------- /public/assets/media/icons/16/network_close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/media/icons/16/network_close.png -------------------------------------------------------------------------------- /public/assets/media/icons/16/new_email.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/media/icons/16/new_email.png -------------------------------------------------------------------------------- /public/assets/media/icons/16/next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/media/icons/16/next.png -------------------------------------------------------------------------------- /public/assets/media/icons/16/opened.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/media/icons/16/opened.png -------------------------------------------------------------------------------- /public/assets/media/icons/16/options.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/media/icons/16/options.png -------------------------------------------------------------------------------- /public/assets/media/icons/16/options_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/media/icons/16/options_2.png -------------------------------------------------------------------------------- /public/assets/media/icons/16/paste.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/media/icons/16/paste.png -------------------------------------------------------------------------------- /public/assets/media/icons/16/pause.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/media/icons/16/pause.png -------------------------------------------------------------------------------- /public/assets/media/icons/16/pencil_edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/media/icons/16/pencil_edit.png -------------------------------------------------------------------------------- /public/assets/media/icons/16/pie-chart_diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/media/icons/16/pie-chart_diagram.png -------------------------------------------------------------------------------- /public/assets/media/icons/16/pie-chart_graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/media/icons/16/pie-chart_graph.png -------------------------------------------------------------------------------- /public/assets/media/icons/16/play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/media/icons/16/play.png -------------------------------------------------------------------------------- /public/assets/media/icons/16/plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/media/icons/16/plus.png -------------------------------------------------------------------------------- /public/assets/media/icons/16/plus_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/media/icons/16/plus_2.png -------------------------------------------------------------------------------- /public/assets/media/icons/16/previous.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/media/icons/16/previous.png -------------------------------------------------------------------------------- /public/assets/media/icons/16/printer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/media/icons/16/printer.png -------------------------------------------------------------------------------- /public/assets/media/icons/16/radio-button_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/media/icons/16/radio-button_off.png -------------------------------------------------------------------------------- /public/assets/media/icons/16/radio-button_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/media/icons/16/radio-button_on.png -------------------------------------------------------------------------------- /public/assets/media/icons/16/record.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/media/icons/16/record.png -------------------------------------------------------------------------------- /public/assets/media/icons/16/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/media/icons/16/refresh.png -------------------------------------------------------------------------------- /public/assets/media/icons/16/rss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/media/icons/16/rss.png -------------------------------------------------------------------------------- /public/assets/media/icons/16/save_as.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/media/icons/16/save_as.png -------------------------------------------------------------------------------- /public/assets/media/icons/16/save_diskette_floppy_disk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/media/icons/16/save_diskette_floppy_disk.png -------------------------------------------------------------------------------- /public/assets/media/icons/16/search_lense.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/media/icons/16/search_lense.png -------------------------------------------------------------------------------- /public/assets/media/icons/16/shield_protect_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/media/icons/16/shield_protect_off.png -------------------------------------------------------------------------------- /public/assets/media/icons/16/shield_protect_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/media/icons/16/shield_protect_on.png -------------------------------------------------------------------------------- /public/assets/media/icons/16/shopping_cart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/media/icons/16/shopping_cart.png -------------------------------------------------------------------------------- /public/assets/media/icons/16/shopping_cart_empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/media/icons/16/shopping_cart_empty.png -------------------------------------------------------------------------------- /public/assets/media/icons/16/smartphone_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/media/icons/16/smartphone_2.png -------------------------------------------------------------------------------- /public/assets/media/icons/16/smartphone_iphone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/media/icons/16/smartphone_iphone.png -------------------------------------------------------------------------------- /public/assets/media/icons/16/sound_music-off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/media/icons/16/sound_music-off.png -------------------------------------------------------------------------------- /public/assets/media/icons/16/sound_music-on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/media/icons/16/sound_music-on.png -------------------------------------------------------------------------------- /public/assets/media/icons/16/star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/media/icons/16/star.png -------------------------------------------------------------------------------- /public/assets/media/icons/16/star_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/media/icons/16/star_2.png -------------------------------------------------------------------------------- /public/assets/media/icons/16/star_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/media/icons/16/star_3.png -------------------------------------------------------------------------------- /public/assets/media/icons/16/stop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/media/icons/16/stop.png -------------------------------------------------------------------------------- /public/assets/media/icons/16/stop_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/media/icons/16/stop_2.png -------------------------------------------------------------------------------- /public/assets/media/icons/16/tag_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/media/icons/16/tag_blue.png -------------------------------------------------------------------------------- /public/assets/media/icons/16/tag_gray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/media/icons/16/tag_gray.png -------------------------------------------------------------------------------- /public/assets/media/icons/16/tag_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/media/icons/16/tag_green.png -------------------------------------------------------------------------------- /public/assets/media/icons/16/tag_orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/media/icons/16/tag_orange.png -------------------------------------------------------------------------------- /public/assets/media/icons/16/tag_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/media/icons/16/tag_red.png -------------------------------------------------------------------------------- /public/assets/media/icons/16/tag_violet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/media/icons/16/tag_violet.png -------------------------------------------------------------------------------- /public/assets/media/icons/16/tag_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/media/icons/16/tag_white.png -------------------------------------------------------------------------------- /public/assets/media/icons/16/tag_yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/media/icons/16/tag_yellow.png -------------------------------------------------------------------------------- /public/assets/media/icons/16/time_clock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/media/icons/16/time_clock.png -------------------------------------------------------------------------------- /public/assets/media/icons/16/trash_box.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/media/icons/16/trash_box.png -------------------------------------------------------------------------------- /public/assets/media/icons/16/trash_box_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/media/icons/16/trash_box_2.png -------------------------------------------------------------------------------- /public/assets/media/icons/16/unlock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/media/icons/16/unlock.png -------------------------------------------------------------------------------- /public/assets/media/icons/16/user_friend.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/media/icons/16/user_friend.png -------------------------------------------------------------------------------- /public/assets/media/icons/16/user_woman.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/media/icons/16/user_woman.png -------------------------------------------------------------------------------- /public/assets/media/icons/16/vote_no.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/media/icons/16/vote_no.png -------------------------------------------------------------------------------- /public/assets/media/icons/16/vote_yes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/media/icons/16/vote_yes.png -------------------------------------------------------------------------------- /public/assets/media/icons/16/wizard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/media/icons/16/wizard.png -------------------------------------------------------------------------------- /public/assets/media/icons/32/arrow_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/media/icons/32/arrow_down.png -------------------------------------------------------------------------------- /public/assets/media/icons/32/arrow_left-down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/media/icons/32/arrow_left-down.png -------------------------------------------------------------------------------- /public/assets/media/icons/32/arrow_left-up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/media/icons/32/arrow_left-up.png -------------------------------------------------------------------------------- /public/assets/media/icons/32/arrow_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/media/icons/32/arrow_left.png -------------------------------------------------------------------------------- /public/assets/media/icons/32/arrow_right-down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/media/icons/32/arrow_right-down.png -------------------------------------------------------------------------------- /public/assets/media/icons/32/arrow_right-up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/media/icons/32/arrow_right-up.png -------------------------------------------------------------------------------- /public/assets/media/icons/32/arrow_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/media/icons/32/arrow_right.png -------------------------------------------------------------------------------- /public/assets/media/icons/32/arrow_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/media/icons/32/arrow_up.png -------------------------------------------------------------------------------- /public/assets/media/icons/32/attention.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/media/icons/32/attention.png -------------------------------------------------------------------------------- /public/assets/media/icons/32/backward.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/media/icons/32/backward.png -------------------------------------------------------------------------------- /public/assets/media/icons/32/bag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/media/icons/32/bag.png -------------------------------------------------------------------------------- /public/assets/media/icons/32/base.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/media/icons/32/base.png -------------------------------------------------------------------------------- /public/assets/media/icons/32/bonus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/media/icons/32/bonus.png -------------------------------------------------------------------------------- /public/assets/media/icons/32/bug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/media/icons/32/bug.png -------------------------------------------------------------------------------- /public/assets/media/icons/32/calculator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/media/icons/32/calculator.png -------------------------------------------------------------------------------- /public/assets/media/icons/32/calendar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/media/icons/32/calendar.png -------------------------------------------------------------------------------- /public/assets/media/icons/32/cd_dvd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/media/icons/32/cd_dvd.png -------------------------------------------------------------------------------- /public/assets/media/icons/32/check-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/media/icons/32/check-64.png -------------------------------------------------------------------------------- /public/assets/media/icons/32/check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/media/icons/32/check.png -------------------------------------------------------------------------------- /public/assets/media/icons/32/check_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/media/icons/32/check_2.png -------------------------------------------------------------------------------- /public/assets/media/icons/32/close_delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/media/icons/32/close_delete.png -------------------------------------------------------------------------------- /public/assets/media/icons/32/close_delete_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/media/icons/32/close_delete_2.png -------------------------------------------------------------------------------- /public/assets/media/icons/32/closed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/media/icons/32/closed.png -------------------------------------------------------------------------------- /public/assets/media/icons/32/comment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/media/icons/32/comment.png -------------------------------------------------------------------------------- /public/assets/media/icons/32/computer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/media/icons/32/computer.png -------------------------------------------------------------------------------- /public/assets/media/icons/32/computer_monitor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/media/icons/32/computer_monitor.png -------------------------------------------------------------------------------- /public/assets/media/icons/32/copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/media/icons/32/copy.png -------------------------------------------------------------------------------- /public/assets/media/icons/32/credit_card.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/media/icons/32/credit_card.png -------------------------------------------------------------------------------- /public/assets/media/icons/32/credit_card_back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/media/icons/32/credit_card_back.png -------------------------------------------------------------------------------- /public/assets/media/icons/32/cut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/media/icons/32/cut.png -------------------------------------------------------------------------------- /public/assets/media/icons/32/delete_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/media/icons/32/delete_2.png -------------------------------------------------------------------------------- /public/assets/media/icons/32/document_file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/media/icons/32/document_file.png -------------------------------------------------------------------------------- /public/assets/media/icons/32/email.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/media/icons/32/email.png -------------------------------------------------------------------------------- /public/assets/media/icons/32/eraser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/media/icons/32/eraser.png -------------------------------------------------------------------------------- /public/assets/media/icons/32/favorite_love.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/media/icons/32/favorite_love.png -------------------------------------------------------------------------------- /public/assets/media/icons/32/flag_mark_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/media/icons/32/flag_mark_blue.png -------------------------------------------------------------------------------- /public/assets/media/icons/32/flag_mark_gray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/media/icons/32/flag_mark_gray.png -------------------------------------------------------------------------------- /public/assets/media/icons/32/flag_mark_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/media/icons/32/flag_mark_green.png -------------------------------------------------------------------------------- /public/assets/media/icons/32/flag_mark_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/media/icons/32/flag_mark_red.png -------------------------------------------------------------------------------- /public/assets/media/icons/32/flag_mark_violet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/media/icons/32/flag_mark_violet.png -------------------------------------------------------------------------------- /public/assets/media/icons/32/flag_mark_yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/media/icons/32/flag_mark_yellow.png -------------------------------------------------------------------------------- /public/assets/media/icons/32/folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/media/icons/32/folder.png -------------------------------------------------------------------------------- /public/assets/media/icons/32/forward.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/media/icons/32/forward.png -------------------------------------------------------------------------------- /public/assets/media/icons/32/friends_group.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/media/icons/32/friends_group.png -------------------------------------------------------------------------------- /public/assets/media/icons/32/help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/media/icons/32/help.png -------------------------------------------------------------------------------- /public/assets/media/icons/32/help_ring-buoy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/media/icons/32/help_ring-buoy.png -------------------------------------------------------------------------------- /public/assets/media/icons/32/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/media/icons/32/home.png -------------------------------------------------------------------------------- /public/assets/media/icons/32/information.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/media/icons/32/information.png -------------------------------------------------------------------------------- /public/assets/media/icons/32/ipod.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/media/icons/32/ipod.png -------------------------------------------------------------------------------- /public/assets/media/icons/32/key_login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/media/icons/32/key_login.png -------------------------------------------------------------------------------- /public/assets/media/icons/32/lamp_active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/media/icons/32/lamp_active.png -------------------------------------------------------------------------------- /public/assets/media/icons/32/lamp_inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/media/icons/32/lamp_inactive.png -------------------------------------------------------------------------------- /public/assets/media/icons/32/lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/media/icons/32/lock.png -------------------------------------------------------------------------------- /public/assets/media/icons/32/minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/media/icons/32/minus.png -------------------------------------------------------------------------------- /public/assets/media/icons/32/minus_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/media/icons/32/minus_2.png -------------------------------------------------------------------------------- /public/assets/media/icons/32/mobile_phone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/media/icons/32/mobile_phone.png -------------------------------------------------------------------------------- /public/assets/media/icons/32/network.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/media/icons/32/network.png -------------------------------------------------------------------------------- /public/assets/media/icons/32/network_close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/media/icons/32/network_close.png -------------------------------------------------------------------------------- /public/assets/media/icons/32/new_email.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/media/icons/32/new_email.png -------------------------------------------------------------------------------- /public/assets/media/icons/32/next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/media/icons/32/next.png -------------------------------------------------------------------------------- /public/assets/media/icons/32/opened.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/media/icons/32/opened.png -------------------------------------------------------------------------------- /public/assets/media/icons/32/options.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/media/icons/32/options.png -------------------------------------------------------------------------------- /public/assets/media/icons/32/options_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/media/icons/32/options_2.png -------------------------------------------------------------------------------- /public/assets/media/icons/32/paste.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/media/icons/32/paste.png -------------------------------------------------------------------------------- /public/assets/media/icons/32/pause.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/media/icons/32/pause.png -------------------------------------------------------------------------------- /public/assets/media/icons/32/pencil_edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/media/icons/32/pencil_edit.png -------------------------------------------------------------------------------- /public/assets/media/icons/32/pie-chart_diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/media/icons/32/pie-chart_diagram.png -------------------------------------------------------------------------------- /public/assets/media/icons/32/pie-chart_graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/media/icons/32/pie-chart_graph.png -------------------------------------------------------------------------------- /public/assets/media/icons/32/play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/media/icons/32/play.png -------------------------------------------------------------------------------- /public/assets/media/icons/32/plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/media/icons/32/plus.png -------------------------------------------------------------------------------- /public/assets/media/icons/32/plus_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/media/icons/32/plus_2.png -------------------------------------------------------------------------------- /public/assets/media/icons/32/previous.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/media/icons/32/previous.png -------------------------------------------------------------------------------- /public/assets/media/icons/32/printer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/media/icons/32/printer.png -------------------------------------------------------------------------------- /public/assets/media/icons/32/radio-button_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/media/icons/32/radio-button_off.png -------------------------------------------------------------------------------- /public/assets/media/icons/32/radio-button_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/media/icons/32/radio-button_on.png -------------------------------------------------------------------------------- /public/assets/media/icons/32/record.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/media/icons/32/record.png -------------------------------------------------------------------------------- /public/assets/media/icons/32/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/media/icons/32/refresh.png -------------------------------------------------------------------------------- /public/assets/media/icons/32/rss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/media/icons/32/rss.png -------------------------------------------------------------------------------- /public/assets/media/icons/32/save_as.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/media/icons/32/save_as.png -------------------------------------------------------------------------------- /public/assets/media/icons/32/save_diskette_floppy_disk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/media/icons/32/save_diskette_floppy_disk.png -------------------------------------------------------------------------------- /public/assets/media/icons/32/search_lense.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/media/icons/32/search_lense.png -------------------------------------------------------------------------------- /public/assets/media/icons/32/shield_protect_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/media/icons/32/shield_protect_off.png -------------------------------------------------------------------------------- /public/assets/media/icons/32/shield_protect_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/media/icons/32/shield_protect_on.png -------------------------------------------------------------------------------- /public/assets/media/icons/32/shopping_cart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/media/icons/32/shopping_cart.png -------------------------------------------------------------------------------- /public/assets/media/icons/32/shopping_cart_empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/media/icons/32/shopping_cart_empty.png -------------------------------------------------------------------------------- /public/assets/media/icons/32/smartphone_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/media/icons/32/smartphone_2.png -------------------------------------------------------------------------------- /public/assets/media/icons/32/smartphone_iphone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/media/icons/32/smartphone_iphone.png -------------------------------------------------------------------------------- /public/assets/media/icons/32/sound_music-off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/media/icons/32/sound_music-off.png -------------------------------------------------------------------------------- /public/assets/media/icons/32/sound_music-on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/media/icons/32/sound_music-on.png -------------------------------------------------------------------------------- /public/assets/media/icons/32/star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/media/icons/32/star.png -------------------------------------------------------------------------------- /public/assets/media/icons/32/star_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/media/icons/32/star_2.png -------------------------------------------------------------------------------- /public/assets/media/icons/32/star_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/media/icons/32/star_3.png -------------------------------------------------------------------------------- /public/assets/media/icons/32/stop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/media/icons/32/stop.png -------------------------------------------------------------------------------- /public/assets/media/icons/32/stop_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/media/icons/32/stop_2.png -------------------------------------------------------------------------------- /public/assets/media/icons/32/tag_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/media/icons/32/tag_blue.png -------------------------------------------------------------------------------- /public/assets/media/icons/32/tag_gray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/media/icons/32/tag_gray.png -------------------------------------------------------------------------------- /public/assets/media/icons/32/tag_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/media/icons/32/tag_green.png -------------------------------------------------------------------------------- /public/assets/media/icons/32/tag_orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/media/icons/32/tag_orange.png -------------------------------------------------------------------------------- /public/assets/media/icons/32/tag_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/media/icons/32/tag_red.png -------------------------------------------------------------------------------- /public/assets/media/icons/32/tag_violet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/media/icons/32/tag_violet.png -------------------------------------------------------------------------------- /public/assets/media/icons/32/tag_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/media/icons/32/tag_white.png -------------------------------------------------------------------------------- /public/assets/media/icons/32/tag_yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/media/icons/32/tag_yellow.png -------------------------------------------------------------------------------- /public/assets/media/icons/32/time_clock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/media/icons/32/time_clock.png -------------------------------------------------------------------------------- /public/assets/media/icons/32/trash_box.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/media/icons/32/trash_box.png -------------------------------------------------------------------------------- /public/assets/media/icons/32/trash_box_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/media/icons/32/trash_box_2.png -------------------------------------------------------------------------------- /public/assets/media/icons/32/unlock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/media/icons/32/unlock.png -------------------------------------------------------------------------------- /public/assets/media/icons/32/user_friend.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/media/icons/32/user_friend.png -------------------------------------------------------------------------------- /public/assets/media/icons/32/user_woman.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/media/icons/32/user_woman.png -------------------------------------------------------------------------------- /public/assets/media/icons/32/vote_no.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/media/icons/32/vote_no.png -------------------------------------------------------------------------------- /public/assets/media/icons/32/vote_yes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/media/icons/32/vote_yes.png -------------------------------------------------------------------------------- /public/assets/media/icons/32/wizard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/media/icons/32/wizard.png -------------------------------------------------------------------------------- /public/assets/media/icons/glyphicons-halflings-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/media/icons/glyphicons-halflings-white.png -------------------------------------------------------------------------------- /public/assets/media/icons/glyphicons-halflings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/media/icons/glyphicons-halflings.png -------------------------------------------------------------------------------- /public/assets/media/icons/readme.txt: -------------------------------------------------------------------------------- 1 | These icons are from Icojam (http://www.icojam.com) 2 | 3 | Blueberry Basic [bitmap] 4 | 5 | Ammount of icons: 6 | 111 7 | 8 | Icon Sizes: 9 | 32x32 10 | 11 | File Types: 12 | .png: 13 | 32x32(32bit) 14 | .ico: 15 | 32x32(xp,8bit) 16 | .gif 17 | 32x32 (indexed) 18 | .icns: 19 | 32x32(rgb/a,8bit,mono) -------------------------------------------------------------------------------- /public/assets/media/loading-cms.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/media/loading-cms.gif -------------------------------------------------------------------------------- /public/assets/media/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/media/loading.gif -------------------------------------------------------------------------------- /public/assets/media/notfound.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/media/notfound.png -------------------------------------------------------------------------------- /public/assets/media/nothumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/media/nothumb.png -------------------------------------------------------------------------------- /public/assets/media/upload/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | !.thumbnails 4 | !ajde.jpg 5 | !avatar/ 6 | !shop/ -------------------------------------------------------------------------------- /public/assets/media/upload/.thumbnails/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore -------------------------------------------------------------------------------- /public/assets/media/upload/ajde.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongaar/ajde/143e87b345ff1dfd261b65ed556190f00e816727/public/assets/media/upload/ajde.jpg -------------------------------------------------------------------------------- /public/assets/media/upload/avatar/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | !.thumbnails -------------------------------------------------------------------------------- /public/assets/media/upload/avatar/.thumbnails/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore -------------------------------------------------------------------------------- /public/assets/media/upload/shop/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | !.thumbnails -------------------------------------------------------------------------------- /public/assets/media/upload/shop/.thumbnails/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore -------------------------------------------------------------------------------- /public/humans.txt: -------------------------------------------------------------------------------- 1 | # The humans responsible & technology colophon 2 | 3 | # TEAM 4 | 5 | -- 6 | 7 | # THANKS 8 | 9 | 10 | 11 | # TECHNOLOGY COLOPHON 12 | 13 | CSS3, HTML5, JavaScript 14 | Ajde CMS, jQuery, Bootstrap 15 | -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: /private/ 3 | Disallow: /admin -------------------------------------------------------------------------------- /var/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore -------------------------------------------------------------------------------- /var/log/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore -------------------------------------------------------------------------------- /var/tmp/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore --------------------------------------------------------------------------------