├── .gitmodules ├── README.md ├── _docs └── readme.txt ├── _www ├── .htaccess ├── index.php ├── index_lite.php ├── phpinfo.php └── readme.txt ├── classes └── menu.class.php ├── includes ├── defaultconfig.php ├── install.php ├── jojo.php └── setup.php ├── license.txt ├── plugins ├── jojo_article │ ├── api.php │ ├── description.txt │ ├── global.php │ ├── includes │ │ └── maintenance.php │ ├── install │ │ ├── indexes_article.php │ │ ├── indexes_articlecategory.php │ │ ├── install_article.php │ │ ├── update_article.inc.php │ │ └── update_articlecategory.php │ ├── jojo_article.php │ ├── license.txt │ ├── readme.txt │ ├── setup.php │ ├── templates │ │ ├── customhead.tpl │ │ ├── jojo_article.tpl │ │ └── jojo_article_index.tpl │ ├── uninstall.php │ └── version.txt ├── jojo_bbcode │ ├── api.php │ ├── css │ │ └── style.css │ ├── description.txt │ ├── images │ │ └── cms │ │ │ ├── icons │ │ │ ├── comment.png │ │ │ ├── link.png │ │ │ ├── link_error.png │ │ │ ├── readme.txt │ │ │ ├── tag.png │ │ │ ├── text_align_left.png │ │ │ ├── text_bold.png │ │ │ ├── text_heading_2.png │ │ │ ├── text_heading_3.png │ │ │ ├── text_heading_4.png │ │ │ ├── text_italic.png │ │ │ ├── text_list_bullets.png │ │ │ ├── text_list_numbers.png │ │ │ └── text_underline.png │ │ │ └── shadow.png │ ├── license.txt │ ├── readme.txt │ └── version.txt ├── jojo_bing_verification │ ├── api.php │ ├── description.txt │ ├── jojo_bing_verification.php │ ├── license.txt │ ├── readme.txt │ ├── setup.php │ ├── uninstall.php │ └── version.txt ├── jojo_comment │ ├── actions │ │ └── jojo_edit_comment.php │ ├── api.php │ ├── classes │ │ └── Jojo │ │ │ └── Plugin │ │ │ └── Jojo │ │ │ └── Comment.php │ ├── description.txt │ ├── images │ │ ├── blog_comment_icon.gif │ │ ├── cms │ │ │ └── icons │ │ │ │ ├── comment_delete.png │ │ │ │ ├── comment_edit.png │ │ │ │ ├── link.png │ │ │ │ ├── link_break.png │ │ │ │ ├── readme.txt │ │ │ │ └── text_smallcaps.png │ │ ├── post-comment-example.gif │ │ └── readme.txt │ ├── install │ │ ├── install_comment.php │ │ └── update_comment.inc.php │ ├── js │ │ └── functions.js │ ├── json │ │ └── jojo_comment_update.php │ ├── license.txt │ ├── readme.txt │ ├── setup.php │ ├── templates │ │ ├── jojo_comment.tpl │ │ ├── jojo_comment_inner.tpl │ │ └── jojo_post_comment.tpl │ ├── uninstall.php │ └── version.txt ├── jojo_contact │ ├── api.php │ ├── classes │ │ └── Jojo │ │ │ └── Plugin │ │ │ └── Admin │ │ │ └── Contactlog.php │ ├── description.txt │ ├── install │ │ ├── install_contact.php │ │ ├── update_form.php │ │ └── update_formfield.php │ ├── jojo_contact.php │ ├── js │ │ └── functions.js │ ├── json │ │ └── jojo_contact_send.php │ ├── license.txt │ ├── readme.txt │ ├── setup.php │ ├── templates │ │ ├── admin │ │ │ └── contactlog.tpl │ │ ├── jojo_contact.tpl │ │ └── jojo_contact_autoreply.tpl │ ├── uninstall.php │ └── version.txt ├── jojo_core │ ├── 404.php │ ├── actions │ │ ├── admin-action.php │ │ ├── admin-set-options.php │ │ └── load.php │ ├── api.php │ ├── change_password.php │ ├── classes │ │ ├── Jojo.php │ │ ├── Jojo │ │ │ ├── Auth │ │ │ │ └── Local.php │ │ │ ├── Eventlog.php │ │ │ ├── Field.php │ │ │ ├── Field │ │ │ │ ├── Birthday.php │ │ │ │ ├── Checkbox.php │ │ │ │ ├── Checkboxes.php │ │ │ │ ├── Date.php │ │ │ │ ├── Dblist.php │ │ │ │ ├── Dbpagelist.php │ │ │ │ ├── Dbpluginpagelist.php │ │ │ │ ├── Decimal.php │ │ │ │ ├── Email.php │ │ │ │ ├── Encryptedtext.php │ │ │ │ ├── Fieldtype.php │ │ │ │ ├── Fileupload.php │ │ │ │ ├── Hidden.php │ │ │ │ ├── Integer.php │ │ │ │ ├── Internalurl.php │ │ │ │ ├── List.php │ │ │ │ ├── Many2many.php │ │ │ │ ├── Order.php │ │ │ │ ├── Password.php │ │ │ │ ├── Permissions.php │ │ │ │ ├── Plugin.php │ │ │ │ ├── Privacy.php │ │ │ │ ├── Radio.php │ │ │ │ ├── Readonly.php │ │ │ │ ├── Tablepermissions.php │ │ │ │ ├── Text.php │ │ │ │ ├── Textarea.php │ │ │ │ ├── Texteditor.php │ │ │ │ ├── Timestamp.php │ │ │ │ ├── Unixdate.php │ │ │ │ ├── Url.php │ │ │ │ ├── Yesno.php │ │ │ │ └── many2manyordered.php │ │ │ ├── Permissions.php │ │ │ ├── Plugin.php │ │ │ ├── Plugin │ │ │ │ ├── Admin.php │ │ │ │ ├── Admin │ │ │ │ │ ├── Configuration.php │ │ │ │ │ ├── Content.php │ │ │ │ │ ├── Customize.php │ │ │ │ │ ├── Edit.php │ │ │ │ │ ├── Eventlog.php │ │ │ │ │ ├── Options.php │ │ │ │ │ ├── Plugins.php │ │ │ │ │ ├── Reports.php │ │ │ │ │ ├── Root.php │ │ │ │ │ └── Themes.php │ │ │ │ ├── Core.php │ │ │ │ ├── Core │ │ │ │ │ ├── Action.php │ │ │ │ │ ├── Appletouchicon.php │ │ │ │ │ ├── Css.php │ │ │ │ │ ├── Download.php │ │ │ │ │ ├── External.php │ │ │ │ │ ├── Favicon.php │ │ │ │ │ ├── File.php │ │ │ │ │ ├── Image.php │ │ │ │ │ ├── Inline.php │ │ │ │ │ ├── Js.php │ │ │ │ │ └── Json.php │ │ │ │ ├── Index.php │ │ │ │ ├── Login.php │ │ │ │ ├── Logout.php │ │ │ │ └── Submit │ │ │ │ │ └── Form.php │ │ │ ├── SessionHandler.php │ │ │ ├── Stitcher.php │ │ │ └── Table.php │ │ └── jojo_dwoo_smarty_adapter.php │ ├── css │ │ ├── admin.css │ │ ├── boilerplate_modernizr.css │ │ ├── readme.txt │ │ ├── style.css │ │ ├── systeminstaller_menu.css │ │ └── xinha.css │ ├── description.txt │ ├── external │ │ ├── Horde │ │ │ ├── Browser.php │ │ │ ├── Cipher.php │ │ │ ├── Cipher │ │ │ │ ├── BlockMode.php │ │ │ │ ├── BlockMode │ │ │ │ │ ├── cbc.php │ │ │ │ │ ├── cfb64.php │ │ │ │ │ ├── ecb.php │ │ │ │ │ └── ofb64.php │ │ │ │ ├── blowfish.php │ │ │ │ ├── cast128.php │ │ │ │ ├── des.php │ │ │ │ ├── rc2.php │ │ │ │ └── rc4.php │ │ │ ├── Filter.php │ │ │ ├── String.php │ │ │ ├── Text_Filter │ │ │ │ └── html2text.php │ │ │ └── Util.php │ │ ├── PIE.htc │ │ ├── adodb │ │ │ ├── adodb-active-record.inc.php │ │ │ ├── adodb-active-recordx.inc.php │ │ │ ├── adodb-csvlib.inc.php │ │ │ ├── adodb-datadict.inc.php │ │ │ ├── adodb-error.inc.php │ │ │ ├── adodb-errorhandler.inc.php │ │ │ ├── adodb-errorpear.inc.php │ │ │ ├── adodb-exceptions.inc.php │ │ │ ├── adodb-iterator.inc.php │ │ │ ├── adodb-lib.inc.php │ │ │ ├── adodb-memcache.lib.inc.php │ │ │ ├── adodb-pager.inc.php │ │ │ ├── adodb-pear.inc.php │ │ │ ├── adodb-perf.inc.php │ │ │ ├── adodb-php4.inc.php │ │ │ ├── adodb-time.inc.php │ │ │ ├── adodb-xmlschema.inc.php │ │ │ ├── adodb-xmlschema03.inc.php │ │ │ ├── adodb.inc.php │ │ │ ├── contrib │ │ │ │ └── toxmlrpc.inc.php │ │ │ ├── cute_icons_for_site │ │ │ │ ├── adodb.gif │ │ │ │ └── adodb2.gif │ │ │ ├── datadict │ │ │ │ ├── datadict-access.inc.php │ │ │ │ ├── datadict-db2.inc.php │ │ │ │ ├── datadict-firebird.inc.php │ │ │ │ ├── datadict-generic.inc.php │ │ │ │ ├── datadict-ibase.inc.php │ │ │ │ ├── datadict-informix.inc.php │ │ │ │ ├── datadict-mssql.inc.php │ │ │ │ ├── datadict-mssqlnative.inc.php │ │ │ │ ├── datadict-mysql.inc.php │ │ │ │ ├── datadict-oci8.inc.php │ │ │ │ ├── datadict-postgres.inc.php │ │ │ │ ├── datadict-sapdb.inc.php │ │ │ │ ├── datadict-sqlite.inc.php │ │ │ │ └── datadict-sybase.inc.php │ │ │ ├── docs │ │ │ │ ├── docs-active-record.htm │ │ │ │ ├── docs-adodb.htm │ │ │ │ ├── docs-datadict.htm │ │ │ │ ├── docs-oracle.htm │ │ │ │ ├── docs-perf.htm │ │ │ │ ├── docs-session.htm │ │ │ │ ├── docs-session.old.htm │ │ │ │ ├── old-changelog.htm │ │ │ │ ├── readme.htm │ │ │ │ ├── tips_portable_sql.htm │ │ │ │ └── tute.htm │ │ │ ├── drivers │ │ │ │ ├── adodb-access.inc.php │ │ │ │ ├── adodb-ado.inc.php │ │ │ │ ├── adodb-ado5.inc.php │ │ │ │ ├── adodb-ado_access.inc.php │ │ │ │ ├── adodb-ado_mssql.inc.php │ │ │ │ ├── adodb-ads.inc.php │ │ │ │ ├── adodb-borland_ibase.inc.php │ │ │ │ ├── adodb-csv.inc.php │ │ │ │ ├── adodb-db2.inc.php │ │ │ │ ├── adodb-db2oci.inc.php │ │ │ │ ├── adodb-db2ora.inc.php │ │ │ │ ├── adodb-fbsql.inc.php │ │ │ │ ├── adodb-firebird.inc.php │ │ │ │ ├── adodb-ibase.inc.php │ │ │ │ ├── adodb-informix.inc.php │ │ │ │ ├── adodb-informix72.inc.php │ │ │ │ ├── adodb-ldap.inc.php │ │ │ │ ├── adodb-mssql.inc.php │ │ │ │ ├── adodb-mssql_n.inc.php │ │ │ │ ├── adodb-mssqlnative.inc.php │ │ │ │ ├── adodb-mssqlpo.inc.php │ │ │ │ ├── adodb-mysql.inc.php │ │ │ │ ├── adodb-mysqli.inc.php │ │ │ │ ├── adodb-mysqlpo.inc.php │ │ │ │ ├── adodb-mysqlt.inc.php │ │ │ │ ├── adodb-netezza.inc.php │ │ │ │ ├── adodb-oci8.inc.php │ │ │ │ ├── adodb-oci805.inc.php │ │ │ │ ├── adodb-oci8po.inc.php │ │ │ │ ├── adodb-odbc.inc.php │ │ │ │ ├── adodb-odbc_db2.inc.php │ │ │ │ ├── adodb-odbc_mssql.inc.php │ │ │ │ ├── adodb-odbc_oracle.inc.php │ │ │ │ ├── adodb-odbtp.inc.php │ │ │ │ ├── adodb-odbtp_unicode.inc.php │ │ │ │ ├── adodb-oracle.inc.php │ │ │ │ ├── adodb-pdo.inc.php │ │ │ │ ├── adodb-pdo_mssql.inc.php │ │ │ │ ├── adodb-pdo_mysql.inc.php │ │ │ │ ├── adodb-pdo_oci.inc.php │ │ │ │ ├── adodb-pdo_pgsql.inc.php │ │ │ │ ├── adodb-pdo_sqlite.inc.php │ │ │ │ ├── adodb-postgres.inc.php │ │ │ │ ├── adodb-postgres64.inc.php │ │ │ │ ├── adodb-postgres7.inc.php │ │ │ │ ├── adodb-postgres8.inc.php │ │ │ │ ├── adodb-postgres9.inc.php │ │ │ │ ├── adodb-proxy.inc.php │ │ │ │ ├── adodb-sapdb.inc.php │ │ │ │ ├── adodb-sqlanywhere.inc.php │ │ │ │ ├── adodb-sqlite.inc.php │ │ │ │ ├── adodb-sqlite3.inc.php │ │ │ │ ├── adodb-sqlitepo.inc.php │ │ │ │ ├── adodb-sybase.inc.php │ │ │ │ ├── adodb-sybase_ase.inc.php │ │ │ │ └── adodb-vfp.inc.php │ │ │ ├── lang │ │ │ │ ├── adodb-ar.inc.php │ │ │ │ ├── adodb-bg.inc.php │ │ │ │ ├── adodb-bgutf8.inc.php │ │ │ │ ├── adodb-ca.inc.php │ │ │ │ ├── adodb-cn.inc.php │ │ │ │ ├── adodb-cz.inc.php │ │ │ │ ├── adodb-da.inc.php │ │ │ │ ├── adodb-de.inc.php │ │ │ │ ├── adodb-en.inc.php │ │ │ │ ├── adodb-es.inc.php │ │ │ │ ├── adodb-esperanto.inc.php │ │ │ │ ├── adodb-fa.inc.php │ │ │ │ ├── adodb-fr.inc.php │ │ │ │ ├── adodb-hu.inc.php │ │ │ │ ├── adodb-it.inc.php │ │ │ │ ├── adodb-nl.inc.php │ │ │ │ ├── adodb-pl.inc.php │ │ │ │ ├── adodb-pt-br.inc.php │ │ │ │ ├── adodb-ro.inc.php │ │ │ │ ├── adodb-ru1251.inc.php │ │ │ │ ├── adodb-sv.inc.php │ │ │ │ ├── adodb-uk1251.inc.php │ │ │ │ └── adodb_th.inc.php │ │ │ ├── license.txt │ │ │ ├── pear │ │ │ │ ├── Auth │ │ │ │ │ └── Container │ │ │ │ │ │ └── ADOdb.php │ │ │ │ └── readme.Auth.txt │ │ │ ├── perf │ │ │ │ ├── perf-db2.inc.php │ │ │ │ ├── perf-informix.inc.php │ │ │ │ ├── perf-mssql.inc.php │ │ │ │ ├── perf-mssqlnative.inc.php │ │ │ │ ├── perf-mysql.inc.php │ │ │ │ ├── perf-oci8.inc.php │ │ │ │ └── perf-postgres.inc.php │ │ │ ├── pivottable.inc.php │ │ │ ├── readme.txt │ │ │ ├── rsfilter.inc.php │ │ │ ├── server.php │ │ │ ├── session │ │ │ │ ├── adodb-compress-bzip2.php │ │ │ │ ├── adodb-compress-gzip.php │ │ │ │ ├── adodb-cryptsession.php │ │ │ │ ├── adodb-cryptsession2.php │ │ │ │ ├── adodb-encrypt-mcrypt.php │ │ │ │ ├── adodb-encrypt-md5.php │ │ │ │ ├── adodb-encrypt-secret.php │ │ │ │ ├── adodb-encrypt-sha1.php │ │ │ │ ├── adodb-sess.txt │ │ │ │ ├── adodb-session-clob.php │ │ │ │ ├── adodb-session-clob2.php │ │ │ │ ├── adodb-session.php │ │ │ │ ├── adodb-session2.php │ │ │ │ ├── adodb-sessions.mysql.sql │ │ │ │ ├── adodb-sessions.oracle.clob.sql │ │ │ │ ├── adodb-sessions.oracle.sql │ │ │ │ ├── crypt.inc.php │ │ │ │ ├── old │ │ │ │ │ ├── adodb-cryptsession.php │ │ │ │ │ ├── adodb-session-clob.php │ │ │ │ │ ├── adodb-session.php │ │ │ │ │ └── crypt.inc.php │ │ │ │ ├── session_schema.xml │ │ │ │ └── session_schema2.xml │ │ │ ├── tests │ │ │ │ ├── benchmark.php │ │ │ │ ├── client.php │ │ │ │ ├── pdo.php │ │ │ │ ├── test-active-record.php │ │ │ │ ├── test-active-recs2.php │ │ │ │ ├── test-active-relations.php │ │ │ │ ├── test-active-relationsx.php │ │ │ │ ├── test-datadict.php │ │ │ │ ├── test-perf.php │ │ │ │ ├── test-pgblob.php │ │ │ │ ├── test-php5.php │ │ │ │ ├── test-xmlschema.php │ │ │ │ ├── test.php │ │ │ │ ├── test2.php │ │ │ │ ├── test3.php │ │ │ │ ├── test4.php │ │ │ │ ├── test5.php │ │ │ │ ├── test_rs_array.php │ │ │ │ ├── testcache.php │ │ │ │ ├── testdatabases.inc.php │ │ │ │ ├── testgenid.php │ │ │ │ ├── testmssql.php │ │ │ │ ├── testoci8.php │ │ │ │ ├── testoci8cursor.php │ │ │ │ ├── testpaging.php │ │ │ │ ├── testpear.php │ │ │ │ ├── testsessions.php │ │ │ │ ├── time.php │ │ │ │ ├── tmssql.php │ │ │ │ ├── xmlschema-mssql.xml │ │ │ │ └── xmlschema.xml │ │ │ ├── toexport.inc.php │ │ │ ├── tohtml.inc.php │ │ │ ├── xmlschema.dtd │ │ │ ├── xmlschema03.dtd │ │ │ └── xsl │ │ │ │ ├── convert-0.1-0.2.xsl │ │ │ │ ├── convert-0.1-0.3.xsl │ │ │ │ ├── convert-0.2-0.1.xsl │ │ │ │ ├── convert-0.2-0.3.xsl │ │ │ │ ├── remove-0.2.xsl │ │ │ │ └── remove-0.3.xsl │ │ ├── anytime │ │ │ ├── anytimec.css │ │ │ └── anytimec.js │ │ ├── bbconverter │ │ │ ├── bbconverter.class.php │ │ │ ├── gallerylayout.class.php │ │ │ └── magazinelayout.class.php │ │ ├── date_input │ │ │ ├── CHANGELOG │ │ │ ├── LICENCE │ │ │ ├── README │ │ │ ├── date_input.css │ │ │ ├── jquery.date_input.js │ │ │ ├── jquery.date_input.min.js │ │ │ └── jquery.date_input.pack.js │ │ ├── dwoo │ │ │ ├── CHANGELOG │ │ │ ├── Dwoo.compiled.php │ │ │ ├── Dwoo.php │ │ │ ├── Dwoo │ │ │ │ ├── Adapters │ │ │ │ │ ├── Agavi │ │ │ │ │ │ ├── DwooRenderer.php │ │ │ │ │ │ ├── README │ │ │ │ │ │ └── dwoo_plugins │ │ │ │ │ │ │ ├── t.php │ │ │ │ │ │ │ └── url.php │ │ │ │ │ ├── CakePHP │ │ │ │ │ │ ├── README │ │ │ │ │ │ └── dwoo.php │ │ │ │ │ ├── CodeIgniter │ │ │ │ │ │ ├── README │ │ │ │ │ │ ├── config │ │ │ │ │ │ │ └── dwootemplate.php │ │ │ │ │ │ ├── controllers │ │ │ │ │ │ │ └── dwoowelcome.php │ │ │ │ │ │ ├── libraries │ │ │ │ │ │ │ └── Dwootemplate.php │ │ │ │ │ │ └── views │ │ │ │ │ │ │ ├── dwoowelcome.tpl │ │ │ │ │ │ │ └── page.tpl │ │ │ │ │ └── ZendFramework │ │ │ │ │ │ ├── PluginProxy.php │ │ │ │ │ │ ├── README │ │ │ │ │ │ └── View.php │ │ │ │ ├── Block │ │ │ │ │ └── Plugin.php │ │ │ │ ├── Compilation │ │ │ │ │ └── Exception.php │ │ │ │ ├── Compiler.php │ │ │ │ ├── Data.php │ │ │ │ ├── Exception.php │ │ │ │ ├── Filter.php │ │ │ │ ├── ICompilable.php │ │ │ │ ├── ICompilable │ │ │ │ │ └── Block.php │ │ │ │ ├── ICompiler.php │ │ │ │ ├── IDataProvider.php │ │ │ │ ├── IElseable.php │ │ │ │ ├── ILoader.php │ │ │ │ ├── IPluginProxy.php │ │ │ │ ├── ITemplate.php │ │ │ │ ├── Loader.php │ │ │ │ ├── Plugin.php │ │ │ │ ├── Processor.php │ │ │ │ ├── Security │ │ │ │ │ ├── Exception.php │ │ │ │ │ └── Policy.php │ │ │ │ ├── Smarty │ │ │ │ │ └── Adapter.php │ │ │ │ └── Template │ │ │ │ │ ├── File.php │ │ │ │ │ └── String.php │ │ │ ├── LICENSE │ │ │ ├── README │ │ │ ├── UPGRADE_NOTES │ │ │ ├── dwooAutoload.php │ │ │ └── plugins │ │ │ │ ├── builtin │ │ │ │ ├── blocks │ │ │ │ │ ├── a.php │ │ │ │ │ ├── auto_escape.php │ │ │ │ │ ├── block.php │ │ │ │ │ ├── capture.php │ │ │ │ │ ├── dynamic.php │ │ │ │ │ ├── else.php │ │ │ │ │ ├── elseif.php │ │ │ │ │ ├── for.php │ │ │ │ │ ├── foreach.php │ │ │ │ │ ├── foreachelse.php │ │ │ │ │ ├── forelse.php │ │ │ │ │ ├── if.php │ │ │ │ │ ├── loop.php │ │ │ │ │ ├── section.php │ │ │ │ │ ├── smartyinterface.php │ │ │ │ │ ├── strip.php │ │ │ │ │ ├── template.php │ │ │ │ │ ├── textformat.php │ │ │ │ │ ├── topLevelBlock.php │ │ │ │ │ ├── with.php │ │ │ │ │ └── withelse.php │ │ │ │ ├── filters │ │ │ │ │ └── html_format.php │ │ │ │ ├── functions │ │ │ │ │ ├── assign.php │ │ │ │ │ ├── capitalize.php │ │ │ │ │ ├── cat.php │ │ │ │ │ ├── count_characters.php │ │ │ │ │ ├── count_paragraphs.php │ │ │ │ │ ├── count_sentences.php │ │ │ │ │ ├── count_words.php │ │ │ │ │ ├── counter.php │ │ │ │ │ ├── cycle.php │ │ │ │ │ ├── date_format.php │ │ │ │ │ ├── default.php │ │ │ │ │ ├── dump.php │ │ │ │ │ ├── eol.php │ │ │ │ │ ├── escape.php │ │ │ │ │ ├── eval.php │ │ │ │ │ ├── extends.php │ │ │ │ │ ├── extendsCheck.php │ │ │ │ │ ├── fetch.php │ │ │ │ │ ├── include.php │ │ │ │ │ ├── indent.php │ │ │ │ │ ├── isset.php │ │ │ │ │ ├── load_templates.php │ │ │ │ │ ├── lower.php │ │ │ │ │ ├── mailto.php │ │ │ │ │ ├── math.php │ │ │ │ │ ├── nl2br.php │ │ │ │ │ ├── optional.php │ │ │ │ │ ├── regex_replace.php │ │ │ │ │ ├── replace.php │ │ │ │ │ ├── reverse.php │ │ │ │ │ ├── safe.php │ │ │ │ │ ├── spacify.php │ │ │ │ │ ├── string_format.php │ │ │ │ │ ├── strip_tags.php │ │ │ │ │ ├── tif.php │ │ │ │ │ ├── truncate.php │ │ │ │ │ ├── upper.php │ │ │ │ │ ├── whitespace.php │ │ │ │ │ └── wordwrap.php │ │ │ │ ├── helper.array.php │ │ │ │ └── processors │ │ │ │ │ └── pre.smarty_compat.php │ │ │ │ └── personal │ │ │ │ └── functions │ │ │ │ ├── html_options.php │ │ │ │ └── include.php │ │ ├── externals.txt │ │ ├── fonts │ │ │ ├── OpenSans-Bold-webfont.eot │ │ │ ├── OpenSans-Bold-webfont.svg │ │ │ ├── OpenSans-Bold-webfont.ttf │ │ │ ├── OpenSans-Bold-webfont.woff │ │ │ ├── OpenSans-BoldItalic-webfont.eot │ │ │ ├── OpenSans-BoldItalic-webfont.svg │ │ │ ├── OpenSans-BoldItalic-webfont.ttf │ │ │ ├── OpenSans-BoldItalic-webfont.woff │ │ │ ├── OpenSans-Italic-webfont.eot │ │ │ ├── OpenSans-Italic-webfont.svg │ │ │ ├── OpenSans-Italic-webfont.ttf │ │ │ ├── OpenSans-Italic-webfont.woff │ │ │ ├── OpenSans-Light-webfont.eot │ │ │ ├── OpenSans-Light-webfont.svg │ │ │ ├── OpenSans-Light-webfont.ttf │ │ │ ├── OpenSans-Light-webfont.woff │ │ │ ├── OpenSans-Regular-webfont.eot │ │ │ ├── OpenSans-Regular-webfont.svg │ │ │ ├── OpenSans-Regular-webfont.ttf │ │ │ └── OpenSans-Regular-webfont.woff │ │ ├── frajax │ │ │ ├── frajax.class.php │ │ │ ├── frajax.js │ │ │ └── readme.txt │ │ ├── hktree │ │ │ └── hktree.class.php │ │ ├── html5shiv.min.js │ │ ├── jdpicker_1 │ │ │ ├── images │ │ │ │ ├── bg_hover.png │ │ │ │ ├── bg_selectable.png │ │ │ │ └── bg_selected.png │ │ │ ├── jdpicker.css │ │ │ └── jquery.jdpicker.js │ │ ├── jquery │ │ │ ├── jquery-1.11.1.min.js │ │ │ ├── jquery-1.7.2.min.js │ │ │ ├── jquery-1.9.1.min.js │ │ │ ├── jquery-ui.min.js │ │ │ └── jquery.mobile.touch.js │ │ ├── lgf-searchReferencesV2 │ │ │ ├── lgf-reflog-searchv2.php │ │ │ ├── lgf-search-Functions.php │ │ │ ├── readme.txt │ │ │ ├── reflog-searchv2.txt │ │ │ ├── semaphore-search.ref │ │ │ └── show-refs-searchv2.php │ │ ├── markitup │ │ │ ├── jquery.markitup.js │ │ │ ├── jquery.markitup.pack.js │ │ │ ├── sets │ │ │ │ ├── bbcode │ │ │ │ │ ├── images │ │ │ │ │ │ ├── bold.png │ │ │ │ │ │ ├── clean.png │ │ │ │ │ │ ├── code.png │ │ │ │ │ │ ├── fonts.png │ │ │ │ │ │ ├── h2.png │ │ │ │ │ │ ├── h3.png │ │ │ │ │ │ ├── h4.png │ │ │ │ │ │ ├── h5.png │ │ │ │ │ │ ├── h6.png │ │ │ │ │ │ ├── italic.png │ │ │ │ │ │ ├── link.png │ │ │ │ │ │ ├── list-bullet.png │ │ │ │ │ │ ├── list-item.png │ │ │ │ │ │ ├── list-numeric.png │ │ │ │ │ │ ├── picture.png │ │ │ │ │ │ ├── preview.png │ │ │ │ │ │ ├── quotes.png │ │ │ │ │ │ ├── stroke.png │ │ │ │ │ │ └── underline.png │ │ │ │ │ ├── readme.txt │ │ │ │ │ ├── set.js │ │ │ │ │ └── style.css │ │ │ │ ├── default │ │ │ │ │ ├── images │ │ │ │ │ │ ├── bold.png │ │ │ │ │ │ ├── clean.png │ │ │ │ │ │ ├── image.png │ │ │ │ │ │ ├── italic.png │ │ │ │ │ │ ├── link.png │ │ │ │ │ │ ├── picture.png │ │ │ │ │ │ ├── preview.png │ │ │ │ │ │ └── stroke.png │ │ │ │ │ ├── set.js │ │ │ │ │ └── style.css │ │ │ │ └── html │ │ │ │ │ ├── images │ │ │ │ │ ├── bold.png │ │ │ │ │ ├── clean.png │ │ │ │ │ ├── h1.png │ │ │ │ │ ├── h2.png │ │ │ │ │ ├── h3.png │ │ │ │ │ ├── h4.png │ │ │ │ │ ├── h5.png │ │ │ │ │ ├── h6.png │ │ │ │ │ ├── image.png │ │ │ │ │ ├── italic.png │ │ │ │ │ ├── link.png │ │ │ │ │ ├── list-bullet.png │ │ │ │ │ ├── list-item.png │ │ │ │ │ ├── list-numeric.png │ │ │ │ │ ├── paragraph.png │ │ │ │ │ ├── picture.png │ │ │ │ │ ├── preview.png │ │ │ │ │ └── stroke.png │ │ │ │ │ ├── readme.txt │ │ │ │ │ ├── set.js │ │ │ │ │ └── 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 │ │ │ └── templates │ │ │ │ ├── preview.css │ │ │ │ └── preview.html │ │ ├── mimemail │ │ │ ├── API.txt │ │ │ ├── RFC822.php │ │ │ ├── background.gif │ │ │ ├── changelog.txt │ │ │ ├── example.1.php │ │ │ ├── example.2.php │ │ │ ├── example.3.php │ │ │ ├── example.4.php │ │ │ ├── example.5.php │ │ │ ├── example.html │ │ │ ├── example.txt │ │ │ ├── htmlMimeMail.php │ │ │ ├── mimePart.php │ │ │ └── smtp.php │ │ ├── modernizr.min.js │ │ ├── php-captcha │ │ │ ├── captcha1.jpg │ │ │ ├── captcha2.jpg │ │ │ ├── gm.ttf │ │ │ ├── green.jpg │ │ │ ├── karelia.ttf │ │ │ ├── karenshand.ttf │ │ │ ├── kickflip.ttf │ │ │ ├── php-captcha.inc.php │ │ │ └── visual-captcha.php │ │ ├── phpass │ │ │ └── PasswordHash.php │ │ ├── smarty │ │ │ ├── Config_File.class.php │ │ │ ├── Smarty.class.php │ │ │ ├── Smarty_Compiler.class.php │ │ │ ├── debug.tpl │ │ │ ├── internals │ │ │ │ ├── core.assemble_plugin_filepath.php │ │ │ │ ├── core.assign_smarty_interface.php │ │ │ │ ├── core.create_dir_structure.php │ │ │ │ ├── core.display_debug_console.php │ │ │ │ ├── core.get_include_path.php │ │ │ │ ├── core.get_microtime.php │ │ │ │ ├── core.get_php_resource.php │ │ │ │ ├── core.is_secure.php │ │ │ │ ├── core.is_trusted.php │ │ │ │ ├── core.load_plugins.php │ │ │ │ ├── core.load_resource_plugin.php │ │ │ │ ├── core.process_cached_inserts.php │ │ │ │ ├── core.process_compiled_include.php │ │ │ │ ├── core.read_cache_file.php │ │ │ │ ├── core.rm_auto.php │ │ │ │ ├── core.rmdir.php │ │ │ │ ├── core.run_insert_handler.php │ │ │ │ ├── core.smarty_include_php.php │ │ │ │ ├── core.write_cache_file.php │ │ │ │ ├── core.write_compiled_include.php │ │ │ │ ├── core.write_compiled_resource.php │ │ │ │ └── core.write_file.php │ │ │ └── plugins │ │ │ │ ├── block.textformat.php │ │ │ │ ├── compiler.assign.php │ │ │ │ ├── function.assign_debug_info.php │ │ │ │ ├── function.config_load.php │ │ │ │ ├── function.counter.php │ │ │ │ ├── function.cycle.php │ │ │ │ ├── function.debug.php │ │ │ │ ├── function.eval.php │ │ │ │ ├── function.fetch.php │ │ │ │ ├── function.html_checkboxes.php │ │ │ │ ├── function.html_image.php │ │ │ │ ├── function.html_options.php │ │ │ │ ├── function.html_radios.php │ │ │ │ ├── function.html_select_date.php │ │ │ │ ├── function.html_select_time.php │ │ │ │ ├── function.html_table.php │ │ │ │ ├── function.mailto.php │ │ │ │ ├── function.math.php │ │ │ │ ├── function.popup.php │ │ │ │ ├── function.popup_init.php │ │ │ │ ├── modifier.capitalize.php │ │ │ │ ├── modifier.cat.php │ │ │ │ ├── modifier.count_characters.php │ │ │ │ ├── modifier.count_paragraphs.php │ │ │ │ ├── modifier.count_sentences.php │ │ │ │ ├── modifier.count_words.php │ │ │ │ ├── modifier.date_format.php │ │ │ │ ├── modifier.debug_print_var.php │ │ │ │ ├── modifier.default.php │ │ │ │ ├── modifier.escape.php │ │ │ │ ├── modifier.indent.php │ │ │ │ ├── modifier.lower.php │ │ │ │ ├── modifier.nl2br.php │ │ │ │ ├── modifier.regex_replace.php │ │ │ │ ├── modifier.replace.php │ │ │ │ ├── modifier.spacify.php │ │ │ │ ├── modifier.string_format.php │ │ │ │ ├── modifier.strip.php │ │ │ │ ├── modifier.strip_tags.php │ │ │ │ ├── modifier.truncate.php │ │ │ │ ├── modifier.upper.php │ │ │ │ ├── modifier.wordwrap.php │ │ │ │ ├── outputfilter.trimwhitespace.php │ │ │ │ ├── shared.escape_special_chars.php │ │ │ │ └── shared.make_timestamp.php │ │ ├── tablesorter │ │ │ └── jquery.tablesorter.min.js │ │ ├── wysiwyg-interface │ │ │ ├── readme.txt │ │ │ └── xinha.php │ │ └── xinha │ │ │ ├── Xinha.css │ │ │ ├── XinhaCore.js │ │ │ ├── XinhaLoader.js │ │ │ ├── XinhaLoader_readme.txt │ │ │ ├── compression_readme.txt │ │ │ ├── contrib │ │ │ ├── .htaccess │ │ │ ├── compress.bat │ │ │ ├── compress.php │ │ │ ├── compress_yui.php │ │ │ ├── dojo_js_compressor.jar │ │ │ ├── lc_merge_strings.php │ │ │ ├── lc_parse_strings.php │ │ │ ├── make-release.sh │ │ │ ├── php-xinha.php │ │ │ ├── test_server.py │ │ │ └── yuicompressor-2.4.2.jar │ │ │ ├── examples │ │ │ ├── ExtendedDemo.html │ │ │ ├── Newbie.html │ │ │ ├── XinhaConfig.js │ │ │ ├── files │ │ │ │ ├── Extended.html │ │ │ │ ├── custom.css │ │ │ │ ├── dynamic.css │ │ │ │ ├── ext_example-body.html │ │ │ │ ├── ext_example-dest.php │ │ │ │ ├── ext_example-menu.php │ │ │ │ ├── full_example.css │ │ │ │ └── stylist.css │ │ │ ├── simple_example.html │ │ │ └── testbed.html │ │ │ ├── htmlarea.js │ │ │ ├── iconsets │ │ │ ├── Classic │ │ │ │ ├── de │ │ │ │ │ ├── bold.gif │ │ │ │ │ ├── italic.gif │ │ │ │ │ └── underline.gif │ │ │ │ ├── ed_buttons_main.gif │ │ │ │ ├── ed_charmap.gif │ │ │ │ ├── ed_selectall.gif │ │ │ │ ├── fr │ │ │ │ │ ├── bold.gif │ │ │ │ │ ├── strikethrough.gif │ │ │ │ │ └── underline.gif │ │ │ │ └── iconset.xml │ │ │ ├── Crystal │ │ │ │ ├── LICENSE │ │ │ │ ├── README │ │ │ │ ├── ed_buttons_main.png │ │ │ │ └── iconset.xml │ │ │ └── Tango │ │ │ │ ├── README │ │ │ │ ├── ed_buttons_main.png │ │ │ │ └── iconset.xml │ │ │ ├── images │ │ │ ├── de │ │ │ │ ├── bold.gif │ │ │ │ ├── italic.gif │ │ │ │ └── underline.gif │ │ │ ├── ed_about.gif │ │ │ ├── ed_align.gif │ │ │ ├── ed_align_center.gif │ │ │ ├── ed_align_justify.gif │ │ │ ├── ed_align_left.gif │ │ │ ├── ed_align_right.gif │ │ │ ├── ed_blank.gif │ │ │ ├── ed_buttons_main.gif │ │ │ ├── ed_buttons_main.png │ │ │ ├── ed_charmap.gif │ │ │ ├── ed_clearfonts.gif │ │ │ ├── ed_color_bg.gif │ │ │ ├── ed_color_fg.gif │ │ │ ├── ed_copy.gif │ │ │ ├── ed_custom.gif │ │ │ ├── ed_cut.gif │ │ │ ├── ed_delete.gif │ │ │ ├── ed_format_bold.gif │ │ │ ├── ed_format_italic.gif │ │ │ ├── ed_format_strike.gif │ │ │ ├── ed_format_sub.gif │ │ │ ├── ed_format_sup.gif │ │ │ ├── ed_format_underline.gif │ │ │ ├── ed_help.gif │ │ │ ├── ed_hr.gif │ │ │ ├── ed_html.gif │ │ │ ├── ed_image.gif │ │ │ ├── ed_indent_less.gif │ │ │ ├── ed_indent_more.gif │ │ │ ├── ed_killword.gif │ │ │ ├── ed_left_to_right.gif │ │ │ ├── ed_link.gif │ │ │ ├── ed_list_bullet.gif │ │ │ ├── ed_list_num.gif │ │ │ ├── ed_overwrite.gif │ │ │ ├── ed_paste.gif │ │ │ ├── ed_print.gif │ │ │ ├── ed_redo.gif │ │ │ ├── ed_right_to_left.gif │ │ │ ├── ed_rmformat.gif │ │ │ ├── ed_save.gif │ │ │ ├── ed_save.png │ │ │ ├── ed_saveas.gif │ │ │ ├── ed_selectall.gif │ │ │ ├── ed_show_border.gif │ │ │ ├── ed_splitblock.gif │ │ │ ├── ed_splitcel.gif │ │ │ ├── ed_undo.gif │ │ │ ├── ed_word_cleaner.gif │ │ │ ├── fr │ │ │ │ ├── bold.gif │ │ │ │ ├── strikethrough.gif │ │ │ │ └── underline.gif │ │ │ ├── fullscreen_maximize.gif │ │ │ ├── fullscreen_minimize.gif │ │ │ ├── insert_table.gif │ │ │ ├── insertfilelink.gif │ │ │ ├── insertmacro.png │ │ │ ├── tango │ │ │ │ ├── 16x16 │ │ │ │ │ ├── actions │ │ │ │ │ │ ├── document-new.png │ │ │ │ │ │ ├── document-open.png │ │ │ │ │ │ ├── document-print.png │ │ │ │ │ │ ├── document-save.png │ │ │ │ │ │ ├── edit-copy.png │ │ │ │ │ │ ├── edit-redo.png │ │ │ │ │ │ ├── edit-select-all.png │ │ │ │ │ │ ├── edit-undo.png │ │ │ │ │ │ ├── folder-new.png │ │ │ │ │ │ ├── format-direction-left-to-right.png │ │ │ │ │ │ ├── format-direction-right-to-left.png │ │ │ │ │ │ ├── format-indent-less.png │ │ │ │ │ │ ├── format-indent-more.png │ │ │ │ │ │ ├── format-justify-center.png │ │ │ │ │ │ ├── format-justify-fill.png │ │ │ │ │ │ ├── format-justify-left.png │ │ │ │ │ │ ├── format-justify-right.png │ │ │ │ │ │ ├── format-text-background-color.png │ │ │ │ │ │ ├── format-text-bold.png │ │ │ │ │ │ ├── format-text-color.png │ │ │ │ │ │ ├── format-text-italic.png │ │ │ │ │ │ ├── format-text-strikethrough.png │ │ │ │ │ │ ├── format-text-subscript.png │ │ │ │ │ │ ├── format-text-superscript.png │ │ │ │ │ │ ├── format-text-underline.png │ │ │ │ │ │ ├── go-up.png │ │ │ │ │ │ ├── insert-link.png │ │ │ │ │ │ ├── insert-table.png │ │ │ │ │ │ ├── toggle-borders.png │ │ │ │ │ │ ├── view-fullscreen.png │ │ │ │ │ │ └── view-restore.png │ │ │ │ │ ├── apps │ │ │ │ │ │ ├── accessories-character-map.png │ │ │ │ │ │ └── help-browser.png │ │ │ │ │ ├── mimetypes │ │ │ │ │ │ └── image-x-generic.png │ │ │ │ │ └── places │ │ │ │ │ │ └── user-trash.png │ │ │ │ ├── 32x32 │ │ │ │ │ ├── apps │ │ │ │ │ │ └── internet-web-browser.png │ │ │ │ │ ├── mimetypes │ │ │ │ │ │ ├── text-html.png │ │ │ │ │ │ ├── text-x-generic.png │ │ │ │ │ │ └── x-office-document.png │ │ │ │ │ └── places │ │ │ │ │ │ ├── folder.png │ │ │ │ │ │ └── network-server.png │ │ │ │ └── COPYING │ │ │ ├── tidy.gif │ │ │ ├── toggle_borders.gif │ │ │ ├── xinha-small-icon.gif │ │ │ └── xinha_logo.gif │ │ │ ├── lang │ │ │ ├── b5.js │ │ │ ├── ch.js │ │ │ ├── cz.js │ │ │ ├── da.js │ │ │ ├── de.js │ │ │ ├── ee.js │ │ │ ├── el.js │ │ │ ├── es.js │ │ │ ├── eu.js │ │ │ ├── fa.js │ │ │ ├── fi.js │ │ │ ├── fr.js │ │ │ ├── gb.js │ │ │ ├── he.js │ │ │ ├── hu.js │ │ │ ├── it.js │ │ │ ├── ja.js │ │ │ ├── lt.js │ │ │ ├── lv.js │ │ │ ├── nb.js │ │ │ ├── nl.js │ │ │ ├── pl.js │ │ │ ├── pt_br.js │ │ │ ├── ro.js │ │ │ ├── ru.js │ │ │ ├── sh.js │ │ │ ├── si.js │ │ │ ├── sr.js │ │ │ ├── sv.js │ │ │ ├── th.js │ │ │ └── vn.js │ │ │ ├── license.txt │ │ │ ├── modules │ │ │ ├── AboutBox │ │ │ │ ├── AboutBox.js │ │ │ │ ├── about.css │ │ │ │ └── dialog.html │ │ │ ├── ColorPicker │ │ │ │ ├── ColorPicker.js │ │ │ │ └── lang │ │ │ │ │ └── pt_br.js │ │ │ ├── CreateLink │ │ │ │ ├── dialog.html │ │ │ │ ├── lang │ │ │ │ │ └── pt_br.js │ │ │ │ ├── link.html │ │ │ │ ├── link.js │ │ │ │ └── pluginMethods.js │ │ │ ├── Dialogs │ │ │ │ ├── DetachedDialog.js │ │ │ │ ├── XinhaDialog.js │ │ │ │ ├── dialog.js │ │ │ │ ├── div-dialog.js │ │ │ │ ├── panel-dialog.js │ │ │ │ └── popupwin.js │ │ │ ├── FullScreen │ │ │ │ ├── full-screen.js │ │ │ │ └── lang │ │ │ │ │ ├── de.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt_br.js │ │ │ │ │ ├── ru.js │ │ │ │ │ └── sv.js │ │ │ ├── Gecko │ │ │ │ ├── Gecko.js │ │ │ │ └── paraHandlerBest.js │ │ │ ├── GetHtml │ │ │ │ ├── DOMwalk.js │ │ │ │ ├── TransformInnerHTML.js │ │ │ │ └── lang │ │ │ │ │ └── pt_br.js │ │ │ ├── InlineStyler │ │ │ │ └── InlineStyler.js │ │ │ ├── InsertImage │ │ │ │ ├── dialog.html │ │ │ │ ├── insert_image.html │ │ │ │ ├── insert_image.js │ │ │ │ └── pluginMethods.js │ │ │ ├── InsertTable │ │ │ │ ├── dialog.html │ │ │ │ ├── insert_table.html │ │ │ │ ├── insert_table.js │ │ │ │ └── pluginMethods.js │ │ │ ├── InternetExplorer │ │ │ │ └── InternetExplorer.js │ │ │ ├── Opera │ │ │ │ └── Opera.js │ │ │ └── WebKit │ │ │ │ └── WebKit.js │ │ │ ├── plugins │ │ │ ├── Abbreviation │ │ │ │ ├── Abbreviation.js │ │ │ │ ├── abbr │ │ │ │ │ ├── de.js │ │ │ │ │ └── en.js │ │ │ │ ├── abbreviation.css │ │ │ │ ├── dialog.html │ │ │ │ ├── img │ │ │ │ │ └── ed_abbreviation.gif │ │ │ │ └── lang │ │ │ │ │ ├── de.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ └── pt_br.js │ │ │ ├── CSS │ │ │ │ └── CSS.js │ │ │ ├── CSSPicker │ │ │ │ └── CSSPicker.js │ │ │ ├── CharCounter │ │ │ │ ├── CharCounter.js │ │ │ │ └── lang │ │ │ │ │ ├── de.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ └── pt_br.js │ │ │ ├── CharacterMap │ │ │ │ ├── CharacterMap.css │ │ │ │ ├── CharacterMap.js │ │ │ │ ├── img │ │ │ │ │ └── ed_charmap.gif │ │ │ │ └── lang │ │ │ │ │ ├── de.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── pt_br.js │ │ │ │ │ ├── ru.js │ │ │ │ │ └── sv.js │ │ │ ├── ContextMenu │ │ │ │ ├── ContextMenu.js │ │ │ │ ├── lang │ │ │ │ │ ├── de.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt_br.js │ │ │ │ │ └── sv.js │ │ │ │ └── menu.css │ │ │ ├── DefinitionList │ │ │ │ ├── DefinitionList.js │ │ │ │ ├── definition-list.css │ │ │ │ ├── img │ │ │ │ │ ├── ed_dd.gif │ │ │ │ │ ├── ed_dl.gif │ │ │ │ │ └── ed_dt.gif │ │ │ │ └── lang │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── pt_br.js │ │ │ │ │ └── ru.js │ │ │ ├── DynamicCSS │ │ │ │ ├── DynamicCSS.js │ │ │ │ └── lang │ │ │ │ │ ├── de.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ └── pt_br.js │ │ │ ├── EditTag │ │ │ │ ├── EditTag.js │ │ │ │ ├── img │ │ │ │ │ └── ed_edit_tag.gif │ │ │ │ ├── lang │ │ │ │ │ ├── de.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ └── pt_br.js │ │ │ │ └── popups │ │ │ │ │ └── edit_tag.html │ │ │ ├── Equation │ │ │ │ ├── ASCIIMathML.js │ │ │ │ ├── Equation.js │ │ │ │ ├── example.html │ │ │ │ ├── img │ │ │ │ │ ├── abs_value.gif │ │ │ │ │ ├── diag_fraction.gif │ │ │ │ │ ├── divide.gif │ │ │ │ │ ├── dsp_greater_equal.gif │ │ │ │ │ ├── dsp_less_equal.gif │ │ │ │ │ ├── dsp_notequal.gif │ │ │ │ │ ├── equation.gif │ │ │ │ │ ├── equation.old.gif │ │ │ │ │ ├── greater_equal_than.gif │ │ │ │ │ ├── hor_fraction.gif │ │ │ │ │ ├── less_equal_than.gif │ │ │ │ │ ├── mul.gif │ │ │ │ │ ├── notequal.gif │ │ │ │ │ ├── parenthesis.gif │ │ │ │ │ ├── root.gif │ │ │ │ │ └── square_root.gif │ │ │ │ ├── lang │ │ │ │ │ ├── de.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── nl.js │ │ │ │ │ └── pt_br.js │ │ │ │ ├── popups │ │ │ │ │ └── dialog.html │ │ │ │ └── readme.txt │ │ │ ├── ExtendedFileManager │ │ │ │ ├── .htaccess │ │ │ │ ├── Classes │ │ │ │ │ ├── ExtendedFileManager.php │ │ │ │ │ └── jojoAdminCheck.php │ │ │ │ ├── ExtendedFileManager.js │ │ │ │ ├── Readme.txt │ │ │ │ ├── assets │ │ │ │ │ ├── EditorContent.js │ │ │ │ │ ├── ImageEditor.css │ │ │ │ │ ├── dialog.js │ │ │ │ │ ├── dragTableCols.js │ │ │ │ │ ├── editor.css │ │ │ │ │ ├── editor.js │ │ │ │ │ ├── editorFrame.css │ │ │ │ │ ├── editorFrame.js │ │ │ │ │ ├── hover.htc │ │ │ │ │ ├── imagelist.css │ │ │ │ │ ├── images.js │ │ │ │ │ ├── manager.css │ │ │ │ │ ├── manager.js │ │ │ │ │ ├── popup.js │ │ │ │ │ ├── slider.js │ │ │ │ │ └── wz_jsgraphics.js │ │ │ │ ├── backend.php │ │ │ │ ├── config.inc.php │ │ │ │ ├── demo_images │ │ │ │ │ ├── .htaccess │ │ │ │ │ ├── bikerpeep.jpg │ │ │ │ │ ├── linux │ │ │ │ │ │ ├── linux.gif │ │ │ │ │ │ └── t │ │ │ │ │ │ │ └── t_linux.gif │ │ │ │ │ ├── t │ │ │ │ │ │ ├── t_bikerpeep.jpg │ │ │ │ │ │ └── t_wesnoth078.jpg │ │ │ │ │ └── wesnoth078.jpg │ │ │ │ ├── editor.php │ │ │ │ ├── editorFrame.php │ │ │ │ ├── file-picker.js │ │ │ │ ├── icons │ │ │ │ │ ├── def.gif │ │ │ │ │ ├── def_small.gif │ │ │ │ │ ├── doc.gif │ │ │ │ │ ├── doc_small.gif │ │ │ │ │ ├── fla.gif │ │ │ │ │ ├── fla_small.gif │ │ │ │ │ ├── folder.gif │ │ │ │ │ ├── folder_small.gif │ │ │ │ │ ├── gif_small.gif │ │ │ │ │ ├── gz.gif │ │ │ │ │ ├── gz_small.gif │ │ │ │ │ ├── html.gif │ │ │ │ │ ├── html_small.gif │ │ │ │ │ ├── jpg_small.gif │ │ │ │ │ ├── js.gif │ │ │ │ │ ├── js_small.gif │ │ │ │ │ ├── mov.gif │ │ │ │ │ ├── mov_small.gif │ │ │ │ │ ├── pdf.gif │ │ │ │ │ ├── pdf_small.gif │ │ │ │ │ ├── php.gif │ │ │ │ │ ├── php_small.gif │ │ │ │ │ ├── png_small.gif │ │ │ │ │ ├── ppt.gif │ │ │ │ │ ├── ppt_small.gif │ │ │ │ │ ├── rar.gif │ │ │ │ │ ├── rar_small.gif │ │ │ │ │ ├── txt.gif │ │ │ │ │ ├── txt_small.gif │ │ │ │ │ ├── xls.gif │ │ │ │ │ ├── xls_small.gif │ │ │ │ │ ├── zip.gif │ │ │ │ │ └── zip_small.gif │ │ │ │ ├── images.php │ │ │ │ ├── img │ │ │ │ │ ├── 1x1_transparent.gif │ │ │ │ │ ├── 2x2.gif │ │ │ │ │ ├── 2x2_w.gif │ │ │ │ │ ├── btnFolderNew.gif │ │ │ │ │ ├── btnFolderNew1.gif │ │ │ │ │ ├── btnFolderUp.gif │ │ │ │ │ ├── btnFolderUp1.gif │ │ │ │ │ ├── btn_cancel.gif │ │ │ │ │ ├── btn_ok.gif │ │ │ │ │ ├── crop.gif │ │ │ │ │ ├── default.gif │ │ │ │ │ ├── div.gif │ │ │ │ │ ├── dots.gif │ │ │ │ │ ├── ed_linkfile.gif │ │ │ │ │ ├── ed_linkfile1.gif │ │ │ │ │ ├── edit_active.gif │ │ │ │ │ ├── edit_copy.gif │ │ │ │ │ ├── edit_cut.gif │ │ │ │ │ ├── edit_paste.gif │ │ │ │ │ ├── edit_pencil.gif │ │ │ │ │ ├── edit_rename.gif │ │ │ │ │ ├── edit_trash.gif │ │ │ │ │ ├── folder.gif │ │ │ │ │ ├── hand.gif │ │ │ │ │ ├── islocked2.gif │ │ │ │ │ ├── locked.gif │ │ │ │ │ ├── measure.gif │ │ │ │ │ ├── noimages.gif │ │ │ │ │ ├── rotate.gif │ │ │ │ │ ├── save.gif │ │ │ │ │ ├── scale.gif │ │ │ │ │ ├── spacer.gif │ │ │ │ │ ├── t_black.gif │ │ │ │ │ ├── t_white.gif │ │ │ │ │ ├── unlocked.gif │ │ │ │ │ ├── unlocked2.gif │ │ │ │ │ └── unlocked_empty.gif │ │ │ │ ├── jojoAdminCheck.php │ │ │ │ ├── lang │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── pl.js │ │ │ │ │ └── pt_br.js │ │ │ │ ├── manager.php │ │ │ │ ├── prompt.html │ │ │ │ ├── resizer.php │ │ │ │ └── thumbs.php │ │ │ ├── FindReplace │ │ │ │ ├── FindReplace.js │ │ │ │ ├── fr_engine.js │ │ │ │ ├── img │ │ │ │ │ └── ed_find.gif │ │ │ │ ├── lang │ │ │ │ │ ├── de.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt_br.js │ │ │ │ │ ├── ru.js │ │ │ │ │ └── sv.js │ │ │ │ └── popups │ │ │ │ │ └── find_replace.html │ │ │ ├── FormOperations │ │ │ │ ├── FormOperations.js │ │ │ │ ├── README │ │ │ │ ├── default_form.html │ │ │ │ ├── formmail.php │ │ │ │ ├── iframe.css │ │ │ │ ├── img │ │ │ │ │ └── buttons.gif │ │ │ │ ├── lang │ │ │ │ │ ├── de.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ └── pt_br.js │ │ │ │ └── panel.html │ │ │ ├── Forms │ │ │ │ ├── Forms.js │ │ │ │ ├── forms.css │ │ │ │ ├── img │ │ │ │ │ ├── ed_button.gif │ │ │ │ │ ├── ed_checkbox.gif │ │ │ │ │ ├── ed_fieldset.gif │ │ │ │ │ ├── ed_file.gif │ │ │ │ │ ├── ed_form.gif │ │ │ │ │ ├── ed_hidden.gif │ │ │ │ │ ├── ed_image.gif │ │ │ │ │ ├── ed_label.gif │ │ │ │ │ ├── ed_password.gif │ │ │ │ │ ├── ed_radio.gif │ │ │ │ │ ├── ed_reset.gif │ │ │ │ │ ├── ed_select.gif │ │ │ │ │ ├── ed_submit.gif │ │ │ │ │ ├── ed_text.gif │ │ │ │ │ └── ed_textarea.gif │ │ │ │ ├── lang │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── nl.js │ │ │ │ │ └── pt_br.js │ │ │ │ └── popups │ │ │ │ │ ├── fieldset.html │ │ │ │ │ ├── form.html │ │ │ │ │ ├── input.html │ │ │ │ │ ├── label.html │ │ │ │ │ ├── select.html │ │ │ │ │ └── textarea.html │ │ │ ├── FullPage │ │ │ │ ├── FullPage.js │ │ │ │ ├── img │ │ │ │ │ └── docprop.gif │ │ │ │ ├── lang │ │ │ │ │ ├── de.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt_br.js │ │ │ │ │ └── ro.js │ │ │ │ └── popups │ │ │ │ │ └── docprop.html │ │ │ ├── GenericPlugin │ │ │ │ └── GenericPlugin.js │ │ │ ├── GetHtml │ │ │ │ └── GetHtml.js │ │ │ ├── HorizontalRule │ │ │ │ ├── HorizontalRule.js │ │ │ │ ├── lang │ │ │ │ │ ├── de.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ └── pt_br.js │ │ │ │ └── popups │ │ │ │ │ └── edit_horizontal_rule.html │ │ │ ├── HtmlEntities │ │ │ │ ├── Entities.js │ │ │ │ ├── HtmlEntities.js │ │ │ │ └── iso-8859-1.js │ │ │ ├── ImageManager │ │ │ │ ├── .htaccess │ │ │ │ ├── Classes │ │ │ │ │ ├── Files.php │ │ │ │ │ ├── Flickr.php │ │ │ │ │ ├── GD.php │ │ │ │ │ ├── IM.php │ │ │ │ │ ├── ImageEditor.php │ │ │ │ │ ├── ImageManager.php │ │ │ │ │ ├── JSON.php │ │ │ │ │ ├── JSON_Compat.php │ │ │ │ │ ├── NetPBM.php │ │ │ │ │ ├── Thumbnail.php │ │ │ │ │ ├── Transform.php │ │ │ │ │ └── jojoAdminCheck.php │ │ │ │ ├── ImageManager.js │ │ │ │ ├── README.txt │ │ │ │ ├── assets │ │ │ │ │ ├── EditorContent.js │ │ │ │ │ ├── ImageEditor.css │ │ │ │ │ ├── dialog.js │ │ │ │ │ ├── editor.css │ │ │ │ │ ├── editor.js │ │ │ │ │ ├── editorFrame.css │ │ │ │ │ ├── editorFrame.js │ │ │ │ │ ├── hover.htc │ │ │ │ │ ├── imagelist.css │ │ │ │ │ ├── images.js │ │ │ │ │ ├── manager.css │ │ │ │ │ ├── manager.js │ │ │ │ │ ├── popup.js │ │ │ │ │ ├── slider.js │ │ │ │ │ └── wz_jsgraphics.js │ │ │ │ ├── backend.php │ │ │ │ ├── config.inc.php │ │ │ │ ├── ddt.php │ │ │ │ ├── demo_images │ │ │ │ │ ├── .htaccess │ │ │ │ │ ├── bikerpeep.jpg │ │ │ │ │ ├── linux │ │ │ │ │ │ ├── .htaccess │ │ │ │ │ │ └── linux.gif │ │ │ │ │ └── wesnoth078.jpg │ │ │ │ ├── editor.php │ │ │ │ ├── editorFrame.php │ │ │ │ ├── flickr.php │ │ │ │ ├── image-picker.js │ │ │ │ ├── images.php │ │ │ │ ├── img │ │ │ │ │ ├── 2x2.gif │ │ │ │ │ ├── 2x2_w.gif │ │ │ │ │ ├── btnFolderNew.gif │ │ │ │ │ ├── btnFolderUp.gif │ │ │ │ │ ├── btn_cancel.gif │ │ │ │ │ ├── btn_ok.gif │ │ │ │ │ ├── crop.gif │ │ │ │ │ ├── default.gif │ │ │ │ │ ├── div.gif │ │ │ │ │ ├── dots.gif │ │ │ │ │ ├── edit_active.gif │ │ │ │ │ ├── edit_pencil.gif │ │ │ │ │ ├── edit_trash.gif │ │ │ │ │ ├── folder.gif │ │ │ │ │ ├── hand.gif │ │ │ │ │ ├── islocked2.gif │ │ │ │ │ ├── locked.gif │ │ │ │ │ ├── measure.gif │ │ │ │ │ ├── noimages.gif │ │ │ │ │ ├── rotate.gif │ │ │ │ │ ├── save.gif │ │ │ │ │ ├── scale.gif │ │ │ │ │ ├── spacer.gif │ │ │ │ │ ├── t_black.gif │ │ │ │ │ ├── t_white.gif │ │ │ │ │ ├── unlocked.gif │ │ │ │ │ └── unlocked2.gif │ │ │ │ ├── jojoAdminCheck.php │ │ │ │ ├── lang │ │ │ │ │ ├── de.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt_br.js │ │ │ │ │ ├── ru.js │ │ │ │ │ └── sv.js │ │ │ │ ├── manager.php │ │ │ │ ├── newFolder.html │ │ │ │ ├── resizer.php │ │ │ │ ├── smart-image.js │ │ │ │ ├── swfobject │ │ │ │ │ ├── expressinstall.html │ │ │ │ │ ├── expressinstall.swf │ │ │ │ │ ├── swfobject.js │ │ │ │ │ └── swfobject_source.js │ │ │ │ ├── thumbs.php │ │ │ │ └── youtube.php │ │ │ ├── InsertAnchor │ │ │ │ ├── InsertAnchor.js │ │ │ │ ├── dialog.html │ │ │ │ ├── img │ │ │ │ │ ├── insert-anchor.gif │ │ │ │ │ └── placeholder.gif │ │ │ │ ├── insert-anchor.css │ │ │ │ ├── lang │ │ │ │ │ ├── de.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── pl.js │ │ │ │ │ └── pt_br.js │ │ │ │ └── popups │ │ │ │ │ └── insert_anchor.html │ │ │ ├── InsertNote │ │ │ │ ├── InsertNote.js │ │ │ │ ├── dialog.html │ │ │ │ └── img │ │ │ │ │ └── insert-note.gif │ │ │ ├── InsertPagebreak │ │ │ │ ├── InsertPagebreak.js │ │ │ │ ├── img │ │ │ │ │ └── pagebreak.gif │ │ │ │ └── lang │ │ │ │ │ ├── de.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ └── pt_br.js │ │ │ ├── InsertSmiley │ │ │ │ ├── InsertSmiley.js │ │ │ │ ├── README.txt │ │ │ │ ├── dialog.css │ │ │ │ ├── dialog.html │ │ │ │ ├── img │ │ │ │ │ └── ed_smiley.gif │ │ │ │ ├── lang │ │ │ │ │ ├── de.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ └── pt_br.js │ │ │ │ ├── smileys.txt │ │ │ │ └── smileys │ │ │ │ │ ├── Angry.gif │ │ │ │ │ ├── Cool.gif │ │ │ │ │ ├── Excited.gif │ │ │ │ │ ├── Grin.gif │ │ │ │ │ ├── Pleased.gif │ │ │ │ │ ├── Sad.gif │ │ │ │ │ ├── Surprised.gif │ │ │ │ │ ├── Wink.gif │ │ │ │ │ ├── smileys.js │ │ │ │ │ └── smileys.php │ │ │ ├── InsertSnippet │ │ │ │ ├── InsertSnippet.css │ │ │ │ ├── InsertSnippet.js │ │ │ │ ├── demosnippets.js │ │ │ │ ├── img │ │ │ │ │ └── ed_snippet.gif │ │ │ │ ├── lang │ │ │ │ │ ├── de.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ └── pt_br.js │ │ │ │ ├── popups │ │ │ │ │ └── insertsnippet.html │ │ │ │ ├── readme.html │ │ │ │ ├── snippets.html │ │ │ │ └── snippets.php │ │ │ ├── InsertSnippet2 │ │ │ │ ├── InsertSnippet.css │ │ │ │ ├── InsertSnippet2.js │ │ │ │ ├── dialog.html │ │ │ │ ├── img │ │ │ │ │ ├── 1.PNG │ │ │ │ │ ├── 10.PNG │ │ │ │ │ ├── 11.PNG │ │ │ │ │ ├── 12.PNG │ │ │ │ │ ├── 13.PNG │ │ │ │ │ ├── 14.PNG │ │ │ │ │ ├── 15.PNG │ │ │ │ │ ├── 16.PNG │ │ │ │ │ ├── 2.PNG │ │ │ │ │ ├── 3.PNG │ │ │ │ │ ├── 4.PNG │ │ │ │ │ ├── 5.PNG │ │ │ │ │ ├── 6.PNG │ │ │ │ │ ├── 7.PNG │ │ │ │ │ ├── 8.PNG │ │ │ │ │ ├── 9.PNG │ │ │ │ │ └── ed_snippet.gif │ │ │ │ ├── lang │ │ │ │ │ └── de.js │ │ │ │ ├── readme.html │ │ │ │ ├── snippets.php │ │ │ │ └── snippets.xml │ │ │ ├── InsertWords │ │ │ │ └── InsertWords.js │ │ │ ├── LangMarks │ │ │ │ ├── LangMarks.js │ │ │ │ ├── lang-marks.css │ │ │ │ └── lang │ │ │ │ │ ├── de.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ └── pt_br.js │ │ │ ├── Linker │ │ │ │ ├── Linker.js │ │ │ │ ├── dTree │ │ │ │ │ ├── api.html │ │ │ │ │ ├── dtree.css │ │ │ │ │ ├── dtree.js │ │ │ │ │ ├── example01.html │ │ │ │ │ └── img │ │ │ │ │ │ ├── base.gif │ │ │ │ │ │ ├── cd.gif │ │ │ │ │ │ ├── copy.gif │ │ │ │ │ │ ├── empty.gif │ │ │ │ │ │ ├── folder.gif │ │ │ │ │ │ ├── folderopen.gif │ │ │ │ │ │ ├── globe.gif │ │ │ │ │ │ ├── imgfolder.gif │ │ │ │ │ │ ├── join.gif │ │ │ │ │ │ ├── joinbottom.gif │ │ │ │ │ │ ├── line.gif │ │ │ │ │ │ ├── minus.gif │ │ │ │ │ │ ├── minusbottom.gif │ │ │ │ │ │ ├── move.gif │ │ │ │ │ │ ├── musicfolder.gif │ │ │ │ │ │ ├── nolines_minus.gif │ │ │ │ │ │ ├── nolines_plus.gif │ │ │ │ │ │ ├── offline.gif │ │ │ │ │ │ ├── offline.png │ │ │ │ │ │ ├── page.gif │ │ │ │ │ │ ├── plus.gif │ │ │ │ │ │ ├── plusbottom.gif │ │ │ │ │ │ ├── question.gif │ │ │ │ │ │ └── trash.gif │ │ │ │ ├── dialog.html │ │ │ │ ├── lang │ │ │ │ │ ├── de.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── pl.js │ │ │ │ │ └── pt_br.js │ │ │ │ ├── link-picker.js │ │ │ │ ├── pluginMethods.js │ │ │ │ └── scan.php │ │ │ ├── ListType │ │ │ │ ├── ListType.css │ │ │ │ ├── ListType.js │ │ │ │ ├── img │ │ │ │ │ ├── circle.png │ │ │ │ │ ├── decimal.png │ │ │ │ │ ├── disc.png │ │ │ │ │ ├── lower-alpha.png │ │ │ │ │ ├── lower-roman.png │ │ │ │ │ ├── none.png │ │ │ │ │ ├── square.png │ │ │ │ │ ├── upper-alpha.png │ │ │ │ │ └── upper-roman.png │ │ │ │ └── lang │ │ │ │ │ ├── de.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt_br.js │ │ │ │ │ ├── ru.js │ │ │ │ │ └── sv.js │ │ │ ├── PSFixed │ │ │ │ └── PSFixed.js │ │ │ ├── PSLocal │ │ │ │ ├── PSLocal.js │ │ │ │ ├── dialog.html │ │ │ │ └── gears_init.js │ │ │ ├── PSServer │ │ │ │ ├── PSServer.js │ │ │ │ ├── backend.php │ │ │ │ ├── config.inc.php │ │ │ │ └── demo_images │ │ │ │ │ ├── .htaccess │ │ │ │ │ ├── bikerpeep.jpg │ │ │ │ │ ├── linux │ │ │ │ │ └── linux.gif │ │ │ │ │ └── wesnoth078.jpg │ │ │ ├── PasteText │ │ │ │ ├── PasteText.js │ │ │ │ ├── img │ │ │ │ │ └── ed_paste_text.gif │ │ │ │ ├── lang │ │ │ │ │ ├── de.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt_br.js │ │ │ │ │ └── ru.js │ │ │ │ └── popups │ │ │ │ │ └── paste_text.html │ │ │ ├── PersistentStorage │ │ │ │ ├── PersistentStorage.js │ │ │ │ ├── dialog.css │ │ │ │ └── dialog.html │ │ │ ├── PreserveScripts │ │ │ │ ├── PreserveScripts.js │ │ │ │ ├── js.png │ │ │ │ ├── php.png │ │ │ │ └── php.svg │ │ │ ├── QuickTag │ │ │ │ ├── QuickTag.js │ │ │ │ ├── img │ │ │ │ │ └── ed_quicktag.gif │ │ │ │ ├── lang │ │ │ │ │ ├── de.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── pl.js │ │ │ │ │ └── pt_br.js │ │ │ │ ├── popups │ │ │ │ │ └── quicktag.html │ │ │ │ └── tag-lib.js │ │ │ ├── SaveOnBlur │ │ │ │ └── SaveOnBlur.js │ │ │ ├── SaveSubmit │ │ │ │ ├── README.txt │ │ │ │ ├── SaveSubmit.js │ │ │ │ ├── img │ │ │ │ │ ├── ed_save_green.gif │ │ │ │ │ └── ed_save_red.gif │ │ │ │ └── lang │ │ │ │ │ ├── de.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── pt_br.js │ │ │ │ │ └── ru.js │ │ │ ├── SetId │ │ │ │ ├── SetId.js │ │ │ │ ├── img │ │ │ │ │ ├── placeholder.gif │ │ │ │ │ └── set-id.gif │ │ │ │ ├── lang │ │ │ │ │ ├── de.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ └── pt_br.js │ │ │ │ ├── popups │ │ │ │ │ └── set_id.html │ │ │ │ └── set-id.css │ │ │ ├── SmartReplace │ │ │ │ ├── SmartReplace.js │ │ │ │ ├── dialog.html │ │ │ │ ├── img │ │ │ │ │ ├── SmartReplace.svg │ │ │ │ │ └── smartquotes.png │ │ │ │ ├── lang │ │ │ │ │ ├── de.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── nl.js │ │ │ │ │ └── pt_br.js │ │ │ │ └── readme.txt │ │ │ ├── SpellChecker │ │ │ │ ├── .htaccess │ │ │ │ ├── README │ │ │ │ ├── SpellChecker.js │ │ │ │ ├── aspell_setup.php │ │ │ │ ├── img │ │ │ │ │ ├── he-spell-check.gif │ │ │ │ │ └── spell-check.gif │ │ │ │ ├── jojoAdminCheck.php │ │ │ │ ├── lang │ │ │ │ │ ├── cz.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── pt_br.js │ │ │ │ │ └── ro.js │ │ │ │ ├── readme-tech.html │ │ │ │ ├── spell-check-logic.cgi │ │ │ │ ├── spell-check-logic.php │ │ │ │ ├── spell-check-savedicts.php │ │ │ │ ├── spell-check-style.css │ │ │ │ ├── spell-check-ui.html │ │ │ │ └── spell-check-ui.js │ │ │ ├── Stylist │ │ │ │ ├── Stylist.js │ │ │ │ └── lang │ │ │ │ │ ├── de.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt_br.js │ │ │ │ │ └── ru.js │ │ │ ├── SuperClean │ │ │ │ ├── SuperClean.js │ │ │ │ ├── dialog.html │ │ │ │ ├── filters │ │ │ │ │ ├── paragraph.js │ │ │ │ │ └── word.js │ │ │ │ ├── img │ │ │ │ │ └── ed_superclean.gif │ │ │ │ ├── lang │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ └── pt_br.js │ │ │ │ ├── pluginMethods.js │ │ │ │ └── tidy.php │ │ │ ├── TableOperations │ │ │ │ ├── TableOperations.js │ │ │ │ ├── img │ │ │ │ │ ├── cell-delete.gif │ │ │ │ │ ├── cell-insert-after.gif │ │ │ │ │ ├── cell-insert-before.gif │ │ │ │ │ ├── cell-merge.gif │ │ │ │ │ ├── cell-prop.gif │ │ │ │ │ ├── cell-split.gif │ │ │ │ │ ├── col-delete.gif │ │ │ │ │ ├── col-insert-after.gif │ │ │ │ │ ├── col-insert-before.gif │ │ │ │ │ ├── col-split.gif │ │ │ │ │ ├── row-delete.gif │ │ │ │ │ ├── row-insert-above.gif │ │ │ │ │ ├── row-insert-under.gif │ │ │ │ │ ├── row-prop.gif │ │ │ │ │ ├── row-split.gif │ │ │ │ │ └── table-prop.gif │ │ │ │ ├── lang │ │ │ │ │ ├── cz.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt_br.js │ │ │ │ │ ├── ro.js │ │ │ │ │ ├── ru.js │ │ │ │ │ └── sv.js │ │ │ │ └── popups │ │ │ │ │ ├── dialogMergeCells.html │ │ │ │ │ ├── dialogRowCell.html │ │ │ │ │ ├── dialogTable.html │ │ │ │ │ └── merge_cells.html │ │ │ ├── UnFormat │ │ │ │ ├── UnFormat.js │ │ │ │ ├── dialog.html │ │ │ │ ├── img │ │ │ │ │ └── unformat.gif │ │ │ │ └── lang │ │ │ │ │ ├── de.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ └── pt_br.js │ │ │ ├── UnsavedChanges │ │ │ │ ├── UnsavedChanges.js │ │ │ │ └── lang │ │ │ │ │ ├── es.js │ │ │ │ │ ├── fr.js │ │ │ │ │ └── fr_ca.js │ │ │ └── WysiwygWrap │ │ │ │ └── WysiwygWrap.js │ │ │ ├── popups │ │ │ ├── blank.html │ │ │ ├── editor_help.html │ │ │ ├── popup.css │ │ │ ├── popup.js │ │ │ └── select_color.html │ │ │ ├── release-notes.txt │ │ │ └── skins │ │ │ ├── blue-look │ │ │ ├── button-background.png │ │ │ ├── separator.gif │ │ │ ├── skin.css │ │ │ └── skin.xml │ │ │ ├── blue-metallic │ │ │ ├── button-background.png │ │ │ ├── separator.gif │ │ │ └── skin.css │ │ │ ├── green-look │ │ │ ├── button-background.gif │ │ │ ├── separator.gif │ │ │ └── skin.css │ │ │ ├── inditreuse │ │ │ ├── README │ │ │ ├── back.png │ │ │ ├── button-background.png │ │ │ ├── hover.png │ │ │ ├── selected.png │ │ │ ├── separator.png │ │ │ └── skin.css │ │ │ ├── silva │ │ │ ├── dialog.jpg │ │ │ ├── html.gif │ │ │ ├── skin.css │ │ │ ├── skin.xml │ │ │ ├── statusbar.png │ │ │ └── toolbar.png │ │ │ ├── titan │ │ │ ├── README │ │ │ ├── back.png │ │ │ ├── button-background.png │ │ │ ├── hover.png │ │ │ ├── selected.png │ │ │ ├── separator.png │ │ │ └── skin.css │ │ │ ├── xp-blue │ │ │ ├── back.png │ │ │ ├── button-background.png │ │ │ ├── hover.png │ │ │ ├── selected.png │ │ │ ├── separator.png │ │ │ └── skin.css │ │ │ └── xp-green │ │ │ ├── back.png │ │ │ ├── button-background.png │ │ │ ├── hover.png │ │ │ ├── selected.png │ │ │ ├── separator.png │ │ │ └── skin.css │ ├── favicon.ico │ ├── forgot_password.php │ ├── global.php │ ├── images │ │ ├── cms │ │ │ ├── admin │ │ │ │ ├── admin-button-hover.png │ │ │ │ ├── admin-button.png │ │ │ │ ├── bb-buttons.png │ │ │ │ ├── bg-header.jpg │ │ │ │ ├── bg-menu-2.jpg │ │ │ │ ├── bg-menu.jpg │ │ │ │ ├── bullet.gif │ │ │ │ ├── bullet2.gif │ │ │ │ ├── bullet3.gif │ │ │ │ ├── bullet4.gif │ │ │ │ ├── crop.gif │ │ │ │ └── logo.png │ │ │ ├── bg-error-bubble.gif │ │ │ ├── bg-error.gif │ │ │ ├── bg-message-bubble.gif │ │ │ ├── bg-message.gif │ │ │ ├── bg.gif │ │ │ ├── blank.gif │ │ │ ├── close.gif │ │ │ ├── filetypes │ │ │ │ ├── default.gif │ │ │ │ ├── dll.gif │ │ │ │ ├── doc.gif │ │ │ │ ├── exe.gif │ │ │ │ ├── folder.gif │ │ │ │ ├── folder_32.gif │ │ │ │ ├── gif.gif │ │ │ │ ├── hlp.gif │ │ │ │ ├── ini.gif │ │ │ │ ├── jpg.gif │ │ │ │ ├── mdb.gif │ │ │ │ ├── mpg.gif │ │ │ │ ├── pdf.gif │ │ │ │ ├── php.gif │ │ │ │ ├── ppt.gif │ │ │ │ ├── rar.gif │ │ │ │ ├── txt.gif │ │ │ │ ├── xls.gif │ │ │ │ └── zip.gif │ │ │ ├── icons │ │ │ │ ├── add.png │ │ │ │ ├── brick.png │ │ │ │ ├── brick_add.png │ │ │ │ ├── brick_delete.png │ │ │ │ ├── calendar_view_day.png │ │ │ │ ├── delete.png │ │ │ │ ├── email.png │ │ │ │ ├── error.png │ │ │ │ ├── folder.png │ │ │ │ ├── help.png │ │ │ │ ├── less.png │ │ │ │ ├── link_error.png │ │ │ │ ├── page.png │ │ │ │ ├── page_white_wrench.png │ │ │ │ ├── readme.txt │ │ │ │ ├── star.png │ │ │ │ └── text_align_left.png │ │ │ ├── incrementdown.gif │ │ │ ├── incrementup.gif │ │ │ ├── inherit_active.gif │ │ │ ├── inherit_grey.gif │ │ │ ├── loading.gif │ │ │ ├── message.png │ │ │ ├── no-screenshot.jpg │ │ │ ├── no_active.gif │ │ │ ├── no_grey.gif │ │ │ ├── overlay.png │ │ │ ├── yes_active.gif │ │ │ └── yes_grey.gif │ │ ├── loading.gif │ │ ├── logo.gif │ │ ├── logo.jpg │ │ └── logo.png │ ├── includes │ │ └── maintenance.php │ ├── install │ │ ├── indexes_eventlog.php │ │ ├── indexes_fielddata.php │ │ ├── indexes_lang_country.php │ │ ├── indexes_language.php │ │ ├── indexes_page.php │ │ ├── indexes_plugin.php │ │ ├── indexes_sessiondata.php │ │ ├── indexes_tabledata.php │ │ ├── indexes_theme.php │ │ ├── indexes_user.php │ │ ├── install_auth_token.php │ │ ├── install_cropdata.php │ │ ├── install_eventlog.php │ │ ├── install_fielddata.php │ │ ├── install_fielddata_flags.php │ │ ├── install_language.php │ │ ├── install_option.php │ │ ├── install_page.php │ │ ├── install_plugin.php │ │ ├── install_sessiondata.php │ │ ├── install_snippet.php │ │ ├── install_tabledata.php │ │ ├── install_theme.php │ │ ├── install_user.php │ │ ├── install_usergroup_membership.php │ │ ├── install_usergroups.php │ │ ├── plugin-scanner.php │ │ ├── styleguide.html │ │ ├── update_fielddata.php │ │ ├── update_lang_country.php │ │ ├── update_language.php │ │ ├── update_option.php │ │ ├── update_page.php │ │ ├── update_snippet.php │ │ ├── update_tabledata.php │ │ ├── update_user.php │ │ ├── update_usergroups.php │ │ └── upgrade.php │ ├── js │ │ ├── admin.js │ │ ├── core.js │ │ ├── createmenu.js │ │ ├── dateparse.js │ │ ├── functions_old.js │ │ ├── jpop.js │ │ ├── menu.js │ │ ├── password-strength.js │ │ └── timer.js │ ├── json │ │ ├── admin-edit-move.php │ │ ├── admin-edit-nodes.php │ │ ├── admin-empty-cache.php │ │ ├── admin-install-plugin.php │ │ ├── admin-install-theme.php │ │ └── admin-uninstall-plugin.php │ ├── license.txt │ ├── post_redirect.php │ ├── readme.txt │ ├── setup.php │ ├── templates │ │ ├── .htaccess │ │ ├── 404.tpl │ │ ├── admin │ │ │ ├── admin.tpl │ │ │ ├── default.tpl │ │ │ ├── edit-ajaxtree.tpl │ │ │ ├── edit.tpl │ │ │ ├── edit_js.tpl │ │ │ ├── eventlog.tpl │ │ │ ├── fields │ │ │ │ ├── checkbox.tpl │ │ │ │ ├── checkboxes.tpl │ │ │ │ ├── crypttext.tpl │ │ │ │ ├── date.tpl │ │ │ │ ├── date_js.tpl │ │ │ │ ├── dblist.tpl │ │ │ │ ├── dbpagelist.tpl │ │ │ │ ├── decimal.tpl │ │ │ │ ├── email.tpl │ │ │ │ ├── encryptedtext.tpl │ │ │ │ ├── fieldtype.tpl │ │ │ │ ├── fileupload.tpl │ │ │ │ ├── hidden.tpl │ │ │ │ ├── integer.tpl │ │ │ │ ├── internalurl.tpl │ │ │ │ ├── list.tpl │ │ │ │ ├── list_js.tpl │ │ │ │ ├── many2many.tpl │ │ │ │ ├── neweditor.tpl │ │ │ │ ├── order.tpl │ │ │ │ ├── password.tpl │ │ │ │ ├── permissions-view.tpl │ │ │ │ ├── permissions.tpl │ │ │ │ ├── plugin.tpl │ │ │ │ ├── privacy.tpl │ │ │ │ ├── radio.tpl │ │ │ │ ├── radio_js.tpl │ │ │ │ ├── readonly.tpl │ │ │ │ ├── tablepermissions.tpl │ │ │ │ ├── text.tpl │ │ │ │ ├── textarea.tpl │ │ │ │ ├── texteditor.tpl │ │ │ │ ├── timestamp.tpl │ │ │ │ ├── unixdate.tpl │ │ │ │ ├── unixdate_js.tpl │ │ │ │ └── url.tpl │ │ │ ├── footer.tpl │ │ │ ├── header.tpl │ │ │ ├── manage-plugins.tpl │ │ │ ├── manage-themes.tpl │ │ │ ├── options.tpl │ │ │ ├── options_head.tpl │ │ │ ├── systeminstaller-menu.tpl │ │ │ └── xinha_head.tpl │ │ ├── analytics.tpl │ │ ├── analytics_cross_domain_redirect.tpl │ │ ├── breadcrumbs.tpl │ │ ├── change_password.tpl │ │ ├── change_password_confirmation.tpl │ │ ├── change_password_head.tpl │ │ ├── content.tpl │ │ ├── doctype.tpl │ │ ├── email.tpl │ │ ├── errors.tpl │ │ ├── expired.tpl │ │ ├── external │ │ │ └── date_input_head.tpl │ │ ├── foot.tpl │ │ ├── forgot-password-reminder.tpl │ │ ├── forgot-password-reset.tpl │ │ ├── forgot-password.tpl │ │ ├── head.mob.tpl │ │ ├── head.tpl │ │ ├── login.tpl │ │ ├── nav │ │ │ ├── jojo_nav1.tpl │ │ │ ├── jojo_nav1_footer.tpl │ │ │ ├── jojo_nav2.tpl │ │ │ └── jojo_nav2_footer.tpl │ │ ├── ogmetatags.tpl │ │ ├── pagination.tpl │ │ ├── styleguide.tpl │ │ ├── subpages.tpl │ │ ├── template-admin.tpl │ │ └── template.tpl │ └── version.txt ├── jojo_credits │ ├── api.php │ ├── credits.class.php │ ├── description.txt │ ├── global.php │ ├── license.txt │ ├── readme.txt │ └── version.txt ├── jojo_google_verification │ ├── api.php │ ├── description.txt │ ├── jojo_google_verification.php │ ├── license.txt │ ├── readme.txt │ ├── setup.php │ ├── uninstall.php │ └── version.txt ├── jojo_redirect │ ├── actions │ │ └── admin-save-redirect.php │ ├── admin_redirects.php │ ├── api.php │ ├── description.txt │ ├── install │ │ └── install_redirect.inc.php │ ├── jojo_redirect.php │ ├── license.txt │ ├── setup.php │ ├── templates │ │ └── admin │ │ │ ├── redirects-inner.tpl │ │ │ └── redirects.tpl │ ├── uninstall.php │ └── version.txt ├── jojo_robots │ ├── api.php │ ├── description.txt │ ├── jojo_robots.php │ ├── license.txt │ ├── readme.txt │ ├── setup.php │ ├── templates │ │ └── jojo_robots.tpl │ ├── uninstall.php │ └── version.txt ├── jojo_search │ ├── api.php │ ├── css │ │ └── style.css │ ├── description.txt │ ├── images │ │ └── relevance.png │ ├── jojo_search.php │ ├── js │ │ └── functions.js │ ├── license.txt │ ├── readme.txt │ ├── setup.php │ ├── templates │ │ ├── jojo_search.tpl │ │ └── jojo_searchform.tpl │ ├── uninstall.php │ └── version.txt ├── jojo_sitemap │ ├── api.php │ ├── description.txt │ ├── external │ │ └── snoopy │ │ │ ├── AUTHORS │ │ │ ├── COPYING.lib │ │ │ ├── ChangeLog │ │ │ ├── FAQ │ │ │ ├── INSTALL │ │ │ ├── Makefile.am │ │ │ ├── NEWS │ │ │ ├── README │ │ │ ├── Snoopy.class.php │ │ │ ├── TODO │ │ │ ├── autogen.sh │ │ │ └── configure.in │ ├── global.php │ ├── images │ │ ├── lgpl.jpg │ │ ├── sortdown.gif │ │ ├── sortup.gif │ │ └── sourceforge.jpg │ ├── includes │ │ └── maintenance.php │ ├── jojo_sitemap.php │ ├── jojo_sitemapxml.php │ ├── jojo_sitemapxsl.php │ ├── license.txt │ ├── setup.php │ ├── templates │ │ ├── google_sitemap_style.tpl │ │ ├── jojo_sitemap.tpl │ │ └── xml_sitemap.tpl │ ├── uninstall.php │ └── version.txt └── jojo_tags │ ├── api.php │ ├── field │ ├── replacelist.php │ └── tag.php │ ├── install │ ├── indexes_tag.php │ ├── indexes_tag_item.php │ ├── install_tag.php │ ├── install_tag_item.php │ └── update_tag.inc.php │ ├── jojo_tags.php │ ├── json │ ├── get-related-tags.php │ └── get-tag-ideas.php │ ├── setup.php │ ├── templates │ ├── admin │ │ └── tag.tpl │ ├── tagcloud.tpl │ └── tags.tpl │ ├── uninstall.php │ └── version.txt ├── themes └── 2column │ ├── api.php │ ├── css │ ├── style.css │ └── xinha.css │ ├── global.php │ ├── js │ └── functions.js │ ├── screenshot.jpg │ └── templates │ └── template.tpl └── version.txt /README.md: -------------------------------------------------------------------------------- 1 | Jojo-CMS 2 | ======== 3 | 4 | Jojo is an SEO-friendly, fast, and extensible PHP-based CMS built by developers for developers. 5 | 6 | after cloning, run 7 | git submodule init && git submodule update 8 | 9 | -------------------------------------------------------------------------------- /_docs/readme.txt: -------------------------------------------------------------------------------- 1 | Documentation is available online at http://www.jojocms.org/docs/ -------------------------------------------------------------------------------- /plugins/jojo_article/description.txt: -------------------------------------------------------------------------------- 1 | A comprehensive plugin for writing articles, news or blogging. Allows for comments to be made to articles. -------------------------------------------------------------------------------- /plugins/jojo_article/readme.txt: -------------------------------------------------------------------------------- 1 | Please read our documentation (http://www.jojocms.org/docs/jojo_article/) for full details of this plugin. -------------------------------------------------------------------------------- /plugins/jojo_article/templates/customhead.tpl: -------------------------------------------------------------------------------- 1 | {if $smarty.get.pagenum>1}{/if} -------------------------------------------------------------------------------- /plugins/jojo_article/version.txt: -------------------------------------------------------------------------------- 1 | 4.1.0 -------------------------------------------------------------------------------- /plugins/jojo_bbcode/description.txt: -------------------------------------------------------------------------------- 1 | Some additional styles that are required by the BBCode editor (instead of using inline styles). -------------------------------------------------------------------------------- /plugins/jojo_bbcode/images/cms/icons/comment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_bbcode/images/cms/icons/comment.png -------------------------------------------------------------------------------- /plugins/jojo_bbcode/images/cms/icons/link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_bbcode/images/cms/icons/link.png -------------------------------------------------------------------------------- /plugins/jojo_bbcode/images/cms/icons/link_error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_bbcode/images/cms/icons/link_error.png -------------------------------------------------------------------------------- /plugins/jojo_bbcode/images/cms/icons/tag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_bbcode/images/cms/icons/tag.png -------------------------------------------------------------------------------- /plugins/jojo_bbcode/images/cms/icons/text_align_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_bbcode/images/cms/icons/text_align_left.png -------------------------------------------------------------------------------- /plugins/jojo_bbcode/images/cms/icons/text_bold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_bbcode/images/cms/icons/text_bold.png -------------------------------------------------------------------------------- /plugins/jojo_bbcode/images/cms/icons/text_heading_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_bbcode/images/cms/icons/text_heading_2.png -------------------------------------------------------------------------------- /plugins/jojo_bbcode/images/cms/icons/text_heading_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_bbcode/images/cms/icons/text_heading_3.png -------------------------------------------------------------------------------- /plugins/jojo_bbcode/images/cms/icons/text_heading_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_bbcode/images/cms/icons/text_heading_4.png -------------------------------------------------------------------------------- /plugins/jojo_bbcode/images/cms/icons/text_italic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_bbcode/images/cms/icons/text_italic.png -------------------------------------------------------------------------------- /plugins/jojo_bbcode/images/cms/icons/text_list_bullets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_bbcode/images/cms/icons/text_list_bullets.png -------------------------------------------------------------------------------- /plugins/jojo_bbcode/images/cms/icons/text_list_numbers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_bbcode/images/cms/icons/text_list_numbers.png -------------------------------------------------------------------------------- /plugins/jojo_bbcode/images/cms/icons/text_underline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_bbcode/images/cms/icons/text_underline.png -------------------------------------------------------------------------------- /plugins/jojo_bbcode/images/cms/shadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_bbcode/images/cms/shadow.png -------------------------------------------------------------------------------- /plugins/jojo_bbcode/version.txt: -------------------------------------------------------------------------------- 1 | 1.0 -------------------------------------------------------------------------------- /plugins/jojo_bing_verification/description.txt: -------------------------------------------------------------------------------- 1 | Allows you to create a Bing Webmaster Center XML verification file dynamically, no uploads required. -------------------------------------------------------------------------------- /plugins/jojo_bing_verification/version.txt: -------------------------------------------------------------------------------- 1 | 1.0 -------------------------------------------------------------------------------- /plugins/jojo_comment/description.txt: -------------------------------------------------------------------------------- 1 | A plugin for adding and managing comments to items from other plugins (like Articles). -------------------------------------------------------------------------------- /plugins/jojo_comment/images/blog_comment_icon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_comment/images/blog_comment_icon.gif -------------------------------------------------------------------------------- /plugins/jojo_comment/images/cms/icons/comment_delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_comment/images/cms/icons/comment_delete.png -------------------------------------------------------------------------------- /plugins/jojo_comment/images/cms/icons/comment_edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_comment/images/cms/icons/comment_edit.png -------------------------------------------------------------------------------- /plugins/jojo_comment/images/cms/icons/link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_comment/images/cms/icons/link.png -------------------------------------------------------------------------------- /plugins/jojo_comment/images/cms/icons/link_break.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_comment/images/cms/icons/link_break.png -------------------------------------------------------------------------------- /plugins/jojo_comment/images/cms/icons/text_smallcaps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_comment/images/cms/icons/text_smallcaps.png -------------------------------------------------------------------------------- /plugins/jojo_comment/images/post-comment-example.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_comment/images/post-comment-example.gif -------------------------------------------------------------------------------- /plugins/jojo_comment/images/readme.txt: -------------------------------------------------------------------------------- 1 | If you would like the "Post Comment" link to be a button, create a file here called post-comment.gif or place post-comment.gif under themes/YOURTHEME/images/ (recommended for multisite install). -------------------------------------------------------------------------------- /plugins/jojo_comment/readme.txt: -------------------------------------------------------------------------------- 1 | Please read our documentation (http://www.jojocms.org/docs/jojo_article/) for full details of this plugin. -------------------------------------------------------------------------------- /plugins/jojo_comment/version.txt: -------------------------------------------------------------------------------- 1 | 1.4 -------------------------------------------------------------------------------- /plugins/jojo_contact/description.txt: -------------------------------------------------------------------------------- 1 | A contact page, which has the usual information and a contact form. Fields on the form can be customized. -------------------------------------------------------------------------------- /plugins/jojo_contact/templates/jojo_contact_autoreply.tpl: -------------------------------------------------------------------------------- 1 | 2 | 3 | {$subject} 4 | 5 | 6 | {if $htmlmessage}{$htmlmessage}{/if} 7 | 8 | 9 | -------------------------------------------------------------------------------- /plugins/jojo_contact/version.txt: -------------------------------------------------------------------------------- 1 | 4.1 -------------------------------------------------------------------------------- /plugins/jojo_core/css/xinha.css: -------------------------------------------------------------------------------- 1 | body { 2 | background-image: none; 3 | padding: 10px; 4 | } -------------------------------------------------------------------------------- /plugins/jojo_core/description.txt: -------------------------------------------------------------------------------- 1 | These are core jojo files -------------------------------------------------------------------------------- /plugins/jojo_core/external/adodb/adodb-lib.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/adodb/adodb-lib.inc.php -------------------------------------------------------------------------------- /plugins/jojo_core/external/adodb/adodb.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/adodb/adodb.inc.php -------------------------------------------------------------------------------- /plugins/jojo_core/external/adodb/cute_icons_for_site/adodb.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/adodb/cute_icons_for_site/adodb.gif -------------------------------------------------------------------------------- /plugins/jojo_core/external/adodb/cute_icons_for_site/adodb2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/adodb/cute_icons_for_site/adodb2.gif -------------------------------------------------------------------------------- /plugins/jojo_core/external/adodb/docs/docs-adodb.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/adodb/docs/docs-adodb.htm -------------------------------------------------------------------------------- /plugins/jojo_core/external/adodb/drivers/adodb-oci8.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/adodb/drivers/adodb-oci8.inc.php -------------------------------------------------------------------------------- /plugins/jojo_core/external/adodb/lang/adodb-ar.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/adodb/lang/adodb-ar.inc.php -------------------------------------------------------------------------------- /plugins/jojo_core/external/adodb/lang/adodb-bg.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/adodb/lang/adodb-bg.inc.php -------------------------------------------------------------------------------- /plugins/jojo_core/external/adodb/lang/adodb-ca.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/adodb/lang/adodb-ca.inc.php -------------------------------------------------------------------------------- /plugins/jojo_core/external/adodb/lang/adodb-cn.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/adodb/lang/adodb-cn.inc.php -------------------------------------------------------------------------------- /plugins/jojo_core/external/adodb/lang/adodb-cz.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/adodb/lang/adodb-cz.inc.php -------------------------------------------------------------------------------- /plugins/jojo_core/external/adodb/lang/adodb-hu.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/adodb/lang/adodb-hu.inc.php -------------------------------------------------------------------------------- /plugins/jojo_core/external/adodb/lang/adodb-pl.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/adodb/lang/adodb-pl.inc.php -------------------------------------------------------------------------------- /plugins/jojo_core/external/adodb/lang/adodb-pt-br.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/adodb/lang/adodb-pt-br.inc.php -------------------------------------------------------------------------------- /plugins/jojo_core/external/adodb/lang/adodb-ru1251.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/adodb/lang/adodb-ru1251.inc.php -------------------------------------------------------------------------------- /plugins/jojo_core/external/adodb/lang/adodb-sv.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/adodb/lang/adodb-sv.inc.php -------------------------------------------------------------------------------- /plugins/jojo_core/external/adodb/lang/adodb-uk1251.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/adodb/lang/adodb-uk1251.inc.php -------------------------------------------------------------------------------- /plugins/jojo_core/external/adodb/lang/adodb_th.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/adodb/lang/adodb_th.inc.php -------------------------------------------------------------------------------- /plugins/jojo_core/external/date_input/README: -------------------------------------------------------------------------------- 1 | Find out all you need to know at: 2 | 3 | http://jonathanleighton.com/projects/date-input 4 | -------------------------------------------------------------------------------- /plugins/jojo_core/external/fonts/OpenSans-Bold-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/fonts/OpenSans-Bold-webfont.eot -------------------------------------------------------------------------------- /plugins/jojo_core/external/fonts/OpenSans-Bold-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/fonts/OpenSans-Bold-webfont.ttf -------------------------------------------------------------------------------- /plugins/jojo_core/external/fonts/OpenSans-Bold-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/fonts/OpenSans-Bold-webfont.woff -------------------------------------------------------------------------------- /plugins/jojo_core/external/fonts/OpenSans-BoldItalic-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/fonts/OpenSans-BoldItalic-webfont.eot -------------------------------------------------------------------------------- /plugins/jojo_core/external/fonts/OpenSans-BoldItalic-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/fonts/OpenSans-BoldItalic-webfont.ttf -------------------------------------------------------------------------------- /plugins/jojo_core/external/fonts/OpenSans-BoldItalic-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/fonts/OpenSans-BoldItalic-webfont.woff -------------------------------------------------------------------------------- /plugins/jojo_core/external/fonts/OpenSans-Italic-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/fonts/OpenSans-Italic-webfont.eot -------------------------------------------------------------------------------- /plugins/jojo_core/external/fonts/OpenSans-Italic-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/fonts/OpenSans-Italic-webfont.ttf -------------------------------------------------------------------------------- /plugins/jojo_core/external/fonts/OpenSans-Italic-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/fonts/OpenSans-Italic-webfont.woff -------------------------------------------------------------------------------- /plugins/jojo_core/external/fonts/OpenSans-Light-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/fonts/OpenSans-Light-webfont.eot -------------------------------------------------------------------------------- /plugins/jojo_core/external/fonts/OpenSans-Light-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/fonts/OpenSans-Light-webfont.ttf -------------------------------------------------------------------------------- /plugins/jojo_core/external/fonts/OpenSans-Light-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/fonts/OpenSans-Light-webfont.woff -------------------------------------------------------------------------------- /plugins/jojo_core/external/fonts/OpenSans-Regular-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/fonts/OpenSans-Regular-webfont.eot -------------------------------------------------------------------------------- /plugins/jojo_core/external/fonts/OpenSans-Regular-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/fonts/OpenSans-Regular-webfont.ttf -------------------------------------------------------------------------------- /plugins/jojo_core/external/fonts/OpenSans-Regular-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/fonts/OpenSans-Regular-webfont.woff -------------------------------------------------------------------------------- /plugins/jojo_core/external/frajax/readme.txt: -------------------------------------------------------------------------------- 1 | This software is beta. 2 | License: LGPL -------------------------------------------------------------------------------- /plugins/jojo_core/external/jdpicker_1/images/bg_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/jdpicker_1/images/bg_hover.png -------------------------------------------------------------------------------- /plugins/jojo_core/external/jdpicker_1/images/bg_selectable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/jdpicker_1/images/bg_selectable.png -------------------------------------------------------------------------------- /plugins/jojo_core/external/jdpicker_1/images/bg_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/jdpicker_1/images/bg_selected.png -------------------------------------------------------------------------------- /plugins/jojo_core/external/lgf-searchReferencesV2/reflog-searchv2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/lgf-searchReferencesV2/reflog-searchv2.txt -------------------------------------------------------------------------------- /plugins/jojo_core/external/lgf-searchReferencesV2/semaphore-search.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/lgf-searchReferencesV2/semaphore-search.ref -------------------------------------------------------------------------------- /plugins/jojo_core/external/markitup/sets/bbcode/images/bold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/markitup/sets/bbcode/images/bold.png -------------------------------------------------------------------------------- /plugins/jojo_core/external/markitup/sets/bbcode/images/clean.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/markitup/sets/bbcode/images/clean.png -------------------------------------------------------------------------------- /plugins/jojo_core/external/markitup/sets/bbcode/images/code.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/markitup/sets/bbcode/images/code.png -------------------------------------------------------------------------------- /plugins/jojo_core/external/markitup/sets/bbcode/images/fonts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/markitup/sets/bbcode/images/fonts.png -------------------------------------------------------------------------------- /plugins/jojo_core/external/markitup/sets/bbcode/images/h2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/markitup/sets/bbcode/images/h2.png -------------------------------------------------------------------------------- /plugins/jojo_core/external/markitup/sets/bbcode/images/h3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/markitup/sets/bbcode/images/h3.png -------------------------------------------------------------------------------- /plugins/jojo_core/external/markitup/sets/bbcode/images/h4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/markitup/sets/bbcode/images/h4.png -------------------------------------------------------------------------------- /plugins/jojo_core/external/markitup/sets/bbcode/images/h5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/markitup/sets/bbcode/images/h5.png -------------------------------------------------------------------------------- /plugins/jojo_core/external/markitup/sets/bbcode/images/h6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/markitup/sets/bbcode/images/h6.png -------------------------------------------------------------------------------- /plugins/jojo_core/external/markitup/sets/bbcode/images/italic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/markitup/sets/bbcode/images/italic.png -------------------------------------------------------------------------------- /plugins/jojo_core/external/markitup/sets/bbcode/images/link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/markitup/sets/bbcode/images/link.png -------------------------------------------------------------------------------- /plugins/jojo_core/external/markitup/sets/bbcode/images/list-bullet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/markitup/sets/bbcode/images/list-bullet.png -------------------------------------------------------------------------------- /plugins/jojo_core/external/markitup/sets/bbcode/images/list-item.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/markitup/sets/bbcode/images/list-item.png -------------------------------------------------------------------------------- /plugins/jojo_core/external/markitup/sets/bbcode/images/list-numeric.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/markitup/sets/bbcode/images/list-numeric.png -------------------------------------------------------------------------------- /plugins/jojo_core/external/markitup/sets/bbcode/images/picture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/markitup/sets/bbcode/images/picture.png -------------------------------------------------------------------------------- /plugins/jojo_core/external/markitup/sets/bbcode/images/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/markitup/sets/bbcode/images/preview.png -------------------------------------------------------------------------------- /plugins/jojo_core/external/markitup/sets/bbcode/images/quotes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/markitup/sets/bbcode/images/quotes.png -------------------------------------------------------------------------------- /plugins/jojo_core/external/markitup/sets/bbcode/images/stroke.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/markitup/sets/bbcode/images/stroke.png -------------------------------------------------------------------------------- /plugins/jojo_core/external/markitup/sets/bbcode/images/underline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/markitup/sets/bbcode/images/underline.png -------------------------------------------------------------------------------- /plugins/jojo_core/external/markitup/sets/default/images/bold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/markitup/sets/default/images/bold.png -------------------------------------------------------------------------------- /plugins/jojo_core/external/markitup/sets/default/images/clean.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/markitup/sets/default/images/clean.png -------------------------------------------------------------------------------- /plugins/jojo_core/external/markitup/sets/default/images/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/markitup/sets/default/images/image.png -------------------------------------------------------------------------------- /plugins/jojo_core/external/markitup/sets/default/images/italic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/markitup/sets/default/images/italic.png -------------------------------------------------------------------------------- /plugins/jojo_core/external/markitup/sets/default/images/link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/markitup/sets/default/images/link.png -------------------------------------------------------------------------------- /plugins/jojo_core/external/markitup/sets/default/images/picture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/markitup/sets/default/images/picture.png -------------------------------------------------------------------------------- /plugins/jojo_core/external/markitup/sets/default/images/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/markitup/sets/default/images/preview.png -------------------------------------------------------------------------------- /plugins/jojo_core/external/markitup/sets/default/images/stroke.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/markitup/sets/default/images/stroke.png -------------------------------------------------------------------------------- /plugins/jojo_core/external/markitup/sets/html/images/bold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/markitup/sets/html/images/bold.png -------------------------------------------------------------------------------- /plugins/jojo_core/external/markitup/sets/html/images/clean.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/markitup/sets/html/images/clean.png -------------------------------------------------------------------------------- /plugins/jojo_core/external/markitup/sets/html/images/h1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/markitup/sets/html/images/h1.png -------------------------------------------------------------------------------- /plugins/jojo_core/external/markitup/sets/html/images/h2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/markitup/sets/html/images/h2.png -------------------------------------------------------------------------------- /plugins/jojo_core/external/markitup/sets/html/images/h3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/markitup/sets/html/images/h3.png -------------------------------------------------------------------------------- /plugins/jojo_core/external/markitup/sets/html/images/h4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/markitup/sets/html/images/h4.png -------------------------------------------------------------------------------- /plugins/jojo_core/external/markitup/sets/html/images/h5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/markitup/sets/html/images/h5.png -------------------------------------------------------------------------------- /plugins/jojo_core/external/markitup/sets/html/images/h6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/markitup/sets/html/images/h6.png -------------------------------------------------------------------------------- /plugins/jojo_core/external/markitup/sets/html/images/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/markitup/sets/html/images/image.png -------------------------------------------------------------------------------- /plugins/jojo_core/external/markitup/sets/html/images/italic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/markitup/sets/html/images/italic.png -------------------------------------------------------------------------------- /plugins/jojo_core/external/markitup/sets/html/images/link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/markitup/sets/html/images/link.png -------------------------------------------------------------------------------- /plugins/jojo_core/external/markitup/sets/html/images/list-bullet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/markitup/sets/html/images/list-bullet.png -------------------------------------------------------------------------------- /plugins/jojo_core/external/markitup/sets/html/images/list-item.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/markitup/sets/html/images/list-item.png -------------------------------------------------------------------------------- /plugins/jojo_core/external/markitup/sets/html/images/list-numeric.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/markitup/sets/html/images/list-numeric.png -------------------------------------------------------------------------------- /plugins/jojo_core/external/markitup/sets/html/images/paragraph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/markitup/sets/html/images/paragraph.png -------------------------------------------------------------------------------- /plugins/jojo_core/external/markitup/sets/html/images/picture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/markitup/sets/html/images/picture.png -------------------------------------------------------------------------------- /plugins/jojo_core/external/markitup/sets/html/images/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/markitup/sets/html/images/preview.png -------------------------------------------------------------------------------- /plugins/jojo_core/external/markitup/sets/html/images/stroke.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/markitup/sets/html/images/stroke.png -------------------------------------------------------------------------------- /plugins/jojo_core/external/markitup/skins/markitup/images/bg-container.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/markitup/skins/markitup/images/bg-container.png -------------------------------------------------------------------------------- /plugins/jojo_core/external/markitup/skins/markitup/images/bg-editor-bbcode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/markitup/skins/markitup/images/bg-editor-bbcode.png -------------------------------------------------------------------------------- /plugins/jojo_core/external/markitup/skins/markitup/images/bg-editor-dotclear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/markitup/skins/markitup/images/bg-editor-dotclear.png -------------------------------------------------------------------------------- /plugins/jojo_core/external/markitup/skins/markitup/images/bg-editor-html.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/markitup/skins/markitup/images/bg-editor-html.png -------------------------------------------------------------------------------- /plugins/jojo_core/external/markitup/skins/markitup/images/bg-editor-json.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/markitup/skins/markitup/images/bg-editor-json.png -------------------------------------------------------------------------------- /plugins/jojo_core/external/markitup/skins/markitup/images/bg-editor-markdown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/markitup/skins/markitup/images/bg-editor-markdown.png -------------------------------------------------------------------------------- /plugins/jojo_core/external/markitup/skins/markitup/images/bg-editor-textile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/markitup/skins/markitup/images/bg-editor-textile.png -------------------------------------------------------------------------------- /plugins/jojo_core/external/markitup/skins/markitup/images/bg-editor-wiki.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/markitup/skins/markitup/images/bg-editor-wiki.png -------------------------------------------------------------------------------- /plugins/jojo_core/external/markitup/skins/markitup/images/bg-editor-xml.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/markitup/skins/markitup/images/bg-editor-xml.png -------------------------------------------------------------------------------- /plugins/jojo_core/external/markitup/skins/markitup/images/bg-editor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/markitup/skins/markitup/images/bg-editor.png -------------------------------------------------------------------------------- /plugins/jojo_core/external/markitup/skins/markitup/images/handle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/markitup/skins/markitup/images/handle.png -------------------------------------------------------------------------------- /plugins/jojo_core/external/markitup/skins/markitup/images/menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/markitup/skins/markitup/images/menu.png -------------------------------------------------------------------------------- /plugins/jojo_core/external/markitup/skins/markitup/images/submenu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/markitup/skins/markitup/images/submenu.png -------------------------------------------------------------------------------- /plugins/jojo_core/external/markitup/skins/simple/images/handle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/markitup/skins/simple/images/handle.png -------------------------------------------------------------------------------- /plugins/jojo_core/external/markitup/skins/simple/images/menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/markitup/skins/simple/images/menu.png -------------------------------------------------------------------------------- /plugins/jojo_core/external/markitup/skins/simple/images/submenu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/markitup/skins/simple/images/submenu.png -------------------------------------------------------------------------------- /plugins/jojo_core/external/markitup/templates/preview.css: -------------------------------------------------------------------------------- 1 | /* preview style examples */ 2 | body { 3 | background-color:#EFEFEF; 4 | font:70% Verdana, Arial, Helvetica, sans-serif; 5 | } -------------------------------------------------------------------------------- /plugins/jojo_core/external/mimemail/API.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/mimemail/API.txt -------------------------------------------------------------------------------- /plugins/jojo_core/external/mimemail/background.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/mimemail/background.gif -------------------------------------------------------------------------------- /plugins/jojo_core/external/mimemail/example.txt: -------------------------------------------------------------------------------- 1 | Success! 2 | 3 | This is the plain text portion of the email. -------------------------------------------------------------------------------- /plugins/jojo_core/external/php-captcha/captcha1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/php-captcha/captcha1.jpg -------------------------------------------------------------------------------- /plugins/jojo_core/external/php-captcha/captcha2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/php-captcha/captcha2.jpg -------------------------------------------------------------------------------- /plugins/jojo_core/external/php-captcha/gm.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/php-captcha/gm.ttf -------------------------------------------------------------------------------- /plugins/jojo_core/external/php-captcha/green.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/php-captcha/green.jpg -------------------------------------------------------------------------------- /plugins/jojo_core/external/php-captcha/karelia.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/php-captcha/karelia.ttf -------------------------------------------------------------------------------- /plugins/jojo_core/external/php-captcha/karenshand.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/php-captcha/karenshand.ttf -------------------------------------------------------------------------------- /plugins/jojo_core/external/php-captcha/kickflip.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/php-captcha/kickflip.ttf -------------------------------------------------------------------------------- /plugins/jojo_core/external/wysiwyg-interface/readme.txt: -------------------------------------------------------------------------------- 1 | Any additional files required to make the WYSIWYG editors work. -------------------------------------------------------------------------------- /plugins/jojo_core/external/xinha/contrib/dojo_js_compressor.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/xinha/contrib/dojo_js_compressor.jar -------------------------------------------------------------------------------- /plugins/jojo_core/external/xinha/contrib/yuicompressor-2.4.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/xinha/contrib/yuicompressor-2.4.2.jar -------------------------------------------------------------------------------- /plugins/jojo_core/external/xinha/iconsets/Classic/de/bold.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/xinha/iconsets/Classic/de/bold.gif -------------------------------------------------------------------------------- /plugins/jojo_core/external/xinha/iconsets/Classic/de/italic.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/xinha/iconsets/Classic/de/italic.gif -------------------------------------------------------------------------------- /plugins/jojo_core/external/xinha/iconsets/Classic/de/underline.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/xinha/iconsets/Classic/de/underline.gif -------------------------------------------------------------------------------- /plugins/jojo_core/external/xinha/iconsets/Classic/ed_buttons_main.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/xinha/iconsets/Classic/ed_buttons_main.gif -------------------------------------------------------------------------------- /plugins/jojo_core/external/xinha/iconsets/Classic/ed_charmap.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/xinha/iconsets/Classic/ed_charmap.gif -------------------------------------------------------------------------------- /plugins/jojo_core/external/xinha/iconsets/Classic/ed_selectall.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/xinha/iconsets/Classic/ed_selectall.gif -------------------------------------------------------------------------------- /plugins/jojo_core/external/xinha/iconsets/Classic/fr/bold.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/xinha/iconsets/Classic/fr/bold.gif -------------------------------------------------------------------------------- /plugins/jojo_core/external/xinha/iconsets/Classic/fr/strikethrough.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/xinha/iconsets/Classic/fr/strikethrough.gif -------------------------------------------------------------------------------- /plugins/jojo_core/external/xinha/iconsets/Classic/fr/underline.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/xinha/iconsets/Classic/fr/underline.gif -------------------------------------------------------------------------------- /plugins/jojo_core/external/xinha/iconsets/Crystal/README: -------------------------------------------------------------------------------- 1 | These icons are from everaldo.com, in particular from the Open Office Crystal Icons set 2 | 3 | The Crystal Project are released under LGPL. -------------------------------------------------------------------------------- /plugins/jojo_core/external/xinha/iconsets/Crystal/ed_buttons_main.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/xinha/iconsets/Crystal/ed_buttons_main.png -------------------------------------------------------------------------------- /plugins/jojo_core/external/xinha/iconsets/Tango/ed_buttons_main.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/xinha/iconsets/Tango/ed_buttons_main.png -------------------------------------------------------------------------------- /plugins/jojo_core/external/xinha/images/de/bold.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/xinha/images/de/bold.gif -------------------------------------------------------------------------------- /plugins/jojo_core/external/xinha/images/de/italic.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/xinha/images/de/italic.gif -------------------------------------------------------------------------------- /plugins/jojo_core/external/xinha/images/de/underline.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/xinha/images/de/underline.gif -------------------------------------------------------------------------------- /plugins/jojo_core/external/xinha/images/ed_about.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/xinha/images/ed_about.gif -------------------------------------------------------------------------------- /plugins/jojo_core/external/xinha/images/ed_align.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/xinha/images/ed_align.gif -------------------------------------------------------------------------------- /plugins/jojo_core/external/xinha/images/ed_align_center.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/xinha/images/ed_align_center.gif -------------------------------------------------------------------------------- /plugins/jojo_core/external/xinha/images/ed_align_justify.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/xinha/images/ed_align_justify.gif -------------------------------------------------------------------------------- /plugins/jojo_core/external/xinha/images/ed_align_left.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/xinha/images/ed_align_left.gif -------------------------------------------------------------------------------- /plugins/jojo_core/external/xinha/images/ed_align_right.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/xinha/images/ed_align_right.gif -------------------------------------------------------------------------------- /plugins/jojo_core/external/xinha/images/ed_blank.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/xinha/images/ed_blank.gif -------------------------------------------------------------------------------- /plugins/jojo_core/external/xinha/images/ed_buttons_main.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/xinha/images/ed_buttons_main.gif -------------------------------------------------------------------------------- /plugins/jojo_core/external/xinha/images/ed_buttons_main.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/xinha/images/ed_buttons_main.png -------------------------------------------------------------------------------- /plugins/jojo_core/external/xinha/images/ed_charmap.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/xinha/images/ed_charmap.gif -------------------------------------------------------------------------------- /plugins/jojo_core/external/xinha/images/ed_clearfonts.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/xinha/images/ed_clearfonts.gif -------------------------------------------------------------------------------- /plugins/jojo_core/external/xinha/images/ed_color_bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/xinha/images/ed_color_bg.gif -------------------------------------------------------------------------------- /plugins/jojo_core/external/xinha/images/ed_color_fg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/xinha/images/ed_color_fg.gif -------------------------------------------------------------------------------- /plugins/jojo_core/external/xinha/images/ed_copy.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/xinha/images/ed_copy.gif -------------------------------------------------------------------------------- /plugins/jojo_core/external/xinha/images/ed_custom.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/xinha/images/ed_custom.gif -------------------------------------------------------------------------------- /plugins/jojo_core/external/xinha/images/ed_cut.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/xinha/images/ed_cut.gif -------------------------------------------------------------------------------- /plugins/jojo_core/external/xinha/images/ed_delete.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/xinha/images/ed_delete.gif -------------------------------------------------------------------------------- /plugins/jojo_core/external/xinha/images/ed_format_bold.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/xinha/images/ed_format_bold.gif -------------------------------------------------------------------------------- /plugins/jojo_core/external/xinha/images/ed_format_italic.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/xinha/images/ed_format_italic.gif -------------------------------------------------------------------------------- /plugins/jojo_core/external/xinha/images/ed_format_strike.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/xinha/images/ed_format_strike.gif -------------------------------------------------------------------------------- /plugins/jojo_core/external/xinha/images/ed_format_sub.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/xinha/images/ed_format_sub.gif -------------------------------------------------------------------------------- /plugins/jojo_core/external/xinha/images/ed_format_sup.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/xinha/images/ed_format_sup.gif -------------------------------------------------------------------------------- /plugins/jojo_core/external/xinha/images/ed_format_underline.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/xinha/images/ed_format_underline.gif -------------------------------------------------------------------------------- /plugins/jojo_core/external/xinha/images/ed_help.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/xinha/images/ed_help.gif -------------------------------------------------------------------------------- /plugins/jojo_core/external/xinha/images/ed_hr.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/xinha/images/ed_hr.gif -------------------------------------------------------------------------------- /plugins/jojo_core/external/xinha/images/ed_html.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/xinha/images/ed_html.gif -------------------------------------------------------------------------------- /plugins/jojo_core/external/xinha/images/ed_image.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/xinha/images/ed_image.gif -------------------------------------------------------------------------------- /plugins/jojo_core/external/xinha/images/ed_indent_less.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/xinha/images/ed_indent_less.gif -------------------------------------------------------------------------------- /plugins/jojo_core/external/xinha/images/ed_indent_more.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/xinha/images/ed_indent_more.gif -------------------------------------------------------------------------------- /plugins/jojo_core/external/xinha/images/ed_killword.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/xinha/images/ed_killword.gif -------------------------------------------------------------------------------- /plugins/jojo_core/external/xinha/images/ed_left_to_right.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/xinha/images/ed_left_to_right.gif -------------------------------------------------------------------------------- /plugins/jojo_core/external/xinha/images/ed_link.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/xinha/images/ed_link.gif -------------------------------------------------------------------------------- /plugins/jojo_core/external/xinha/images/ed_list_bullet.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/xinha/images/ed_list_bullet.gif -------------------------------------------------------------------------------- /plugins/jojo_core/external/xinha/images/ed_list_num.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/xinha/images/ed_list_num.gif -------------------------------------------------------------------------------- /plugins/jojo_core/external/xinha/images/ed_overwrite.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/xinha/images/ed_overwrite.gif -------------------------------------------------------------------------------- /plugins/jojo_core/external/xinha/images/ed_paste.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/xinha/images/ed_paste.gif -------------------------------------------------------------------------------- /plugins/jojo_core/external/xinha/images/ed_print.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/xinha/images/ed_print.gif -------------------------------------------------------------------------------- /plugins/jojo_core/external/xinha/images/ed_redo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/xinha/images/ed_redo.gif -------------------------------------------------------------------------------- /plugins/jojo_core/external/xinha/images/ed_right_to_left.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/xinha/images/ed_right_to_left.gif -------------------------------------------------------------------------------- /plugins/jojo_core/external/xinha/images/ed_rmformat.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/xinha/images/ed_rmformat.gif -------------------------------------------------------------------------------- /plugins/jojo_core/external/xinha/images/ed_save.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/xinha/images/ed_save.gif -------------------------------------------------------------------------------- /plugins/jojo_core/external/xinha/images/ed_save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/xinha/images/ed_save.png -------------------------------------------------------------------------------- /plugins/jojo_core/external/xinha/images/ed_saveas.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/xinha/images/ed_saveas.gif -------------------------------------------------------------------------------- /plugins/jojo_core/external/xinha/images/ed_selectall.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/xinha/images/ed_selectall.gif -------------------------------------------------------------------------------- /plugins/jojo_core/external/xinha/images/ed_show_border.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/xinha/images/ed_show_border.gif -------------------------------------------------------------------------------- /plugins/jojo_core/external/xinha/images/ed_splitblock.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/xinha/images/ed_splitblock.gif -------------------------------------------------------------------------------- /plugins/jojo_core/external/xinha/images/ed_splitcel.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/xinha/images/ed_splitcel.gif -------------------------------------------------------------------------------- /plugins/jojo_core/external/xinha/images/ed_undo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/xinha/images/ed_undo.gif -------------------------------------------------------------------------------- /plugins/jojo_core/external/xinha/images/ed_word_cleaner.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/xinha/images/ed_word_cleaner.gif -------------------------------------------------------------------------------- /plugins/jojo_core/external/xinha/images/fr/bold.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/xinha/images/fr/bold.gif -------------------------------------------------------------------------------- /plugins/jojo_core/external/xinha/images/fr/strikethrough.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/xinha/images/fr/strikethrough.gif -------------------------------------------------------------------------------- /plugins/jojo_core/external/xinha/images/fr/underline.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/xinha/images/fr/underline.gif -------------------------------------------------------------------------------- /plugins/jojo_core/external/xinha/images/fullscreen_maximize.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/xinha/images/fullscreen_maximize.gif -------------------------------------------------------------------------------- /plugins/jojo_core/external/xinha/images/fullscreen_minimize.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/xinha/images/fullscreen_minimize.gif -------------------------------------------------------------------------------- /plugins/jojo_core/external/xinha/images/insert_table.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/xinha/images/insert_table.gif -------------------------------------------------------------------------------- /plugins/jojo_core/external/xinha/images/insertfilelink.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/xinha/images/insertfilelink.gif -------------------------------------------------------------------------------- /plugins/jojo_core/external/xinha/images/insertmacro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/xinha/images/insertmacro.png -------------------------------------------------------------------------------- /plugins/jojo_core/external/xinha/images/tango/16x16/actions/document-new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/xinha/images/tango/16x16/actions/document-new.png -------------------------------------------------------------------------------- /plugins/jojo_core/external/xinha/images/tango/16x16/actions/document-open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/xinha/images/tango/16x16/actions/document-open.png -------------------------------------------------------------------------------- /plugins/jojo_core/external/xinha/images/tango/16x16/actions/document-print.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/xinha/images/tango/16x16/actions/document-print.png -------------------------------------------------------------------------------- /plugins/jojo_core/external/xinha/images/tango/16x16/actions/document-save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/xinha/images/tango/16x16/actions/document-save.png -------------------------------------------------------------------------------- /plugins/jojo_core/external/xinha/images/tango/16x16/actions/edit-copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/xinha/images/tango/16x16/actions/edit-copy.png -------------------------------------------------------------------------------- /plugins/jojo_core/external/xinha/images/tango/16x16/actions/edit-redo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/xinha/images/tango/16x16/actions/edit-redo.png -------------------------------------------------------------------------------- /plugins/jojo_core/external/xinha/images/tango/16x16/actions/edit-select-all.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/xinha/images/tango/16x16/actions/edit-select-all.png -------------------------------------------------------------------------------- /plugins/jojo_core/external/xinha/images/tango/16x16/actions/edit-undo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/xinha/images/tango/16x16/actions/edit-undo.png -------------------------------------------------------------------------------- /plugins/jojo_core/external/xinha/images/tango/16x16/actions/folder-new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/xinha/images/tango/16x16/actions/folder-new.png -------------------------------------------------------------------------------- /plugins/jojo_core/external/xinha/images/tango/16x16/actions/format-text-bold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/xinha/images/tango/16x16/actions/format-text-bold.png -------------------------------------------------------------------------------- /plugins/jojo_core/external/xinha/images/tango/16x16/actions/go-up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/xinha/images/tango/16x16/actions/go-up.png -------------------------------------------------------------------------------- /plugins/jojo_core/external/xinha/images/tango/16x16/actions/insert-link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/xinha/images/tango/16x16/actions/insert-link.png -------------------------------------------------------------------------------- /plugins/jojo_core/external/xinha/images/tango/16x16/actions/insert-table.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/xinha/images/tango/16x16/actions/insert-table.png -------------------------------------------------------------------------------- /plugins/jojo_core/external/xinha/images/tango/16x16/actions/toggle-borders.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/xinha/images/tango/16x16/actions/toggle-borders.png -------------------------------------------------------------------------------- /plugins/jojo_core/external/xinha/images/tango/16x16/actions/view-fullscreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/xinha/images/tango/16x16/actions/view-fullscreen.png -------------------------------------------------------------------------------- /plugins/jojo_core/external/xinha/images/tango/16x16/actions/view-restore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/xinha/images/tango/16x16/actions/view-restore.png -------------------------------------------------------------------------------- /plugins/jojo_core/external/xinha/images/tango/16x16/apps/help-browser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/xinha/images/tango/16x16/apps/help-browser.png -------------------------------------------------------------------------------- /plugins/jojo_core/external/xinha/images/tango/16x16/places/user-trash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/xinha/images/tango/16x16/places/user-trash.png -------------------------------------------------------------------------------- /plugins/jojo_core/external/xinha/images/tango/32x32/mimetypes/text-html.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/xinha/images/tango/32x32/mimetypes/text-html.png -------------------------------------------------------------------------------- /plugins/jojo_core/external/xinha/images/tango/32x32/mimetypes/text-x-generic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/xinha/images/tango/32x32/mimetypes/text-x-generic.png -------------------------------------------------------------------------------- /plugins/jojo_core/external/xinha/images/tango/32x32/places/folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/xinha/images/tango/32x32/places/folder.png -------------------------------------------------------------------------------- /plugins/jojo_core/external/xinha/images/tango/32x32/places/network-server.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/xinha/images/tango/32x32/places/network-server.png -------------------------------------------------------------------------------- /plugins/jojo_core/external/xinha/images/tidy.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/xinha/images/tidy.gif -------------------------------------------------------------------------------- /plugins/jojo_core/external/xinha/images/toggle_borders.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/xinha/images/toggle_borders.gif -------------------------------------------------------------------------------- /plugins/jojo_core/external/xinha/images/xinha-small-icon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/xinha/images/xinha-small-icon.gif -------------------------------------------------------------------------------- /plugins/jojo_core/external/xinha/images/xinha_logo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/xinha/images/xinha_logo.gif -------------------------------------------------------------------------------- /plugins/jojo_core/external/xinha/lang/lv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/xinha/lang/lv.js -------------------------------------------------------------------------------- /plugins/jojo_core/external/xinha/modules/FullScreen/lang/es.js: -------------------------------------------------------------------------------- 1 | // I18N constants 2 | // LANG: "es", ENCODING: UTF-8 3 | // translated: Derick Leony 4 | { 5 | "Maximize/Minimize Editor": "Maximizar/Minimizar Editor" 6 | }; -------------------------------------------------------------------------------- /plugins/jojo_core/external/xinha/modules/FullScreen/lang/fr.js: -------------------------------------------------------------------------------- 1 | // I18N constants 2 | // LANG: "fr", ENCODING: UTF-8 3 | { 4 | "Maximize/Minimize Editor": "Agrandir/Réduire l'éditeur" 5 | }; -------------------------------------------------------------------------------- /plugins/jojo_core/external/xinha/modules/FullScreen/lang/ja.js: -------------------------------------------------------------------------------- 1 | // I18N constants 2 | // LANG: "ja", ENCODING: UTF-8 3 | { 4 | "Maximize/Minimize Editor": "エディタの最大化/最小化" 5 | }; -------------------------------------------------------------------------------- /plugins/jojo_core/external/xinha/modules/FullScreen/lang/ru.js: -------------------------------------------------------------------------------- 1 | // I18N constants 2 | // LANG: "ru", ENCODING: UTF-8 3 | // Author: Andrei Blagorazumov, a@fnr.ru 4 | { 5 | "Maximize/Minimize Editor": "Развернуть/Свернуть редактор" 6 | }; -------------------------------------------------------------------------------- /plugins/jojo_core/external/xinha/plugins/Abbreviation/img/ed_abbreviation.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/xinha/plugins/Abbreviation/img/ed_abbreviation.gif -------------------------------------------------------------------------------- /plugins/jojo_core/external/xinha/plugins/Abbreviation/lang/fr.js: -------------------------------------------------------------------------------- 1 | // I18N constants 2 | // LANG: "fr", ENCODING: UTF-8 3 | { 4 | "Abbreviation": "Abréviation", 5 | "Expansion:": "Explication", 6 | "Delete": "Supprimer" 7 | }; -------------------------------------------------------------------------------- /plugins/jojo_core/external/xinha/plugins/Abbreviation/lang/ja.js: -------------------------------------------------------------------------------- 1 | // I18N constants 2 | // LANG: "ja", ENCODING: UTF-8 3 | { 4 | "Abbreviation": "略語", 5 | "Expansion:": "展開される語:", 6 | "Delete": "削除" 7 | }; -------------------------------------------------------------------------------- /plugins/jojo_core/external/xinha/plugins/CharCounter/lang/fr.js: -------------------------------------------------------------------------------- 1 | // I18N constants 2 | // LANG: "fr", ENCODING: UTF-8 3 | { 4 | "Chars": "Caractères", 5 | "Words": "Mots" 6 | }; -------------------------------------------------------------------------------- /plugins/jojo_core/external/xinha/plugins/CharCounter/lang/ja.js: -------------------------------------------------------------------------------- 1 | // I18N constants 2 | // LANG: "ja", ENCODING: UTF-8 3 | { 4 | "Chars": "文字数", 5 | "Words": "単語数", 6 | "... in progress": "... 処理中" 7 | }; -------------------------------------------------------------------------------- /plugins/jojo_core/external/xinha/plugins/CharCounter/lang/nb.js: -------------------------------------------------------------------------------- 1 | // I18N constants 2 | // LANG: "nb", ENCODING: UTF-8 3 | // translated: Kim Steinhaug, http://www.steinhaug.com/, kim@steinhaug.com 4 | { 5 | "Chars": "Tegn" 6 | }; -------------------------------------------------------------------------------- /plugins/jojo_core/external/xinha/plugins/CharacterMap/img/ed_charmap.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/xinha/plugins/CharacterMap/img/ed_charmap.gif -------------------------------------------------------------------------------- /plugins/jojo_core/external/xinha/plugins/CharacterMap/lang/fr.js: -------------------------------------------------------------------------------- 1 | // I18N constants 2 | // LANG: "fr", ENCODING: UTF-8 3 | { 4 | "Insert special character": "Insérer un caractère spécial", 5 | "Cancel": "Annuler" 6 | }; -------------------------------------------------------------------------------- /plugins/jojo_core/external/xinha/plugins/CharacterMap/lang/it.js: -------------------------------------------------------------------------------- 1 | // I18N constants 2 | // LANG: "it", ENCODING: UTF-8 3 | { 4 | "Insert special character": "Inserisca il carattere speciale", 5 | "Cancel": "Annullamento" 6 | }; 7 | -------------------------------------------------------------------------------- /plugins/jojo_core/external/xinha/plugins/CharacterMap/lang/ja.js: -------------------------------------------------------------------------------- 1 | // I18N constants 2 | // LANG: "ja", ENCODING: UTF-8 3 | { 4 | "Insert special character": "特殊文字を挿入", 5 | "Cancel": "中止" 6 | }; -------------------------------------------------------------------------------- /plugins/jojo_core/external/xinha/plugins/DefinitionList/img/ed_dd.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/xinha/plugins/DefinitionList/img/ed_dd.gif -------------------------------------------------------------------------------- /plugins/jojo_core/external/xinha/plugins/DefinitionList/img/ed_dl.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/xinha/plugins/DefinitionList/img/ed_dl.gif -------------------------------------------------------------------------------- /plugins/jojo_core/external/xinha/plugins/DefinitionList/img/ed_dt.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/xinha/plugins/DefinitionList/img/ed_dt.gif -------------------------------------------------------------------------------- /plugins/jojo_core/external/xinha/plugins/DefinitionList/lang/ja.js: -------------------------------------------------------------------------------- 1 | // I18N constants 2 | // LANG: "ja", ENCODING: UTF-8 3 | { 4 | "definition list": "定義リスト", 5 | "definition term": "定義語", 6 | "definition description": "定義の説明" 7 | } -------------------------------------------------------------------------------- /plugins/jojo_core/external/xinha/plugins/DynamicCSS/lang/fr.js: -------------------------------------------------------------------------------- 1 | // I18N constants 2 | // LANG: "fr", ENCODING: UTF-8 3 | { 4 | "Default": "Défaut", 5 | "Undefined": "Non défini", 6 | "Choose stylesheet": "Choisir feuille de style" 7 | }; -------------------------------------------------------------------------------- /plugins/jojo_core/external/xinha/plugins/DynamicCSS/lang/ja.js: -------------------------------------------------------------------------------- 1 | // I18N constants 2 | // LANG: "ja", ENCODING: UTF-8 3 | { 4 | "Default": "なし", 5 | "Undefined": "未定義", 6 | "Choose stylesheet": "スタイルシートの選択" 7 | }; -------------------------------------------------------------------------------- /plugins/jojo_core/external/xinha/plugins/EditTag/img/ed_edit_tag.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/xinha/plugins/EditTag/img/ed_edit_tag.gif -------------------------------------------------------------------------------- /plugins/jojo_core/external/xinha/plugins/EditTag/lang/ja.js: -------------------------------------------------------------------------------- 1 | // I18N constants 2 | // LANG: "ja", ENCODING: UTF-8 3 | { 4 | "Edit HTML for selected text": "選択中テキストのHTMLを編集します", 5 | "Tag Editor": "タグエディタ" 6 | }; -------------------------------------------------------------------------------- /plugins/jojo_core/external/xinha/plugins/Equation/img/abs_value.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/xinha/plugins/Equation/img/abs_value.gif -------------------------------------------------------------------------------- /plugins/jojo_core/external/xinha/plugins/Equation/img/diag_fraction.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/xinha/plugins/Equation/img/diag_fraction.gif -------------------------------------------------------------------------------- /plugins/jojo_core/external/xinha/plugins/Equation/img/divide.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/xinha/plugins/Equation/img/divide.gif -------------------------------------------------------------------------------- /plugins/jojo_core/external/xinha/plugins/Equation/img/dsp_greater_equal.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/xinha/plugins/Equation/img/dsp_greater_equal.gif -------------------------------------------------------------------------------- /plugins/jojo_core/external/xinha/plugins/Equation/img/dsp_less_equal.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/xinha/plugins/Equation/img/dsp_less_equal.gif -------------------------------------------------------------------------------- /plugins/jojo_core/external/xinha/plugins/Equation/img/dsp_notequal.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/xinha/plugins/Equation/img/dsp_notequal.gif -------------------------------------------------------------------------------- /plugins/jojo_core/external/xinha/plugins/Equation/img/equation.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/xinha/plugins/Equation/img/equation.gif -------------------------------------------------------------------------------- /plugins/jojo_core/external/xinha/plugins/Equation/img/equation.old.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/xinha/plugins/Equation/img/equation.old.gif -------------------------------------------------------------------------------- /plugins/jojo_core/external/xinha/plugins/Equation/img/greater_equal_than.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/xinha/plugins/Equation/img/greater_equal_than.gif -------------------------------------------------------------------------------- /plugins/jojo_core/external/xinha/plugins/Equation/img/hor_fraction.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/xinha/plugins/Equation/img/hor_fraction.gif -------------------------------------------------------------------------------- /plugins/jojo_core/external/xinha/plugins/Equation/img/less_equal_than.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/xinha/plugins/Equation/img/less_equal_than.gif -------------------------------------------------------------------------------- /plugins/jojo_core/external/xinha/plugins/Equation/img/mul.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/xinha/plugins/Equation/img/mul.gif -------------------------------------------------------------------------------- /plugins/jojo_core/external/xinha/plugins/Equation/img/notequal.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/xinha/plugins/Equation/img/notequal.gif -------------------------------------------------------------------------------- /plugins/jojo_core/external/xinha/plugins/Equation/img/parenthesis.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/xinha/plugins/Equation/img/parenthesis.gif -------------------------------------------------------------------------------- /plugins/jojo_core/external/xinha/plugins/Equation/img/root.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/xinha/plugins/Equation/img/root.gif -------------------------------------------------------------------------------- /plugins/jojo_core/external/xinha/plugins/Equation/img/square_root.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/xinha/plugins/Equation/img/square_root.gif -------------------------------------------------------------------------------- /plugins/jojo_core/external/xinha/plugins/ExtendedFileManager/.htaccess: -------------------------------------------------------------------------------- 1 | php_value auto_prepend_file "jojoAdminCheck.php" 2 | -------------------------------------------------------------------------------- /plugins/jojo_core/external/xinha/plugins/ExtendedFileManager/Classes/jojoAdminCheck.php: -------------------------------------------------------------------------------- 1 | Insert Smiley 2 |
3 | 4 |
-------------------------------------------------------------------------------- /plugins/jojo_core/external/xinha/plugins/InsertSmiley/img/ed_smiley.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/xinha/plugins/InsertSmiley/img/ed_smiley.gif -------------------------------------------------------------------------------- /plugins/jojo_core/external/xinha/plugins/InsertSmiley/lang/de.js: -------------------------------------------------------------------------------- 1 | // I18N constants 2 | // LANG: "de", ENCODING: UTF-8 3 | { 4 | "Insert Smiley": "Smiley einfügen", 5 | "Smiley": "Smiley", 6 | "Cancel": "Abbrechen" 7 | }; -------------------------------------------------------------------------------- /plugins/jojo_core/external/xinha/plugins/InsertSmiley/lang/fr.js: -------------------------------------------------------------------------------- 1 | // I18N constants 2 | // LANG: "fr", ENCODING: UTF-8 3 | { 4 | "Insert Smiley": "Insérer un smiley", 5 | "Smiley": "Smiley", 6 | "Cancel": "Annuler" 7 | }; -------------------------------------------------------------------------------- /plugins/jojo_core/external/xinha/plugins/InsertSmiley/lang/ja.js: -------------------------------------------------------------------------------- 1 | // I18N constants 2 | // LANG: "ja", ENCODING: UTF-8 3 | { 4 | "Insert Smiley": "スマイリーの挿入", 5 | "Smiley": "スマイリー", 6 | "Cancel": "中止" 7 | }; -------------------------------------------------------------------------------- /plugins/jojo_core/external/xinha/plugins/InsertSmiley/smileys/Angry.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/xinha/plugins/InsertSmiley/smileys/Angry.gif -------------------------------------------------------------------------------- /plugins/jojo_core/external/xinha/plugins/InsertSmiley/smileys/Cool.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/xinha/plugins/InsertSmiley/smileys/Cool.gif -------------------------------------------------------------------------------- /plugins/jojo_core/external/xinha/plugins/InsertSmiley/smileys/Excited.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/xinha/plugins/InsertSmiley/smileys/Excited.gif -------------------------------------------------------------------------------- /plugins/jojo_core/external/xinha/plugins/InsertSmiley/smileys/Grin.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/xinha/plugins/InsertSmiley/smileys/Grin.gif -------------------------------------------------------------------------------- /plugins/jojo_core/external/xinha/plugins/InsertSmiley/smileys/Pleased.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/xinha/plugins/InsertSmiley/smileys/Pleased.gif -------------------------------------------------------------------------------- /plugins/jojo_core/external/xinha/plugins/InsertSmiley/smileys/Sad.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/xinha/plugins/InsertSmiley/smileys/Sad.gif -------------------------------------------------------------------------------- /plugins/jojo_core/external/xinha/plugins/InsertSmiley/smileys/Surprised.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/xinha/plugins/InsertSmiley/smileys/Surprised.gif -------------------------------------------------------------------------------- /plugins/jojo_core/external/xinha/plugins/InsertSmiley/smileys/Wink.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/xinha/plugins/InsertSmiley/smileys/Wink.gif -------------------------------------------------------------------------------- /plugins/jojo_core/external/xinha/plugins/InsertSnippet/img/ed_snippet.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/xinha/plugins/InsertSnippet/img/ed_snippet.gif -------------------------------------------------------------------------------- /plugins/jojo_core/external/xinha/plugins/InsertSnippet2/img/1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/xinha/plugins/InsertSnippet2/img/1.PNG -------------------------------------------------------------------------------- /plugins/jojo_core/external/xinha/plugins/InsertSnippet2/img/10.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/xinha/plugins/InsertSnippet2/img/10.PNG -------------------------------------------------------------------------------- /plugins/jojo_core/external/xinha/plugins/InsertSnippet2/img/11.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/xinha/plugins/InsertSnippet2/img/11.PNG -------------------------------------------------------------------------------- /plugins/jojo_core/external/xinha/plugins/InsertSnippet2/img/12.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/xinha/plugins/InsertSnippet2/img/12.PNG -------------------------------------------------------------------------------- /plugins/jojo_core/external/xinha/plugins/InsertSnippet2/img/13.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/xinha/plugins/InsertSnippet2/img/13.PNG -------------------------------------------------------------------------------- /plugins/jojo_core/external/xinha/plugins/InsertSnippet2/img/14.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/xinha/plugins/InsertSnippet2/img/14.PNG -------------------------------------------------------------------------------- /plugins/jojo_core/external/xinha/plugins/InsertSnippet2/img/15.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/xinha/plugins/InsertSnippet2/img/15.PNG -------------------------------------------------------------------------------- /plugins/jojo_core/external/xinha/plugins/InsertSnippet2/img/16.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/xinha/plugins/InsertSnippet2/img/16.PNG -------------------------------------------------------------------------------- /plugins/jojo_core/external/xinha/plugins/InsertSnippet2/img/2.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/xinha/plugins/InsertSnippet2/img/2.PNG -------------------------------------------------------------------------------- /plugins/jojo_core/external/xinha/plugins/InsertSnippet2/img/3.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/xinha/plugins/InsertSnippet2/img/3.PNG -------------------------------------------------------------------------------- /plugins/jojo_core/external/xinha/plugins/InsertSnippet2/img/4.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/xinha/plugins/InsertSnippet2/img/4.PNG -------------------------------------------------------------------------------- /plugins/jojo_core/external/xinha/plugins/InsertSnippet2/img/5.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/xinha/plugins/InsertSnippet2/img/5.PNG -------------------------------------------------------------------------------- /plugins/jojo_core/external/xinha/plugins/InsertSnippet2/img/6.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/xinha/plugins/InsertSnippet2/img/6.PNG -------------------------------------------------------------------------------- /plugins/jojo_core/external/xinha/plugins/InsertSnippet2/img/7.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/xinha/plugins/InsertSnippet2/img/7.PNG -------------------------------------------------------------------------------- /plugins/jojo_core/external/xinha/plugins/InsertSnippet2/img/8.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/xinha/plugins/InsertSnippet2/img/8.PNG -------------------------------------------------------------------------------- /plugins/jojo_core/external/xinha/plugins/InsertSnippet2/img/9.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/xinha/plugins/InsertSnippet2/img/9.PNG -------------------------------------------------------------------------------- /plugins/jojo_core/external/xinha/plugins/InsertSnippet2/img/ed_snippet.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/xinha/plugins/InsertSnippet2/img/ed_snippet.gif -------------------------------------------------------------------------------- /plugins/jojo_core/external/xinha/plugins/Linker/dTree/img/base.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/xinha/plugins/Linker/dTree/img/base.gif -------------------------------------------------------------------------------- /plugins/jojo_core/external/xinha/plugins/Linker/dTree/img/cd.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/xinha/plugins/Linker/dTree/img/cd.gif -------------------------------------------------------------------------------- /plugins/jojo_core/external/xinha/plugins/Linker/dTree/img/copy.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/xinha/plugins/Linker/dTree/img/copy.gif -------------------------------------------------------------------------------- /plugins/jojo_core/external/xinha/plugins/Linker/dTree/img/empty.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/xinha/plugins/Linker/dTree/img/empty.gif -------------------------------------------------------------------------------- /plugins/jojo_core/external/xinha/plugins/Linker/dTree/img/folder.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/xinha/plugins/Linker/dTree/img/folder.gif -------------------------------------------------------------------------------- /plugins/jojo_core/external/xinha/plugins/Linker/dTree/img/folderopen.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/xinha/plugins/Linker/dTree/img/folderopen.gif -------------------------------------------------------------------------------- /plugins/jojo_core/external/xinha/plugins/Linker/dTree/img/globe.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/xinha/plugins/Linker/dTree/img/globe.gif -------------------------------------------------------------------------------- /plugins/jojo_core/external/xinha/plugins/Linker/dTree/img/imgfolder.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/xinha/plugins/Linker/dTree/img/imgfolder.gif -------------------------------------------------------------------------------- /plugins/jojo_core/external/xinha/plugins/Linker/dTree/img/join.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/xinha/plugins/Linker/dTree/img/join.gif -------------------------------------------------------------------------------- /plugins/jojo_core/external/xinha/plugins/Linker/dTree/img/joinbottom.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/xinha/plugins/Linker/dTree/img/joinbottom.gif -------------------------------------------------------------------------------- /plugins/jojo_core/external/xinha/plugins/Linker/dTree/img/line.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/xinha/plugins/Linker/dTree/img/line.gif -------------------------------------------------------------------------------- /plugins/jojo_core/external/xinha/plugins/Linker/dTree/img/minus.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/xinha/plugins/Linker/dTree/img/minus.gif -------------------------------------------------------------------------------- /plugins/jojo_core/external/xinha/plugins/Linker/dTree/img/minusbottom.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/xinha/plugins/Linker/dTree/img/minusbottom.gif -------------------------------------------------------------------------------- /plugins/jojo_core/external/xinha/plugins/Linker/dTree/img/move.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/xinha/plugins/Linker/dTree/img/move.gif -------------------------------------------------------------------------------- /plugins/jojo_core/external/xinha/plugins/Linker/dTree/img/musicfolder.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/xinha/plugins/Linker/dTree/img/musicfolder.gif -------------------------------------------------------------------------------- /plugins/jojo_core/external/xinha/plugins/Linker/dTree/img/nolines_minus.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/xinha/plugins/Linker/dTree/img/nolines_minus.gif -------------------------------------------------------------------------------- /plugins/jojo_core/external/xinha/plugins/Linker/dTree/img/nolines_plus.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/xinha/plugins/Linker/dTree/img/nolines_plus.gif -------------------------------------------------------------------------------- /plugins/jojo_core/external/xinha/plugins/Linker/dTree/img/offline.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/xinha/plugins/Linker/dTree/img/offline.gif -------------------------------------------------------------------------------- /plugins/jojo_core/external/xinha/plugins/Linker/dTree/img/offline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/xinha/plugins/Linker/dTree/img/offline.png -------------------------------------------------------------------------------- /plugins/jojo_core/external/xinha/plugins/Linker/dTree/img/page.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/xinha/plugins/Linker/dTree/img/page.gif -------------------------------------------------------------------------------- /plugins/jojo_core/external/xinha/plugins/Linker/dTree/img/plus.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/xinha/plugins/Linker/dTree/img/plus.gif -------------------------------------------------------------------------------- /plugins/jojo_core/external/xinha/plugins/Linker/dTree/img/plusbottom.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/xinha/plugins/Linker/dTree/img/plusbottom.gif -------------------------------------------------------------------------------- /plugins/jojo_core/external/xinha/plugins/Linker/dTree/img/question.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/xinha/plugins/Linker/dTree/img/question.gif -------------------------------------------------------------------------------- /plugins/jojo_core/external/xinha/plugins/Linker/dTree/img/trash.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/xinha/plugins/Linker/dTree/img/trash.gif -------------------------------------------------------------------------------- /plugins/jojo_core/external/xinha/plugins/ListType/img/circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/xinha/plugins/ListType/img/circle.png -------------------------------------------------------------------------------- /plugins/jojo_core/external/xinha/plugins/ListType/img/decimal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/xinha/plugins/ListType/img/decimal.png -------------------------------------------------------------------------------- /plugins/jojo_core/external/xinha/plugins/ListType/img/disc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/xinha/plugins/ListType/img/disc.png -------------------------------------------------------------------------------- /plugins/jojo_core/external/xinha/plugins/ListType/img/lower-alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/xinha/plugins/ListType/img/lower-alpha.png -------------------------------------------------------------------------------- /plugins/jojo_core/external/xinha/plugins/ListType/img/lower-roman.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/xinha/plugins/ListType/img/lower-roman.png -------------------------------------------------------------------------------- /plugins/jojo_core/external/xinha/plugins/ListType/img/none.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/xinha/plugins/ListType/img/none.png -------------------------------------------------------------------------------- /plugins/jojo_core/external/xinha/plugins/ListType/img/square.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/xinha/plugins/ListType/img/square.png -------------------------------------------------------------------------------- /plugins/jojo_core/external/xinha/plugins/ListType/img/upper-alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/xinha/plugins/ListType/img/upper-alpha.png -------------------------------------------------------------------------------- /plugins/jojo_core/external/xinha/plugins/ListType/img/upper-roman.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/xinha/plugins/ListType/img/upper-roman.png -------------------------------------------------------------------------------- /plugins/jojo_core/external/xinha/plugins/PSServer/demo_images/.htaccess: -------------------------------------------------------------------------------- 1 | php_flag engine off 2 | AddType text/html .html .htm .shtml .php .php3 .phtml .phtm .pl .py .cgi -------------------------------------------------------------------------------- /plugins/jojo_core/external/xinha/plugins/PSServer/demo_images/bikerpeep.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/xinha/plugins/PSServer/demo_images/bikerpeep.jpg -------------------------------------------------------------------------------- /plugins/jojo_core/external/xinha/plugins/PSServer/demo_images/linux/linux.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/xinha/plugins/PSServer/demo_images/linux/linux.gif -------------------------------------------------------------------------------- /plugins/jojo_core/external/xinha/plugins/PSServer/demo_images/wesnoth078.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/xinha/plugins/PSServer/demo_images/wesnoth078.jpg -------------------------------------------------------------------------------- /plugins/jojo_core/external/xinha/plugins/PasteText/img/ed_paste_text.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/xinha/plugins/PasteText/img/ed_paste_text.gif -------------------------------------------------------------------------------- /plugins/jojo_core/external/xinha/plugins/PasteText/lang/fr.js: -------------------------------------------------------------------------------- 1 | // I18N constants 2 | // LANG: "fr", ENCODING: UTF-8 3 | { 4 | "Paste as Plain Text": "Copier comme texte pur" 5 | }; -------------------------------------------------------------------------------- /plugins/jojo_core/external/xinha/plugins/PasteText/lang/ja.js: -------------------------------------------------------------------------------- 1 | // I18N constants 2 | // LANG: "ja", ENCODING: UTF-8 3 | { 4 | "Paste as Plain Text": "プレーンテキストとして貼り付け" 5 | }; -------------------------------------------------------------------------------- /plugins/jojo_core/external/xinha/plugins/PasteText/lang/ru.js: -------------------------------------------------------------------------------- 1 | // I18N constants 2 | // LANG: "ru", ENCODING: UTF-8 3 | { 4 | "Paste as Plain Text": "Вставить как обычный текст" 5 | }; -------------------------------------------------------------------------------- /plugins/jojo_core/external/xinha/plugins/PreserveScripts/js.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/xinha/plugins/PreserveScripts/js.png -------------------------------------------------------------------------------- /plugins/jojo_core/external/xinha/plugins/PreserveScripts/php.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/xinha/plugins/PreserveScripts/php.png -------------------------------------------------------------------------------- /plugins/jojo_core/external/xinha/plugins/QuickTag/img/ed_quicktag.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/xinha/plugins/QuickTag/img/ed_quicktag.gif -------------------------------------------------------------------------------- /plugins/jojo_core/external/xinha/plugins/SaveSubmit/img/ed_save_green.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/xinha/plugins/SaveSubmit/img/ed_save_green.gif -------------------------------------------------------------------------------- /plugins/jojo_core/external/xinha/plugins/SaveSubmit/img/ed_save_red.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/xinha/plugins/SaveSubmit/img/ed_save_red.gif -------------------------------------------------------------------------------- /plugins/jojo_core/external/xinha/plugins/SaveSubmit/lang/ja.js: -------------------------------------------------------------------------------- 1 | // I18N constants 2 | // LANG: "ja", ENCODING: UTF-8 3 | { 4 | "Save": "保存", 5 | "Saving...": "保存中...", 6 | "in progress": "処理中", 7 | "Ready": "レディ" 8 | }; -------------------------------------------------------------------------------- /plugins/jojo_core/external/xinha/plugins/SetId/img/placeholder.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/xinha/plugins/SetId/img/placeholder.gif -------------------------------------------------------------------------------- /plugins/jojo_core/external/xinha/plugins/SetId/img/set-id.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/xinha/plugins/SetId/img/set-id.gif -------------------------------------------------------------------------------- /plugins/jojo_core/external/xinha/plugins/SmartReplace/img/smartquotes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/xinha/plugins/SmartReplace/img/smartquotes.png -------------------------------------------------------------------------------- /plugins/jojo_core/external/xinha/plugins/SpellChecker/.htaccess: -------------------------------------------------------------------------------- 1 | php_value auto_prepend_file "jojoAdminCheck.php" 2 | -------------------------------------------------------------------------------- /plugins/jojo_core/external/xinha/plugins/SpellChecker/img/he-spell-check.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/xinha/plugins/SpellChecker/img/he-spell-check.gif -------------------------------------------------------------------------------- /plugins/jojo_core/external/xinha/plugins/SpellChecker/img/spell-check.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/xinha/plugins/SpellChecker/img/spell-check.gif -------------------------------------------------------------------------------- /plugins/jojo_core/external/xinha/plugins/SpellChecker/jojoAdminCheck.php: -------------------------------------------------------------------------------- 1 | ]*>/gi, ''); 3 | html = html.replace(/<\/\s*p\s*>/gi, ''); 4 | html = html.trim(); 5 | return html; 6 | } -------------------------------------------------------------------------------- /plugins/jojo_core/external/xinha/plugins/SuperClean/img/ed_superclean.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/xinha/plugins/SuperClean/img/ed_superclean.gif -------------------------------------------------------------------------------- /plugins/jojo_core/external/xinha/plugins/TableOperations/img/cell-delete.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/xinha/plugins/TableOperations/img/cell-delete.gif -------------------------------------------------------------------------------- /plugins/jojo_core/external/xinha/plugins/TableOperations/img/cell-merge.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/xinha/plugins/TableOperations/img/cell-merge.gif -------------------------------------------------------------------------------- /plugins/jojo_core/external/xinha/plugins/TableOperations/img/cell-prop.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/xinha/plugins/TableOperations/img/cell-prop.gif -------------------------------------------------------------------------------- /plugins/jojo_core/external/xinha/plugins/TableOperations/img/cell-split.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/xinha/plugins/TableOperations/img/cell-split.gif -------------------------------------------------------------------------------- /plugins/jojo_core/external/xinha/plugins/TableOperations/img/col-delete.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/xinha/plugins/TableOperations/img/col-delete.gif -------------------------------------------------------------------------------- /plugins/jojo_core/external/xinha/plugins/TableOperations/img/col-split.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/xinha/plugins/TableOperations/img/col-split.gif -------------------------------------------------------------------------------- /plugins/jojo_core/external/xinha/plugins/TableOperations/img/row-delete.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/xinha/plugins/TableOperations/img/row-delete.gif -------------------------------------------------------------------------------- /plugins/jojo_core/external/xinha/plugins/TableOperations/img/row-prop.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/xinha/plugins/TableOperations/img/row-prop.gif -------------------------------------------------------------------------------- /plugins/jojo_core/external/xinha/plugins/TableOperations/img/row-split.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/xinha/plugins/TableOperations/img/row-split.gif -------------------------------------------------------------------------------- /plugins/jojo_core/external/xinha/plugins/TableOperations/img/table-prop.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/xinha/plugins/TableOperations/img/table-prop.gif -------------------------------------------------------------------------------- /plugins/jojo_core/external/xinha/plugins/UnFormat/img/unformat.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/xinha/plugins/UnFormat/img/unformat.gif -------------------------------------------------------------------------------- /plugins/jojo_core/external/xinha/plugins/UnsavedChanges/lang/es.js: -------------------------------------------------------------------------------- 1 | // I18N constants 2 | // LANG: "es", ENCODING: UTF-8 3 | { 4 | "You have unsaved changes in the editor": "Usted no ha guardado sus modificaciones" 5 | }; 6 | -------------------------------------------------------------------------------- /plugins/jojo_core/external/xinha/plugins/UnsavedChanges/lang/fr.js: -------------------------------------------------------------------------------- 1 | // I18N constants 2 | // LANG: "fr", ENCODING: UTF-8 3 | { 4 | "You have unsaved changes in the editor": "Vous n'avez pas enregistré vos modifications" 5 | }; 6 | -------------------------------------------------------------------------------- /plugins/jojo_core/external/xinha/plugins/UnsavedChanges/lang/fr_ca.js: -------------------------------------------------------------------------------- 1 | // I18N constants 2 | // LANG: "fr_ca", ENCODING: UTF-8 3 | { 4 | "You have unsaved changes in the editor": "Tu n'as pas enregistré tes modifications" 5 | }; 6 | -------------------------------------------------------------------------------- /plugins/jojo_core/external/xinha/popups/blank.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plugins/jojo_core/external/xinha/skins/blue-look/button-background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/xinha/skins/blue-look/button-background.png -------------------------------------------------------------------------------- /plugins/jojo_core/external/xinha/skins/blue-look/separator.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/xinha/skins/blue-look/separator.gif -------------------------------------------------------------------------------- /plugins/jojo_core/external/xinha/skins/blue-metallic/button-background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/xinha/skins/blue-metallic/button-background.png -------------------------------------------------------------------------------- /plugins/jojo_core/external/xinha/skins/blue-metallic/separator.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/xinha/skins/blue-metallic/separator.gif -------------------------------------------------------------------------------- /plugins/jojo_core/external/xinha/skins/green-look/button-background.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/xinha/skins/green-look/button-background.gif -------------------------------------------------------------------------------- /plugins/jojo_core/external/xinha/skins/green-look/separator.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/xinha/skins/green-look/separator.gif -------------------------------------------------------------------------------- /plugins/jojo_core/external/xinha/skins/inditreuse/back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/xinha/skins/inditreuse/back.png -------------------------------------------------------------------------------- /plugins/jojo_core/external/xinha/skins/inditreuse/button-background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/xinha/skins/inditreuse/button-background.png -------------------------------------------------------------------------------- /plugins/jojo_core/external/xinha/skins/inditreuse/hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/xinha/skins/inditreuse/hover.png -------------------------------------------------------------------------------- /plugins/jojo_core/external/xinha/skins/inditreuse/selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/xinha/skins/inditreuse/selected.png -------------------------------------------------------------------------------- /plugins/jojo_core/external/xinha/skins/inditreuse/separator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/xinha/skins/inditreuse/separator.png -------------------------------------------------------------------------------- /plugins/jojo_core/external/xinha/skins/silva/dialog.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/xinha/skins/silva/dialog.jpg -------------------------------------------------------------------------------- /plugins/jojo_core/external/xinha/skins/silva/html.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/xinha/skins/silva/html.gif -------------------------------------------------------------------------------- /plugins/jojo_core/external/xinha/skins/silva/statusbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/xinha/skins/silva/statusbar.png -------------------------------------------------------------------------------- /plugins/jojo_core/external/xinha/skins/silva/toolbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/xinha/skins/silva/toolbar.png -------------------------------------------------------------------------------- /plugins/jojo_core/external/xinha/skins/titan/back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/xinha/skins/titan/back.png -------------------------------------------------------------------------------- /plugins/jojo_core/external/xinha/skins/titan/button-background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/xinha/skins/titan/button-background.png -------------------------------------------------------------------------------- /plugins/jojo_core/external/xinha/skins/titan/hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/xinha/skins/titan/hover.png -------------------------------------------------------------------------------- /plugins/jojo_core/external/xinha/skins/titan/selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/xinha/skins/titan/selected.png -------------------------------------------------------------------------------- /plugins/jojo_core/external/xinha/skins/titan/separator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/xinha/skins/titan/separator.png -------------------------------------------------------------------------------- /plugins/jojo_core/external/xinha/skins/xp-blue/back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/xinha/skins/xp-blue/back.png -------------------------------------------------------------------------------- /plugins/jojo_core/external/xinha/skins/xp-blue/button-background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/xinha/skins/xp-blue/button-background.png -------------------------------------------------------------------------------- /plugins/jojo_core/external/xinha/skins/xp-blue/hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/xinha/skins/xp-blue/hover.png -------------------------------------------------------------------------------- /plugins/jojo_core/external/xinha/skins/xp-blue/selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/xinha/skins/xp-blue/selected.png -------------------------------------------------------------------------------- /plugins/jojo_core/external/xinha/skins/xp-blue/separator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/xinha/skins/xp-blue/separator.png -------------------------------------------------------------------------------- /plugins/jojo_core/external/xinha/skins/xp-green/back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/xinha/skins/xp-green/back.png -------------------------------------------------------------------------------- /plugins/jojo_core/external/xinha/skins/xp-green/button-background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/xinha/skins/xp-green/button-background.png -------------------------------------------------------------------------------- /plugins/jojo_core/external/xinha/skins/xp-green/hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/xinha/skins/xp-green/hover.png -------------------------------------------------------------------------------- /plugins/jojo_core/external/xinha/skins/xp-green/selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/xinha/skins/xp-green/selected.png -------------------------------------------------------------------------------- /plugins/jojo_core/external/xinha/skins/xp-green/separator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/external/xinha/skins/xp-green/separator.png -------------------------------------------------------------------------------- /plugins/jojo_core/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/favicon.ico -------------------------------------------------------------------------------- /plugins/jojo_core/images/cms/admin/admin-button-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/images/cms/admin/admin-button-hover.png -------------------------------------------------------------------------------- /plugins/jojo_core/images/cms/admin/admin-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/images/cms/admin/admin-button.png -------------------------------------------------------------------------------- /plugins/jojo_core/images/cms/admin/bb-buttons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/images/cms/admin/bb-buttons.png -------------------------------------------------------------------------------- /plugins/jojo_core/images/cms/admin/bg-header.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/images/cms/admin/bg-header.jpg -------------------------------------------------------------------------------- /plugins/jojo_core/images/cms/admin/bg-menu-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/images/cms/admin/bg-menu-2.jpg -------------------------------------------------------------------------------- /plugins/jojo_core/images/cms/admin/bg-menu.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/images/cms/admin/bg-menu.jpg -------------------------------------------------------------------------------- /plugins/jojo_core/images/cms/admin/bullet.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/images/cms/admin/bullet.gif -------------------------------------------------------------------------------- /plugins/jojo_core/images/cms/admin/bullet2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/images/cms/admin/bullet2.gif -------------------------------------------------------------------------------- /plugins/jojo_core/images/cms/admin/bullet3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/images/cms/admin/bullet3.gif -------------------------------------------------------------------------------- /plugins/jojo_core/images/cms/admin/bullet4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/images/cms/admin/bullet4.gif -------------------------------------------------------------------------------- /plugins/jojo_core/images/cms/admin/crop.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/images/cms/admin/crop.gif -------------------------------------------------------------------------------- /plugins/jojo_core/images/cms/admin/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/images/cms/admin/logo.png -------------------------------------------------------------------------------- /plugins/jojo_core/images/cms/bg-error-bubble.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/images/cms/bg-error-bubble.gif -------------------------------------------------------------------------------- /plugins/jojo_core/images/cms/bg-error.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/images/cms/bg-error.gif -------------------------------------------------------------------------------- /plugins/jojo_core/images/cms/bg-message-bubble.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/images/cms/bg-message-bubble.gif -------------------------------------------------------------------------------- /plugins/jojo_core/images/cms/bg-message.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/images/cms/bg-message.gif -------------------------------------------------------------------------------- /plugins/jojo_core/images/cms/bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/images/cms/bg.gif -------------------------------------------------------------------------------- /plugins/jojo_core/images/cms/blank.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/images/cms/blank.gif -------------------------------------------------------------------------------- /plugins/jojo_core/images/cms/close.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/images/cms/close.gif -------------------------------------------------------------------------------- /plugins/jojo_core/images/cms/filetypes/default.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/images/cms/filetypes/default.gif -------------------------------------------------------------------------------- /plugins/jojo_core/images/cms/filetypes/dll.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/images/cms/filetypes/dll.gif -------------------------------------------------------------------------------- /plugins/jojo_core/images/cms/filetypes/doc.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/images/cms/filetypes/doc.gif -------------------------------------------------------------------------------- /plugins/jojo_core/images/cms/filetypes/exe.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/images/cms/filetypes/exe.gif -------------------------------------------------------------------------------- /plugins/jojo_core/images/cms/filetypes/folder.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/images/cms/filetypes/folder.gif -------------------------------------------------------------------------------- /plugins/jojo_core/images/cms/filetypes/folder_32.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/images/cms/filetypes/folder_32.gif -------------------------------------------------------------------------------- /plugins/jojo_core/images/cms/filetypes/gif.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/images/cms/filetypes/gif.gif -------------------------------------------------------------------------------- /plugins/jojo_core/images/cms/filetypes/hlp.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/images/cms/filetypes/hlp.gif -------------------------------------------------------------------------------- /plugins/jojo_core/images/cms/filetypes/ini.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/images/cms/filetypes/ini.gif -------------------------------------------------------------------------------- /plugins/jojo_core/images/cms/filetypes/jpg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/images/cms/filetypes/jpg.gif -------------------------------------------------------------------------------- /plugins/jojo_core/images/cms/filetypes/mdb.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/images/cms/filetypes/mdb.gif -------------------------------------------------------------------------------- /plugins/jojo_core/images/cms/filetypes/mpg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/images/cms/filetypes/mpg.gif -------------------------------------------------------------------------------- /plugins/jojo_core/images/cms/filetypes/pdf.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/images/cms/filetypes/pdf.gif -------------------------------------------------------------------------------- /plugins/jojo_core/images/cms/filetypes/php.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/images/cms/filetypes/php.gif -------------------------------------------------------------------------------- /plugins/jojo_core/images/cms/filetypes/ppt.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/images/cms/filetypes/ppt.gif -------------------------------------------------------------------------------- /plugins/jojo_core/images/cms/filetypes/rar.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/images/cms/filetypes/rar.gif -------------------------------------------------------------------------------- /plugins/jojo_core/images/cms/filetypes/txt.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/images/cms/filetypes/txt.gif -------------------------------------------------------------------------------- /plugins/jojo_core/images/cms/filetypes/xls.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/images/cms/filetypes/xls.gif -------------------------------------------------------------------------------- /plugins/jojo_core/images/cms/filetypes/zip.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/images/cms/filetypes/zip.gif -------------------------------------------------------------------------------- /plugins/jojo_core/images/cms/icons/add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/images/cms/icons/add.png -------------------------------------------------------------------------------- /plugins/jojo_core/images/cms/icons/brick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/images/cms/icons/brick.png -------------------------------------------------------------------------------- /plugins/jojo_core/images/cms/icons/brick_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/images/cms/icons/brick_add.png -------------------------------------------------------------------------------- /plugins/jojo_core/images/cms/icons/brick_delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/images/cms/icons/brick_delete.png -------------------------------------------------------------------------------- /plugins/jojo_core/images/cms/icons/calendar_view_day.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/images/cms/icons/calendar_view_day.png -------------------------------------------------------------------------------- /plugins/jojo_core/images/cms/icons/delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/images/cms/icons/delete.png -------------------------------------------------------------------------------- /plugins/jojo_core/images/cms/icons/email.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/images/cms/icons/email.png -------------------------------------------------------------------------------- /plugins/jojo_core/images/cms/icons/error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/images/cms/icons/error.png -------------------------------------------------------------------------------- /plugins/jojo_core/images/cms/icons/folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/images/cms/icons/folder.png -------------------------------------------------------------------------------- /plugins/jojo_core/images/cms/icons/help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/images/cms/icons/help.png -------------------------------------------------------------------------------- /plugins/jojo_core/images/cms/icons/less.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/images/cms/icons/less.png -------------------------------------------------------------------------------- /plugins/jojo_core/images/cms/icons/link_error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/images/cms/icons/link_error.png -------------------------------------------------------------------------------- /plugins/jojo_core/images/cms/icons/page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/images/cms/icons/page.png -------------------------------------------------------------------------------- /plugins/jojo_core/images/cms/icons/page_white_wrench.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/images/cms/icons/page_white_wrench.png -------------------------------------------------------------------------------- /plugins/jojo_core/images/cms/icons/star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/images/cms/icons/star.png -------------------------------------------------------------------------------- /plugins/jojo_core/images/cms/icons/text_align_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/images/cms/icons/text_align_left.png -------------------------------------------------------------------------------- /plugins/jojo_core/images/cms/incrementdown.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/images/cms/incrementdown.gif -------------------------------------------------------------------------------- /plugins/jojo_core/images/cms/incrementup.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/images/cms/incrementup.gif -------------------------------------------------------------------------------- /plugins/jojo_core/images/cms/inherit_active.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/images/cms/inherit_active.gif -------------------------------------------------------------------------------- /plugins/jojo_core/images/cms/inherit_grey.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/images/cms/inherit_grey.gif -------------------------------------------------------------------------------- /plugins/jojo_core/images/cms/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/images/cms/loading.gif -------------------------------------------------------------------------------- /plugins/jojo_core/images/cms/message.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/images/cms/message.png -------------------------------------------------------------------------------- /plugins/jojo_core/images/cms/no-screenshot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/images/cms/no-screenshot.jpg -------------------------------------------------------------------------------- /plugins/jojo_core/images/cms/no_active.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/images/cms/no_active.gif -------------------------------------------------------------------------------- /plugins/jojo_core/images/cms/no_grey.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/images/cms/no_grey.gif -------------------------------------------------------------------------------- /plugins/jojo_core/images/cms/overlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/images/cms/overlay.png -------------------------------------------------------------------------------- /plugins/jojo_core/images/cms/yes_active.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/images/cms/yes_active.gif -------------------------------------------------------------------------------- /plugins/jojo_core/images/cms/yes_grey.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/images/cms/yes_grey.gif -------------------------------------------------------------------------------- /plugins/jojo_core/images/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/images/loading.gif -------------------------------------------------------------------------------- /plugins/jojo_core/images/logo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/images/logo.gif -------------------------------------------------------------------------------- /plugins/jojo_core/images/logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/images/logo.jpg -------------------------------------------------------------------------------- /plugins/jojo_core/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/images/logo.png -------------------------------------------------------------------------------- /plugins/jojo_core/js/password-strength.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/js/password-strength.js -------------------------------------------------------------------------------- /plugins/jojo_core/license.txt: -------------------------------------------------------------------------------- 1 | Same as rest of jojo -------------------------------------------------------------------------------- /plugins/jojo_core/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_core/readme.txt -------------------------------------------------------------------------------- /plugins/jojo_core/templates/.htaccess: -------------------------------------------------------------------------------- 1 | #prevent people from accessing Templates directly 2 | 3 | #RewriteRule ^(.*)$ ../ [F,L] 4 | 5 | Order allow,deny 6 | Deny from all 7 | 8 | -------------------------------------------------------------------------------- /plugins/jojo_core/templates/admin/edit_js.tpl: -------------------------------------------------------------------------------- 1 | function submitForm() {ldelim} 2 | alert('submitting'); 3 | $('#{$tablename}_form').submit(); 4 | {rdelim} -------------------------------------------------------------------------------- /plugins/jojo_core/templates/admin/fields/hidden.tpl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plugins/jojo_core/templates/admin/fields/privacy.tpl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plugins/jojo_core/templates/admin/fields/readonly.tpl: -------------------------------------------------------------------------------- 1 |
2 | {$value} 3 |
-------------------------------------------------------------------------------- /plugins/jojo_core/templates/admin/fields/timestamp.tpl: -------------------------------------------------------------------------------- 1 |
2 | {$formatteddate} 3 | 4 |
-------------------------------------------------------------------------------- /plugins/jojo_core/templates/subpages.tpl: -------------------------------------------------------------------------------- 1 | {if $subpages} 2 | 6 | {/if} 7 | -------------------------------------------------------------------------------- /plugins/jojo_core/version.txt: -------------------------------------------------------------------------------- 1 | 1.4 2 | -------------------------------------------------------------------------------- /plugins/jojo_credits/description.txt: -------------------------------------------------------------------------------- 1 | Adds a semi-random footer credit to your website. Great for getting links back to yourself from your client's websites. -------------------------------------------------------------------------------- /plugins/jojo_credits/version.txt: -------------------------------------------------------------------------------- 1 | 1.0rc1 -------------------------------------------------------------------------------- /plugins/jojo_google_verification/description.txt: -------------------------------------------------------------------------------- 1 | Allows you to create a Google Webmaster Tools verification file dynamically, no uploads required. -------------------------------------------------------------------------------- /plugins/jojo_google_verification/version.txt: -------------------------------------------------------------------------------- 1 | 1.0 -------------------------------------------------------------------------------- /plugins/jojo_redirect/description.txt: -------------------------------------------------------------------------------- 1 | Allows you to redirect a url to a new internal or external url. Useful for redirecting old urls to new urls when replacing a site. -------------------------------------------------------------------------------- /plugins/jojo_redirect/templates/admin/redirects.tpl: -------------------------------------------------------------------------------- 1 | {include file="admin/header.tpl"} 2 | 3 |
4 | {include file="admin/redirects-inner.tpl"} 5 | 6 |
7 | {include file="admin/footer.tpl"} -------------------------------------------------------------------------------- /plugins/jojo_redirect/version.txt: -------------------------------------------------------------------------------- 1 | 1.4 -------------------------------------------------------------------------------- /plugins/jojo_robots/description.txt: -------------------------------------------------------------------------------- 1 | Handling of robots.txt -------------------------------------------------------------------------------- /plugins/jojo_robots/templates/jojo_robots.tpl: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | 3 | {foreach from=$disallow item=d}Disallow: /{$d}{if strpos($d, '.')===false}/{/if} 4 | {/foreach} 5 | 6 | {$rules} 7 | -------------------------------------------------------------------------------- /plugins/jojo_robots/version.txt: -------------------------------------------------------------------------------- 1 | 1.0 -------------------------------------------------------------------------------- /plugins/jojo_search/description.txt: -------------------------------------------------------------------------------- 1 | Adds site search across all page headings and content, as well as content from supported plugins. 2 | -------------------------------------------------------------------------------- /plugins/jojo_search/images/relevance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_search/images/relevance.png -------------------------------------------------------------------------------- /plugins/jojo_search/version.txt: -------------------------------------------------------------------------------- 1 | 1.4 -------------------------------------------------------------------------------- /plugins/jojo_sitemap/external/snoopy/INSTALL: -------------------------------------------------------------------------------- 1 | Put Snoopy.class.php into one of the directories specified in your 2 | php.ini include_path directive. 3 | -------------------------------------------------------------------------------- /plugins/jojo_sitemap/external/snoopy/autogen.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | aclocal ; automake --add-missing ; autoconf ; configure 4 | -------------------------------------------------------------------------------- /plugins/jojo_sitemap/external/snoopy/configure.in: -------------------------------------------------------------------------------- 1 | AC_INIT(Snoopy.class.inc) 2 | AM_INIT_AUTOMAKE(Snoopy, 0.94) 3 | AC_SUBST(VERSION) 4 | AC_SUBST(PACKAGE) 5 | AC_OUTPUT(Makefile) 6 | -------------------------------------------------------------------------------- /plugins/jojo_sitemap/images/lgpl.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_sitemap/images/lgpl.jpg -------------------------------------------------------------------------------- /plugins/jojo_sitemap/images/sortdown.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_sitemap/images/sortdown.gif -------------------------------------------------------------------------------- /plugins/jojo_sitemap/images/sortup.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_sitemap/images/sortup.gif -------------------------------------------------------------------------------- /plugins/jojo_sitemap/images/sourceforge.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JojoCMS/Jojo-CMS/3f89bd9f48b27a18f113428bc39a069d0eb47375/plugins/jojo_sitemap/images/sourceforge.jpg -------------------------------------------------------------------------------- /plugins/jojo_sitemap/version.txt: -------------------------------------------------------------------------------- 1 | 1.2 -------------------------------------------------------------------------------- /plugins/jojo_tags/version.txt: -------------------------------------------------------------------------------- 1 | 1.4 -------------------------------------------------------------------------------- /themes/2column/api.php: -------------------------------------------------------------------------------- 1 |