├── .circleci └── config.yml ├── .editorconfig ├── .gitattributes ├── .gitignore ├── .htaccess ├── .snyk ├── LICENSE.txt ├── README.md ├── apple-touch-icon-114x114-precomposed.png ├── apple-touch-icon-144x144-precomposed.png ├── apple-touch-icon-57x57-precomposed.png ├── apple-touch-icon-72x72-precomposed.png ├── apple-touch-icon-precomposed.png ├── apple-touch-icon.png ├── application ├── .htaccess ├── cache │ ├── .htaccess │ └── index.html ├── config │ ├── autoload.php │ ├── config.php │ ├── config.sample.php │ ├── constants.php │ ├── database.php │ ├── database.sample.php │ ├── doctypes.php │ ├── fms_endpoint.php │ ├── grocery_crud.php │ ├── hooks.php │ ├── index.html │ ├── ion_auth.php │ ├── migration.php │ ├── mimes.php │ ├── routes.php │ ├── smileys.php │ └── user_agents.php ├── controllers │ ├── admin.php │ ├── auth.php │ ├── categories.php │ ├── category_attributes.php │ ├── index.html │ ├── migrate.php │ ├── reports.php │ └── welcome.php ├── core │ ├── MY_Input.php │ └── index.html ├── errors │ ├── error_404.php │ ├── error_db.php │ ├── error_general.php │ ├── error_php.php │ └── index.html ├── helpers │ ├── csv_helper.php │ ├── fms_endpoint_helper.php │ ├── index.html │ └── xml_helper.php ├── hooks │ ├── config.php │ ├── current_user.php │ └── index.html ├── index.html ├── language │ ├── arabic │ │ └── ion_auth_lang.php │ ├── catalan │ │ └── ion_auth_lang.php │ ├── croatian │ │ └── ion_auth_lang.php │ ├── danish │ │ └── ion_auth_lang.php │ ├── dutch │ │ └── ion_auth_lang.php │ ├── english │ │ ├── index.html │ │ └── ion_auth_lang.php │ ├── estonian │ │ └── ion_auth_lang.php │ ├── finnish │ │ └── ion_auth_lang.php │ ├── french │ │ └── ion_auth_lang.php │ ├── german │ │ └── ion_auth_lang.php │ ├── greek │ │ └── ion_auth_lang.php │ ├── index.html │ ├── indonesian │ │ └── ion_auth_lang.php │ ├── italian │ │ └── ion_auth_lang.php │ ├── japanese │ │ └── ion_auth_lang.php │ ├── lithuanian │ │ └── ion_auth_lang.php │ ├── norwegian │ │ └── ion_auth_lang.php │ ├── pirate │ │ └── ion_auth_lang.php │ ├── polish │ │ └── ion_auth_lang.php │ ├── portuguese │ │ └── ion_auth_lang.php │ ├── russian │ │ └── ion_auth_lang.php │ ├── spanish │ │ └── ion_auth_lang.php │ ├── swedish │ │ └── ion_auth_lang.php │ ├── turkish │ │ └── ion_auth_lang.php │ ├── ukrainian │ │ └── ion_auth_lang.php │ ├── zh_cn │ │ └── ion_auth_lang.php │ └── zh_tw │ │ └── ion_auth_lang.php ├── libraries │ ├── Akismet.php │ ├── Bcrypt.php │ ├── CILogger.php │ ├── Ion_auth.php │ ├── Saml_auth.php │ ├── grocery_crud.php │ ├── image_moo.php │ ├── index.html │ └── spyc.php ├── logs │ └── index.html ├── migrations │ ├── 001_agencies_table.php │ └── 002_sess_use_database.php ├── models │ ├── grocery_crud_model.php │ ├── index.html │ └── ion_auth_model.php ├── third_party │ └── index.html └── views │ ├── about.php │ ├── admin_view.php │ ├── auth │ ├── change_password.php │ ├── deactivate_user.php │ ├── email │ │ ├── activate.tpl.php │ │ ├── forgot_password.tpl.php │ │ └── new_password.tpl.php │ ├── forgot_password.php │ ├── index.php │ ├── login.php │ ├── manage_user.php │ └── reset_password.php │ ├── categories_json.php │ ├── categories_xml.php │ ├── category_attributes_json.php │ ├── category_attributes_xml.php │ ├── error_xml.php │ ├── footer.php │ ├── header.php │ ├── help.php │ ├── index.html │ ├── open311.php │ ├── report.php │ ├── reports_json.php │ ├── reports_post_response_json.php │ ├── reports_post_response_xml.php │ ├── reports_xml.php │ ├── request_update_post_response_xml.php │ ├── request_updates_xml.php │ ├── spam.php │ └── welcome_message.php ├── assets ├── cobrands │ ├── depw.cebu.gov.ph │ │ └── style.css │ ├── dps.cebu.gov.ph │ │ └── style.css │ ├── dpwh.cebu.gov.ph │ │ ├── fms-endpoint-title-dpwh.png │ │ └── style.css │ └── example.mysociety.org │ │ ├── example-endpoint-title.png │ │ └── style.css ├── fms-endpoint │ ├── css │ │ ├── bootstrap-theme.css │ │ ├── bootstrap-theme.min.css │ │ ├── bootstrap.css │ │ ├── bootstrap.min.css │ │ ├── fms-endpoint.css │ │ ├── main.css │ │ └── print.css │ ├── fonts │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ └── glyphicons-halflings-regular.woff │ ├── images │ │ ├── fms-endpoint-title-bw.png │ │ ├── fms-endpoint-title.png │ │ ├── fms-link-on-yellow.png │ │ ├── fms-link.png │ │ ├── lightbulb.png │ │ └── report.png │ └── js │ │ ├── main.js │ │ └── vendor │ │ ├── bootstrap.js │ │ ├── bootstrap.min.js │ │ ├── jquery-1.12.4.min.js │ │ └── modernizr-2.6.2-respond-1.1.0.min.js ├── grocery_crud │ ├── config │ │ ├── index.html │ │ ├── language_alias.php │ │ └── translit_chars.php │ ├── css │ │ ├── index.html │ │ ├── jquery_plugins │ │ │ ├── chosen │ │ │ │ ├── chosen-sprite.png │ │ │ │ ├── chosen.css │ │ │ │ └── index.html │ │ │ ├── fancybox │ │ │ │ ├── blank.gif │ │ │ │ ├── fancy_close.png │ │ │ │ ├── fancy_loading.png │ │ │ │ ├── fancy_nav_left.png │ │ │ │ ├── fancy_nav_right.png │ │ │ │ ├── fancy_shadow_e.png │ │ │ │ ├── fancy_shadow_n.png │ │ │ │ ├── fancy_shadow_ne.png │ │ │ │ ├── fancy_shadow_nw.png │ │ │ │ ├── fancy_shadow_s.png │ │ │ │ ├── fancy_shadow_se.png │ │ │ │ ├── fancy_shadow_sw.png │ │ │ │ ├── fancy_shadow_w.png │ │ │ │ ├── fancy_title_left.png │ │ │ │ ├── fancy_title_main.png │ │ │ │ ├── fancy_title_over.png │ │ │ │ ├── fancy_title_right.png │ │ │ │ ├── fancybox-x.png │ │ │ │ ├── fancybox-y.png │ │ │ │ ├── fancybox.png │ │ │ │ └── jquery.fancybox.css │ │ │ ├── file_upload │ │ │ │ ├── bootstrap.min.css │ │ │ │ ├── file-uploader.css │ │ │ │ ├── fileuploader.css │ │ │ │ ├── jquery.fileupload-ui.css │ │ │ │ ├── loading.gif │ │ │ │ └── progressbar.gif │ │ │ ├── index.html │ │ │ ├── jquery-ui-timepicker-addon.css │ │ │ ├── jquery.ui.datetime.css │ │ │ ├── ui.multiselect.css │ │ │ └── uniform │ │ │ │ ├── images │ │ │ │ ├── bg-input-focus.png │ │ │ │ ├── bg-input.png │ │ │ │ └── sprite.png │ │ │ │ └── uniform.default.css │ │ └── ui │ │ │ ├── index.html │ │ │ └── simple │ │ │ ├── images │ │ │ ├── animated-overlay.gif │ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ │ ├── ui-bg_flat_75_ffffff_40x100.png │ │ │ ├── ui-bg_glass_55_fbf9ee_1x400.png │ │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ │ ├── ui-bg_glass_75_dadada_1x400.png │ │ │ ├── ui-bg_glass_75_e6e6e6_1x400.png │ │ │ ├── ui-bg_glass_95_fef1ec_1x400.png │ │ │ ├── ui-bg_highlight-soft_75_cccccc_1x100.png │ │ │ ├── ui-icons_222222_256x240.png │ │ │ ├── ui-icons_2e83ff_256x240.png │ │ │ ├── ui-icons_333333_256x240.png │ │ │ ├── ui-icons_454545_256x240.png │ │ │ └── ui-icons_cd0a0a_256x240.png │ │ │ ├── index.html │ │ │ └── jquery-ui-1.10.1.custom.min.css │ ├── index.html │ ├── js │ │ ├── common │ │ │ ├── lazyload-min.js │ │ │ └── list.js │ │ ├── index.html │ │ ├── jquery-1.10.2.min.js │ │ └── jquery_plugins │ │ │ ├── ajax-chosen.js │ │ │ ├── config │ │ │ ├── index.html │ │ │ ├── jquery-ui-timepicker-addon.config.js │ │ │ ├── jquery.chosen.config.js │ │ │ ├── jquery.ckeditor.config.js │ │ │ ├── jquery.datepicker.config.js │ │ │ ├── jquery.datetime.config.js │ │ │ ├── jquery.fancybox.config.js │ │ │ ├── jquery.fileupload.config.js │ │ │ ├── jquery.markitup.config.js │ │ │ ├── jquery.multiselect.js │ │ │ ├── jquery.noty.config.js │ │ │ ├── jquery.numeric.config.js │ │ │ ├── jquery.tine_mce.config.js │ │ │ └── jquery.uniform.config.js │ │ │ ├── index.html │ │ │ ├── jquery-migrate-1.1.0.min.js │ │ │ ├── jquery-ui-timepicker-addon.js │ │ │ ├── jquery-ui-timepicker-addon.min.js │ │ │ ├── jquery.chosen.min.js │ │ │ ├── jquery.easing-1.3.pack.js │ │ │ ├── jquery.fancybox-1.3.4.js │ │ │ ├── jquery.fancybox.js │ │ │ ├── jquery.fancybox.pack.js │ │ │ ├── jquery.fileupload.js │ │ │ ├── jquery.iframe-transport.js │ │ │ ├── jquery.noty.js │ │ │ ├── jquery.numeric.min.js │ │ │ ├── jquery.ui.datetime.js │ │ │ ├── jquery.uniform.js │ │ │ ├── jquery.uniform.min.js │ │ │ ├── load-image.min.js │ │ │ ├── moment.min.js │ │ │ ├── tmpl.min.js │ │ │ ├── ui.multiselect.min.js │ │ │ └── ui │ │ │ ├── i18n │ │ │ ├── datepicker │ │ │ │ ├── index.html │ │ │ │ ├── jquery.ui.datepicker-af.js │ │ │ │ ├── jquery.ui.datepicker-ar.js │ │ │ │ ├── jquery.ui.datepicker-bg.js │ │ │ │ ├── jquery.ui.datepicker-bn.js │ │ │ │ ├── jquery.ui.datepicker-cs.js │ │ │ │ ├── jquery.ui.datepicker-da.js │ │ │ │ ├── jquery.ui.datepicker-de.js │ │ │ │ ├── jquery.ui.datepicker-el.js │ │ │ │ ├── jquery.ui.datepicker-es.js │ │ │ │ ├── jquery.ui.datepicker-fa.js │ │ │ │ ├── jquery.ui.datepicker-fr.js │ │ │ │ ├── jquery.ui.datepicker-hu.js │ │ │ │ ├── jquery.ui.datepicker-id.js │ │ │ │ ├── jquery.ui.datepicker-it.js │ │ │ │ ├── jquery.ui.datepicker-ja.js │ │ │ │ ├── jquery.ui.datepicker-ko.js │ │ │ │ ├── jquery.ui.datepicker-nl.js │ │ │ │ ├── jquery.ui.datepicker-no.js │ │ │ │ ├── jquery.ui.datepicker-pl.js │ │ │ │ ├── jquery.ui.datepicker-pt-br.js │ │ │ │ ├── jquery.ui.datepicker-pt.js │ │ │ │ ├── jquery.ui.datepicker-ro.js │ │ │ │ ├── jquery.ui.datepicker-ru.js │ │ │ │ ├── jquery.ui.datepicker-sk.js │ │ │ │ ├── jquery.ui.datepicker-th.js │ │ │ │ ├── jquery.ui.datepicker-tr.js │ │ │ │ ├── jquery.ui.datepicker-uk.js │ │ │ │ ├── jquery.ui.datepicker-vi.js │ │ │ │ └── jquery.ui.datepicker-zh-cn.js │ │ │ ├── index.html │ │ │ ├── multiselect │ │ │ │ ├── index.html │ │ │ │ ├── ui-multiselect-ar.js │ │ │ │ ├── ui-multiselect-de.js │ │ │ │ ├── ui-multiselect-el.js │ │ │ │ ├── ui-multiselect-en.js │ │ │ │ ├── ui-multiselect-es.js │ │ │ │ ├── ui-multiselect-fr.js │ │ │ │ ├── ui-multiselect-it.js │ │ │ │ ├── ui-multiselect-ja.js │ │ │ │ ├── ui-multiselect-pt-br.js │ │ │ │ ├── ui-multiselect-ru.js │ │ │ │ └── ui-multiselect-uk.js │ │ │ └── timepicker │ │ │ │ ├── index.html │ │ │ │ ├── jquery-ui-timepicker-af.js │ │ │ │ ├── jquery-ui-timepicker-ar.js │ │ │ │ ├── jquery-ui-timepicker-bg.js │ │ │ │ ├── jquery-ui-timepicker-cs.js │ │ │ │ ├── jquery-ui-timepicker-de.js │ │ │ │ ├── jquery-ui-timepicker-el.js │ │ │ │ ├── jquery-ui-timepicker-es.js │ │ │ │ ├── jquery-ui-timepicker-fr.js │ │ │ │ ├── jquery-ui-timepicker-hu.js │ │ │ │ ├── jquery-ui-timepicker-id.js │ │ │ │ ├── jquery-ui-timepicker-it.js │ │ │ │ ├── jquery-ui-timepicker-ja.js │ │ │ │ ├── jquery-ui-timepicker-ko.js │ │ │ │ ├── jquery-ui-timepicker-nl.js │ │ │ │ ├── jquery-ui-timepicker-no.js │ │ │ │ ├── jquery-ui-timepicker-pl.js │ │ │ │ ├── jquery-ui-timepicker-pt-br.js │ │ │ │ ├── jquery-ui-timepicker-pt.js │ │ │ │ ├── jquery-ui-timepicker-ro.js │ │ │ │ ├── jquery-ui-timepicker-ru.js │ │ │ │ ├── jquery-ui-timepicker-sk.js │ │ │ │ ├── jquery-ui-timepicker-tr.js │ │ │ │ ├── jquery-ui-timepicker-uk.js │ │ │ │ ├── jquery-ui-timepicker-vi.js │ │ │ │ └── jquery-ui-timepicker-zh-cn.js │ │ │ ├── index.html │ │ │ └── jquery-ui-1.10.3.custom.min.js │ ├── languages │ │ ├── .htaccess │ │ ├── add-new-lang-string.sh │ │ ├── afrikaans.php │ │ ├── arabic.php │ │ ├── bengali.php │ │ ├── bulgarian.php │ │ ├── catalan.php │ │ ├── chinese.php │ │ ├── czech.php │ │ ├── danish.php │ │ ├── dutch.php │ │ ├── english.php │ │ ├── french.php │ │ ├── german.php │ │ ├── greek.php │ │ ├── hindi.php │ │ ├── hungarian.php │ │ ├── index.html │ │ ├── indonesian.php │ │ ├── italian.php │ │ ├── japanese.php │ │ ├── korean.php │ │ ├── mongolian.php │ │ ├── norwegian.php │ │ ├── persian.php │ │ ├── polish.php │ │ ├── pt-br.portuguese.php │ │ ├── pt-pt.portuguese.php │ │ ├── romanian.php │ │ ├── russian.php │ │ ├── slovak.php │ │ ├── spanish.php │ │ ├── thai.php │ │ ├── turkish.php │ │ ├── ukrainian.php │ │ └── vietnamese.php │ ├── license-gpl3.txt │ ├── license-grocery-crud.txt │ ├── license-mit.txt │ ├── texteditor │ │ ├── ckeditor │ │ │ ├── .htaccess │ │ │ ├── LICENSE.html │ │ │ ├── adapters │ │ │ │ └── jquery.js │ │ │ ├── ckeditor.js │ │ │ ├── ckeditor.php │ │ │ ├── ckeditor_php4.php │ │ │ ├── ckeditor_php5.php │ │ │ ├── config.js │ │ │ ├── contents.css │ │ │ ├── images │ │ │ │ └── spacer.gif │ │ │ ├── lang │ │ │ │ ├── _languages.js │ │ │ │ ├── _translationstatus.txt │ │ │ │ ├── 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 │ │ │ │ ├── sk.js │ │ │ │ ├── sl.js │ │ │ │ ├── sr-latn.js │ │ │ │ ├── sr.js │ │ │ │ ├── sv.js │ │ │ │ ├── th.js │ │ │ │ ├── tr.js │ │ │ │ ├── ug.js │ │ │ │ ├── uk.js │ │ │ │ ├── vi.js │ │ │ │ ├── zh-cn.js │ │ │ │ └── zh.js │ │ │ ├── plugins │ │ │ │ ├── a11yhelp │ │ │ │ │ ├── dialogs │ │ │ │ │ │ └── a11yhelp.js │ │ │ │ │ └── lang │ │ │ │ │ │ ├── _translationstatus.txt │ │ │ │ │ │ ├── cs.js │ │ │ │ │ │ ├── cy.js │ │ │ │ │ │ ├── da.js │ │ │ │ │ │ ├── de.js │ │ │ │ │ │ ├── el.js │ │ │ │ │ │ ├── en.js │ │ │ │ │ │ ├── eo.js │ │ │ │ │ │ ├── fa.js │ │ │ │ │ │ ├── fi.js │ │ │ │ │ │ ├── fr.js │ │ │ │ │ │ ├── gu.js │ │ │ │ │ │ ├── he.js │ │ │ │ │ │ ├── it.js │ │ │ │ │ │ ├── ku.js │ │ │ │ │ │ ├── mk.js │ │ │ │ │ │ ├── nb.js │ │ │ │ │ │ ├── nl.js │ │ │ │ │ │ ├── no.js │ │ │ │ │ │ ├── pt-br.js │ │ │ │ │ │ ├── ro.js │ │ │ │ │ │ ├── sk.js │ │ │ │ │ │ ├── tr.js │ │ │ │ │ │ ├── ug.js │ │ │ │ │ │ ├── vi.js │ │ │ │ │ │ └── zh-cn.js │ │ │ │ ├── about │ │ │ │ │ └── dialogs │ │ │ │ │ │ ├── about.js │ │ │ │ │ │ └── logo_ckeditor.png │ │ │ │ ├── adobeair │ │ │ │ │ └── plugin.js │ │ │ │ ├── ajax │ │ │ │ │ └── plugin.js │ │ │ │ ├── autogrow │ │ │ │ │ └── plugin.js │ │ │ │ ├── bbcode │ │ │ │ │ └── plugin.js │ │ │ │ ├── clipboard │ │ │ │ │ └── dialogs │ │ │ │ │ │ └── paste.js │ │ │ │ ├── colordialog │ │ │ │ │ └── dialogs │ │ │ │ │ │ └── colordialog.js │ │ │ │ ├── devtools │ │ │ │ │ ├── lang │ │ │ │ │ │ ├── _translationstatus.txt │ │ │ │ │ │ ├── bg.js │ │ │ │ │ │ ├── cs.js │ │ │ │ │ │ ├── cy.js │ │ │ │ │ │ ├── da.js │ │ │ │ │ │ ├── de.js │ │ │ │ │ │ ├── el.js │ │ │ │ │ │ ├── en.js │ │ │ │ │ │ ├── eo.js │ │ │ │ │ │ ├── et.js │ │ │ │ │ │ ├── fa.js │ │ │ │ │ │ ├── fi.js │ │ │ │ │ │ ├── fr.js │ │ │ │ │ │ ├── gu.js │ │ │ │ │ │ ├── he.js │ │ │ │ │ │ ├── hr.js │ │ │ │ │ │ ├── it.js │ │ │ │ │ │ ├── ku.js │ │ │ │ │ │ ├── nb.js │ │ │ │ │ │ ├── nl.js │ │ │ │ │ │ ├── no.js │ │ │ │ │ │ ├── pl.js │ │ │ │ │ │ ├── pt-br.js │ │ │ │ │ │ ├── sk.js │ │ │ │ │ │ ├── tr.js │ │ │ │ │ │ ├── ug.js │ │ │ │ │ │ ├── uk.js │ │ │ │ │ │ ├── vi.js │ │ │ │ │ │ └── zh-cn.js │ │ │ │ │ └── plugin.js │ │ │ │ ├── dialog │ │ │ │ │ └── dialogDefinition.js │ │ │ │ ├── div │ │ │ │ │ └── dialogs │ │ │ │ │ │ └── div.js │ │ │ │ ├── docprops │ │ │ │ │ ├── dialogs │ │ │ │ │ │ └── docprops.js │ │ │ │ │ └── plugin.js │ │ │ │ ├── find │ │ │ │ │ └── dialogs │ │ │ │ │ │ └── find.js │ │ │ │ ├── flash │ │ │ │ │ ├── dialogs │ │ │ │ │ │ └── flash.js │ │ │ │ │ └── images │ │ │ │ │ │ └── placeholder.png │ │ │ │ ├── forms │ │ │ │ │ ├── dialogs │ │ │ │ │ │ ├── button.js │ │ │ │ │ │ ├── checkbox.js │ │ │ │ │ │ ├── form.js │ │ │ │ │ │ ├── hiddenfield.js │ │ │ │ │ │ ├── radio.js │ │ │ │ │ │ ├── select.js │ │ │ │ │ │ ├── textarea.js │ │ │ │ │ │ └── textfield.js │ │ │ │ │ └── images │ │ │ │ │ │ └── hiddenfield.gif │ │ │ │ ├── iframe │ │ │ │ │ ├── dialogs │ │ │ │ │ │ └── iframe.js │ │ │ │ │ └── images │ │ │ │ │ │ └── placeholder.png │ │ │ │ ├── iframedialog │ │ │ │ │ └── plugin.js │ │ │ │ ├── image │ │ │ │ │ └── dialogs │ │ │ │ │ │ └── image.js │ │ │ │ ├── link │ │ │ │ │ ├── dialogs │ │ │ │ │ │ ├── anchor.js │ │ │ │ │ │ └── link.js │ │ │ │ │ └── images │ │ │ │ │ │ └── anchor.gif │ │ │ │ ├── liststyle │ │ │ │ │ └── dialogs │ │ │ │ │ │ └── liststyle.js │ │ │ │ ├── pagebreak │ │ │ │ │ └── images │ │ │ │ │ │ └── pagebreak.gif │ │ │ │ ├── pastefromword │ │ │ │ │ └── filter │ │ │ │ │ │ └── default.js │ │ │ │ ├── pastetext │ │ │ │ │ └── dialogs │ │ │ │ │ │ └── pastetext.js │ │ │ │ ├── placeholder │ │ │ │ │ ├── dialogs │ │ │ │ │ │ └── placeholder.js │ │ │ │ │ ├── lang │ │ │ │ │ │ ├── _translationstatus.txt │ │ │ │ │ │ ├── bg.js │ │ │ │ │ │ ├── cs.js │ │ │ │ │ │ ├── cy.js │ │ │ │ │ │ ├── da.js │ │ │ │ │ │ ├── de.js │ │ │ │ │ │ ├── el.js │ │ │ │ │ │ ├── en.js │ │ │ │ │ │ ├── eo.js │ │ │ │ │ │ ├── et.js │ │ │ │ │ │ ├── fa.js │ │ │ │ │ │ ├── fi.js │ │ │ │ │ │ ├── fr.js │ │ │ │ │ │ ├── he.js │ │ │ │ │ │ ├── hr.js │ │ │ │ │ │ ├── it.js │ │ │ │ │ │ ├── ku.js │ │ │ │ │ │ ├── nb.js │ │ │ │ │ │ ├── nl.js │ │ │ │ │ │ ├── no.js │ │ │ │ │ │ ├── pl.js │ │ │ │ │ │ ├── pt-br.js │ │ │ │ │ │ ├── sk.js │ │ │ │ │ │ ├── tr.js │ │ │ │ │ │ ├── ug.js │ │ │ │ │ │ ├── uk.js │ │ │ │ │ │ ├── vi.js │ │ │ │ │ │ └── zh-cn.js │ │ │ │ │ ├── placeholder.gif │ │ │ │ │ └── plugin.js │ │ │ │ ├── preview │ │ │ │ │ └── preview.html │ │ │ │ ├── scayt │ │ │ │ │ └── dialogs │ │ │ │ │ │ ├── options.js │ │ │ │ │ │ └── toolbar.css │ │ │ │ ├── showblocks │ │ │ │ │ └── images │ │ │ │ │ │ ├── block_address.png │ │ │ │ │ │ ├── block_blockquote.png │ │ │ │ │ │ ├── block_div.png │ │ │ │ │ │ ├── block_h1.png │ │ │ │ │ │ ├── block_h2.png │ │ │ │ │ │ ├── block_h3.png │ │ │ │ │ │ ├── block_h4.png │ │ │ │ │ │ ├── block_h5.png │ │ │ │ │ │ ├── block_h6.png │ │ │ │ │ │ ├── block_p.png │ │ │ │ │ │ └── block_pre.png │ │ │ │ ├── smiley │ │ │ │ │ ├── dialogs │ │ │ │ │ │ └── smiley.js │ │ │ │ │ └── images │ │ │ │ │ │ ├── angel_smile.gif │ │ │ │ │ │ ├── angry_smile.gif │ │ │ │ │ │ ├── broken_heart.gif │ │ │ │ │ │ ├── confused_smile.gif │ │ │ │ │ │ ├── cry_smile.gif │ │ │ │ │ │ ├── devil_smile.gif │ │ │ │ │ │ ├── embaressed_smile.gif │ │ │ │ │ │ ├── envelope.gif │ │ │ │ │ │ ├── heart.gif │ │ │ │ │ │ ├── kiss.gif │ │ │ │ │ │ ├── lightbulb.gif │ │ │ │ │ │ ├── omg_smile.gif │ │ │ │ │ │ ├── regular_smile.gif │ │ │ │ │ │ ├── sad_smile.gif │ │ │ │ │ │ ├── shades_smile.gif │ │ │ │ │ │ ├── teeth_smile.gif │ │ │ │ │ │ ├── thumbs_down.gif │ │ │ │ │ │ ├── thumbs_up.gif │ │ │ │ │ │ ├── tounge_smile.gif │ │ │ │ │ │ ├── whatchutalkingabout_smile.gif │ │ │ │ │ │ └── wink_smile.gif │ │ │ │ ├── specialchar │ │ │ │ │ ├── dialogs │ │ │ │ │ │ └── specialchar.js │ │ │ │ │ └── lang │ │ │ │ │ │ ├── _translationstatus.txt │ │ │ │ │ │ ├── cs.js │ │ │ │ │ │ ├── cy.js │ │ │ │ │ │ ├── de.js │ │ │ │ │ │ ├── el.js │ │ │ │ │ │ ├── en.js │ │ │ │ │ │ ├── eo.js │ │ │ │ │ │ ├── et.js │ │ │ │ │ │ ├── fa.js │ │ │ │ │ │ ├── fi.js │ │ │ │ │ │ ├── fr.js │ │ │ │ │ │ ├── he.js │ │ │ │ │ │ ├── hr.js │ │ │ │ │ │ ├── it.js │ │ │ │ │ │ ├── ku.js │ │ │ │ │ │ ├── nb.js │ │ │ │ │ │ ├── nl.js │ │ │ │ │ │ ├── no.js │ │ │ │ │ │ ├── pt-br.js │ │ │ │ │ │ ├── tr.js │ │ │ │ │ │ ├── ug.js │ │ │ │ │ │ └── zh-cn.js │ │ │ │ ├── styles │ │ │ │ │ └── styles │ │ │ │ │ │ └── default.js │ │ │ │ ├── stylesheetparser │ │ │ │ │ └── plugin.js │ │ │ │ ├── table │ │ │ │ │ └── dialogs │ │ │ │ │ │ └── table.js │ │ │ │ ├── tableresize │ │ │ │ │ └── plugin.js │ │ │ │ ├── tabletools │ │ │ │ │ └── dialogs │ │ │ │ │ │ └── tableCell.js │ │ │ │ ├── templates │ │ │ │ │ ├── dialogs │ │ │ │ │ │ └── templates.js │ │ │ │ │ └── templates │ │ │ │ │ │ ├── default.js │ │ │ │ │ │ └── images │ │ │ │ │ │ ├── template1.gif │ │ │ │ │ │ ├── template2.gif │ │ │ │ │ │ └── template3.gif │ │ │ │ ├── uicolor │ │ │ │ │ ├── dialogs │ │ │ │ │ │ └── uicolor.js │ │ │ │ │ ├── lang │ │ │ │ │ │ ├── _translationstatus.txt │ │ │ │ │ │ ├── bg.js │ │ │ │ │ │ ├── cs.js │ │ │ │ │ │ ├── cy.js │ │ │ │ │ │ ├── da.js │ │ │ │ │ │ ├── de.js │ │ │ │ │ │ ├── el.js │ │ │ │ │ │ ├── en.js │ │ │ │ │ │ ├── eo.js │ │ │ │ │ │ ├── et.js │ │ │ │ │ │ ├── fa.js │ │ │ │ │ │ ├── fi.js │ │ │ │ │ │ ├── fr.js │ │ │ │ │ │ ├── he.js │ │ │ │ │ │ ├── hr.js │ │ │ │ │ │ ├── it.js │ │ │ │ │ │ ├── ku.js │ │ │ │ │ │ ├── mk.js │ │ │ │ │ │ ├── nb.js │ │ │ │ │ │ ├── nl.js │ │ │ │ │ │ ├── no.js │ │ │ │ │ │ ├── pl.js │ │ │ │ │ │ ├── pt-br.js │ │ │ │ │ │ ├── sk.js │ │ │ │ │ │ ├── tr.js │ │ │ │ │ │ ├── ug.js │ │ │ │ │ │ ├── uk.js │ │ │ │ │ │ ├── vi.js │ │ │ │ │ │ └── zh-cn.js │ │ │ │ │ ├── plugin.js │ │ │ │ │ ├── uicolor.gif │ │ │ │ │ └── yui │ │ │ │ │ │ ├── assets │ │ │ │ │ │ ├── hue_bg.png │ │ │ │ │ │ ├── hue_thumb.png │ │ │ │ │ │ ├── picker_mask.png │ │ │ │ │ │ ├── picker_thumb.png │ │ │ │ │ │ └── yui.css │ │ │ │ │ │ └── yui.js │ │ │ │ ├── wsc │ │ │ │ │ └── dialogs │ │ │ │ │ │ ├── ciframe.html │ │ │ │ │ │ ├── tmpFrameset.html │ │ │ │ │ │ ├── wsc.css │ │ │ │ │ │ └── wsc.js │ │ │ │ └── xml │ │ │ │ │ └── plugin.js │ │ │ ├── skins │ │ │ │ └── kama │ │ │ │ │ ├── dialog.css │ │ │ │ │ ├── editor.css │ │ │ │ │ ├── icons.png │ │ │ │ │ ├── icons_rtl.png │ │ │ │ │ ├── images │ │ │ │ │ ├── dialog_sides.gif │ │ │ │ │ ├── dialog_sides.png │ │ │ │ │ ├── dialog_sides_rtl.png │ │ │ │ │ ├── mini.gif │ │ │ │ │ ├── noimage.png │ │ │ │ │ ├── sprites.png │ │ │ │ │ ├── sprites_ie6.png │ │ │ │ │ └── toolbar_start.gif │ │ │ │ │ ├── skin.js │ │ │ │ │ └── templates.css │ │ │ └── themes │ │ │ │ └── default │ │ │ │ └── theme.js │ │ ├── markitup │ │ │ ├── index.html │ │ │ ├── jquery.markitup.js │ │ │ ├── sets │ │ │ │ └── default │ │ │ │ │ ├── images │ │ │ │ │ ├── bold.png │ │ │ │ │ ├── clean.png │ │ │ │ │ ├── image.png │ │ │ │ │ ├── italic.png │ │ │ │ │ ├── link.png │ │ │ │ │ ├── list-bullet.png │ │ │ │ │ ├── list-numeric.png │ │ │ │ │ ├── picture.png │ │ │ │ │ ├── preview.png │ │ │ │ │ └── stroke.png │ │ │ │ │ └── style.css │ │ │ └── skins │ │ │ │ ├── markitup │ │ │ │ ├── images │ │ │ │ │ ├── bg-container.png │ │ │ │ │ ├── bg-editor-bbcode.png │ │ │ │ │ ├── bg-editor-dotclear.png │ │ │ │ │ ├── bg-editor-html.png │ │ │ │ │ ├── bg-editor-json.png │ │ │ │ │ ├── bg-editor-markdown.png │ │ │ │ │ ├── bg-editor-textile.png │ │ │ │ │ ├── bg-editor-wiki.png │ │ │ │ │ ├── bg-editor-xml.png │ │ │ │ │ ├── bg-editor.png │ │ │ │ │ ├── handle.png │ │ │ │ │ ├── menu.png │ │ │ │ │ └── submenu.png │ │ │ │ └── style.css │ │ │ │ └── simple │ │ │ │ ├── images │ │ │ │ ├── handle.png │ │ │ │ ├── menu.png │ │ │ │ └── submenu.png │ │ │ │ └── style.css │ │ └── tiny_mce │ │ │ ├── jquery.tinymce.js │ │ │ ├── langs │ │ │ └── en.js │ │ │ ├── plugins │ │ │ ├── advhr │ │ │ │ ├── css │ │ │ │ │ └── advhr.css │ │ │ │ ├── editor_plugin.js │ │ │ │ ├── editor_plugin_src.js │ │ │ │ ├── js │ │ │ │ │ └── rule.js │ │ │ │ ├── langs │ │ │ │ │ └── en_dlg.js │ │ │ │ └── rule.htm │ │ │ ├── advimage │ │ │ │ ├── css │ │ │ │ │ └── advimage.css │ │ │ │ ├── editor_plugin.js │ │ │ │ ├── editor_plugin_src.js │ │ │ │ ├── image.htm │ │ │ │ ├── img │ │ │ │ │ └── sample.gif │ │ │ │ ├── js │ │ │ │ │ └── image.js │ │ │ │ └── langs │ │ │ │ │ └── en_dlg.js │ │ │ ├── advlink │ │ │ │ ├── css │ │ │ │ │ └── advlink.css │ │ │ │ ├── editor_plugin.js │ │ │ │ ├── editor_plugin_src.js │ │ │ │ ├── js │ │ │ │ │ └── advlink.js │ │ │ │ ├── langs │ │ │ │ │ └── en_dlg.js │ │ │ │ └── link.htm │ │ │ ├── advlist │ │ │ │ ├── editor_plugin.js │ │ │ │ └── editor_plugin_src.js │ │ │ ├── autolink │ │ │ │ ├── editor_plugin.js │ │ │ │ └── editor_plugin_src.js │ │ │ ├── autoresize │ │ │ │ ├── editor_plugin.js │ │ │ │ └── editor_plugin_src.js │ │ │ ├── autosave │ │ │ │ ├── editor_plugin.js │ │ │ │ ├── editor_plugin_src.js │ │ │ │ └── langs │ │ │ │ │ └── en.js │ │ │ ├── bbcode │ │ │ │ ├── editor_plugin.js │ │ │ │ └── editor_plugin_src.js │ │ │ ├── contextmenu │ │ │ │ ├── editor_plugin.js │ │ │ │ └── editor_plugin_src.js │ │ │ ├── directionality │ │ │ │ ├── editor_plugin.js │ │ │ │ └── editor_plugin_src.js │ │ │ ├── emotions │ │ │ │ ├── editor_plugin.js │ │ │ │ ├── editor_plugin_src.js │ │ │ │ ├── emotions.htm │ │ │ │ ├── img │ │ │ │ │ ├── smiley-cool.gif │ │ │ │ │ ├── smiley-cry.gif │ │ │ │ │ ├── smiley-embarassed.gif │ │ │ │ │ ├── smiley-foot-in-mouth.gif │ │ │ │ │ ├── smiley-frown.gif │ │ │ │ │ ├── smiley-innocent.gif │ │ │ │ │ ├── smiley-kiss.gif │ │ │ │ │ ├── smiley-laughing.gif │ │ │ │ │ ├── smiley-money-mouth.gif │ │ │ │ │ ├── smiley-sealed.gif │ │ │ │ │ ├── smiley-smile.gif │ │ │ │ │ ├── smiley-surprised.gif │ │ │ │ │ ├── smiley-tongue-out.gif │ │ │ │ │ ├── smiley-undecided.gif │ │ │ │ │ ├── smiley-wink.gif │ │ │ │ │ └── smiley-yell.gif │ │ │ │ ├── js │ │ │ │ │ └── emotions.js │ │ │ │ └── langs │ │ │ │ │ └── en_dlg.js │ │ │ ├── example │ │ │ │ ├── dialog.htm │ │ │ │ ├── editor_plugin.js │ │ │ │ ├── editor_plugin_src.js │ │ │ │ ├── img │ │ │ │ │ └── example.gif │ │ │ │ ├── js │ │ │ │ │ └── dialog.js │ │ │ │ └── langs │ │ │ │ │ ├── en.js │ │ │ │ │ └── en_dlg.js │ │ │ ├── example_dependency │ │ │ │ ├── editor_plugin.js │ │ │ │ └── editor_plugin_src.js │ │ │ ├── fullpage │ │ │ │ ├── css │ │ │ │ │ └── fullpage.css │ │ │ │ ├── editor_plugin.js │ │ │ │ ├── editor_plugin_src.js │ │ │ │ ├── fullpage.htm │ │ │ │ ├── js │ │ │ │ │ └── fullpage.js │ │ │ │ └── langs │ │ │ │ │ └── en_dlg.js │ │ │ ├── fullscreen │ │ │ │ ├── editor_plugin.js │ │ │ │ ├── editor_plugin_src.js │ │ │ │ └── fullscreen.htm │ │ │ ├── iespell │ │ │ │ ├── editor_plugin.js │ │ │ │ └── editor_plugin_src.js │ │ │ ├── inlinepopups │ │ │ │ ├── editor_plugin.js │ │ │ │ ├── editor_plugin_src.js │ │ │ │ ├── skins │ │ │ │ │ └── clearlooks2 │ │ │ │ │ │ ├── img │ │ │ │ │ │ ├── alert.gif │ │ │ │ │ │ ├── button.gif │ │ │ │ │ │ ├── buttons.gif │ │ │ │ │ │ ├── confirm.gif │ │ │ │ │ │ ├── corners.gif │ │ │ │ │ │ ├── horizontal.gif │ │ │ │ │ │ └── vertical.gif │ │ │ │ │ │ └── window.css │ │ │ │ └── template.htm │ │ │ ├── insertdatetime │ │ │ │ ├── editor_plugin.js │ │ │ │ └── editor_plugin_src.js │ │ │ ├── layer │ │ │ │ ├── editor_plugin.js │ │ │ │ └── editor_plugin_src.js │ │ │ ├── legacyoutput │ │ │ │ ├── editor_plugin.js │ │ │ │ └── editor_plugin_src.js │ │ │ ├── lists │ │ │ │ ├── editor_plugin.js │ │ │ │ └── editor_plugin_src.js │ │ │ ├── media │ │ │ │ ├── css │ │ │ │ │ └── media.css │ │ │ │ ├── editor_plugin.js │ │ │ │ ├── editor_plugin_src.js │ │ │ │ ├── js │ │ │ │ │ ├── embed.js │ │ │ │ │ └── media.js │ │ │ │ ├── langs │ │ │ │ │ └── en_dlg.js │ │ │ │ ├── media.htm │ │ │ │ └── moxieplayer.swf │ │ │ ├── nonbreaking │ │ │ │ ├── editor_plugin.js │ │ │ │ └── editor_plugin_src.js │ │ │ ├── noneditable │ │ │ │ ├── editor_plugin.js │ │ │ │ └── editor_plugin_src.js │ │ │ ├── pagebreak │ │ │ │ ├── editor_plugin.js │ │ │ │ └── editor_plugin_src.js │ │ │ ├── paste │ │ │ │ ├── editor_plugin.js │ │ │ │ ├── editor_plugin_src.js │ │ │ │ ├── js │ │ │ │ │ ├── pastetext.js │ │ │ │ │ └── pasteword.js │ │ │ │ ├── langs │ │ │ │ │ └── en_dlg.js │ │ │ │ ├── pastetext.htm │ │ │ │ └── pasteword.htm │ │ │ ├── preview │ │ │ │ ├── editor_plugin.js │ │ │ │ ├── editor_plugin_src.js │ │ │ │ ├── example.html │ │ │ │ ├── jscripts │ │ │ │ │ └── embed.js │ │ │ │ └── preview.html │ │ │ ├── print │ │ │ │ ├── editor_plugin.js │ │ │ │ └── editor_plugin_src.js │ │ │ ├── save │ │ │ │ ├── editor_plugin.js │ │ │ │ └── editor_plugin_src.js │ │ │ ├── searchreplace │ │ │ │ ├── css │ │ │ │ │ └── searchreplace.css │ │ │ │ ├── editor_plugin.js │ │ │ │ ├── editor_plugin_src.js │ │ │ │ ├── js │ │ │ │ │ └── searchreplace.js │ │ │ │ ├── langs │ │ │ │ │ └── en_dlg.js │ │ │ │ └── searchreplace.htm │ │ │ ├── spellchecker │ │ │ │ ├── css │ │ │ │ │ └── content.css │ │ │ │ ├── editor_plugin.js │ │ │ │ ├── editor_plugin_src.js │ │ │ │ └── img │ │ │ │ │ └── wline.gif │ │ │ ├── style │ │ │ │ ├── css │ │ │ │ │ └── props.css │ │ │ │ ├── editor_plugin.js │ │ │ │ ├── editor_plugin_src.js │ │ │ │ ├── js │ │ │ │ │ └── props.js │ │ │ │ ├── langs │ │ │ │ │ └── en_dlg.js │ │ │ │ ├── props.htm │ │ │ │ └── readme.txt │ │ │ ├── tabfocus │ │ │ │ ├── editor_plugin.js │ │ │ │ └── editor_plugin_src.js │ │ │ ├── table │ │ │ │ ├── cell.htm │ │ │ │ ├── css │ │ │ │ │ ├── cell.css │ │ │ │ │ ├── row.css │ │ │ │ │ └── table.css │ │ │ │ ├── editor_plugin.js │ │ │ │ ├── editor_plugin_src.js │ │ │ │ ├── js │ │ │ │ │ ├── cell.js │ │ │ │ │ ├── merge_cells.js │ │ │ │ │ ├── row.js │ │ │ │ │ └── table.js │ │ │ │ ├── langs │ │ │ │ │ └── en_dlg.js │ │ │ │ ├── merge_cells.htm │ │ │ │ ├── row.htm │ │ │ │ └── table.htm │ │ │ ├── template │ │ │ │ ├── blank.htm │ │ │ │ ├── css │ │ │ │ │ └── template.css │ │ │ │ ├── editor_plugin.js │ │ │ │ ├── editor_plugin_src.js │ │ │ │ ├── js │ │ │ │ │ └── template.js │ │ │ │ ├── langs │ │ │ │ │ └── en_dlg.js │ │ │ │ └── template.htm │ │ │ ├── visualblocks │ │ │ │ ├── css │ │ │ │ │ └── visualblocks.css │ │ │ │ ├── editor_plugin.js │ │ │ │ └── editor_plugin_src.js │ │ │ ├── visualchars │ │ │ │ ├── editor_plugin.js │ │ │ │ └── editor_plugin_src.js │ │ │ ├── wordcount │ │ │ │ ├── editor_plugin.js │ │ │ │ └── editor_plugin_src.js │ │ │ └── xhtmlxtras │ │ │ │ ├── abbr.htm │ │ │ │ ├── acronym.htm │ │ │ │ ├── attributes.htm │ │ │ │ ├── cite.htm │ │ │ │ ├── css │ │ │ │ ├── attributes.css │ │ │ │ └── popup.css │ │ │ │ ├── del.htm │ │ │ │ ├── editor_plugin.js │ │ │ │ ├── editor_plugin_src.js │ │ │ │ ├── ins.htm │ │ │ │ ├── js │ │ │ │ ├── abbr.js │ │ │ │ ├── acronym.js │ │ │ │ ├── attributes.js │ │ │ │ ├── cite.js │ │ │ │ ├── del.js │ │ │ │ ├── element_common.js │ │ │ │ └── ins.js │ │ │ │ └── langs │ │ │ │ └── en_dlg.js │ │ │ ├── themes │ │ │ ├── advanced │ │ │ │ ├── about.htm │ │ │ │ ├── anchor.htm │ │ │ │ ├── charmap.htm │ │ │ │ ├── color_picker.htm │ │ │ │ ├── editor_template.js │ │ │ │ ├── editor_template_src.js │ │ │ │ ├── image.htm │ │ │ │ ├── img │ │ │ │ │ ├── colorpicker.jpg │ │ │ │ │ ├── flash.gif │ │ │ │ │ ├── icons.gif │ │ │ │ │ ├── iframe.gif │ │ │ │ │ ├── pagebreak.gif │ │ │ │ │ ├── quicktime.gif │ │ │ │ │ ├── realmedia.gif │ │ │ │ │ ├── shockwave.gif │ │ │ │ │ ├── trans.gif │ │ │ │ │ ├── video.gif │ │ │ │ │ └── windowsmedia.gif │ │ │ │ ├── js │ │ │ │ │ ├── about.js │ │ │ │ │ ├── anchor.js │ │ │ │ │ ├── charmap.js │ │ │ │ │ ├── color_picker.js │ │ │ │ │ ├── image.js │ │ │ │ │ ├── link.js │ │ │ │ │ └── source_editor.js │ │ │ │ ├── langs │ │ │ │ │ ├── en.js │ │ │ │ │ └── en_dlg.js │ │ │ │ ├── link.htm │ │ │ │ ├── shortcuts.htm │ │ │ │ ├── skins │ │ │ │ │ ├── default │ │ │ │ │ │ ├── content.css │ │ │ │ │ │ ├── dialog.css │ │ │ │ │ │ ├── img │ │ │ │ │ │ │ ├── buttons.png │ │ │ │ │ │ │ ├── items.gif │ │ │ │ │ │ │ ├── menu_arrow.gif │ │ │ │ │ │ │ ├── menu_check.gif │ │ │ │ │ │ │ ├── progress.gif │ │ │ │ │ │ │ └── tabs.gif │ │ │ │ │ │ └── ui.css │ │ │ │ │ ├── highcontrast │ │ │ │ │ │ ├── content.css │ │ │ │ │ │ ├── dialog.css │ │ │ │ │ │ └── ui.css │ │ │ │ │ └── o2k7 │ │ │ │ │ │ ├── content.css │ │ │ │ │ │ ├── dialog.css │ │ │ │ │ │ ├── img │ │ │ │ │ │ ├── button_bg.png │ │ │ │ │ │ ├── button_bg_black.png │ │ │ │ │ │ └── button_bg_silver.png │ │ │ │ │ │ ├── ui.css │ │ │ │ │ │ ├── ui_black.css │ │ │ │ │ │ └── ui_silver.css │ │ │ │ └── source_editor.htm │ │ │ └── simple │ │ │ │ ├── editor_template.js │ │ │ │ ├── editor_template_src.js │ │ │ │ ├── img │ │ │ │ └── icons.gif │ │ │ │ ├── langs │ │ │ │ └── en.js │ │ │ │ └── skins │ │ │ │ ├── default │ │ │ │ ├── content.css │ │ │ │ └── ui.css │ │ │ │ └── o2k7 │ │ │ │ ├── content.css │ │ │ │ ├── img │ │ │ │ └── button_bg.png │ │ │ │ └── ui.css │ │ │ ├── tiny_mce.js │ │ │ ├── tiny_mce_popup.js │ │ │ ├── tiny_mce_src.js │ │ │ └── utils │ │ │ ├── editable_selects.js │ │ │ ├── form_utils.js │ │ │ ├── mctabs.js │ │ │ └── validate.js │ └── themes │ │ ├── datatables │ │ ├── config.php │ │ ├── css │ │ │ ├── datatables.css │ │ │ ├── demo_table_jui.css │ │ │ ├── images │ │ │ │ ├── error.png │ │ │ │ ├── index.html │ │ │ │ ├── small-loading.gif │ │ │ │ └── success.png │ │ │ ├── index.html │ │ │ └── jquery.dataTables.css │ │ ├── extras │ │ │ └── TableTools │ │ │ │ └── media │ │ │ │ ├── as3 │ │ │ │ ├── ZeroClipboard.as │ │ │ │ ├── ZeroClipboardPdf.as │ │ │ │ └── lib │ │ │ │ │ └── AlivePDF.swc │ │ │ │ ├── css │ │ │ │ ├── TableTools.css │ │ │ │ └── TableTools_JUI.css │ │ │ │ ├── images │ │ │ │ ├── background.png │ │ │ │ ├── collection.png │ │ │ │ ├── collection_hover.png │ │ │ │ ├── copy.png │ │ │ │ ├── copy_hover.png │ │ │ │ ├── csv.png │ │ │ │ ├── csv_hover.png │ │ │ │ ├── pdf.png │ │ │ │ ├── pdf_hover.png │ │ │ │ ├── print.png │ │ │ │ ├── print_hover.png │ │ │ │ ├── psd │ │ │ │ │ ├── collection.psd │ │ │ │ │ ├── copy document.psd │ │ │ │ │ ├── file_types.psd │ │ │ │ │ └── printer.psd │ │ │ │ ├── xls.png │ │ │ │ └── xls_hover.png │ │ │ │ ├── js │ │ │ │ ├── TableTools.js │ │ │ │ ├── TableTools.min.js │ │ │ │ ├── TableTools.min.js.gz │ │ │ │ └── ZeroClipboard.js │ │ │ │ └── swf │ │ │ │ ├── copy_csv_xls.swf │ │ │ │ └── copy_csv_xls_pdf.swf │ │ ├── index.html │ │ ├── js │ │ │ ├── datatables-add.js │ │ │ ├── datatables-edit.js │ │ │ ├── datatables-extras.js │ │ │ ├── datatables.js │ │ │ ├── index.html │ │ │ ├── jquery.dataTables.js │ │ │ └── jquery.dataTables.min.js │ │ └── views │ │ │ ├── .htaccess │ │ │ ├── add.php │ │ │ ├── edit.php │ │ │ ├── list.php │ │ │ ├── list_template.php │ │ │ └── read.php │ │ ├── flexigrid │ │ ├── config.php │ │ ├── css │ │ │ ├── flexigrid.css │ │ │ ├── images │ │ │ │ ├── add.png │ │ │ │ ├── bg.gif │ │ │ │ ├── btn-sprite.gif │ │ │ │ ├── close.png │ │ │ │ ├── ddn.png │ │ │ │ ├── dn.png │ │ │ │ ├── edit.png │ │ │ │ ├── error.png │ │ │ │ ├── export.png │ │ │ │ ├── fhbg.gif │ │ │ │ ├── first.gif │ │ │ │ ├── hl.png │ │ │ │ ├── index.html │ │ │ │ ├── last.gif │ │ │ │ ├── line.gif │ │ │ │ ├── load.gif │ │ │ │ ├── load.png │ │ │ │ ├── magnifier.png │ │ │ │ ├── next.gif │ │ │ │ ├── prev.gif │ │ │ │ ├── print.png │ │ │ │ ├── success.png │ │ │ │ ├── up.png │ │ │ │ ├── uup.png │ │ │ │ └── wbg.gif │ │ │ └── index.html │ │ ├── index.html │ │ ├── js │ │ │ ├── cookies.js │ │ │ ├── flexigrid-add.js │ │ │ ├── flexigrid-edit.js │ │ │ ├── flexigrid.js │ │ │ ├── index.html │ │ │ ├── jquery.form.js │ │ │ ├── jquery.printElement.js │ │ │ └── jquery.printElement.min.js │ │ └── views │ │ │ ├── .htaccess │ │ │ ├── add.php │ │ │ ├── edit.php │ │ │ ├── list.php │ │ │ ├── list_template.php │ │ │ └── read.php │ │ ├── index.html │ │ └── twitter-bootstrap │ │ ├── config.php │ │ ├── css │ │ ├── bootstrap-responsive.min.css │ │ ├── bootstrap.min.css │ │ ├── images │ │ │ ├── loading.gif │ │ │ ├── sort_asc.png │ │ │ ├── sort_both.png │ │ │ └── sort_desc.png │ │ ├── jquery-ui │ │ │ └── flick │ │ │ │ ├── images │ │ │ │ ├── animated-overlay.gif │ │ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ │ │ ├── ui-bg_flat_0_eeeeee_40x100.png │ │ │ │ ├── ui-bg_flat_55_ffffff_40x100.png │ │ │ │ ├── ui-bg_flat_75_ffffff_40x100.png │ │ │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ │ │ ├── ui-bg_highlight-soft_100_f6f6f6_1x100.png │ │ │ │ ├── ui-bg_highlight-soft_25_0073ea_1x100.png │ │ │ │ ├── ui-bg_highlight-soft_50_dddddd_1x100.png │ │ │ │ ├── ui-icons_0073ea_256x240.png │ │ │ │ ├── ui-icons_454545_256x240.png │ │ │ │ ├── ui-icons_666666_256x240.png │ │ │ │ ├── ui-icons_ff0084_256x240.png │ │ │ │ └── ui-icons_ffffff_256x240.png │ │ │ │ ├── jquery-ui-1.10.2.css │ │ │ │ └── jquery-ui-1.10.2.min.css │ │ ├── style.css │ │ └── tablesorter.css │ │ ├── img │ │ ├── .gitignore │ │ ├── glyphicons-halflings-white.png │ │ └── glyphicons-halflings.png │ │ ├── js │ │ ├── README.md │ │ ├── app │ │ │ ├── twitter-bootstrap-add.js │ │ │ ├── twitter-bootstrap-edit.js │ │ │ └── twitter-bootstrap.js │ │ ├── cookies.js │ │ ├── jquery-ui │ │ │ ├── jquery-ui-1.10.2.js │ │ │ └── jquery-ui-1.10.2.min.js │ │ ├── jquery.form.js │ │ ├── jquery.functions.js │ │ └── libs │ │ │ ├── bootstrap │ │ │ ├── application.js │ │ │ ├── bootstrap.js │ │ │ └── bootstrap.min.js │ │ │ ├── google-code-prettify │ │ │ ├── prettify.css │ │ │ └── prettify.js │ │ │ ├── modernizr │ │ │ └── modernizr-2.6.1.custom.js │ │ │ ├── print-element │ │ │ ├── jquery.printElement.js │ │ │ └── jquery.printElement.min.js │ │ │ ├── requirejs │ │ │ └── requirejs.min.js │ │ │ └── tablesorter │ │ │ ├── jquery.tablesorter.js │ │ │ └── jquery.tablesorter.min.js │ │ └── views │ │ ├── add.php │ │ ├── edit.php │ │ ├── list.php │ │ └── list_template.php ├── index.html └── uploads │ └── files │ ├── pdftest.pdf │ └── test-2.pdf ├── composer.json ├── composer.lock ├── db ├── fms-endpoint-initial.sql ├── ion_auth.mssql.sql ├── ion_auth.postgre.sql ├── ion_auth.sql ├── schema_001-add_engineer_to_reports.sql ├── schema_002-add_request_updates.sql ├── schema_003-add_incoming_request_updates.sql ├── schema_004-insert_status_into_settings.sql ├── schema_005-insert_announcement_into_settings.sql ├── schema_006-insert_organisation_link_into_settings.sql └── schema_007-insert_allow_updates_into_settings.sql ├── docker-compose.yml ├── docker ├── Dockerfile ├── install-composer.sh └── nginx.conf ├── documentation ├── ALTERNATIVE_CONFIG.md ├── INSTALL.md ├── license-codeigniter.txt └── license-grocery-crud.txt ├── favicon.ico ├── index.php ├── index.php.sample ├── sample.htaccess ├── system ├── .htaccess ├── core │ ├── Benchmark.php │ ├── CodeIgniter.php │ ├── Common.php │ ├── Config.php │ ├── Controller.php │ ├── Exceptions.php │ ├── Hooks.php │ ├── Input.php │ ├── Lang.php │ ├── Loader.php │ ├── Model.php │ ├── Output.php │ ├── Router.php │ ├── Security.php │ ├── URI.php │ ├── Utf8.php │ └── index.html ├── database │ ├── DB.php │ ├── DB_active_rec.php │ ├── DB_cache.php │ ├── DB_driver.php │ ├── DB_forge.php │ ├── DB_result.php │ ├── DB_utility.php │ ├── drivers │ │ ├── cubrid │ │ │ ├── cubrid_driver.php │ │ │ ├── cubrid_forge.php │ │ │ ├── cubrid_result.php │ │ │ ├── cubrid_utility.php │ │ │ └── index.html │ │ ├── index.html │ │ ├── mssql │ │ │ ├── index.html │ │ │ ├── mssql_driver.php │ │ │ ├── mssql_forge.php │ │ │ ├── mssql_result.php │ │ │ └── mssql_utility.php │ │ ├── mysql │ │ │ ├── index.html │ │ │ ├── mysql_driver.php │ │ │ ├── mysql_forge.php │ │ │ ├── mysql_result.php │ │ │ └── mysql_utility.php │ │ ├── mysqli │ │ │ ├── index.html │ │ │ ├── mysqli_driver.php │ │ │ ├── mysqli_forge.php │ │ │ ├── mysqli_result.php │ │ │ └── mysqli_utility.php │ │ ├── oci8 │ │ │ ├── index.html │ │ │ ├── oci8_driver.php │ │ │ ├── oci8_forge.php │ │ │ ├── oci8_result.php │ │ │ └── oci8_utility.php │ │ ├── odbc │ │ │ ├── index.html │ │ │ ├── odbc_driver.php │ │ │ ├── odbc_forge.php │ │ │ ├── odbc_result.php │ │ │ └── odbc_utility.php │ │ ├── pdo │ │ │ ├── index.html │ │ │ ├── pdo_driver.php │ │ │ ├── pdo_forge.php │ │ │ ├── pdo_result.php │ │ │ └── pdo_utility.php │ │ ├── postgre │ │ │ ├── index.html │ │ │ ├── postgre_driver.php │ │ │ ├── postgre_forge.php │ │ │ ├── postgre_result.php │ │ │ └── postgre_utility.php │ │ ├── sqlite │ │ │ ├── index.html │ │ │ ├── sqlite_driver.php │ │ │ ├── sqlite_forge.php │ │ │ ├── sqlite_result.php │ │ │ └── sqlite_utility.php │ │ └── sqlsrv │ │ │ ├── index.html │ │ │ ├── sqlsrv_driver.php │ │ │ ├── sqlsrv_forge.php │ │ │ ├── sqlsrv_result.php │ │ │ └── sqlsrv_utility.php │ └── index.html ├── fonts │ ├── index.html │ └── texb.ttf ├── helpers │ ├── array_helper.php │ ├── captcha_helper.php │ ├── cookie_helper.php │ ├── date_helper.php │ ├── directory_helper.php │ ├── download_helper.php │ ├── email_helper.php │ ├── file_helper.php │ ├── form_helper.php │ ├── html_helper.php │ ├── index.html │ ├── inflector_helper.php │ ├── language_helper.php │ ├── number_helper.php │ ├── path_helper.php │ ├── security_helper.php │ ├── smiley_helper.php │ ├── string_helper.php │ ├── text_helper.php │ ├── typography_helper.php │ ├── url_helper.php │ └── xml_helper.php ├── index.html ├── language │ ├── english │ │ ├── calendar_lang.php │ │ ├── date_lang.php │ │ ├── db_lang.php │ │ ├── email_lang.php │ │ ├── form_validation_lang.php │ │ ├── ftp_lang.php │ │ ├── imglib_lang.php │ │ ├── index.html │ │ ├── migration_lang.php │ │ ├── number_lang.php │ │ ├── profiler_lang.php │ │ ├── unit_test_lang.php │ │ └── upload_lang.php │ └── index.html └── libraries │ ├── Cache │ ├── Cache.php │ ├── drivers │ │ ├── Cache_apc.php │ │ ├── Cache_dummy.php │ │ ├── Cache_file.php │ │ ├── Cache_memcached.php │ │ └── index.html │ └── index.html │ ├── Calendar.php │ ├── Cart.php │ ├── Driver.php │ ├── Email.php │ ├── Encrypt.php │ ├── Form_validation.php │ ├── Ftp.php │ ├── Image_lib.php │ ├── Javascript.php │ ├── Log.php │ ├── Migration.php │ ├── Pagination.php │ ├── Parser.php │ ├── Profiler.php │ ├── Session.php │ ├── Sha1.php │ ├── Table.php │ ├── Trackback.php │ ├── Typography.php │ ├── Unit_test.php │ ├── Upload.php │ ├── User_agent.php │ ├── Xmlrpc.php │ ├── Xmlrpcs.php │ ├── Zip.php │ ├── index.html │ └── javascript │ ├── Jquery.php │ └── index.html └── user_guide ├── changelog.html ├── database ├── active_record.html ├── caching.html ├── call_function.html ├── configuration.html ├── connecting.html ├── examples.html ├── fields.html ├── forge.html ├── helpers.html ├── index.html ├── queries.html ├── results.html ├── table_data.html ├── transactions.html └── utilities.html ├── doc_style ├── index.html └── template.html ├── general ├── alternative_php.html ├── ancillary_classes.html ├── autoloader.html ├── caching.html ├── cli.html ├── common_functions.html ├── controllers.html ├── core_classes.html ├── creating_drivers.html ├── creating_libraries.html ├── credits.html ├── drivers.html ├── environments.html ├── errors.html ├── helpers.html ├── hooks.html ├── libraries.html ├── managing_apps.html ├── models.html ├── profiling.html ├── quick_reference.html ├── requirements.html ├── reserved_names.html ├── routing.html ├── security.html ├── styleguide.html ├── urls.html └── views.html ├── helpers ├── array_helper.html ├── captcha_helper.html ├── cookie_helper.html ├── date_helper.html ├── directory_helper.html ├── download_helper.html ├── email_helper.html ├── file_helper.html ├── form_helper.html ├── html_helper.html ├── inflector_helper.html ├── language_helper.html ├── number_helper.html ├── path_helper.html ├── security_helper.html ├── smiley_helper.html ├── string_helper.html ├── text_helper.html ├── typography_helper.html ├── url_helper.html └── xml_helper.html ├── images ├── appflowchart.gif ├── arrow.gif ├── ci_logo.jpg ├── ci_logo_flame.jpg ├── ci_quick_ref.png ├── codeigniter_1.7.1_helper_reference.pdf ├── codeigniter_1.7.1_helper_reference.png ├── codeigniter_1.7.1_library_reference.pdf ├── codeigniter_1.7.1_library_reference.png ├── file.gif ├── folder.gif ├── nav_bg_darker.jpg ├── nav_separator_darker.jpg ├── nav_toggle_darker.jpg ├── reactor-bullet.png ├── smile.gif └── transparent.gif ├── index.html ├── installation ├── downloads.html ├── index.html ├── troubleshooting.html ├── upgrade_120.html ├── upgrade_130.html ├── upgrade_131.html ├── upgrade_132.html ├── upgrade_133.html ├── upgrade_140.html ├── upgrade_141.html ├── upgrade_150.html ├── upgrade_152.html ├── upgrade_153.html ├── upgrade_154.html ├── upgrade_160.html ├── upgrade_161.html ├── upgrade_162.html ├── upgrade_163.html ├── upgrade_170.html ├── upgrade_171.html ├── upgrade_172.html ├── upgrade_200.html ├── upgrade_201.html ├── upgrade_202.html ├── upgrade_203.html ├── upgrade_210.html ├── upgrade_211.html ├── upgrade_212.html ├── upgrade_213.html ├── upgrade_214.html ├── upgrade_220.html ├── upgrade_221.html ├── upgrade_222.html ├── upgrade_b11.html └── upgrading.html ├── libraries ├── benchmark.html ├── caching.html ├── calendar.html ├── cart.html ├── config.html ├── email.html ├── encryption.html ├── file_uploading.html ├── form_validation.html ├── ftp.html ├── image_lib.html ├── input.html ├── javascript.html ├── language.html ├── loader.html ├── migration.html ├── output.html ├── pagination.html ├── parser.html ├── security.html ├── sessions.html ├── table.html ├── trackback.html ├── typography.html ├── unit_testing.html ├── uri.html ├── user_agent.html ├── xmlrpc.html └── zip.html ├── license.html ├── nav ├── hacks.txt ├── moo.fx.js ├── nav.js ├── prototype.lite.js └── user_guide_menu.js ├── overview ├── appflow.html ├── at_a_glance.html ├── cheatsheets.html ├── features.html ├── getting_started.html ├── goals.html ├── index.html └── mvc.html ├── toc.html ├── tutorial ├── conclusion.html ├── create_news_items.html ├── hard_coded_pages.html ├── index.html ├── news_section.html └── static_pages.html └── userguide.css /.editorconfig: -------------------------------------------------------------------------------- 1 | # editorconfig.org 2 | 3 | root = true 4 | 5 | [*] 6 | indent_style = space 7 | indent_size = 2 8 | end_of_line = lf 9 | charset = utf-8 10 | trim_trailing_whitespace = true 11 | insert_final_newline = true 12 | 13 | [*.php] 14 | indent_size = 4 15 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | composer.lock merge=binary linguist-generated 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | conf/general.yml 3 | codeigniter/logs/log* 4 | 5 | .idea 6 | /vendor 7 | 8 | application/logs/*.php 9 | 10 | application/config/*/ 11 | composer.phar 12 | -------------------------------------------------------------------------------- /.htaccess: -------------------------------------------------------------------------------- 1 | RewriteEngine on 2 | RewriteRule ^$ index.php [L] 3 | RewriteCond $1 !^(index\.php|assets|img|css|fonts|js|schema|archive|digital-strategy|video_files|robots\.txt|favicon\.ico) 4 | RewriteRule ^(.*)$ index.php/$1 [L] 5 | 6 | # php_value upload_max_filesize 70M 7 | # php_value post_max_size 70M -------------------------------------------------------------------------------- /.snyk: -------------------------------------------------------------------------------- 1 | # Snyk (https://snyk.io) policy file, patches or ignores known vulnerabilities. 2 | version: v1.13.3 3 | # ignores vulnerabilities until expiry date; change duration by modifying expiry date 4 | ignore: 5 | SNYK-PHP-TWIGTWIG-72239: 6 | - '*': 7 | reason: CVE is disputed and incomplete 8 | expires: 2019-04-06T06:54:58.310Z 9 | patch: {} 10 | -------------------------------------------------------------------------------- /apple-touch-icon-114x114-precomposed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/open311-simple-crm/c44a719ae39d75550bf9e812197edb9c1e4d7711/apple-touch-icon-114x114-precomposed.png -------------------------------------------------------------------------------- /apple-touch-icon-144x144-precomposed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/open311-simple-crm/c44a719ae39d75550bf9e812197edb9c1e4d7711/apple-touch-icon-144x144-precomposed.png -------------------------------------------------------------------------------- /apple-touch-icon-57x57-precomposed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/open311-simple-crm/c44a719ae39d75550bf9e812197edb9c1e4d7711/apple-touch-icon-57x57-precomposed.png -------------------------------------------------------------------------------- /apple-touch-icon-72x72-precomposed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/open311-simple-crm/c44a719ae39d75550bf9e812197edb9c1e4d7711/apple-touch-icon-72x72-precomposed.png -------------------------------------------------------------------------------- /apple-touch-icon-precomposed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/open311-simple-crm/c44a719ae39d75550bf9e812197edb9c1e4d7711/apple-touch-icon-precomposed.png -------------------------------------------------------------------------------- /apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/open311-simple-crm/c44a719ae39d75550bf9e812197edb9c1e4d7711/apple-touch-icon.png -------------------------------------------------------------------------------- /application/.htaccess: -------------------------------------------------------------------------------- 1 | Deny from all -------------------------------------------------------------------------------- /application/cache/.htaccess: -------------------------------------------------------------------------------- 1 | Deny from all -------------------------------------------------------------------------------- /application/cache/index.html: -------------------------------------------------------------------------------- 1 | 2 |
3 |Directory access is forbidden.
8 | 9 | 10 | -------------------------------------------------------------------------------- /application/config/fms_endpoint.php: -------------------------------------------------------------------------------- 1 | load->helper('fms_endpoint'); 15 | $config_array = load_general_config(); 16 | foreach ($config_array as $key => $value) { 17 | $config[$key] = $value; 18 | } 19 | 20 | ?> -------------------------------------------------------------------------------- /application/config/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |Directory access is forbidden.
8 | 9 | 10 | -------------------------------------------------------------------------------- /application/controllers/category_attributes.php: -------------------------------------------------------------------------------- 1 | load->database(); 8 | $this->load->library('saml_auth'); 9 | $this->load->helper('xml'); 10 | $this->load->helper('fms_endpoint'); 11 | open311_enabled_or_error(); 12 | } 13 | 14 | function index() { 15 | $data['categories'] = $this->db->get('category_attributes'); 16 | $this->load->view('category_attributes_xml', $data); 17 | } 18 | } 19 | 20 | ?> 21 | -------------------------------------------------------------------------------- /application/controllers/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |Directory access is forbidden.
8 | 9 | 10 | -------------------------------------------------------------------------------- /application/controllers/migrate.php: -------------------------------------------------------------------------------- 1 | load->library('migration'); 17 | 18 | if ($this->migration->current() === FALSE) { 19 | show_error($this->migration->error_string()); 20 | } else { 21 | echo 'The migration was run' . PHP_EOL; 22 | } 23 | } 24 | 25 | } 26 | 27 | -------------------------------------------------------------------------------- /application/core/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |Directory access is forbidden.
8 | 9 | 10 | -------------------------------------------------------------------------------- /application/errors/error_php.php: -------------------------------------------------------------------------------- 1 |Severity:
6 |Message:
7 |Filename:
8 |Line Number:
9 | 10 |Directory access is forbidden.
8 | 9 | 10 | -------------------------------------------------------------------------------- /application/helpers/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |Directory access is forbidden.
8 | 9 | 10 | -------------------------------------------------------------------------------- /application/hooks/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |Directory access is forbidden.
8 | 9 | 10 | -------------------------------------------------------------------------------- /application/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |Directory access is forbidden.
8 | 9 | 10 | -------------------------------------------------------------------------------- /application/language/english/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |Directory access is forbidden.
8 | 9 | 10 | -------------------------------------------------------------------------------- /application/language/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |Directory access is forbidden.
8 | 9 | 10 | -------------------------------------------------------------------------------- /application/language/portuguese/ion_auth_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/open311-simple-crm/c44a719ae39d75550bf9e812197edb9c1e4d7711/application/language/portuguese/ion_auth_lang.php -------------------------------------------------------------------------------- /application/libraries/image_moo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/open311-simple-crm/c44a719ae39d75550bf9e812197edb9c1e4d7711/application/libraries/image_moo.php -------------------------------------------------------------------------------- /application/libraries/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |Directory access is forbidden.
8 | 9 | 10 | -------------------------------------------------------------------------------- /application/logs/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |Directory access is forbidden.
8 | 9 | 10 | -------------------------------------------------------------------------------- /application/models/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |Directory access is forbidden.
8 | 9 | 10 | -------------------------------------------------------------------------------- /application/third_party/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |Directory access is forbidden.
8 | 9 | 10 | -------------------------------------------------------------------------------- /application/views/auth/email/activate.tpl.php: -------------------------------------------------------------------------------- 1 | 2 | 3 |Please click this link to .
5 | 6 | -------------------------------------------------------------------------------- /application/views/auth/email/forgot_password.tpl.php: -------------------------------------------------------------------------------- 1 | 2 | 3 |Please click this link to .
5 | 6 | -------------------------------------------------------------------------------- /application/views/auth/email/new_password.tpl.php: -------------------------------------------------------------------------------- 1 | 2 | 3 |Your password has been reset to:
6 | 7 | -------------------------------------------------------------------------------- /application/views/auth/forgot_password.php: -------------------------------------------------------------------------------- 1 | load->view('header');?> 2 |Please enter your email address so we can send you an email to reset your password.
4 | 5 | 6 | 7 | 8 | 9 |Email Address:
10 |
11 |
Directory access is forbidden.
8 | 9 | 10 | -------------------------------------------------------------------------------- /application/views/reports_post_response_json.php: -------------------------------------------------------------------------------- 1 | result() as $row) { 7 | 8 | $request = new stdClass(); 9 | 10 | $request->service_request_id = $row->report_id; 11 | $request->token = $row->token; 12 | $request->service_notice = $row->service_notice; 13 | $request->account_id = $row->account_id; 14 | 15 | $response[] = $request; 16 | } 17 | 18 | 19 | header('Content-type: application/json'); 20 | print json_encode($response); 21 | 22 | 23 | ?> 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /application/views/reports_post_response_xml.php: -------------------------------------------------------------------------------- 1 | load->helper('xml'); 4 | $dom = xml_dom(); 5 | $requests = xml_add_child($dom, 'service_requests'); 6 | 7 | foreach($query->result() as $row) { 8 | 9 | $request = xml_add_child($requests, 'request'); 10 | 11 | xml_add_child($request, 'service_request_id', $row->report_id); 12 | xml_add_child($request, 'token', $row->token); 13 | xml_add_child($request, 'service_notice', $row->service_notice); 14 | xml_add_child($request, 'account_id', $row->account_id); 15 | } 16 | 17 | xml_print($dom); 18 | 19 | ?> 20 | 21 | 22 | 23 | -------------------------------------------------------------------------------- /application/views/request_update_post_response_xml.php: -------------------------------------------------------------------------------- 1 | load->helper('xml'); 4 | $dom = xml_dom(); 5 | $updates = xml_add_child($dom, 'service_request_updates'); 6 | $update = xml_add_child($updates, 'request_update'); 7 | xml_add_child($update, 'update_id', $new_update_id); 8 | 9 | xml_print($dom); 10 | 11 | ?> 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /application/views/spam.php: -------------------------------------------------------------------------------- 1 | load->view('header');?> 2 |Directory access is forbidden.
8 | 9 | 10 | -------------------------------------------------------------------------------- /assets/grocery_crud/css/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |Directory access is forbidden.
8 | 9 | 10 | -------------------------------------------------------------------------------- /assets/grocery_crud/css/jquery_plugins/chosen/chosen-sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/open311-simple-crm/c44a719ae39d75550bf9e812197edb9c1e4d7711/assets/grocery_crud/css/jquery_plugins/chosen/chosen-sprite.png -------------------------------------------------------------------------------- /assets/grocery_crud/css/jquery_plugins/chosen/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |Directory access is forbidden.
8 | 9 | 10 | -------------------------------------------------------------------------------- /assets/grocery_crud/css/jquery_plugins/fancybox/blank.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/open311-simple-crm/c44a719ae39d75550bf9e812197edb9c1e4d7711/assets/grocery_crud/css/jquery_plugins/fancybox/blank.gif -------------------------------------------------------------------------------- /assets/grocery_crud/css/jquery_plugins/fancybox/fancy_close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/open311-simple-crm/c44a719ae39d75550bf9e812197edb9c1e4d7711/assets/grocery_crud/css/jquery_plugins/fancybox/fancy_close.png -------------------------------------------------------------------------------- /assets/grocery_crud/css/jquery_plugins/fancybox/fancy_loading.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/open311-simple-crm/c44a719ae39d75550bf9e812197edb9c1e4d7711/assets/grocery_crud/css/jquery_plugins/fancybox/fancy_loading.png -------------------------------------------------------------------------------- /assets/grocery_crud/css/jquery_plugins/fancybox/fancy_nav_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/open311-simple-crm/c44a719ae39d75550bf9e812197edb9c1e4d7711/assets/grocery_crud/css/jquery_plugins/fancybox/fancy_nav_left.png -------------------------------------------------------------------------------- /assets/grocery_crud/css/jquery_plugins/fancybox/fancy_nav_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/open311-simple-crm/c44a719ae39d75550bf9e812197edb9c1e4d7711/assets/grocery_crud/css/jquery_plugins/fancybox/fancy_nav_right.png -------------------------------------------------------------------------------- /assets/grocery_crud/css/jquery_plugins/fancybox/fancy_shadow_e.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/open311-simple-crm/c44a719ae39d75550bf9e812197edb9c1e4d7711/assets/grocery_crud/css/jquery_plugins/fancybox/fancy_shadow_e.png -------------------------------------------------------------------------------- /assets/grocery_crud/css/jquery_plugins/fancybox/fancy_shadow_n.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/open311-simple-crm/c44a719ae39d75550bf9e812197edb9c1e4d7711/assets/grocery_crud/css/jquery_plugins/fancybox/fancy_shadow_n.png -------------------------------------------------------------------------------- /assets/grocery_crud/css/jquery_plugins/fancybox/fancy_shadow_ne.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/open311-simple-crm/c44a719ae39d75550bf9e812197edb9c1e4d7711/assets/grocery_crud/css/jquery_plugins/fancybox/fancy_shadow_ne.png -------------------------------------------------------------------------------- /assets/grocery_crud/css/jquery_plugins/fancybox/fancy_shadow_nw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/open311-simple-crm/c44a719ae39d75550bf9e812197edb9c1e4d7711/assets/grocery_crud/css/jquery_plugins/fancybox/fancy_shadow_nw.png -------------------------------------------------------------------------------- /assets/grocery_crud/css/jquery_plugins/fancybox/fancy_shadow_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/open311-simple-crm/c44a719ae39d75550bf9e812197edb9c1e4d7711/assets/grocery_crud/css/jquery_plugins/fancybox/fancy_shadow_s.png -------------------------------------------------------------------------------- /assets/grocery_crud/css/jquery_plugins/fancybox/fancy_shadow_se.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/open311-simple-crm/c44a719ae39d75550bf9e812197edb9c1e4d7711/assets/grocery_crud/css/jquery_plugins/fancybox/fancy_shadow_se.png -------------------------------------------------------------------------------- /assets/grocery_crud/css/jquery_plugins/fancybox/fancy_shadow_sw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/open311-simple-crm/c44a719ae39d75550bf9e812197edb9c1e4d7711/assets/grocery_crud/css/jquery_plugins/fancybox/fancy_shadow_sw.png -------------------------------------------------------------------------------- /assets/grocery_crud/css/jquery_plugins/fancybox/fancy_shadow_w.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/open311-simple-crm/c44a719ae39d75550bf9e812197edb9c1e4d7711/assets/grocery_crud/css/jquery_plugins/fancybox/fancy_shadow_w.png -------------------------------------------------------------------------------- /assets/grocery_crud/css/jquery_plugins/fancybox/fancy_title_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/open311-simple-crm/c44a719ae39d75550bf9e812197edb9c1e4d7711/assets/grocery_crud/css/jquery_plugins/fancybox/fancy_title_left.png -------------------------------------------------------------------------------- /assets/grocery_crud/css/jquery_plugins/fancybox/fancy_title_main.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/open311-simple-crm/c44a719ae39d75550bf9e812197edb9c1e4d7711/assets/grocery_crud/css/jquery_plugins/fancybox/fancy_title_main.png -------------------------------------------------------------------------------- /assets/grocery_crud/css/jquery_plugins/fancybox/fancy_title_over.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/open311-simple-crm/c44a719ae39d75550bf9e812197edb9c1e4d7711/assets/grocery_crud/css/jquery_plugins/fancybox/fancy_title_over.png -------------------------------------------------------------------------------- /assets/grocery_crud/css/jquery_plugins/fancybox/fancy_title_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/open311-simple-crm/c44a719ae39d75550bf9e812197edb9c1e4d7711/assets/grocery_crud/css/jquery_plugins/fancybox/fancy_title_right.png -------------------------------------------------------------------------------- /assets/grocery_crud/css/jquery_plugins/fancybox/fancybox-x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/open311-simple-crm/c44a719ae39d75550bf9e812197edb9c1e4d7711/assets/grocery_crud/css/jquery_plugins/fancybox/fancybox-x.png -------------------------------------------------------------------------------- /assets/grocery_crud/css/jquery_plugins/fancybox/fancybox-y.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/open311-simple-crm/c44a719ae39d75550bf9e812197edb9c1e4d7711/assets/grocery_crud/css/jquery_plugins/fancybox/fancybox-y.png -------------------------------------------------------------------------------- /assets/grocery_crud/css/jquery_plugins/fancybox/fancybox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/open311-simple-crm/c44a719ae39d75550bf9e812197edb9c1e4d7711/assets/grocery_crud/css/jquery_plugins/fancybox/fancybox.png -------------------------------------------------------------------------------- /assets/grocery_crud/css/jquery_plugins/file_upload/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/open311-simple-crm/c44a719ae39d75550bf9e812197edb9c1e4d7711/assets/grocery_crud/css/jquery_plugins/file_upload/loading.gif -------------------------------------------------------------------------------- /assets/grocery_crud/css/jquery_plugins/file_upload/progressbar.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/open311-simple-crm/c44a719ae39d75550bf9e812197edb9c1e4d7711/assets/grocery_crud/css/jquery_plugins/file_upload/progressbar.gif -------------------------------------------------------------------------------- /assets/grocery_crud/css/jquery_plugins/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |Directory access is forbidden.
8 | 9 | 10 | -------------------------------------------------------------------------------- /assets/grocery_crud/css/jquery_plugins/jquery-ui-timepicker-addon.css: -------------------------------------------------------------------------------- 1 | .ui-timepicker-div .ui-widget-header { margin-bottom: 8px; } 2 | .ui-timepicker-div dl { text-align: left; } 3 | .ui-timepicker-div dl dt { height: 25px; margin-bottom: -25px; } 4 | .ui-timepicker-div dl dd { margin: 0 10px 10px 65px; } 5 | .ui-timepicker-div td { font-size: 90%; } 6 | .ui-tpicker-grid-label { background: none; border: none; margin: 0; padding: 0; } 7 | 8 | .ui-timepicker-rtl{ direction: rtl; } 9 | .ui-timepicker-rtl dl { text-align: right; } 10 | .ui-timepicker-rtl dl dd { margin: 0 65px 10px 10px; } -------------------------------------------------------------------------------- /assets/grocery_crud/css/jquery_plugins/uniform/images/bg-input-focus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/open311-simple-crm/c44a719ae39d75550bf9e812197edb9c1e4d7711/assets/grocery_crud/css/jquery_plugins/uniform/images/bg-input-focus.png -------------------------------------------------------------------------------- /assets/grocery_crud/css/jquery_plugins/uniform/images/bg-input.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/open311-simple-crm/c44a719ae39d75550bf9e812197edb9c1e4d7711/assets/grocery_crud/css/jquery_plugins/uniform/images/bg-input.png -------------------------------------------------------------------------------- /assets/grocery_crud/css/jquery_plugins/uniform/images/sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/open311-simple-crm/c44a719ae39d75550bf9e812197edb9c1e4d7711/assets/grocery_crud/css/jquery_plugins/uniform/images/sprite.png -------------------------------------------------------------------------------- /assets/grocery_crud/css/ui/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |Directory access is forbidden.
8 | 9 | 10 | -------------------------------------------------------------------------------- /assets/grocery_crud/css/ui/simple/images/animated-overlay.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/open311-simple-crm/c44a719ae39d75550bf9e812197edb9c1e4d7711/assets/grocery_crud/css/ui/simple/images/animated-overlay.gif -------------------------------------------------------------------------------- /assets/grocery_crud/css/ui/simple/images/ui-bg_flat_0_aaaaaa_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/open311-simple-crm/c44a719ae39d75550bf9e812197edb9c1e4d7711/assets/grocery_crud/css/ui/simple/images/ui-bg_flat_0_aaaaaa_40x100.png -------------------------------------------------------------------------------- /assets/grocery_crud/css/ui/simple/images/ui-bg_flat_75_ffffff_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/open311-simple-crm/c44a719ae39d75550bf9e812197edb9c1e4d7711/assets/grocery_crud/css/ui/simple/images/ui-bg_flat_75_ffffff_40x100.png -------------------------------------------------------------------------------- /assets/grocery_crud/css/ui/simple/images/ui-bg_glass_55_fbf9ee_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/open311-simple-crm/c44a719ae39d75550bf9e812197edb9c1e4d7711/assets/grocery_crud/css/ui/simple/images/ui-bg_glass_55_fbf9ee_1x400.png -------------------------------------------------------------------------------- /assets/grocery_crud/css/ui/simple/images/ui-bg_glass_65_ffffff_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/open311-simple-crm/c44a719ae39d75550bf9e812197edb9c1e4d7711/assets/grocery_crud/css/ui/simple/images/ui-bg_glass_65_ffffff_1x400.png -------------------------------------------------------------------------------- /assets/grocery_crud/css/ui/simple/images/ui-bg_glass_75_dadada_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/open311-simple-crm/c44a719ae39d75550bf9e812197edb9c1e4d7711/assets/grocery_crud/css/ui/simple/images/ui-bg_glass_75_dadada_1x400.png -------------------------------------------------------------------------------- /assets/grocery_crud/css/ui/simple/images/ui-bg_glass_75_e6e6e6_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/open311-simple-crm/c44a719ae39d75550bf9e812197edb9c1e4d7711/assets/grocery_crud/css/ui/simple/images/ui-bg_glass_75_e6e6e6_1x400.png -------------------------------------------------------------------------------- /assets/grocery_crud/css/ui/simple/images/ui-bg_glass_95_fef1ec_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/open311-simple-crm/c44a719ae39d75550bf9e812197edb9c1e4d7711/assets/grocery_crud/css/ui/simple/images/ui-bg_glass_95_fef1ec_1x400.png -------------------------------------------------------------------------------- /assets/grocery_crud/css/ui/simple/images/ui-bg_highlight-soft_75_cccccc_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/open311-simple-crm/c44a719ae39d75550bf9e812197edb9c1e4d7711/assets/grocery_crud/css/ui/simple/images/ui-bg_highlight-soft_75_cccccc_1x100.png -------------------------------------------------------------------------------- /assets/grocery_crud/css/ui/simple/images/ui-icons_222222_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/open311-simple-crm/c44a719ae39d75550bf9e812197edb9c1e4d7711/assets/grocery_crud/css/ui/simple/images/ui-icons_222222_256x240.png -------------------------------------------------------------------------------- /assets/grocery_crud/css/ui/simple/images/ui-icons_2e83ff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/open311-simple-crm/c44a719ae39d75550bf9e812197edb9c1e4d7711/assets/grocery_crud/css/ui/simple/images/ui-icons_2e83ff_256x240.png -------------------------------------------------------------------------------- /assets/grocery_crud/css/ui/simple/images/ui-icons_333333_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/open311-simple-crm/c44a719ae39d75550bf9e812197edb9c1e4d7711/assets/grocery_crud/css/ui/simple/images/ui-icons_333333_256x240.png -------------------------------------------------------------------------------- /assets/grocery_crud/css/ui/simple/images/ui-icons_454545_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/open311-simple-crm/c44a719ae39d75550bf9e812197edb9c1e4d7711/assets/grocery_crud/css/ui/simple/images/ui-icons_454545_256x240.png -------------------------------------------------------------------------------- /assets/grocery_crud/css/ui/simple/images/ui-icons_cd0a0a_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/open311-simple-crm/c44a719ae39d75550bf9e812197edb9c1e4d7711/assets/grocery_crud/css/ui/simple/images/ui-icons_cd0a0a_256x240.png -------------------------------------------------------------------------------- /assets/grocery_crud/css/ui/simple/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |Directory access is forbidden.
8 | 9 | 10 | -------------------------------------------------------------------------------- /assets/grocery_crud/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |Directory access is forbidden.
8 | 9 | 10 | -------------------------------------------------------------------------------- /assets/grocery_crud/js/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |Directory access is forbidden.
8 | 9 | 10 | -------------------------------------------------------------------------------- /assets/grocery_crud/js/jquery_plugins/config/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |Directory access is forbidden.
8 | 9 | 10 | -------------------------------------------------------------------------------- /assets/grocery_crud/js/jquery_plugins/config/jquery-ui-timepicker-addon.config.js: -------------------------------------------------------------------------------- 1 | $(function(){ 2 | $('.datetime-input').datetimepicker({ 3 | timeFormat: 'hh:mm:ss', 4 | dateFormat: js_date_format, 5 | showButtonPanel: true, 6 | changeMonth: true, 7 | changeYear: true 8 | }); 9 | 10 | $('.datetime-input-clear').button(); 11 | 12 | $('.datetime-input-clear').click(function(){ 13 | $(this).parent().find('.datetime-input').val(""); 14 | return false; 15 | }); 16 | 17 | }); -------------------------------------------------------------------------------- /assets/grocery_crud/js/jquery_plugins/config/jquery.chosen.config.js: -------------------------------------------------------------------------------- 1 | $(function(){ 2 | $(".chosen-select,.chosen-multiple-select").chosen({allow_single_deselect:true}); 3 | }); -------------------------------------------------------------------------------- /assets/grocery_crud/js/jquery_plugins/config/jquery.ckeditor.config.js: -------------------------------------------------------------------------------- 1 | $(function(){ 2 | $( 'textarea.texteditor' ).ckeditor({toolbar:'Full'}); 3 | $( 'textarea.mini-texteditor' ).ckeditor({toolbar:'Basic',width:700}); 4 | }); -------------------------------------------------------------------------------- /assets/grocery_crud/js/jquery_plugins/config/jquery.datepicker.config.js: -------------------------------------------------------------------------------- 1 | $(function(){ 2 | $('.datepicker-input').datepicker({ 3 | dateFormat: js_date_format, 4 | showButtonPanel: true, 5 | changeMonth: true, 6 | changeYear: true 7 | }); 8 | 9 | $('.datepicker-input-clear').button(); 10 | 11 | $('.datepicker-input-clear').click(function(){ 12 | $(this).parent().find('.datepicker-input').val(""); 13 | return false; 14 | }); 15 | 16 | }); -------------------------------------------------------------------------------- /assets/grocery_crud/js/jquery_plugins/config/jquery.datetime.config.js: -------------------------------------------------------------------------------- 1 | $(function(){ 2 | $('.datetime-input').datetime({ 3 | userLang : 'en', 4 | americanMode: true, 5 | }); 6 | 7 | $('.datetime-input-clear').button(); 8 | 9 | $('.datetime-input-clear').click(function(){ 10 | $(this).parent().find('.datetime-input').val(""); 11 | return false; 12 | }); 13 | 14 | }); -------------------------------------------------------------------------------- /assets/grocery_crud/js/jquery_plugins/config/jquery.fancybox.config.js: -------------------------------------------------------------------------------- 1 | $(function(){ 2 | $('.image-thumbnail').fancybox({ 3 | 'transitionIn' : 'elastic', 4 | 'transitionOut' : 'elastic', 5 | 'speedIn' : 600, 6 | 'speedOut' : 200, 7 | 'overlayShow' : false 8 | }); 9 | }); -------------------------------------------------------------------------------- /assets/grocery_crud/js/jquery_plugins/config/jquery.multiselect.js: -------------------------------------------------------------------------------- 1 | $(function(){ 2 | $(".multiselect").multiselect(); 3 | }); -------------------------------------------------------------------------------- /assets/grocery_crud/js/jquery_plugins/config/jquery.uniform.config.js: -------------------------------------------------------------------------------- 1 | $(function(){ 2 | $(".radio-uniform").uniform(); 3 | }); -------------------------------------------------------------------------------- /assets/grocery_crud/js/jquery_plugins/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |Directory access is forbidden.
8 | 9 | 10 | -------------------------------------------------------------------------------- /assets/grocery_crud/js/jquery_plugins/ui/i18n/datepicker/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |Directory access is forbidden.
8 | 9 | 10 | -------------------------------------------------------------------------------- /assets/grocery_crud/js/jquery_plugins/ui/i18n/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |Directory access is forbidden.
8 | 9 | 10 | -------------------------------------------------------------------------------- /assets/grocery_crud/js/jquery_plugins/ui/i18n/multiselect/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |Directory access is forbidden.
8 | 9 | 10 | -------------------------------------------------------------------------------- /assets/grocery_crud/js/jquery_plugins/ui/i18n/multiselect/ui-multiselect-ar.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Localization strings for the UI Multiselect widget 3 | * 4 | * @locale ar, ar-eg 5 | */ 6 | /* Ashraf Kaabi -- mail@kaabi.info */ 7 | 8 | $.extend($.ui.multiselect.locale, { 9 | addAll:'اضافة الكل', 10 | removeAll:'حذف الكل', 11 | itemsCount:'الاختيارات المحددة' 12 | }); 13 | -------------------------------------------------------------------------------- /assets/grocery_crud/js/jquery_plugins/ui/i18n/multiselect/ui-multiselect-de.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Localization strings for the UI Multiselect widget 3 | * 4 | * @locale de, de-DE, de-AT, de-CH 5 | */ 6 | 7 | $.extend($.ui.multiselect.locale, { 8 | addAll:'Alle hinzufügen', 9 | removeAll:'Alle entfernen', 10 | itemsCount:'Einträge ausgewählt' 11 | }); -------------------------------------------------------------------------------- /assets/grocery_crud/js/jquery_plugins/ui/i18n/multiselect/ui-multiselect-el.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Localization strings for the UI Multiselect widget 3 | * 4 | * @locale el, GR 5 | */ 6 | 7 | $.extend($.ui.multiselect.locale, { 8 | addAll:'Επιλογή όλων', 9 | removeAll:'Αφαίρεση όλων', 10 | itemsCount:'επιλεγμένα στοιχεία' 11 | }); -------------------------------------------------------------------------------- /assets/grocery_crud/js/jquery_plugins/ui/i18n/multiselect/ui-multiselect-en.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Localization strings for the UI Multiselect widget 3 | * 4 | * @locale en, en-US 5 | */ 6 | 7 | $.extend($.ui.multiselect.locale, { 8 | addAll:'Add all', 9 | removeAll:'Remove all', 10 | itemsCount:'items selected' 11 | }); -------------------------------------------------------------------------------- /assets/grocery_crud/js/jquery_plugins/ui/i18n/multiselect/ui-multiselect-es.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Localization strings for the UI Multiselect widget 3 | * 4 | * @locale es, es-ES 5 | */ 6 | 7 | $.extend($.ui.multiselect.locale, { 8 | addAll:'Agregar todos', 9 | removeAll:'Remover todos', 10 | itemsCount:'Objetos seleccionados' 11 | }); -------------------------------------------------------------------------------- /assets/grocery_crud/js/jquery_plugins/ui/i18n/multiselect/ui-multiselect-fr.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Localization strings for the UI Multiselect widget 3 | * 4 | * @locale fr, fr-FR, fr-CA 5 | */ 6 | 7 | $.extend($.ui.multiselect.locale, { 8 | addAll:'Ajouter tout', 9 | removeAll:'Supprimer tout', 10 | itemsCount:'items sélectionnés' 11 | }); -------------------------------------------------------------------------------- /assets/grocery_crud/js/jquery_plugins/ui/i18n/multiselect/ui-multiselect-it.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Localization strings for the UI Multiselect widget 3 | * 4 | * @locale it, it-IT 5 | */ 6 | 7 | $.extend($.ui.multiselect, { 8 | locale: { 9 | addAll:'Aggiungi tutti', 10 | removeAll:'Rimuovi tutti', 11 | itemsCount:'elementi selezionati' 12 | } 13 | }); -------------------------------------------------------------------------------- /assets/grocery_crud/js/jquery_plugins/ui/i18n/multiselect/ui-multiselect-ja.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Localization strings for the UI Multiselect widget 3 | * 4 | * @locale ja, ja-JP 5 | */ 6 | 7 | $.extend($.ui.multiselect.locale, { 8 | addAll:'すべて選択', 9 | removeAll:'すべて削除', 10 | itemsCount:'個選択' 11 | }); -------------------------------------------------------------------------------- /assets/grocery_crud/js/jquery_plugins/ui/i18n/multiselect/ui-multiselect-pt-br.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Localization strings for the UI Multiselect widget 3 | * 4 | * @locale pt, pt-BR 5 | */ 6 | 7 | $.extend($.ui.multiselect.locale, { 8 | addAll:'Adicionar todos', 9 | removeAll:'Remover todos', 10 | itemsCount:'Itens selecionados' 11 | }); -------------------------------------------------------------------------------- /assets/grocery_crud/js/jquery_plugins/ui/i18n/multiselect/ui-multiselect-ru.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Localization strings for the UI Multiselect widget 3 | * 4 | * @locale ru, ru-RU 5 | */ 6 | 7 | $.extend($.ui.multiselect.locale, { 8 | addAll:'Добавить все', 9 | removeAll:'Удалить все', 10 | itemsCount:'элементов выбрано' 11 | }); -------------------------------------------------------------------------------- /assets/grocery_crud/js/jquery_plugins/ui/i18n/multiselect/ui-multiselect-uk.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Localization strings for the UI Multiselect widget 3 | * 4 | * @locale uk, uk-UK 5 | */ 6 | 7 | $.extend($.ui.multiselect.locale, { 8 | addAll:'Додати все', 9 | removeAll:'Видалити все', 10 | itemsCount:'елементів обрано' 11 | }); -------------------------------------------------------------------------------- /assets/grocery_crud/js/jquery_plugins/ui/i18n/timepicker/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |Directory access is forbidden.
8 | 9 | 10 | -------------------------------------------------------------------------------- /assets/grocery_crud/js/jquery_plugins/ui/i18n/timepicker/jquery-ui-timepicker-ar.js: -------------------------------------------------------------------------------- 1 | /* Arabic translation for the jQuery Timepicker Addon */ 2 | /* Written by Ashraf Kaabi */ 3 | (function($) { 4 | $.timepicker.regional['ar'] = { 5 | timeOnlyTitle: 'اختار الساعة', 6 | timeText: 'الساعة', 7 | hourText: 'الساعات', 8 | minuteText: 'الدقائق', 9 | secondText: 'الثواني', 10 | millisecText: 'ميلي ثانية', 11 | timezoneText: 'توقيت', 12 | currentText: 'الآن', 13 | closeText: 'الانتهاء', 14 | timeFormat: 'hh:mm', 15 | amNames: ['AM', 'A'], 16 | pmNames: ['PM', 'P'], 17 | ampm: false, 18 | isRTL: false 19 | }; 20 | $.timepicker.setDefaults($.timepicker.regional['ar']); 21 | })(jQuery); 22 | -------------------------------------------------------------------------------- /assets/grocery_crud/js/jquery_plugins/ui/i18n/timepicker/jquery-ui-timepicker-id.js: -------------------------------------------------------------------------------- 1 | /* Indonesian translation for the jQuery Timepicker Addon */ 2 | /* Written by Nia */ 3 | (function($) { 4 | $.timepicker.regional['id'] = { 5 | timeOnlyTitle: 'Pilih Waktu', 6 | timeText: 'Waktu', 7 | hourText: 'Pukul', 8 | minuteText: 'Menit', 9 | secondText: 'Detik', 10 | millisecText: 'Milidetik', 11 | timezoneText: 'Zona Waktu', 12 | currentText: 'Sekarang', 13 | closeText: 'OK', 14 | timeFormat: 'hh:mm tt', 15 | amNames: ['AM', 'A'], 16 | pmNames: ['PM', 'P'], 17 | ampm: false, 18 | isRTL: false 19 | }; 20 | $.timepicker.setDefaults($.timepicker.regional['id']); 21 | })(jQuery); -------------------------------------------------------------------------------- /assets/grocery_crud/js/jquery_plugins/ui/i18n/timepicker/jquery-ui-timepicker-ja.js: -------------------------------------------------------------------------------- 1 | /* Japanese translation for the jQuery Timepicker Addon */ 2 | /* Written by Jun Omae */ 3 | (function($) { 4 | $.timepicker.regional['ja'] = { 5 | timeOnlyTitle: '時間を選択', 6 | timeText: '時間', 7 | hourText: '時', 8 | minuteText: '分', 9 | secondText: '秒', 10 | millisecText: 'ミリ秒', 11 | timezoneText: 'タイムゾーン', 12 | currentText: '現時刻', 13 | closeText: '閉じる', 14 | timeFormat: 'hh:mm tt', 15 | amNames: ['午前', 'AM', 'A'], 16 | pmNames: ['午後', 'PM', 'P'], 17 | ampm: false, 18 | isRTL: false 19 | }; 20 | $.timepicker.setDefaults($.timepicker.regional['ja']); 21 | })(jQuery); -------------------------------------------------------------------------------- /assets/grocery_crud/js/jquery_plugins/ui/i18n/timepicker/jquery-ui-timepicker-ko.js: -------------------------------------------------------------------------------- 1 | /* Korean translation for the jQuery Timepicker Addon */ 2 | /* Written by Genie */ 3 | (function($) { 4 | $.timepicker.regional['ko'] = { 5 | timeOnlyTitle: '시간 선택', 6 | timeText: '시간', 7 | hourText: '시', 8 | minuteText: '분', 9 | secondText: '초', 10 | millisecText: '밀리초', 11 | timezoneText: '표준 시간대', 12 | currentText: '현재 시각', 13 | closeText: '닫기', 14 | timeFormat: 'tt h:mm', 15 | amNames: ['오전', 'AM', 'A'], 16 | pmNames: ['오후', 'PM', 'P'], 17 | ampm: true, 18 | isRTL: false 19 | }; 20 | $.timepicker.setDefaults($.timepicker.regional['ko']); 21 | })(jQuery); 22 | -------------------------------------------------------------------------------- /assets/grocery_crud/js/jquery_plugins/ui/i18n/timepicker/jquery-ui-timepicker-nl.js: -------------------------------------------------------------------------------- 1 | /* Dutch translation for the jQuery Timepicker Addon */ 2 | /* Written by Martijn van der Lee */ 3 | (function($) { 4 | $.timepicker.regional['nl'] = { 5 | timeOnlyTitle: 'Tijdstip', 6 | timeText: 'Tijd', 7 | hourText: 'Uur', 8 | minuteText: 'Minuut', 9 | secondText: 'Seconde', 10 | millisecText: 'Milliseconde', 11 | timezoneText: 'Tijdzone', 12 | currentText: 'Vandaag', 13 | closeText: 'Sluiten', 14 | timeFormat: 'hh:mm tt', 15 | amNames: ['AM', 'A'], 16 | pmNames: ['PM', 'P'], 17 | ampm: false, 18 | isRTL: false 19 | }; 20 | $.timepicker.setDefaults($.timepicker.regional['nl']); 21 | })(jQuery); -------------------------------------------------------------------------------- /assets/grocery_crud/js/jquery_plugins/ui/i18n/timepicker/jquery-ui-timepicker-ro.js: -------------------------------------------------------------------------------- 1 | /* Romanian translation for the jQuery Timepicker Addon */ 2 | /* Written by Romeo Adrian Cioaba */ 3 | (function($) { 4 | $.timepicker.regional['ro'] = { 5 | timeOnlyTitle: 'Alegeţi o oră', 6 | timeText: 'Timp', 7 | hourText: 'Ore', 8 | minuteText: 'Minute', 9 | secondText: 'Secunde', 10 | millisecText: 'Milisecunde', 11 | timezoneText: 'Fus orar', 12 | currentText: 'Acum', 13 | closeText: 'Închide', 14 | timeFormat: 'hh:mm', 15 | amNames: ['AM', 'A'], 16 | pmNames: ['PM', 'P'], 17 | ampm: false, 18 | isRTL: false 19 | }; 20 | $.timepicker.setDefaults($.timepicker.regional['ro']); 21 | })(jQuery); -------------------------------------------------------------------------------- /assets/grocery_crud/js/jquery_plugins/ui/i18n/timepicker/jquery-ui-timepicker-zh-cn.js: -------------------------------------------------------------------------------- 1 | /* Simplified Chinese translation for the jQuery Timepicker Addon / 2 | / Written by Will Lu */ 3 | (function($) { 4 | $.timepicker.regional['zh-CN'] = { 5 | timeOnlyTitle: '选择时间', 6 | timeText: '时间', 7 | hourText: '小时', 8 | minuteText: '分钟', 9 | secondText: '秒钟', 10 | millisecText: '微秒', 11 | timezoneText: '时区', 12 | currentText: '现在时间', 13 | closeText: '关闭', 14 | timeFormat: 'hh:mm', 15 | amNames: ['AM', 'A'], 16 | pmNames: ['PM', 'P'], 17 | ampm: false, 18 | isRTL: false 19 | }; 20 | $.timepicker.setDefaults($.timepicker.regional['zh-CN']); 21 | })(jQuery); -------------------------------------------------------------------------------- /assets/grocery_crud/js/jquery_plugins/ui/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |Directory access is forbidden.
8 | 9 | 10 | -------------------------------------------------------------------------------- /assets/grocery_crud/languages/.htaccess: -------------------------------------------------------------------------------- 1 | Deny from all -------------------------------------------------------------------------------- /assets/grocery_crud/languages/add-new-lang-string.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | for i in *.php 3 | do 4 | echo -e "\n\t\$lang['list_view'] = 'View';" >> $i 5 | done 6 | -------------------------------------------------------------------------------- /assets/grocery_crud/languages/afrikaans.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/open311-simple-crm/c44a719ae39d75550bf9e812197edb9c1e4d7711/assets/grocery_crud/languages/afrikaans.php -------------------------------------------------------------------------------- /assets/grocery_crud/languages/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |Directory access is forbidden.
8 | 9 | 10 | -------------------------------------------------------------------------------- /assets/grocery_crud/license-grocery-crud.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/open311-simple-crm/c44a719ae39d75550bf9e812197edb9c1e4d7711/assets/grocery_crud/license-grocery-crud.txt -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/config.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.editorConfig = function( config ) 7 | { 8 | // Define changes to default configuration here. For example: 9 | // config.language = 'fr'; 10 | // config.uiColor = '#AADC6E'; 11 | }; 12 | -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/images/spacer.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/open311-simple-crm/c44a719ae39d75550bf9e812197edb9c1e4d7711/assets/grocery_crud/texteditor/ckeditor/images/spacer.gif -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/about/dialogs/logo_ckeditor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/open311-simple-crm/c44a719ae39d75550bf9e812197edb9c1e4d7711/assets/grocery_crud/texteditor/ckeditor/plugins/about/dialogs/logo_ckeditor.png -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/devtools/lang/bg.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang('devtools','bg',{devTools:{title:'Информация за елемента',dialogName:'Име на диалоговия прозорец',tabName:'Име на таб',elementId:'ID на елемента',elementType:'Тип на елемента'}}); 7 | -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/devtools/lang/cs.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang('devtools','cs',{devTools:{title:'Informace o prvku',dialogName:'Název dialogového okna',tabName:'Název karty',elementId:'ID prvku',elementType:'Typ prvku'}}); 7 | -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/devtools/lang/cy.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang('devtools','cy',{devTools:{title:'Gwybodaeth am yr Elfen',dialogName:'Enw ffenestr y deialog',tabName:"Enw'r tab",elementId:'ID yr Elfen',elementType:'Math yr elfen'}}); 7 | -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/devtools/lang/da.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang('devtools','da',{devTools:{title:'Information på elementet',dialogName:'Dialogboks',tabName:'Tab beskrivelse',elementId:'ID på element',elementType:'Type af element'}}); 7 | -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/devtools/lang/de.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang('devtools','de',{devTools:{title:'Elementinformation',dialogName:'Dialogfenstername',tabName:'Reitername',elementId:'Element ID',elementType:'Elementtyp'}}); 7 | -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/devtools/lang/el.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang('devtools','el',{devTools:{title:'Πληροφορίες Στοιχείου',dialogName:'Όνομα παραθύρου διαλόγου',tabName:'Όνομα καρτέλας',elementId:'ID Στοιχείου',elementType:'Τύπος στοιχείου'}}); 7 | -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/devtools/lang/en.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang('devtools','en',{devTools:{title:'Element Information',dialogName:'Dialog window name',tabName:'Tab name',elementId:'Element ID',elementType:'Element type'}}); 7 | -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/devtools/lang/eo.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang('devtools','eo',{devTools:{title:'Informo pri la elemento',dialogName:'Nomo de la dialogfenestro',tabName:'Langetnomo',elementId:'ID de la elemento',elementType:'Tipo de la elemento'}}); 7 | -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/devtools/lang/et.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang('devtools','et',{devTools:{title:'Elemendi andmed',dialogName:'Dialoogiakna nimi',tabName:'Saki nimi',elementId:'Elemendi ID',elementType:'Elemendi liik'}}); 7 | -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/devtools/lang/fa.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | /* 7 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 8 | For licensing, see LICENSE.html or http://ckeditor.com/license 9 | */ 10 | 11 | CKEDITOR.plugins.setLang( 'devtools', 'fa', 12 | { 13 | devTools : 14 | { 15 | title : 'اطلاعات عنصر', 16 | dialogName : 'نام پنجره محاورهای', 17 | tabName : 'نام برگه', 18 | elementId : 'ID عنصر', 19 | elementType : 'نوع عنصر' 20 | } 21 | }); 22 | -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/devtools/lang/fi.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang('devtools','fi',{devTools:{title:'Elementin tiedot',dialogName:'Dialogi-ikkunan nimi',tabName:'Välilehden nimi',elementId:'Elementin ID',elementType:'Elementin tyyppi'}}); 7 | -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/devtools/lang/fr.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang('devtools','fr',{devTools:{title:"Information sur l'élément",dialogName:'Nom de la fenêtre de dialogue',tabName:"Nom de l'onglet",elementId:"ID de l'élément",elementType:"Type de l'élément"}}); 7 | -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/devtools/lang/gu.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang('devtools','gu',{devTools:{title:'પ્રાથમિક માહિતી',dialogName:'વિન્ડોનું નામ',tabName:'ટેબનું નામ',elementId:'પ્રાથમિક આઈડી',elementType:'પ્રાથમિક પ્રકાર'}}); 7 | -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/devtools/lang/he.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang('devtools','he',{devTools:{title:'מידע על האלמנט',dialogName:'שם הדיאלוג',tabName:'שם הטאב',elementId:'ID של האלמנט',elementType:'סוג האלמנט'}}); 7 | -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/devtools/lang/hr.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang('devtools','hr',{devTools:{title:'Informacije elementa',dialogName:'Naziv prozora za dijalog',tabName:'Naziva jahača',elementId:'ID elementa',elementType:'Vrsta elementa'}}); 7 | -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/devtools/lang/it.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang('devtools','it',{devTools:{title:'Informazioni elemento',dialogName:'Nome finestra di dialogo',tabName:'Nome Tab',elementId:'ID Elemento',elementType:'Tipo elemento'}}); 7 | -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/devtools/lang/ku.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | /* 7 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 8 | For licensing, see LICENSE.html or http://ckeditor.com/license 9 | */ 10 | 11 | CKEDITOR.plugins.setLang( 'devtools', 'ku', 12 | { 13 | devTools : 14 | { 15 | title : 'زانیاری توخم', 16 | dialogName : 'ناوی پهنجهرهی دیالۆگ', 17 | tabName : 'ناوی بازدهر تاب', 18 | elementId : 'ناسنامهی توخم', 19 | elementType : 'جۆری توخم' 20 | } 21 | }); 22 | -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/devtools/lang/nb.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang('devtools','nb',{devTools:{title:'Elementinformasjon',dialogName:'Navn på dialogvindu',tabName:'Navn på fane',elementId:'Element-ID',elementType:'Elementtype'}}); 7 | -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/devtools/lang/nl.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang('devtools','nl',{devTools:{title:'Elementinformatie',dialogName:'Naam dialoogvenster',tabName:'Tabnaam',elementId:'Element ID',elementType:'Elementtype'}}); 7 | -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/devtools/lang/no.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang('devtools','no',{devTools:{title:'Elementinformasjon',dialogName:'Navn på dialogvindu',tabName:'Navn på fane',elementId:'Element-ID',elementType:'Elementtype'}}); 7 | -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/devtools/lang/pl.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang('devtools','pl',{devTools:{title:'Informacja o elemencie',dialogName:'Nazwa okna dialogowego',tabName:'Nazwa zakładki',elementId:'ID elementu',elementType:'Typ elementu'}}); 7 | -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/devtools/lang/pt-br.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang('devtools','pt-br',{devTools:{title:'Informação do Elemento',dialogName:'Nome da janela de diálogo',tabName:'Nome da aba',elementId:'ID do elemento',elementType:'Tipo do elemento'}}); 7 | -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/devtools/lang/sk.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang('devtools','sk',{devTools:{title:'Informácie o prvku',dialogName:'Názov okna dialógu',tabName:'Názov záložky',elementId:'ID prvku',elementType:'Typ prvku'}}); 7 | -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/devtools/lang/tr.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang('devtools','tr',{devTools:{title:'Eleman Bilgisi',dialogName:'İletişim pencere ismi',tabName:'Sekme adı',elementId:'Eleman ID',elementType:'Eleman türü'}}); 7 | -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/devtools/lang/ug.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang('devtools','ug',{devTools:{title:'ئېلېمېنت ئۇچۇرى',dialogName:'سۆزلەشكۈ كۆزنەك ئاتى',tabName:'Tab ئاتى',elementId:'ئېلېمېنت كىملىكى',elementType:'ئېلېمېنت تىپى'}}); 7 | -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/devtools/lang/uk.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang('devtools','uk',{devTools:{title:'Відомості про Елемент',dialogName:'Заголовок діалогового вікна',tabName:'Назва вкладки',elementId:'Ідентифікатор Елемента',elementType:'Тип Елемента'}}); 7 | -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/devtools/lang/vi.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang('devtools','vi',{devTools:{title:'Thông tin thành ph',dialogName:'Tên hộp tho',tabName:'Tên th',elementId:'Mã thành ph',elementType:'Loại thành ph'}}); 7 | -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/devtools/lang/zh-cn.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang('devtools','zh-cn',{devTools:{title:'元素信息',dialogName:'对话框窗口名称',tabName:'Tab 名称',elementId:'元素 ID',elementType:'元素类型'}}); 7 | -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/dialog/dialogDefinition.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/docprops/plugin.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.add('docprops',{init:function(a){var b=new CKEDITOR.dialogCommand('docProps');b.modes={wysiwyg:a.config.fullPage};a.addCommand('docProps',b);CKEDITOR.dialog.add('docProps',this.path+'dialogs/docprops.js');a.ui.addButton('DocProps',{label:a.lang.docprops.label,command:'docProps'});}}); 7 | -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/flash/images/placeholder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/open311-simple-crm/c44a719ae39d75550bf9e812197edb9c1e4d7711/assets/grocery_crud/texteditor/ckeditor/plugins/flash/images/placeholder.png -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/forms/images/hiddenfield.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/open311-simple-crm/c44a719ae39d75550bf9e812197edb9c1e4d7711/assets/grocery_crud/texteditor/ckeditor/plugins/forms/images/hiddenfield.gif -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/iframe/images/placeholder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/open311-simple-crm/c44a719ae39d75550bf9e812197edb9c1e4d7711/assets/grocery_crud/texteditor/ckeditor/plugins/iframe/images/placeholder.png -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/link/images/anchor.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/open311-simple-crm/c44a719ae39d75550bf9e812197edb9c1e4d7711/assets/grocery_crud/texteditor/ckeditor/plugins/link/images/anchor.gif -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/pagebreak/images/pagebreak.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/open311-simple-crm/c44a719ae39d75550bf9e812197edb9c1e4d7711/assets/grocery_crud/texteditor/ckeditor/plugins/pagebreak/images/pagebreak.gif -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/placeholder/lang/bg.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang('placeholder','bg',{placeholder:{title:'Настройки на контейнера',toolbar:'Нов контейнер',text:'Текст за контейнера',edit:'Промяна на контейнер',textMissing:'Контейнера трябва да съдържа текст.'}}); 7 | -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/placeholder/lang/cs.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang('placeholder','cs',{placeholder:{title:'Vlastnosti vyhrazeného prostoru',toolbar:'Vytvořit vyhrazený prostor',text:'Vyhrazený text',edit:'Upravit vyhrazený prostor',textMissing:'Vyhrazený prostor musí obsahovat text.'}}); 7 | -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/placeholder/lang/cy.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang('placeholder','cy',{placeholder:{title:"Priodweddau'r Daliwr Geiriau",toolbar:'Creu Daliwr Geiriau',text:'Testun y Daliwr Geiriau',edit:"Golygu'r Dailwr Geiriau",textMissing:"Mae'n rhaid i'r daliwr geiriau gynnwys testun."}}); 7 | -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/placeholder/lang/da.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang('placeholder','da',{placeholder:{title:'Egenskaber for pladsholder',toolbar:'Opret pladsholder',text:'Tekst til pladsholder',edit:'Redigér pladsholder',textMissing:'Pladsholder skal indeholde tekst'}}); 7 | -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/placeholder/lang/de.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang('placeholder','de',{placeholder:{title:'Platzhalter Einstellungen',toolbar:'Platzhalter erstellen',text:'Platzhalter Text',edit:'Platzhalter bearbeiten',textMissing:'Der Platzhalter muss einen Text beinhalten.'}}); 7 | -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/placeholder/lang/el.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang('placeholder','el',{placeholder:{title:'Ιδιότητες Υποκατάστατου Κειμένου',toolbar:'Δημιουργία Υποκατάσταστου Κειμένου',text:'Υποκαθιστόμενο Κείμενο',edit:'Επεξεργασία Υποκατάσταστου Κειμένου',textMissing:'Πρέπει να υπάρχει υποκαθιστόμενο κείμενο.'}}); 7 | -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/placeholder/lang/en.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang('placeholder','en',{placeholder:{title:'Placeholder Properties',toolbar:'Create Placeholder',text:'Placeholder Text',edit:'Edit Placeholder',textMissing:'The placeholder must contain text.'}}); 7 | -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/placeholder/lang/eo.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang('placeholder','eo',{placeholder:{title:'Atributoj de la rezervita spaco',toolbar:'Krei la rezervitan spacon',text:'Texto de la rezervita spaco',edit:'Modifi la rezervitan spacon',textMissing:'La rezervita spaco devas enteni tekston.'}}); 7 | -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/placeholder/lang/et.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang('placeholder','et',{placeholder:{title:'Kohahoidja omadused',toolbar:'Kohahoidja loomine',text:'Kohahoidja tekst',edit:'Kohahoidja muutmine',textMissing:'Kohahoidja peab sisaldama teksti.'}}); 7 | -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/placeholder/lang/fi.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang('placeholder','fi',{placeholder:{title:'Paikkamerkin ominaisuudet',toolbar:'Luo paikkamerkki',text:'Paikkamerkin teksti',edit:'Muokkaa paikkamerkkiä',textMissing:'Paikkamerkin täytyy sisältää tekstiä'}}); 7 | -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/placeholder/lang/fr.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang('placeholder','fr',{placeholder:{title:"Propriétés de l'Espace réservé",toolbar:"Créer l'Espace réservé",text:"Texte de l'Espace réservé",edit:"Modifier l'Espace réservé",textMissing:"L'Espace réservé doit contenir du texte."}}); 7 | -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/placeholder/lang/he.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang('placeholder','he',{placeholder:{title:'מאפייני שומר מקום',toolbar:'צור שומר מקום',text:'תוכן שומר המקום',edit:'ערוך שומר מקום',textMissing:'שומר המקום חייב להכיל טקסט.'}}); 7 | -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/placeholder/lang/hr.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang('placeholder','hr',{placeholder:{title:'Svojstva rezerviranog mjesta',toolbar:'Napravi rezervirano mjesto',text:'Tekst rezerviranog mjesta',edit:'Uredi rezervirano mjesto',textMissing:'Rezervirano mjesto mora sadržavati tekst.'}}); 7 | -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/placeholder/lang/it.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang('placeholder','it',{placeholder:{title:'Proprietà segnaposto',toolbar:'Crea segnaposto',text:'Testo segnaposto',edit:'Modifica segnaposto',textMissing:'Il segnaposto deve contenere del testo.'}}); 7 | -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/placeholder/lang/nb.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang('placeholder','nb',{placeholder:{title:'Egenskaper for plassholder',toolbar:'Opprett plassholder',text:'Tekst for plassholder',edit:'Rediger plassholder',textMissing:'Plassholderen må inneholde tekst.'}}); 7 | -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/placeholder/lang/nl.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang('placeholder','nl',{placeholder:{title:'Eigenschappen placeholder',toolbar:'Placeholder aanmaken',text:'Placeholder tekst',edit:'Placeholder wijzigen',textMissing:'De placeholder moet tekst bevatten.'}}); 7 | -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/placeholder/lang/no.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang('placeholder','no',{placeholder:{title:'Egenskaper for plassholder',toolbar:'Opprett plassholder',text:'Tekst for plassholder',edit:'Rediger plassholder',textMissing:'Plassholderen må inneholde tekst.'}}); 7 | -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/placeholder/lang/pl.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang('placeholder','pl',{placeholder:{title:'Właściwości wypełniacza',toolbar:'Utwórz wypełniacz',text:'Tekst wypełnienia',edit:'Edytuj wypełnienie',textMissing:'Wypełnienie musi posiadać jakiś tekst.'}}); 7 | -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/placeholder/lang/pt-br.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang('placeholder','pt-br',{placeholder:{title:'Propriedades do Espaço Reservado',toolbar:'Criar Espaço Reservado',text:'Texto do Espaço Reservado',edit:'Editar Espaço Reservado',textMissing:'O espaço reservado deve conter texto.'}}); 7 | -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/placeholder/lang/sk.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang('placeholder','sk',{placeholder:{title:'Vlastnosti placeholdera',toolbar:'Vytvoriť placeholder',text:'Text placeholdera',edit:'Upraviť placeholder',textMissing:'Placeholder musí obsahovať text.'}}); 7 | -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/placeholder/lang/tr.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang('placeholder','tr',{placeholder:{title:'Yer tutucu özellikleri',toolbar:'Yer tutucu oluşturun',text:'Yer tutucu metini',edit:'Yer tutucuyu düzenle',textMissing:'Yer tutucu metin içermelidir.'}}); 7 | -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/placeholder/lang/ug.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang('placeholder','ug',{placeholder:{title:'ئورۇن بەلگە خاسلىقى',toolbar:'ئورۇن بەلگە قۇر',text:'ئورۇن بەلگە تېكىستى',edit:'ئورۇن بەلگە تەھرىر',textMissing:'ئورۇن بەلگىسىدە چوقۇم تېكىست بولۇشى لازىم'}}); 7 | -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/placeholder/lang/uk.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang('placeholder','uk',{placeholder:{title:'Налаштування Заповнювача',toolbar:'Створити Заповнювач',text:'Текст Заповнювача',edit:'Редагувати Заповнювач',textMissing:'Заповнювач повинен містити текст.'}}); 7 | -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/placeholder/lang/vi.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang('placeholder','vi',{placeholder:{title:'Thuộc tính đặt chỗ',toolbar:'Tạo đặt chỗ',text:'Văn bản đặt chỗ',edit:'Chỉnh sửa ',textMissing:'The placeholder must contain text.'}}); 7 | -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/placeholder/lang/zh-cn.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang('placeholder','zh-cn',{placeholder:{title:'占位符属性',toolbar:'创建占位符',text:'占位符文字',edit:'编辑占位符',textMissing:'占位符必须包含文字。'}}); 7 | -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/placeholder/placeholder.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/open311-simple-crm/c44a719ae39d75550bf9e812197edb9c1e4d7711/assets/grocery_crud/texteditor/ckeditor/plugins/placeholder/placeholder.gif -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/preview/preview.html: -------------------------------------------------------------------------------- 1 | 11 | -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/showblocks/images/block_address.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/open311-simple-crm/c44a719ae39d75550bf9e812197edb9c1e4d7711/assets/grocery_crud/texteditor/ckeditor/plugins/showblocks/images/block_address.png -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/showblocks/images/block_blockquote.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/open311-simple-crm/c44a719ae39d75550bf9e812197edb9c1e4d7711/assets/grocery_crud/texteditor/ckeditor/plugins/showblocks/images/block_blockquote.png -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/showblocks/images/block_div.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/open311-simple-crm/c44a719ae39d75550bf9e812197edb9c1e4d7711/assets/grocery_crud/texteditor/ckeditor/plugins/showblocks/images/block_div.png -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/showblocks/images/block_h1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/open311-simple-crm/c44a719ae39d75550bf9e812197edb9c1e4d7711/assets/grocery_crud/texteditor/ckeditor/plugins/showblocks/images/block_h1.png -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/showblocks/images/block_h2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/open311-simple-crm/c44a719ae39d75550bf9e812197edb9c1e4d7711/assets/grocery_crud/texteditor/ckeditor/plugins/showblocks/images/block_h2.png -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/showblocks/images/block_h3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/open311-simple-crm/c44a719ae39d75550bf9e812197edb9c1e4d7711/assets/grocery_crud/texteditor/ckeditor/plugins/showblocks/images/block_h3.png -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/showblocks/images/block_h4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/open311-simple-crm/c44a719ae39d75550bf9e812197edb9c1e4d7711/assets/grocery_crud/texteditor/ckeditor/plugins/showblocks/images/block_h4.png -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/showblocks/images/block_h5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/open311-simple-crm/c44a719ae39d75550bf9e812197edb9c1e4d7711/assets/grocery_crud/texteditor/ckeditor/plugins/showblocks/images/block_h5.png -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/showblocks/images/block_h6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/open311-simple-crm/c44a719ae39d75550bf9e812197edb9c1e4d7711/assets/grocery_crud/texteditor/ckeditor/plugins/showblocks/images/block_h6.png -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/showblocks/images/block_p.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/open311-simple-crm/c44a719ae39d75550bf9e812197edb9c1e4d7711/assets/grocery_crud/texteditor/ckeditor/plugins/showblocks/images/block_p.png -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/showblocks/images/block_pre.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/open311-simple-crm/c44a719ae39d75550bf9e812197edb9c1e4d7711/assets/grocery_crud/texteditor/ckeditor/plugins/showblocks/images/block_pre.png -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/smiley/images/angel_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/open311-simple-crm/c44a719ae39d75550bf9e812197edb9c1e4d7711/assets/grocery_crud/texteditor/ckeditor/plugins/smiley/images/angel_smile.gif -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/smiley/images/angry_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/open311-simple-crm/c44a719ae39d75550bf9e812197edb9c1e4d7711/assets/grocery_crud/texteditor/ckeditor/plugins/smiley/images/angry_smile.gif -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/smiley/images/broken_heart.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/open311-simple-crm/c44a719ae39d75550bf9e812197edb9c1e4d7711/assets/grocery_crud/texteditor/ckeditor/plugins/smiley/images/broken_heart.gif -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/smiley/images/confused_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/open311-simple-crm/c44a719ae39d75550bf9e812197edb9c1e4d7711/assets/grocery_crud/texteditor/ckeditor/plugins/smiley/images/confused_smile.gif -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/smiley/images/cry_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/open311-simple-crm/c44a719ae39d75550bf9e812197edb9c1e4d7711/assets/grocery_crud/texteditor/ckeditor/plugins/smiley/images/cry_smile.gif -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/smiley/images/devil_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/open311-simple-crm/c44a719ae39d75550bf9e812197edb9c1e4d7711/assets/grocery_crud/texteditor/ckeditor/plugins/smiley/images/devil_smile.gif -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/smiley/images/embaressed_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/open311-simple-crm/c44a719ae39d75550bf9e812197edb9c1e4d7711/assets/grocery_crud/texteditor/ckeditor/plugins/smiley/images/embaressed_smile.gif -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/smiley/images/envelope.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/open311-simple-crm/c44a719ae39d75550bf9e812197edb9c1e4d7711/assets/grocery_crud/texteditor/ckeditor/plugins/smiley/images/envelope.gif -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/smiley/images/heart.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/open311-simple-crm/c44a719ae39d75550bf9e812197edb9c1e4d7711/assets/grocery_crud/texteditor/ckeditor/plugins/smiley/images/heart.gif -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/smiley/images/kiss.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/open311-simple-crm/c44a719ae39d75550bf9e812197edb9c1e4d7711/assets/grocery_crud/texteditor/ckeditor/plugins/smiley/images/kiss.gif -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/smiley/images/lightbulb.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/open311-simple-crm/c44a719ae39d75550bf9e812197edb9c1e4d7711/assets/grocery_crud/texteditor/ckeditor/plugins/smiley/images/lightbulb.gif -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/smiley/images/omg_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/open311-simple-crm/c44a719ae39d75550bf9e812197edb9c1e4d7711/assets/grocery_crud/texteditor/ckeditor/plugins/smiley/images/omg_smile.gif -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/smiley/images/regular_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/open311-simple-crm/c44a719ae39d75550bf9e812197edb9c1e4d7711/assets/grocery_crud/texteditor/ckeditor/plugins/smiley/images/regular_smile.gif -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/smiley/images/sad_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/open311-simple-crm/c44a719ae39d75550bf9e812197edb9c1e4d7711/assets/grocery_crud/texteditor/ckeditor/plugins/smiley/images/sad_smile.gif -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/smiley/images/shades_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/open311-simple-crm/c44a719ae39d75550bf9e812197edb9c1e4d7711/assets/grocery_crud/texteditor/ckeditor/plugins/smiley/images/shades_smile.gif -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/smiley/images/teeth_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/open311-simple-crm/c44a719ae39d75550bf9e812197edb9c1e4d7711/assets/grocery_crud/texteditor/ckeditor/plugins/smiley/images/teeth_smile.gif -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/smiley/images/thumbs_down.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/open311-simple-crm/c44a719ae39d75550bf9e812197edb9c1e4d7711/assets/grocery_crud/texteditor/ckeditor/plugins/smiley/images/thumbs_down.gif -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/smiley/images/thumbs_up.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/open311-simple-crm/c44a719ae39d75550bf9e812197edb9c1e4d7711/assets/grocery_crud/texteditor/ckeditor/plugins/smiley/images/thumbs_up.gif -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/smiley/images/tounge_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/open311-simple-crm/c44a719ae39d75550bf9e812197edb9c1e4d7711/assets/grocery_crud/texteditor/ckeditor/plugins/smiley/images/tounge_smile.gif -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/smiley/images/whatchutalkingabout_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/open311-simple-crm/c44a719ae39d75550bf9e812197edb9c1e4d7711/assets/grocery_crud/texteditor/ckeditor/plugins/smiley/images/whatchutalkingabout_smile.gif -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/smiley/images/wink_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/open311-simple-crm/c44a719ae39d75550bf9e812197edb9c1e4d7711/assets/grocery_crud/texteditor/ckeditor/plugins/smiley/images/wink_smile.gif -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/templates/templates/images/template1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/open311-simple-crm/c44a719ae39d75550bf9e812197edb9c1e4d7711/assets/grocery_crud/texteditor/ckeditor/plugins/templates/templates/images/template1.gif -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/templates/templates/images/template2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/open311-simple-crm/c44a719ae39d75550bf9e812197edb9c1e4d7711/assets/grocery_crud/texteditor/ckeditor/plugins/templates/templates/images/template2.gif -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/templates/templates/images/template3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/open311-simple-crm/c44a719ae39d75550bf9e812197edb9c1e4d7711/assets/grocery_crud/texteditor/ckeditor/plugins/templates/templates/images/template3.gif -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/uicolor/lang/bg.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang('uicolor','bg',{uicolor:{title:'ПИ избор на цвят',preview:'Преглед',config:'Вмъкнете този низ във Вашия config.js fajl',predefined:'Предефинирани цветови палитри'}}); 7 | -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/uicolor/lang/cs.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang('uicolor','cs',{uicolor:{title:'Výběr barvy rozhraní',preview:'Živý náhled',config:'Vložte tento řetězec do Vašeho souboru config.js',predefined:'Přednastavené sady barev'}}); 7 | -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/uicolor/lang/cy.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang('uicolor','cy',{uicolor:{title:"Dewisydd Lliwiau'r UI",preview:'Rhagolwg Byw',config:"Gludwch y llinyn hwn i'ch ffeil config.js",predefined:"Setiau lliw wedi'u cyn-ddiffinio"}}); 7 | -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/uicolor/lang/da.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang('uicolor','da',{uicolor:{title:'Brugerflade på farvevælger',preview:'Vis liveeksempel',config:'Indsæt denne streng i din config.js fil',predefined:'Prædefinerede farveskemaer'}}); 7 | -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/uicolor/lang/de.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang('uicolor','de',{uicolor:{title:'UI Pipette',preview:'Live-Vorschau',config:"Fügen Sie diese Zeichenfolge in die 'config.js' Datei.",predefined:'Vordefinierte Farbsätze'}}); 7 | -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/uicolor/lang/el.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang('uicolor','el',{uicolor:{title:'Διεπαφή Επιλογέα Χρωμάτων',preview:'Ζωντανή Προεπισκόπηση',config:'Επικολλήστε αυτό το κείμενο στο αρχείο config.js',predefined:'Προκαθορισμένα σύνολα χρωμάτων'}}); 7 | -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/uicolor/lang/en.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang('uicolor','en',{uicolor:{title:'UI Color Picker',preview:'Live preview',config:'Paste this string into your config.js file',predefined:'Predefined color sets'}}); 7 | -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/uicolor/lang/eo.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang('uicolor','eo',{uicolor:{title:'UI Kolorselektilo',preview:'Vidigi la aspekton',config:'Gluu tiun signoĉenon en vian dosieron config.js',predefined:'Antaŭdifinita koloraro'}}); 7 | -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/uicolor/lang/et.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang('uicolor','et',{uicolor:{title:'Värvivalija kasutajaliides',preview:'Automaatne eelvaade',config:'Aseta see sõne oma config.js faili.',predefined:'Eelmääratud värvikomplektid'}}); 7 | -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/uicolor/lang/fa.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | /* 7 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 8 | For licensing, see LICENSE.html or http://ckeditor.com/license 9 | */ 10 | 11 | CKEDITOR.plugins.setLang( 'uicolor', 'fa', 12 | { 13 | uicolor : 14 | { 15 | title : 'انتخاب رنگ UI', 16 | preview : 'پیشنمایش زنده', 17 | config : 'این رشته را در فایل config.js خود بچسبانید.', 18 | predefined : 'مجموعه رنگ از پیش تعریف شده' 19 | } 20 | }); 21 | -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/uicolor/lang/fi.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang('uicolor','fi',{uicolor:{title:'Käyttöliittymän värivalitsin',preview:'Esikatsele',config:'Liitä tämä merkkijono config.js tiedostoosi',predefined:'Esimääritellyt värijoukot'}}); 7 | -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/uicolor/lang/fr.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang('uicolor','fr',{uicolor:{title:'UI Sélecteur de couleur',preview:'Aperçu',config:'Collez cette chaîne de caractères dans votre fichier config.js',predefined:'Palettes de couleurs prédéfinies'}}); 7 | -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/uicolor/lang/he.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang('uicolor','he',{uicolor:{title:'בחירת צבע ממשק משתמש',preview:'תצוגה מקדימה',config:'הדבק את הטקסט הבא לתוך הקובץ config.js',predefined:'קבוצות צבעים מוגדרות מראש'}}); 7 | -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/uicolor/lang/hr.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang('uicolor','hr',{uicolor:{title:'UI odabir boja',preview:'Pregled uživo',config:'Zalijepite ovaj tekst u Vašu config.js datoteku.',predefined:'Već postavljeni setovi boja'}}); 7 | -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/uicolor/lang/it.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang('uicolor','it',{uicolor:{title:'Selettore Colore UI',preview:'Anteprima Live',config:'Incolla questa stringa nel tuo file config.js',predefined:'Set di colori predefiniti'}}); 7 | -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/uicolor/lang/mk.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang('uicolor','mk',{uicolor:{title:'Палета со бои',preview:'Преглед',config:'Залепи го овој текст во config.js датотеката',predefined:'Предефинирани множества на бои'}}); 7 | -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/uicolor/lang/nb.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang('uicolor','nb',{uicolor:{title:'Fargevelger for brukergrensesnitt',preview:'Forhåndsvisning i sanntid',config:'Lim inn følgende tekst i din config.js-fil',predefined:'Forhåndsdefinerte fargesett'}}); 7 | -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/uicolor/lang/nl.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang('uicolor','nl',{uicolor:{title:'UI Kleurenkiezer',preview:'Live voorbeeld',config:'Plak deze tekst in jouw config.js bestand',predefined:'Voorgedefinieerde kleurensets'}}); 7 | -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/uicolor/lang/no.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang('uicolor','no',{uicolor:{title:'Fargevelger for brukergrensesnitt',preview:'Forhåndsvisning i sanntid',config:'Lim inn følgende tekst i din config.js-fil',predefined:'Forhåndsdefinerte fargesett'}}); 7 | -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/uicolor/lang/pl.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang('uicolor','pl',{uicolor:{title:'Wybór koloru interfejsu',preview:'Podgląd na żywo',config:'Wklej poniższy łańcuch znaków do pliku config.js:',predefined:'Predefiniowane zestawy kolorów'}}); 7 | -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/uicolor/lang/pt-br.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang('uicolor','pt-br',{uicolor:{title:'Paleta de Cores',preview:'Visualização ao vivo',config:'Cole o texto no seu arquivo config.js',predefined:'Conjuntos de cores predefinidos'}}); 7 | -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/uicolor/lang/sk.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang('uicolor','sk',{uicolor:{title:'UI výber farby',preview:'Živý náhľad',config:'Vložte tento reťazec do vášho config.js súboru',predefined:'Preddefinované sady farieb'}}); 7 | -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/uicolor/lang/tr.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang('uicolor','tr',{uicolor:{title:'UI Renk Seçicisi',preview:'Canlı önizleme',config:'Bu dizeyi config.js dosyasının içine yapıştırın',predefined:'Önceden tanımlanmış renk kümeleri'}}); 7 | -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/uicolor/lang/ug.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang('uicolor','ug',{uicolor:{title:'ئىشلەتكۈچى ئارايۈزى رەڭ تاللىغۇچ',preview:'شۇئان ئالدىن كۆزىتىش',config:'بۇ ھەرپ تىزىقىنى config.js ھۆججەتكە چاپلايدۇ',predefined:'ئالدىن بەلگىلەنگەن رەڭلەر'}}); 7 | -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/uicolor/lang/uk.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang('uicolor','uk',{uicolor:{title:'Color Picker Інтерфейс',preview:'Перегляд наживо',config:'Вставте цей рядок у файл config.js',predefined:'Стандартний набір кольорів'}}); 7 | -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/uicolor/lang/vi.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang('uicolor','vi',{uicolor:{title:'Giao diện người dùng Color Picker',preview:'Xem trước trực tiếp',config:'Dán chuỗi này vào tập tin config.js của bạn',predefined:'Tập màu định nghĩa sẵn'}}); 7 | -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/uicolor/lang/zh-cn.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang('uicolor','zh-cn',{uicolor:{title:'用户界面颜色选择器',preview:'即时预览',config:'粘贴此字符串到您的 config.js 文件',predefined:'预定义颜色集'}}); 7 | -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/uicolor/uicolor.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/open311-simple-crm/c44a719ae39d75550bf9e812197edb9c1e4d7711/assets/grocery_crud/texteditor/ckeditor/plugins/uicolor/uicolor.gif -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/uicolor/yui/assets/hue_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/open311-simple-crm/c44a719ae39d75550bf9e812197edb9c1e4d7711/assets/grocery_crud/texteditor/ckeditor/plugins/uicolor/yui/assets/hue_bg.png -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/uicolor/yui/assets/hue_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/open311-simple-crm/c44a719ae39d75550bf9e812197edb9c1e4d7711/assets/grocery_crud/texteditor/ckeditor/plugins/uicolor/yui/assets/hue_thumb.png -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/uicolor/yui/assets/picker_mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/open311-simple-crm/c44a719ae39d75550bf9e812197edb9c1e4d7711/assets/grocery_crud/texteditor/ckeditor/plugins/uicolor/yui/assets/picker_mask.png -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/plugins/uicolor/yui/assets/picker_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/open311-simple-crm/c44a719ae39d75550bf9e812197edb9c1e4d7711/assets/grocery_crud/texteditor/ckeditor/plugins/uicolor/yui/assets/picker_thumb.png -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/skins/kama/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/open311-simple-crm/c44a719ae39d75550bf9e812197edb9c1e4d7711/assets/grocery_crud/texteditor/ckeditor/skins/kama/icons.png -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/skins/kama/icons_rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/open311-simple-crm/c44a719ae39d75550bf9e812197edb9c1e4d7711/assets/grocery_crud/texteditor/ckeditor/skins/kama/icons_rtl.png -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/skins/kama/images/dialog_sides.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/open311-simple-crm/c44a719ae39d75550bf9e812197edb9c1e4d7711/assets/grocery_crud/texteditor/ckeditor/skins/kama/images/dialog_sides.gif -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/skins/kama/images/dialog_sides.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/open311-simple-crm/c44a719ae39d75550bf9e812197edb9c1e4d7711/assets/grocery_crud/texteditor/ckeditor/skins/kama/images/dialog_sides.png -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/skins/kama/images/dialog_sides_rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/open311-simple-crm/c44a719ae39d75550bf9e812197edb9c1e4d7711/assets/grocery_crud/texteditor/ckeditor/skins/kama/images/dialog_sides_rtl.png -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/skins/kama/images/mini.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/open311-simple-crm/c44a719ae39d75550bf9e812197edb9c1e4d7711/assets/grocery_crud/texteditor/ckeditor/skins/kama/images/mini.gif -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/skins/kama/images/noimage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/open311-simple-crm/c44a719ae39d75550bf9e812197edb9c1e4d7711/assets/grocery_crud/texteditor/ckeditor/skins/kama/images/noimage.png -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/skins/kama/images/sprites.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/open311-simple-crm/c44a719ae39d75550bf9e812197edb9c1e4d7711/assets/grocery_crud/texteditor/ckeditor/skins/kama/images/sprites.png -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/skins/kama/images/sprites_ie6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/open311-simple-crm/c44a719ae39d75550bf9e812197edb9c1e4d7711/assets/grocery_crud/texteditor/ckeditor/skins/kama/images/sprites_ie6.png -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/ckeditor/skins/kama/images/toolbar_start.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/open311-simple-crm/c44a719ae39d75550bf9e812197edb9c1e4d7711/assets/grocery_crud/texteditor/ckeditor/skins/kama/images/toolbar_start.gif -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/markitup/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |Directory access is forbidden.
8 | 9 | 10 | -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/markitup/sets/default/images/bold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/open311-simple-crm/c44a719ae39d75550bf9e812197edb9c1e4d7711/assets/grocery_crud/texteditor/markitup/sets/default/images/bold.png -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/markitup/sets/default/images/clean.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/open311-simple-crm/c44a719ae39d75550bf9e812197edb9c1e4d7711/assets/grocery_crud/texteditor/markitup/sets/default/images/clean.png -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/markitup/sets/default/images/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/open311-simple-crm/c44a719ae39d75550bf9e812197edb9c1e4d7711/assets/grocery_crud/texteditor/markitup/sets/default/images/image.png -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/markitup/sets/default/images/italic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/open311-simple-crm/c44a719ae39d75550bf9e812197edb9c1e4d7711/assets/grocery_crud/texteditor/markitup/sets/default/images/italic.png -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/markitup/sets/default/images/link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/open311-simple-crm/c44a719ae39d75550bf9e812197edb9c1e4d7711/assets/grocery_crud/texteditor/markitup/sets/default/images/link.png -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/markitup/sets/default/images/list-bullet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/open311-simple-crm/c44a719ae39d75550bf9e812197edb9c1e4d7711/assets/grocery_crud/texteditor/markitup/sets/default/images/list-bullet.png -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/markitup/sets/default/images/list-numeric.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/open311-simple-crm/c44a719ae39d75550bf9e812197edb9c1e4d7711/assets/grocery_crud/texteditor/markitup/sets/default/images/list-numeric.png -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/markitup/sets/default/images/picture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/open311-simple-crm/c44a719ae39d75550bf9e812197edb9c1e4d7711/assets/grocery_crud/texteditor/markitup/sets/default/images/picture.png -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/markitup/sets/default/images/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/open311-simple-crm/c44a719ae39d75550bf9e812197edb9c1e4d7711/assets/grocery_crud/texteditor/markitup/sets/default/images/preview.png -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/markitup/sets/default/images/stroke.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/open311-simple-crm/c44a719ae39d75550bf9e812197edb9c1e4d7711/assets/grocery_crud/texteditor/markitup/sets/default/images/stroke.png -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/markitup/skins/markitup/images/bg-container.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/open311-simple-crm/c44a719ae39d75550bf9e812197edb9c1e4d7711/assets/grocery_crud/texteditor/markitup/skins/markitup/images/bg-container.png -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/markitup/skins/markitup/images/bg-editor-bbcode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/open311-simple-crm/c44a719ae39d75550bf9e812197edb9c1e4d7711/assets/grocery_crud/texteditor/markitup/skins/markitup/images/bg-editor-bbcode.png -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/markitup/skins/markitup/images/bg-editor-dotclear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/open311-simple-crm/c44a719ae39d75550bf9e812197edb9c1e4d7711/assets/grocery_crud/texteditor/markitup/skins/markitup/images/bg-editor-dotclear.png -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/markitup/skins/markitup/images/bg-editor-html.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/open311-simple-crm/c44a719ae39d75550bf9e812197edb9c1e4d7711/assets/grocery_crud/texteditor/markitup/skins/markitup/images/bg-editor-html.png -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/markitup/skins/markitup/images/bg-editor-json.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/open311-simple-crm/c44a719ae39d75550bf9e812197edb9c1e4d7711/assets/grocery_crud/texteditor/markitup/skins/markitup/images/bg-editor-json.png -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/markitup/skins/markitup/images/bg-editor-markdown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/open311-simple-crm/c44a719ae39d75550bf9e812197edb9c1e4d7711/assets/grocery_crud/texteditor/markitup/skins/markitup/images/bg-editor-markdown.png -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/markitup/skins/markitup/images/bg-editor-textile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/open311-simple-crm/c44a719ae39d75550bf9e812197edb9c1e4d7711/assets/grocery_crud/texteditor/markitup/skins/markitup/images/bg-editor-textile.png -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/markitup/skins/markitup/images/bg-editor-wiki.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/open311-simple-crm/c44a719ae39d75550bf9e812197edb9c1e4d7711/assets/grocery_crud/texteditor/markitup/skins/markitup/images/bg-editor-wiki.png -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/markitup/skins/markitup/images/bg-editor-xml.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/open311-simple-crm/c44a719ae39d75550bf9e812197edb9c1e4d7711/assets/grocery_crud/texteditor/markitup/skins/markitup/images/bg-editor-xml.png -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/markitup/skins/markitup/images/bg-editor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/open311-simple-crm/c44a719ae39d75550bf9e812197edb9c1e4d7711/assets/grocery_crud/texteditor/markitup/skins/markitup/images/bg-editor.png -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/markitup/skins/markitup/images/handle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/open311-simple-crm/c44a719ae39d75550bf9e812197edb9c1e4d7711/assets/grocery_crud/texteditor/markitup/skins/markitup/images/handle.png -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/markitup/skins/markitup/images/menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/open311-simple-crm/c44a719ae39d75550bf9e812197edb9c1e4d7711/assets/grocery_crud/texteditor/markitup/skins/markitup/images/menu.png -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/markitup/skins/markitup/images/submenu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/open311-simple-crm/c44a719ae39d75550bf9e812197edb9c1e4d7711/assets/grocery_crud/texteditor/markitup/skins/markitup/images/submenu.png -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/markitup/skins/simple/images/handle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/open311-simple-crm/c44a719ae39d75550bf9e812197edb9c1e4d7711/assets/grocery_crud/texteditor/markitup/skins/simple/images/handle.png -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/markitup/skins/simple/images/menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/open311-simple-crm/c44a719ae39d75550bf9e812197edb9c1e4d7711/assets/grocery_crud/texteditor/markitup/skins/simple/images/menu.png -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/markitup/skins/simple/images/submenu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/open311-simple-crm/c44a719ae39d75550bf9e812197edb9c1e4d7711/assets/grocery_crud/texteditor/markitup/skins/simple/images/submenu.png -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/tiny_mce/plugins/advhr/css/advhr.css: -------------------------------------------------------------------------------- 1 | input.radio {border:1px none #000; background:transparent; vertical-align:middle;} 2 | .panel_wrapper div.current {height:80px;} 3 | #width {width:50px; vertical-align:middle;} 4 | #width2 {width:50px; vertical-align:middle;} 5 | #size {width:100px;} 6 | -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/tiny_mce/plugins/advhr/langs/en_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('en.advhr_dlg',{size:"Height",noshade:"No Shadow",width:"Width",normal:"Normal",widthunits:"Units"}); -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/tiny_mce/plugins/advimage/img/sample.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/open311-simple-crm/c44a719ae39d75550bf9e812197edb9c1e4d7711/assets/grocery_crud/texteditor/tiny_mce/plugins/advimage/img/sample.gif -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/tiny_mce/plugins/advlink/css/advlink.css: -------------------------------------------------------------------------------- 1 | .mceLinkList, .mceAnchorList, #targetlist {width:280px;} 2 | .mceActionPanel {margin-top:7px;} 3 | .panel_wrapper div.current {height:320px;} 4 | #classlist, #title, #href {width:280px;} 5 | #popupurl, #popupname {width:200px;} 6 | #popupwidth, #popupheight, #popupleft, #popuptop {width:30px;vertical-align:middle;text-align:center;} 7 | #id, #style, #classes, #target, #dir, #hreflang, #lang, #charset, #type, #rel, #rev, #tabindex, #accesskey {width:200px;} 8 | #events_panel input {width:200px;} 9 | -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/tiny_mce/plugins/autosave/langs/en.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('en.autosave',{ 2 | restore_content: "Restore auto-saved content", 3 | warning_message: "If you restore the saved content, you will lose all the content that is currently in the editor.\n\nAre you sure you want to restore the saved content?" 4 | }); -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/tiny_mce/plugins/emotions/img/smiley-cool.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/open311-simple-crm/c44a719ae39d75550bf9e812197edb9c1e4d7711/assets/grocery_crud/texteditor/tiny_mce/plugins/emotions/img/smiley-cool.gif -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/tiny_mce/plugins/emotions/img/smiley-cry.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/open311-simple-crm/c44a719ae39d75550bf9e812197edb9c1e4d7711/assets/grocery_crud/texteditor/tiny_mce/plugins/emotions/img/smiley-cry.gif -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/tiny_mce/plugins/emotions/img/smiley-embarassed.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/open311-simple-crm/c44a719ae39d75550bf9e812197edb9c1e4d7711/assets/grocery_crud/texteditor/tiny_mce/plugins/emotions/img/smiley-embarassed.gif -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/tiny_mce/plugins/emotions/img/smiley-foot-in-mouth.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/open311-simple-crm/c44a719ae39d75550bf9e812197edb9c1e4d7711/assets/grocery_crud/texteditor/tiny_mce/plugins/emotions/img/smiley-foot-in-mouth.gif -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/tiny_mce/plugins/emotions/img/smiley-frown.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/open311-simple-crm/c44a719ae39d75550bf9e812197edb9c1e4d7711/assets/grocery_crud/texteditor/tiny_mce/plugins/emotions/img/smiley-frown.gif -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/tiny_mce/plugins/emotions/img/smiley-innocent.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/open311-simple-crm/c44a719ae39d75550bf9e812197edb9c1e4d7711/assets/grocery_crud/texteditor/tiny_mce/plugins/emotions/img/smiley-innocent.gif -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/tiny_mce/plugins/emotions/img/smiley-kiss.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/open311-simple-crm/c44a719ae39d75550bf9e812197edb9c1e4d7711/assets/grocery_crud/texteditor/tiny_mce/plugins/emotions/img/smiley-kiss.gif -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/tiny_mce/plugins/emotions/img/smiley-laughing.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/open311-simple-crm/c44a719ae39d75550bf9e812197edb9c1e4d7711/assets/grocery_crud/texteditor/tiny_mce/plugins/emotions/img/smiley-laughing.gif -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/tiny_mce/plugins/emotions/img/smiley-money-mouth.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/open311-simple-crm/c44a719ae39d75550bf9e812197edb9c1e4d7711/assets/grocery_crud/texteditor/tiny_mce/plugins/emotions/img/smiley-money-mouth.gif -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/tiny_mce/plugins/emotions/img/smiley-sealed.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/open311-simple-crm/c44a719ae39d75550bf9e812197edb9c1e4d7711/assets/grocery_crud/texteditor/tiny_mce/plugins/emotions/img/smiley-sealed.gif -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/tiny_mce/plugins/emotions/img/smiley-smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/open311-simple-crm/c44a719ae39d75550bf9e812197edb9c1e4d7711/assets/grocery_crud/texteditor/tiny_mce/plugins/emotions/img/smiley-smile.gif -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/tiny_mce/plugins/emotions/img/smiley-surprised.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/open311-simple-crm/c44a719ae39d75550bf9e812197edb9c1e4d7711/assets/grocery_crud/texteditor/tiny_mce/plugins/emotions/img/smiley-surprised.gif -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/tiny_mce/plugins/emotions/img/smiley-tongue-out.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/open311-simple-crm/c44a719ae39d75550bf9e812197edb9c1e4d7711/assets/grocery_crud/texteditor/tiny_mce/plugins/emotions/img/smiley-tongue-out.gif -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/tiny_mce/plugins/emotions/img/smiley-undecided.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/open311-simple-crm/c44a719ae39d75550bf9e812197edb9c1e4d7711/assets/grocery_crud/texteditor/tiny_mce/plugins/emotions/img/smiley-undecided.gif -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/tiny_mce/plugins/emotions/img/smiley-wink.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/open311-simple-crm/c44a719ae39d75550bf9e812197edb9c1e4d7711/assets/grocery_crud/texteditor/tiny_mce/plugins/emotions/img/smiley-wink.gif -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/tiny_mce/plugins/emotions/img/smiley-yell.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/open311-simple-crm/c44a719ae39d75550bf9e812197edb9c1e4d7711/assets/grocery_crud/texteditor/tiny_mce/plugins/emotions/img/smiley-yell.gif -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/tiny_mce/plugins/emotions/langs/en_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('en.emotions_dlg',{cry:"Cry",cool:"Cool",desc:"Emotions",title:"Insert Emotion",usage:"Use left and right arrows to navigate.",yell:"Yell",wink:"Wink",undecided:"Undecided","tongue_out":"Tongue Out",surprised:"Surprised",smile:"Smile",sealed:"Sealed","money_mouth":"Money Mouth",laughing:"Laughing",kiss:"Kiss",innocent:"Innocent",frown:"Frown","foot_in_mouth":"Foot in Mouth",embarassed:"Embarassed"}); 2 | -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/tiny_mce/plugins/example/img/example.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/open311-simple-crm/c44a719ae39d75550bf9e812197edb9c1e4d7711/assets/grocery_crud/texteditor/tiny_mce/plugins/example/img/example.gif -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/tiny_mce/plugins/example/langs/en.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('en.example',{ 2 | desc : 'This is just a template button' 3 | }); 4 | -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/tiny_mce/plugins/example/langs/en_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('en.example_dlg',{ 2 | title : 'This is just a example title' 3 | }); 4 | -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/tiny_mce/plugins/example_dependency/editor_plugin.js: -------------------------------------------------------------------------------- 1 | (function(){tinymce.create("tinymce.plugins.ExampleDependencyPlugin",{init:function(a,b){},getInfo:function(){return{longname:"Example Dependency plugin",author:"Some author",authorurl:"http://tinymce.moxiecode.com",infourl:"http://wiki.moxiecode.com/index.php/TinyMCE:Plugins/example_dependency",version:"1.0"}}});tinymce.PluginManager.add("example_dependency",tinymce.plugins.ExampleDependencyPlugin,["example"])})(); -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/alert.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/open311-simple-crm/c44a719ae39d75550bf9e812197edb9c1e4d7711/assets/grocery_crud/texteditor/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/alert.gif -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/button.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/open311-simple-crm/c44a719ae39d75550bf9e812197edb9c1e4d7711/assets/grocery_crud/texteditor/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/button.gif -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/buttons.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/open311-simple-crm/c44a719ae39d75550bf9e812197edb9c1e4d7711/assets/grocery_crud/texteditor/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/buttons.gif -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/confirm.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/open311-simple-crm/c44a719ae39d75550bf9e812197edb9c1e4d7711/assets/grocery_crud/texteditor/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/confirm.gif -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/corners.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/open311-simple-crm/c44a719ae39d75550bf9e812197edb9c1e4d7711/assets/grocery_crud/texteditor/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/corners.gif -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/horizontal.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/open311-simple-crm/c44a719ae39d75550bf9e812197edb9c1e4d7711/assets/grocery_crud/texteditor/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/horizontal.gif -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/vertical.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/open311-simple-crm/c44a719ae39d75550bf9e812197edb9c1e4d7711/assets/grocery_crud/texteditor/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/vertical.gif -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/tiny_mce/plugins/media/moxieplayer.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/open311-simple-crm/c44a719ae39d75550bf9e812197edb9c1e4d7711/assets/grocery_crud/texteditor/tiny_mce/plugins/media/moxieplayer.swf -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/tiny_mce/plugins/paste/langs/en_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('en.paste_dlg',{"word_title":"Use Ctrl+V on your keyboard to paste the text into the window.","text_linebreaks":"Keep Linebreaks","text_title":"Use Ctrl+V on your keyboard to paste the text into the window."}); -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/tiny_mce/plugins/print/editor_plugin.js: -------------------------------------------------------------------------------- 1 | (function(){tinymce.create("tinymce.plugins.Print",{init:function(a,b){a.addCommand("mcePrint",function(){a.getWin().print()});a.addButton("print",{title:"print.print_desc",cmd:"mcePrint"})},getInfo:function(){return{longname:"Print",author:"Moxiecode Systems AB",authorurl:"http://tinymce.moxiecode.com",infourl:"http://wiki.moxiecode.com/index.php/TinyMCE:Plugins/print",version:tinymce.majorVersion+"."+tinymce.minorVersion}}});tinymce.PluginManager.add("print",tinymce.plugins.Print)})(); -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/tiny_mce/plugins/searchreplace/css/searchreplace.css: -------------------------------------------------------------------------------- 1 | .panel_wrapper {height:85px;} 2 | .panel_wrapper div.current {height:85px;} 3 | 4 | /* IE */ 5 | * html .panel_wrapper {height:100px;} 6 | * html .panel_wrapper div.current {height:100px;} 7 | -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/tiny_mce/plugins/searchreplace/langs/en_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('en.searchreplace_dlg',{findwhat:"Find What",replacewith:"Replace with",direction:"Direction",up:"Up",down:"Down",mcase:"Match Case",findnext:"Find Next",allreplaced:"All occurrences of the search string were replaced.","searchnext_desc":"Find Again",notfound:"The search has been completed. The search string could not be found.","search_title":"Find","replace_title":"Find/Replace",replaceall:"Replace All",replace:"Replace"}); -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/tiny_mce/plugins/spellchecker/css/content.css: -------------------------------------------------------------------------------- 1 | .mceItemHiddenSpellWord {background:url(../img/wline.gif) repeat-x bottom left; cursor:default;} 2 | -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/tiny_mce/plugins/spellchecker/editor_plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/open311-simple-crm/c44a719ae39d75550bf9e812197edb9c1e4d7711/assets/grocery_crud/texteditor/tiny_mce/plugins/spellchecker/editor_plugin.js -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/tiny_mce/plugins/spellchecker/editor_plugin_src.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/open311-simple-crm/c44a719ae39d75550bf9e812197edb9c1e4d7711/assets/grocery_crud/texteditor/tiny_mce/plugins/spellchecker/editor_plugin_src.js -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/tiny_mce/plugins/spellchecker/img/wline.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/open311-simple-crm/c44a719ae39d75550bf9e812197edb9c1e4d7711/assets/grocery_crud/texteditor/tiny_mce/plugins/spellchecker/img/wline.gif -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/tiny_mce/plugins/table/css/cell.css: -------------------------------------------------------------------------------- 1 | /* CSS file for cell dialog in the table plugin */ 2 | 3 | .panel_wrapper div.current { 4 | height: 200px; 5 | } 6 | 7 | .advfield { 8 | width: 200px; 9 | } 10 | 11 | #action { 12 | margin-bottom: 3px; 13 | } 14 | 15 | #class { 16 | width: 150px; 17 | } -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/tiny_mce/plugins/table/css/row.css: -------------------------------------------------------------------------------- 1 | /* CSS file for row dialog in the table plugin */ 2 | 3 | .panel_wrapper div.current { 4 | height: 200px; 5 | } 6 | 7 | .advfield { 8 | width: 200px; 9 | } 10 | 11 | #action { 12 | margin-bottom: 3px; 13 | } 14 | 15 | #rowtype,#align,#valign,#class,#height { 16 | width: 150px; 17 | } 18 | 19 | #height { 20 | width: 50px; 21 | } 22 | 23 | .col2 { 24 | padding-left: 20px; 25 | } 26 | -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/tiny_mce/plugins/table/css/table.css: -------------------------------------------------------------------------------- 1 | /* CSS file for table dialog in the table plugin */ 2 | 3 | .panel_wrapper div.current { 4 | height: 245px; 5 | } 6 | 7 | .advfield { 8 | width: 200px; 9 | } 10 | 11 | #class { 12 | width: 150px; 13 | } 14 | -------------------------------------------------------------------------------- /assets/grocery_crud/texteditor/tiny_mce/plugins/template/blank.htm: -------------------------------------------------------------------------------- 1 | 2 | 3 |Directory access is forbidden.
8 | 9 | 10 |