├── .editorconfig ├── .gitignore ├── .jshintrc ├── LICENSE ├── README.md ├── autoloads ├── eztagscloud.php ├── eztagstemplatefunctions.php └── eztemplateautoload.php ├── bin └── php │ └── convertezkeyword.php ├── classes ├── ezfsolrdocumentfieldeztags.php ├── ezjsctags.php ├── ezjsctagschildren.php ├── eztagsattributefilter.php ├── eztagsattributelinkobject.php ├── eztagskeyword.php ├── eztagsobject.php └── eztagstreeattributefilter.php ├── composer.json ├── datatypes └── eztags │ ├── eztags.php │ └── eztagstype.php ├── design ├── admin2 │ ├── javascript │ │ └── jquery.eztagschildren.js │ └── templates │ │ ├── eztags_children.tpl │ │ ├── eztags_children_yui.tpl │ │ ├── parts │ │ ├── synonyms_view_control_bar.tpl │ │ ├── tags │ │ │ └── menu.tpl │ │ └── tags_view_control_bar.tpl │ │ ├── popupmenu │ │ └── popup_tag_menu.tpl │ │ ├── tabs │ │ ├── eztags.tpl │ │ └── eztags_header.tpl │ │ ├── tags │ │ ├── add.tpl │ │ ├── add_languages.tpl │ │ ├── addsynonym.tpl │ │ ├── addsynonym_languages.tpl │ │ ├── dashboard.tpl │ │ ├── delete.tpl │ │ ├── deletesynonym.tpl │ │ ├── deletetags.tpl │ │ ├── edit.tpl │ │ ├── edit_languages.tpl │ │ ├── editsynonym.tpl │ │ ├── editsynonym_languages.tpl │ │ ├── list_objects.tpl │ │ ├── makesynonym.tpl │ │ ├── merge.tpl │ │ ├── movetags.tpl │ │ ├── movetags_result.tpl │ │ ├── search.tpl │ │ ├── tabs │ │ │ ├── latest_content.tpl │ │ │ ├── latest_tags.tpl │ │ │ ├── subtree_limitations.tpl │ │ │ ├── synonyms.tpl │ │ │ ├── tags_search.tpl │ │ │ └── translations.tpl │ │ ├── view.tpl │ │ ├── window_controls.tpl │ │ └── windows.tpl │ │ └── tagsstructuremenu │ │ └── tags_structure_menu_dynamic.tpl └── standard │ ├── images │ ├── contentstructure-tree │ │ ├── bg_content_tree_li.gif │ │ ├── bg_content_tree_li.png │ │ └── content_tree-icons.png │ ├── jqmodal │ │ ├── buttons.gif │ │ ├── corners.gif │ │ └── horizontal.gif │ ├── search-icon.png │ └── tag_icons │ │ ├── normal │ │ ├── empty.png │ │ ├── people.png │ │ └── places.png │ │ └── small │ │ ├── empty.png │ │ ├── people.png │ │ └── places.png │ ├── javascript │ ├── jqmodal.js │ ├── jquery.eztags.js │ ├── jquery.eztags.select.js │ ├── jquery.eztags.tree.js │ ├── jstree.min.js │ └── tagsstructuremenu.js │ ├── stylesheets │ ├── contentstructure-tree.css │ ├── jqmodal.css │ ├── jstree │ │ ├── 32px.png │ │ ├── 40px.png │ │ ├── eztags │ │ │ ├── 32px.png │ │ │ ├── 40px.png │ │ │ ├── style.css │ │ │ └── throbber.gif │ │ ├── style.css │ │ ├── style.min.css │ │ └── throbber.gif │ └── tagssuggest.css │ └── templates │ ├── class │ └── datatype │ │ ├── edit │ │ └── eztags.tpl │ │ └── view │ │ └── eztags.tpl │ ├── content │ └── datatype │ │ ├── diff │ │ └── eztags.tpl │ │ ├── edit │ │ ├── eztags.tpl │ │ └── view │ │ │ ├── default.tpl │ │ │ ├── select.tpl │ │ │ └── tree.tpl │ │ └── view │ │ ├── eztags.tpl │ │ └── ezxmltags │ │ └── taglink.tpl │ ├── ezjsctemplate │ ├── modal_dialog.tpl │ ├── tree_menu.tpl │ └── tree_menu_script.tpl │ ├── tagcloud.tpl │ └── tags │ └── view.tpl ├── doc ├── CHANGELOG.md ├── INSTALL.md ├── UPGRADE.md ├── USAGE.md ├── bc │ └── 1.1 │ │ └── CHANGES-1.1.md ├── eztags-user-manual.docx └── eztags-user-manual.pdf ├── extension.xml ├── index_treemenu_tags.php ├── modules └── tags │ ├── add.php │ ├── addsynonym.php │ ├── dashboard.php │ ├── delete.php │ ├── deletesynonym.php │ ├── deletetags.php │ ├── edit.php │ ├── editsynonym.php │ ├── eztagsfunctioncollection.php │ ├── function_definition.php │ ├── id.php │ ├── list_objects.php │ ├── makesynonym.php │ ├── merge.php │ ├── module.php │ ├── movetags.php │ ├── search.php │ ├── translation.php │ ├── treemenu.php │ └── view.php ├── settings ├── admininterface.ini.append.php ├── content.ini.append.php ├── design.ini.append.php ├── extendedattributefilter.ini.append.php ├── ezfind.ini.append.php ├── ezjscore.ini.append.php ├── ezoe_attributes.ini.append.php ├── eztags.ini ├── menu.ini.append.php ├── module.ini.append.php ├── site.ini.append.php └── template.ini.append.php ├── share └── db_schema.dba ├── sql ├── mysql │ └── schema.sql └── postgresql │ └── schema.sql ├── tests └── javascript │ ├── eng-GB.gif │ ├── fixtures │ └── tags.json │ ├── index.html │ └── jquery.eztags.test_overrides.js ├── translations ├── cro-HR │ └── translation.ts ├── dut-NL │ └── translation.ts ├── esl-ES │ └── translation.ts ├── fre-FR │ └── translation.ts ├── ger-DE │ └── translation.ts ├── ita-IT │ └── translation.ts ├── pol-PL │ └── translation.ts └── untranslated │ └── translation.ts └── update ├── common └── scripts │ ├── 2.0 │ └── initializetagtranslations.php │ ├── updatetagsdepth.php │ └── updatetagspathstring.php └── database ├── mysql ├── 1.0 │ └── unstable │ │ └── eztags-dbupdate-1.0beta-to-1.0.sql ├── 1.1 │ └── eztags-dbupdate-1.0-to-1.1.sql ├── 1.2 │ └── eztags-dbupdate-1.1-to-1.2.2.sql ├── 1.4 │ └── eztags-dbupdate-1.3-to-1.4.sql ├── 2.0 │ └── eztags-dbupdate-1.4-to-2.0.sql └── 2.1 │ └── eztags-dbupdate-2.0-to-2.1.sql └── postgresql └── 2.1 └── eztags-dbupdate-2.0-to-2.1.sql /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/eztags/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | .DS_Store 3 | -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/eztags/HEAD/.jshintrc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/eztags/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/eztags/HEAD/README.md -------------------------------------------------------------------------------- /autoloads/eztagscloud.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/eztags/HEAD/autoloads/eztagscloud.php -------------------------------------------------------------------------------- /autoloads/eztagstemplatefunctions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/eztags/HEAD/autoloads/eztagstemplatefunctions.php -------------------------------------------------------------------------------- /autoloads/eztemplateautoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/eztags/HEAD/autoloads/eztemplateautoload.php -------------------------------------------------------------------------------- /bin/php/convertezkeyword.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/eztags/HEAD/bin/php/convertezkeyword.php -------------------------------------------------------------------------------- /classes/ezfsolrdocumentfieldeztags.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/eztags/HEAD/classes/ezfsolrdocumentfieldeztags.php -------------------------------------------------------------------------------- /classes/ezjsctags.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/eztags/HEAD/classes/ezjsctags.php -------------------------------------------------------------------------------- /classes/ezjsctagschildren.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/eztags/HEAD/classes/ezjsctagschildren.php -------------------------------------------------------------------------------- /classes/eztagsattributefilter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/eztags/HEAD/classes/eztagsattributefilter.php -------------------------------------------------------------------------------- /classes/eztagsattributelinkobject.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/eztags/HEAD/classes/eztagsattributelinkobject.php -------------------------------------------------------------------------------- /classes/eztagskeyword.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/eztags/HEAD/classes/eztagskeyword.php -------------------------------------------------------------------------------- /classes/eztagsobject.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/eztags/HEAD/classes/eztagsobject.php -------------------------------------------------------------------------------- /classes/eztagstreeattributefilter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/eztags/HEAD/classes/eztagstreeattributefilter.php -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/eztags/HEAD/composer.json -------------------------------------------------------------------------------- /datatypes/eztags/eztags.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/eztags/HEAD/datatypes/eztags/eztags.php -------------------------------------------------------------------------------- /datatypes/eztags/eztagstype.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/eztags/HEAD/datatypes/eztags/eztagstype.php -------------------------------------------------------------------------------- /design/admin2/javascript/jquery.eztagschildren.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/eztags/HEAD/design/admin2/javascript/jquery.eztagschildren.js -------------------------------------------------------------------------------- /design/admin2/templates/eztags_children.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/eztags/HEAD/design/admin2/templates/eztags_children.tpl -------------------------------------------------------------------------------- /design/admin2/templates/eztags_children_yui.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/eztags/HEAD/design/admin2/templates/eztags_children_yui.tpl -------------------------------------------------------------------------------- /design/admin2/templates/parts/synonyms_view_control_bar.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/eztags/HEAD/design/admin2/templates/parts/synonyms_view_control_bar.tpl -------------------------------------------------------------------------------- /design/admin2/templates/parts/tags/menu.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/eztags/HEAD/design/admin2/templates/parts/tags/menu.tpl -------------------------------------------------------------------------------- /design/admin2/templates/parts/tags_view_control_bar.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/eztags/HEAD/design/admin2/templates/parts/tags_view_control_bar.tpl -------------------------------------------------------------------------------- /design/admin2/templates/popupmenu/popup_tag_menu.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/eztags/HEAD/design/admin2/templates/popupmenu/popup_tag_menu.tpl -------------------------------------------------------------------------------- /design/admin2/templates/tabs/eztags.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/eztags/HEAD/design/admin2/templates/tabs/eztags.tpl -------------------------------------------------------------------------------- /design/admin2/templates/tabs/eztags_header.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/eztags/HEAD/design/admin2/templates/tabs/eztags_header.tpl -------------------------------------------------------------------------------- /design/admin2/templates/tags/add.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/eztags/HEAD/design/admin2/templates/tags/add.tpl -------------------------------------------------------------------------------- /design/admin2/templates/tags/add_languages.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/eztags/HEAD/design/admin2/templates/tags/add_languages.tpl -------------------------------------------------------------------------------- /design/admin2/templates/tags/addsynonym.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/eztags/HEAD/design/admin2/templates/tags/addsynonym.tpl -------------------------------------------------------------------------------- /design/admin2/templates/tags/addsynonym_languages.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/eztags/HEAD/design/admin2/templates/tags/addsynonym_languages.tpl -------------------------------------------------------------------------------- /design/admin2/templates/tags/dashboard.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/eztags/HEAD/design/admin2/templates/tags/dashboard.tpl -------------------------------------------------------------------------------- /design/admin2/templates/tags/delete.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/eztags/HEAD/design/admin2/templates/tags/delete.tpl -------------------------------------------------------------------------------- /design/admin2/templates/tags/deletesynonym.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/eztags/HEAD/design/admin2/templates/tags/deletesynonym.tpl -------------------------------------------------------------------------------- /design/admin2/templates/tags/deletetags.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/eztags/HEAD/design/admin2/templates/tags/deletetags.tpl -------------------------------------------------------------------------------- /design/admin2/templates/tags/edit.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/eztags/HEAD/design/admin2/templates/tags/edit.tpl -------------------------------------------------------------------------------- /design/admin2/templates/tags/edit_languages.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/eztags/HEAD/design/admin2/templates/tags/edit_languages.tpl -------------------------------------------------------------------------------- /design/admin2/templates/tags/editsynonym.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/eztags/HEAD/design/admin2/templates/tags/editsynonym.tpl -------------------------------------------------------------------------------- /design/admin2/templates/tags/editsynonym_languages.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/eztags/HEAD/design/admin2/templates/tags/editsynonym_languages.tpl -------------------------------------------------------------------------------- /design/admin2/templates/tags/list_objects.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/eztags/HEAD/design/admin2/templates/tags/list_objects.tpl -------------------------------------------------------------------------------- /design/admin2/templates/tags/makesynonym.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/eztags/HEAD/design/admin2/templates/tags/makesynonym.tpl -------------------------------------------------------------------------------- /design/admin2/templates/tags/merge.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/eztags/HEAD/design/admin2/templates/tags/merge.tpl -------------------------------------------------------------------------------- /design/admin2/templates/tags/movetags.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/eztags/HEAD/design/admin2/templates/tags/movetags.tpl -------------------------------------------------------------------------------- /design/admin2/templates/tags/movetags_result.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/eztags/HEAD/design/admin2/templates/tags/movetags_result.tpl -------------------------------------------------------------------------------- /design/admin2/templates/tags/search.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/eztags/HEAD/design/admin2/templates/tags/search.tpl -------------------------------------------------------------------------------- /design/admin2/templates/tags/tabs/latest_content.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/eztags/HEAD/design/admin2/templates/tags/tabs/latest_content.tpl -------------------------------------------------------------------------------- /design/admin2/templates/tags/tabs/latest_tags.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/eztags/HEAD/design/admin2/templates/tags/tabs/latest_tags.tpl -------------------------------------------------------------------------------- /design/admin2/templates/tags/tabs/subtree_limitations.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/eztags/HEAD/design/admin2/templates/tags/tabs/subtree_limitations.tpl -------------------------------------------------------------------------------- /design/admin2/templates/tags/tabs/synonyms.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/eztags/HEAD/design/admin2/templates/tags/tabs/synonyms.tpl -------------------------------------------------------------------------------- /design/admin2/templates/tags/tabs/tags_search.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/eztags/HEAD/design/admin2/templates/tags/tabs/tags_search.tpl -------------------------------------------------------------------------------- /design/admin2/templates/tags/tabs/translations.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/eztags/HEAD/design/admin2/templates/tags/tabs/translations.tpl -------------------------------------------------------------------------------- /design/admin2/templates/tags/view.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/eztags/HEAD/design/admin2/templates/tags/view.tpl -------------------------------------------------------------------------------- /design/admin2/templates/tags/window_controls.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/eztags/HEAD/design/admin2/templates/tags/window_controls.tpl -------------------------------------------------------------------------------- /design/admin2/templates/tags/windows.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/eztags/HEAD/design/admin2/templates/tags/windows.tpl -------------------------------------------------------------------------------- /design/admin2/templates/tagsstructuremenu/tags_structure_menu_dynamic.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/eztags/HEAD/design/admin2/templates/tagsstructuremenu/tags_structure_menu_dynamic.tpl -------------------------------------------------------------------------------- /design/standard/images/contentstructure-tree/bg_content_tree_li.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/eztags/HEAD/design/standard/images/contentstructure-tree/bg_content_tree_li.gif -------------------------------------------------------------------------------- /design/standard/images/contentstructure-tree/bg_content_tree_li.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/eztags/HEAD/design/standard/images/contentstructure-tree/bg_content_tree_li.png -------------------------------------------------------------------------------- /design/standard/images/contentstructure-tree/content_tree-icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/eztags/HEAD/design/standard/images/contentstructure-tree/content_tree-icons.png -------------------------------------------------------------------------------- /design/standard/images/jqmodal/buttons.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/eztags/HEAD/design/standard/images/jqmodal/buttons.gif -------------------------------------------------------------------------------- /design/standard/images/jqmodal/corners.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/eztags/HEAD/design/standard/images/jqmodal/corners.gif -------------------------------------------------------------------------------- /design/standard/images/jqmodal/horizontal.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/eztags/HEAD/design/standard/images/jqmodal/horizontal.gif -------------------------------------------------------------------------------- /design/standard/images/search-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/eztags/HEAD/design/standard/images/search-icon.png -------------------------------------------------------------------------------- /design/standard/images/tag_icons/normal/empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/eztags/HEAD/design/standard/images/tag_icons/normal/empty.png -------------------------------------------------------------------------------- /design/standard/images/tag_icons/normal/people.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/eztags/HEAD/design/standard/images/tag_icons/normal/people.png -------------------------------------------------------------------------------- /design/standard/images/tag_icons/normal/places.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/eztags/HEAD/design/standard/images/tag_icons/normal/places.png -------------------------------------------------------------------------------- /design/standard/images/tag_icons/small/empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/eztags/HEAD/design/standard/images/tag_icons/small/empty.png -------------------------------------------------------------------------------- /design/standard/images/tag_icons/small/people.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/eztags/HEAD/design/standard/images/tag_icons/small/people.png -------------------------------------------------------------------------------- /design/standard/images/tag_icons/small/places.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/eztags/HEAD/design/standard/images/tag_icons/small/places.png -------------------------------------------------------------------------------- /design/standard/javascript/jqmodal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/eztags/HEAD/design/standard/javascript/jqmodal.js -------------------------------------------------------------------------------- /design/standard/javascript/jquery.eztags.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/eztags/HEAD/design/standard/javascript/jquery.eztags.js -------------------------------------------------------------------------------- /design/standard/javascript/jquery.eztags.select.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/eztags/HEAD/design/standard/javascript/jquery.eztags.select.js -------------------------------------------------------------------------------- /design/standard/javascript/jquery.eztags.tree.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/eztags/HEAD/design/standard/javascript/jquery.eztags.tree.js -------------------------------------------------------------------------------- /design/standard/javascript/jstree.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/eztags/HEAD/design/standard/javascript/jstree.min.js -------------------------------------------------------------------------------- /design/standard/javascript/tagsstructuremenu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/eztags/HEAD/design/standard/javascript/tagsstructuremenu.js -------------------------------------------------------------------------------- /design/standard/stylesheets/contentstructure-tree.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/eztags/HEAD/design/standard/stylesheets/contentstructure-tree.css -------------------------------------------------------------------------------- /design/standard/stylesheets/jqmodal.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/eztags/HEAD/design/standard/stylesheets/jqmodal.css -------------------------------------------------------------------------------- /design/standard/stylesheets/jstree/32px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/eztags/HEAD/design/standard/stylesheets/jstree/32px.png -------------------------------------------------------------------------------- /design/standard/stylesheets/jstree/40px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/eztags/HEAD/design/standard/stylesheets/jstree/40px.png -------------------------------------------------------------------------------- /design/standard/stylesheets/jstree/eztags/32px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/eztags/HEAD/design/standard/stylesheets/jstree/eztags/32px.png -------------------------------------------------------------------------------- /design/standard/stylesheets/jstree/eztags/40px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/eztags/HEAD/design/standard/stylesheets/jstree/eztags/40px.png -------------------------------------------------------------------------------- /design/standard/stylesheets/jstree/eztags/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/eztags/HEAD/design/standard/stylesheets/jstree/eztags/style.css -------------------------------------------------------------------------------- /design/standard/stylesheets/jstree/eztags/throbber.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/eztags/HEAD/design/standard/stylesheets/jstree/eztags/throbber.gif -------------------------------------------------------------------------------- /design/standard/stylesheets/jstree/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/eztags/HEAD/design/standard/stylesheets/jstree/style.css -------------------------------------------------------------------------------- /design/standard/stylesheets/jstree/style.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/eztags/HEAD/design/standard/stylesheets/jstree/style.min.css -------------------------------------------------------------------------------- /design/standard/stylesheets/jstree/throbber.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/eztags/HEAD/design/standard/stylesheets/jstree/throbber.gif -------------------------------------------------------------------------------- /design/standard/stylesheets/tagssuggest.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/eztags/HEAD/design/standard/stylesheets/tagssuggest.css -------------------------------------------------------------------------------- /design/standard/templates/class/datatype/edit/eztags.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/eztags/HEAD/design/standard/templates/class/datatype/edit/eztags.tpl -------------------------------------------------------------------------------- /design/standard/templates/class/datatype/view/eztags.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/eztags/HEAD/design/standard/templates/class/datatype/view/eztags.tpl -------------------------------------------------------------------------------- /design/standard/templates/content/datatype/diff/eztags.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/eztags/HEAD/design/standard/templates/content/datatype/diff/eztags.tpl -------------------------------------------------------------------------------- /design/standard/templates/content/datatype/edit/eztags.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/eztags/HEAD/design/standard/templates/content/datatype/edit/eztags.tpl -------------------------------------------------------------------------------- /design/standard/templates/content/datatype/edit/view/default.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/eztags/HEAD/design/standard/templates/content/datatype/edit/view/default.tpl -------------------------------------------------------------------------------- /design/standard/templates/content/datatype/edit/view/select.tpl: -------------------------------------------------------------------------------- 1 | {* This file is intentionally left blank *} 2 | -------------------------------------------------------------------------------- /design/standard/templates/content/datatype/edit/view/tree.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/eztags/HEAD/design/standard/templates/content/datatype/edit/view/tree.tpl -------------------------------------------------------------------------------- /design/standard/templates/content/datatype/view/eztags.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/eztags/HEAD/design/standard/templates/content/datatype/view/eztags.tpl -------------------------------------------------------------------------------- /design/standard/templates/content/datatype/view/ezxmltags/taglink.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/eztags/HEAD/design/standard/templates/content/datatype/view/ezxmltags/taglink.tpl -------------------------------------------------------------------------------- /design/standard/templates/ezjsctemplate/modal_dialog.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/eztags/HEAD/design/standard/templates/ezjsctemplate/modal_dialog.tpl -------------------------------------------------------------------------------- /design/standard/templates/ezjsctemplate/tree_menu.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/eztags/HEAD/design/standard/templates/ezjsctemplate/tree_menu.tpl -------------------------------------------------------------------------------- /design/standard/templates/ezjsctemplate/tree_menu_script.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/eztags/HEAD/design/standard/templates/ezjsctemplate/tree_menu_script.tpl -------------------------------------------------------------------------------- /design/standard/templates/tagcloud.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/eztags/HEAD/design/standard/templates/tagcloud.tpl -------------------------------------------------------------------------------- /design/standard/templates/tags/view.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/eztags/HEAD/design/standard/templates/tags/view.tpl -------------------------------------------------------------------------------- /doc/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/eztags/HEAD/doc/CHANGELOG.md -------------------------------------------------------------------------------- /doc/INSTALL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/eztags/HEAD/doc/INSTALL.md -------------------------------------------------------------------------------- /doc/UPGRADE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/eztags/HEAD/doc/UPGRADE.md -------------------------------------------------------------------------------- /doc/USAGE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/eztags/HEAD/doc/USAGE.md -------------------------------------------------------------------------------- /doc/bc/1.1/CHANGES-1.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/eztags/HEAD/doc/bc/1.1/CHANGES-1.1.md -------------------------------------------------------------------------------- /doc/eztags-user-manual.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/eztags/HEAD/doc/eztags-user-manual.docx -------------------------------------------------------------------------------- /doc/eztags-user-manual.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/eztags/HEAD/doc/eztags-user-manual.pdf -------------------------------------------------------------------------------- /extension.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/eztags/HEAD/extension.xml -------------------------------------------------------------------------------- /index_treemenu_tags.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/eztags/HEAD/index_treemenu_tags.php -------------------------------------------------------------------------------- /modules/tags/add.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/eztags/HEAD/modules/tags/add.php -------------------------------------------------------------------------------- /modules/tags/addsynonym.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/eztags/HEAD/modules/tags/addsynonym.php -------------------------------------------------------------------------------- /modules/tags/dashboard.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/eztags/HEAD/modules/tags/dashboard.php -------------------------------------------------------------------------------- /modules/tags/delete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/eztags/HEAD/modules/tags/delete.php -------------------------------------------------------------------------------- /modules/tags/deletesynonym.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/eztags/HEAD/modules/tags/deletesynonym.php -------------------------------------------------------------------------------- /modules/tags/deletetags.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/eztags/HEAD/modules/tags/deletetags.php -------------------------------------------------------------------------------- /modules/tags/edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/eztags/HEAD/modules/tags/edit.php -------------------------------------------------------------------------------- /modules/tags/editsynonym.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/eztags/HEAD/modules/tags/editsynonym.php -------------------------------------------------------------------------------- /modules/tags/eztagsfunctioncollection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/eztags/HEAD/modules/tags/eztagsfunctioncollection.php -------------------------------------------------------------------------------- /modules/tags/function_definition.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/eztags/HEAD/modules/tags/function_definition.php -------------------------------------------------------------------------------- /modules/tags/id.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/eztags/HEAD/modules/tags/id.php -------------------------------------------------------------------------------- /modules/tags/list_objects.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/eztags/HEAD/modules/tags/list_objects.php -------------------------------------------------------------------------------- /modules/tags/makesynonym.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/eztags/HEAD/modules/tags/makesynonym.php -------------------------------------------------------------------------------- /modules/tags/merge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/eztags/HEAD/modules/tags/merge.php -------------------------------------------------------------------------------- /modules/tags/module.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/eztags/HEAD/modules/tags/module.php -------------------------------------------------------------------------------- /modules/tags/movetags.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/eztags/HEAD/modules/tags/movetags.php -------------------------------------------------------------------------------- /modules/tags/search.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/eztags/HEAD/modules/tags/search.php -------------------------------------------------------------------------------- /modules/tags/translation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/eztags/HEAD/modules/tags/translation.php -------------------------------------------------------------------------------- /modules/tags/treemenu.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/eztags/HEAD/modules/tags/treemenu.php -------------------------------------------------------------------------------- /modules/tags/view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/eztags/HEAD/modules/tags/view.php -------------------------------------------------------------------------------- /settings/admininterface.ini.append.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/eztags/HEAD/settings/admininterface.ini.append.php -------------------------------------------------------------------------------- /settings/content.ini.append.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/eztags/HEAD/settings/content.ini.append.php -------------------------------------------------------------------------------- /settings/design.ini.append.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/eztags/HEAD/settings/design.ini.append.php -------------------------------------------------------------------------------- /settings/extendedattributefilter.ini.append.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/eztags/HEAD/settings/extendedattributefilter.ini.append.php -------------------------------------------------------------------------------- /settings/ezfind.ini.append.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/eztags/HEAD/settings/ezfind.ini.append.php -------------------------------------------------------------------------------- /settings/ezjscore.ini.append.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/eztags/HEAD/settings/ezjscore.ini.append.php -------------------------------------------------------------------------------- /settings/ezoe_attributes.ini.append.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/eztags/HEAD/settings/ezoe_attributes.ini.append.php -------------------------------------------------------------------------------- /settings/eztags.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/eztags/HEAD/settings/eztags.ini -------------------------------------------------------------------------------- /settings/menu.ini.append.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/eztags/HEAD/settings/menu.ini.append.php -------------------------------------------------------------------------------- /settings/module.ini.append.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/eztags/HEAD/settings/module.ini.append.php -------------------------------------------------------------------------------- /settings/site.ini.append.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/eztags/HEAD/settings/site.ini.append.php -------------------------------------------------------------------------------- /settings/template.ini.append.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/eztags/HEAD/settings/template.ini.append.php -------------------------------------------------------------------------------- /share/db_schema.dba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/eztags/HEAD/share/db_schema.dba -------------------------------------------------------------------------------- /sql/mysql/schema.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/eztags/HEAD/sql/mysql/schema.sql -------------------------------------------------------------------------------- /sql/postgresql/schema.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/eztags/HEAD/sql/postgresql/schema.sql -------------------------------------------------------------------------------- /tests/javascript/eng-GB.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/eztags/HEAD/tests/javascript/eng-GB.gif -------------------------------------------------------------------------------- /tests/javascript/fixtures/tags.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/eztags/HEAD/tests/javascript/fixtures/tags.json -------------------------------------------------------------------------------- /tests/javascript/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/eztags/HEAD/tests/javascript/index.html -------------------------------------------------------------------------------- /tests/javascript/jquery.eztags.test_overrides.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/eztags/HEAD/tests/javascript/jquery.eztags.test_overrides.js -------------------------------------------------------------------------------- /translations/cro-HR/translation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/eztags/HEAD/translations/cro-HR/translation.ts -------------------------------------------------------------------------------- /translations/dut-NL/translation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/eztags/HEAD/translations/dut-NL/translation.ts -------------------------------------------------------------------------------- /translations/esl-ES/translation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/eztags/HEAD/translations/esl-ES/translation.ts -------------------------------------------------------------------------------- /translations/fre-FR/translation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/eztags/HEAD/translations/fre-FR/translation.ts -------------------------------------------------------------------------------- /translations/ger-DE/translation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/eztags/HEAD/translations/ger-DE/translation.ts -------------------------------------------------------------------------------- /translations/ita-IT/translation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/eztags/HEAD/translations/ita-IT/translation.ts -------------------------------------------------------------------------------- /translations/pol-PL/translation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/eztags/HEAD/translations/pol-PL/translation.ts -------------------------------------------------------------------------------- /translations/untranslated/translation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/eztags/HEAD/translations/untranslated/translation.ts -------------------------------------------------------------------------------- /update/common/scripts/2.0/initializetagtranslations.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/eztags/HEAD/update/common/scripts/2.0/initializetagtranslations.php -------------------------------------------------------------------------------- /update/common/scripts/updatetagsdepth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/eztags/HEAD/update/common/scripts/updatetagsdepth.php -------------------------------------------------------------------------------- /update/common/scripts/updatetagspathstring.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/eztags/HEAD/update/common/scripts/updatetagspathstring.php -------------------------------------------------------------------------------- /update/database/mysql/1.0/unstable/eztags-dbupdate-1.0beta-to-1.0.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/eztags/HEAD/update/database/mysql/1.0/unstable/eztags-dbupdate-1.0beta-to-1.0.sql -------------------------------------------------------------------------------- /update/database/mysql/1.1/eztags-dbupdate-1.0-to-1.1.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE `eztags` 2 | ADD COLUMN `depth` int(11) NOT NULL default '1' AFTER `keyword`; 3 | -------------------------------------------------------------------------------- /update/database/mysql/1.2/eztags-dbupdate-1.1-to-1.2.2.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/eztags/HEAD/update/database/mysql/1.2/eztags-dbupdate-1.1-to-1.2.2.sql -------------------------------------------------------------------------------- /update/database/mysql/1.4/eztags-dbupdate-1.3-to-1.4.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/eztags/HEAD/update/database/mysql/1.4/eztags-dbupdate-1.3-to-1.4.sql -------------------------------------------------------------------------------- /update/database/mysql/2.0/eztags-dbupdate-1.4-to-2.0.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/eztags/HEAD/update/database/mysql/2.0/eztags-dbupdate-1.4-to-2.0.sql -------------------------------------------------------------------------------- /update/database/mysql/2.1/eztags-dbupdate-2.0-to-2.1.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/eztags/HEAD/update/database/mysql/2.1/eztags-dbupdate-2.0-to-2.1.sql -------------------------------------------------------------------------------- /update/database/postgresql/2.1/eztags-dbupdate-2.0-to-2.1.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/eztags/HEAD/update/database/postgresql/2.1/eztags-dbupdate-2.0-to-2.1.sql --------------------------------------------------------------------------------