gitextract_421r03jp/ ├── .gitignore ├── .htaccess ├── .travis.yml ├── CHANGELOG.md ├── Makefile ├── README.md ├── application/ │ ├── Bootstrap.php │ ├── LICENSE.txt │ ├── classes/ │ │ ├── OntoWiki/ │ │ │ ├── Component/ │ │ │ │ ├── Exception.php │ │ │ │ └── Helper.php │ │ │ ├── Controller/ │ │ │ │ ├── ActionHelper/ │ │ │ │ │ └── List.php │ │ │ │ ├── Base.php │ │ │ │ ├── Component.php │ │ │ │ ├── Exception.php │ │ │ │ └── Plugin/ │ │ │ │ ├── HttpAuth.php │ │ │ │ ├── ListSetupHelper.php │ │ │ │ └── SetupHelper.php │ │ │ ├── Dispatcher.php │ │ │ ├── Exception.php │ │ │ ├── Extension/ │ │ │ │ └── Manager.php │ │ │ ├── Http/ │ │ │ │ └── Exception.php │ │ │ ├── Jobs/ │ │ │ │ └── Cron.php │ │ │ ├── Menu/ │ │ │ │ └── Registry.php │ │ │ ├── Menu.php │ │ │ ├── Message.php │ │ │ ├── Model/ │ │ │ │ ├── Exception.php │ │ │ │ ├── Hierarchy.php │ │ │ │ ├── Instances.php │ │ │ │ ├── Resource.php │ │ │ │ └── TitleHelper.php │ │ │ ├── Model.php │ │ │ ├── Module/ │ │ │ │ ├── Exception.php │ │ │ │ └── Registry.php │ │ │ ├── Module.php │ │ │ ├── Navigation.php │ │ │ ├── Pager.php │ │ │ ├── Plugin.php │ │ │ ├── Request.php │ │ │ ├── Resource.php │ │ │ ├── Test/ │ │ │ │ ├── ControllerTestCase.php │ │ │ │ ├── ExtensionIntegrationTestBootstrap.php │ │ │ │ ├── ExtensionUnitTestBootstrap.php │ │ │ │ ├── IntegrationTestBootstrap.php │ │ │ │ └── UnitTestBootstrap.php │ │ │ ├── Toolbar.php │ │ │ ├── Url.php │ │ │ ├── Utils/ │ │ │ │ └── Exception.php │ │ │ ├── Utils.php │ │ │ ├── View/ │ │ │ │ └── Helper/ │ │ │ │ └── Curie.php │ │ │ └── View.php │ │ └── OntoWiki.php │ ├── config/ │ │ ├── SysBase/ │ │ │ ├── dc │ │ │ ├── dcterms │ │ │ ├── foaf │ │ │ ├── geo │ │ │ ├── owl │ │ │ ├── rdf │ │ │ ├── rdfs │ │ │ ├── rel │ │ │ ├── sioc │ │ │ ├── sioct │ │ │ ├── skos │ │ │ └── tags │ │ ├── SysBase.rdf │ │ ├── application.ini │ │ ├── default.ini │ │ └── default.n3 │ ├── controllers/ │ │ ├── ApplicationController.php │ │ ├── DebugController.php │ │ ├── ErrorController.php │ │ ├── IndexController.php │ │ ├── ModelController.php │ │ ├── ModuleController.php │ │ ├── ResourceController.php │ │ └── ServiceController.php │ ├── scripts/ │ │ ├── README-Vagrant.md │ │ ├── clearCache.php │ │ ├── extensions-ini2n3.php │ │ ├── makeBackup.sh │ │ ├── makeRelease.sh │ │ ├── mod-auth-external/ │ │ │ └── ontowiki.php │ │ ├── odbctest.php │ │ ├── owadmin.php │ │ ├── runExtensionTests.sh │ │ ├── travis/ │ │ │ ├── README.md │ │ │ ├── install-extensions.sh │ │ │ ├── install-services.sh │ │ │ └── virtuoso-sparql-permission.sql │ │ └── vad/ │ │ ├── README.txt │ │ ├── ow_vad_sticker_template.xml │ │ ├── ow_vad_sticker_template.xml_not_working │ │ ├── prepare.sh │ │ └── vad.ini │ ├── shell.worker.client.php │ ├── shell.worker.php │ ├── tests/ │ │ ├── Bootstrap.php │ │ ├── BootstrapExtensions.php │ │ ├── CodeSniffer/ │ │ │ └── Standards/ │ │ │ └── Ontowiki/ │ │ │ ├── Sniffs/ │ │ │ │ ├── Classes/ │ │ │ │ │ └── ClassFilePathSniff.php │ │ │ │ ├── Commenting/ │ │ │ │ │ └── FileCommentSniff.php │ │ │ │ ├── Functions/ │ │ │ │ │ ├── ForbiddenFunctionsSniff.php │ │ │ │ │ └── FunctionCallArgumentSpacingSniff.php │ │ │ │ └── PHP/ │ │ │ │ └── GetRequestDataSniff.php │ │ │ └── ruleset.xml │ │ ├── config.ini.dist │ │ ├── config.ini.dist.travis │ │ ├── integration/ │ │ │ ├── OntoWiki/ │ │ │ │ ├── Extension/ │ │ │ │ │ ├── ManagerIntegrationTest.php │ │ │ │ │ └── _files/ │ │ │ │ │ ├── test1/ │ │ │ │ │ │ ├── MoreModule.php │ │ │ │ │ │ ├── Test1Controller.php │ │ │ │ │ │ ├── TestModule.php │ │ │ │ │ │ └── doap.n3 │ │ │ │ │ ├── test2/ │ │ │ │ │ │ ├── Test2Plugin.php │ │ │ │ │ │ ├── Test2Wrapper.php │ │ │ │ │ │ └── doap.n3 │ │ │ │ │ └── test2.ini │ │ │ │ └── Model/ │ │ │ │ ├── InstancesIntegrationTest.php │ │ │ │ └── TitleHelperIntegrationTest.php │ │ │ ├── controller/ │ │ │ │ ├── ModelControllerTest.php │ │ │ │ └── ServiceControllerTest.php │ │ │ └── phpunit.xml.dist │ │ └── unit/ │ │ ├── OntoWiki/ │ │ │ ├── Extension/ │ │ │ │ ├── ManagerTest.php │ │ │ │ └── _files/ │ │ │ │ └── test-doap.n3 │ │ │ ├── MenuTest.php │ │ │ ├── MessageTest.php │ │ │ ├── Model/ │ │ │ │ └── InstancesTest.php │ │ │ ├── Module/ │ │ │ │ └── RegistryTest.php │ │ │ ├── NavigationTest.php │ │ │ └── UtilsTest.php │ │ ├── OntoWikiTest.php │ │ ├── controller/ │ │ │ ├── IndexControllerTest.php │ │ │ ├── ResourceControllerTest.php │ │ │ └── _files/ │ │ │ └── aksw.rss │ │ └── phpunit.xml.dist │ └── views/ │ └── templates/ │ ├── application/ │ │ ├── about.phtml │ │ ├── openid.phtml │ │ ├── register.phtml │ │ ├── search.phtml │ │ ├── userdetails.phtml │ │ └── webid.phtml │ ├── error/ │ │ ├── 404.phtml │ │ ├── 500.phtml │ │ └── error.phtml │ ├── index/ │ │ ├── index.phtml │ │ ├── news.phtml │ │ └── newsshort.phtml │ ├── layouts/ │ │ └── layout.phtml │ ├── model/ │ │ ├── config.phtml │ │ ├── create.phtml │ │ └── info.phtml │ ├── partials/ │ │ ├── contextmenu.phtml │ │ ├── hierarchy_list.phtml │ │ ├── list.phtml │ │ ├── list_std_element.phtml │ │ ├── list_std_main.phtml │ │ ├── menu.phtml │ │ ├── message.phtml │ │ ├── meta.phtml │ │ ├── module.phtml │ │ ├── navigation.phtml │ │ ├── resultset.phtml │ │ ├── statusbar.phtml │ │ ├── table.phtml │ │ ├── toolbar.phtml │ │ └── window.phtml │ └── resource/ │ ├── instances.phtml │ └── properties.phtml ├── build/ │ └── phpcs.xml ├── build.xml ├── composer.json ├── config.ini.dist ├── debian/ │ ├── Makefile/ │ │ └── Makefile │ ├── changelog │ ├── compat │ ├── conf/ │ │ ├── apache2/ │ │ │ └── apache.conf │ │ ├── gnome/ │ │ │ └── ontowiki.desktop │ │ ├── mysql/ │ │ │ └── config.ini │ │ └── virtuoso/ │ │ └── config.ini │ ├── control │ ├── copyright │ ├── ontowiki-common.dirs │ ├── ontowiki-common.install │ ├── ontowiki-common.links │ ├── ontowiki-common.postinst │ ├── ontowiki-mysql.install │ ├── ontowiki-mysql.links │ ├── ontowiki-mysql.postinst │ ├── ontowiki-mysql.prerm │ ├── ontowiki-virtuoso.install │ ├── ontowiki-virtuoso.links │ ├── ontowiki-virtuoso.postinst │ ├── rules │ ├── source/ │ │ └── format │ └── sql/ │ └── install/ │ ├── mysql │ └── virtuoso ├── extensions/ │ ├── account/ │ │ ├── AccountController.php │ │ ├── LoginModule.php │ │ ├── default.ini │ │ ├── doap.n3 │ │ ├── languages/ │ │ │ ├── account-de.csv │ │ │ └── account-en.csv │ │ └── templates/ │ │ ├── account/ │ │ │ └── recover.phtml │ │ ├── local.phtml │ │ ├── mail/ │ │ │ ├── html/ │ │ │ │ └── default.phtml │ │ │ └── text/ │ │ │ └── default.txt │ │ ├── openid.phtml │ │ └── webid.phtml │ ├── application/ │ │ ├── ApplicationModule.php │ │ ├── application.phtml │ │ ├── default.ini │ │ └── doap.n3 │ ├── auth/ │ │ ├── AuthController.php │ │ ├── default.ini │ │ ├── doap.n3 │ │ ├── languages/ │ │ │ ├── auth-de.csv │ │ │ └── auth-en.csv │ │ └── templates/ │ │ └── auth/ │ │ ├── cert1.phtml │ │ └── cert2.phtml │ ├── autologin/ │ │ ├── AutologinPlugin.php │ │ ├── default.ini │ │ └── doap.n3 │ ├── basicimporter/ │ │ ├── BasicimporterController.php │ │ ├── BasicimporterPlugin.php │ │ ├── SelectorModule.js │ │ ├── SelectorModule.php │ │ ├── doap.n3 │ │ ├── languages/ │ │ │ ├── basicimporter-de.csv │ │ │ └── basicimporter-en.csv │ │ └── templates/ │ │ └── basicimporter/ │ │ ├── category.phtml │ │ ├── prefix.phtml │ │ ├── rdfpaster.phtml │ │ ├── rdfupload.phtml │ │ ├── rdfwebimport.phtml │ │ └── search.phtml │ ├── bookmarklet/ │ │ ├── BookmarkletModule.php │ │ ├── bookmarklet.phtml │ │ ├── default.ini │ │ └── doap.n3 │ ├── ckan/ │ │ ├── CkanController.php │ │ ├── CkanHelper.php │ │ ├── default.ini │ │ ├── doap.n3 │ │ └── templates/ │ │ └── ckan/ │ │ └── browser.phtml │ ├── community/ │ │ ├── CommentModule.php │ │ ├── CommunityController.php │ │ ├── CommunityHelper.php │ │ ├── LastchangesModule.php │ │ ├── RatingModule.php │ │ ├── default.ini │ │ ├── default.n3 │ │ ├── doap.n3 │ │ ├── insert.sparql │ │ ├── jquery.MetaData.js │ │ ├── jquery.rating.css │ │ ├── jquery.rating.js │ │ ├── jquery.rating.pack.js │ │ ├── languages/ │ │ │ ├── community-de.csv │ │ │ └── community-en.csv │ │ ├── rating.js │ │ ├── styles/ │ │ │ └── community.css │ │ └── templates/ │ │ ├── comment.phtml │ │ ├── community/ │ │ │ └── list.phtml │ │ ├── lastchanges.phtml │ │ ├── lastcomments.phtml │ │ ├── partials/ │ │ │ ├── list_community_item.phtml │ │ │ └── list_community_main.phtml │ │ └── rating.phtml │ ├── cors/ │ │ ├── CorsPlugin.php │ │ ├── default.ini │ │ └── doap.n3 │ ├── datagathering/ │ │ ├── DatagatheringController.php │ │ ├── DatagatheringHelper.php │ │ ├── DatagatheringPlugin.php │ │ ├── SyncSchema.rdf │ │ ├── css/ │ │ │ └── jquery.autocomplete.css │ │ ├── datagathering.js │ │ ├── default.ini │ │ ├── doap.n3 │ │ ├── languages/ │ │ │ ├── datagathering-de.csv │ │ │ └── datagathering-en.csv │ │ ├── scripts/ │ │ │ └── jquery.autocomplete.js │ │ ├── templates/ │ │ │ └── datagathering/ │ │ │ └── config.phtml │ │ └── tests/ │ │ └── DatagatheringControllerTest.php │ ├── defaultmodel/ │ │ ├── DefaultmodelPlugin.php │ │ ├── default.ini │ │ └── doap.n3 │ ├── exconf/ │ │ ├── Archive.php │ │ ├── ExconfController.php │ │ ├── ExconfHelper.php │ │ ├── OutlineModule.php │ │ ├── default.ini │ │ ├── doap.n3 │ │ ├── pclzip.lib.php │ │ ├── resources/ │ │ │ ├── Examples.rdf │ │ │ ├── PluginRepository.rdf │ │ │ ├── exconf.css │ │ │ ├── exconf.js │ │ │ ├── jquery.togglebutton.js │ │ │ ├── outline.js │ │ │ └── togglebutton.css │ │ └── templates/ │ │ ├── exconf/ │ │ │ ├── archiveuploadform.phtml │ │ │ ├── conf.phtml │ │ │ ├── explorerepo.phtml │ │ │ ├── installarchiveremote.phtml │ │ │ ├── installarchiveupload.phtml │ │ │ └── list.phtml │ │ └── partials/ │ │ └── list_extensions_main.phtml │ ├── filter/ │ │ ├── CustomfilterModule.php │ │ ├── FilterController.php │ │ ├── FilterModule.php │ │ ├── default.ini │ │ ├── doap.n3 │ │ ├── resources/ │ │ │ ├── FilterAPI.js │ │ │ ├── filter.css │ │ │ ├── filter.js │ │ │ ├── jquery.dump.js │ │ │ ├── jquery.treeview.css │ │ │ └── jquery.treeview.js │ │ └── templates/ │ │ └── filter/ │ │ ├── complexfilter.phtml │ │ ├── filter.phtml │ │ └── getpossiblevalues.phtml │ ├── googletracking/ │ │ ├── GoogletrackingPlugin.php │ │ ├── default.ini │ │ └── doap.n3 │ ├── hideproperties/ │ │ ├── HidepropertiesPlugin.php │ │ ├── default.ini │ │ └── doap.n3 │ ├── history/ │ │ ├── HistoryController.php │ │ ├── HistoryHelper.php │ │ ├── default.ini │ │ ├── doap.n3 │ │ ├── languages/ │ │ │ ├── history-de.csv │ │ │ └── history-en.csv │ │ └── templates/ │ │ └── history/ │ │ ├── details.phtml │ │ ├── list.phtml │ │ └── rollback.phtml │ ├── imagelink/ │ │ ├── ImagelinkPlugin.php │ │ ├── default.ini │ │ └── doap.n3 │ ├── imprint/ │ │ ├── ImprintModule.php │ │ ├── default.ini │ │ ├── doap.n3 │ │ └── imprint.phtml │ ├── jsonrpc/ │ │ ├── EvolutionJsonrpcAdapter.php │ │ ├── JsonrpcController.php │ │ ├── MetaJsonrpcAdapter.php │ │ ├── ModelJsonrpcAdapter.php │ │ ├── ResourceJsonrpcAdapter.php │ │ ├── StoreJsonrpcAdapter.php │ │ ├── default.ini │ │ ├── doap.n3 │ │ └── languages/ │ │ └── community-en.csv │ ├── linkeddataserver/ │ │ ├── LinkeddataPlugin.php │ │ ├── default.ini │ │ └── doap.n3 │ ├── listmodules/ │ │ ├── ShowpropertiesModule.php │ │ ├── default.ini │ │ ├── doap.n3 │ │ ├── showproperties.js │ │ └── showproperties.phtml │ ├── literaltypes/ │ │ ├── LiteraltypesPlugin.php │ │ ├── default.ini │ │ └── doap.n3 │ ├── mail/ │ │ ├── MailPlugin.php │ │ ├── doap.n3 │ │ └── jobs/ │ │ └── Mail.php │ ├── mailtolink/ │ │ ├── MailtolinkPlugin.php │ │ ├── default.ini │ │ └── doap.n3 │ ├── manchester/ │ │ ├── ManchesterController.php │ │ ├── ManchesterModule.php │ │ ├── default.ini │ │ ├── doap.n3 │ │ └── templates/ │ │ └── modules/ │ │ └── manchester.phtml │ ├── markdown/ │ │ ├── MarkdownPlugin.php │ │ ├── default.ini │ │ ├── doap.n3 │ │ └── parser/ │ │ ├── License.text │ │ ├── PHP Markdown Readme.text │ │ └── markdown.php │ ├── modellist/ │ │ ├── ModellistModule.php │ │ ├── default.ini │ │ ├── doap.n3 │ │ ├── modellist.js │ │ └── modellist.phtml │ ├── navigation/ │ │ ├── NavigationController.php │ │ ├── NavigationHelper.php │ │ ├── NavigationModule.php │ │ ├── doap.n3 │ │ ├── languages/ │ │ │ ├── navigation-de.csv │ │ │ └── navigation-en.csv │ │ ├── navigation.css │ │ ├── navigation.js │ │ ├── navigation.phtml │ │ └── templates/ │ │ └── navigation/ │ │ ├── explore.phtml │ │ └── loadstate.phtml │ ├── pingback/ │ │ ├── PingbackController.php │ │ ├── PingbackPlugin.php │ │ ├── default.ini │ │ ├── doap.n3 │ │ └── templates/ │ │ └── pingback/ │ │ └── ping.phtml │ ├── queries/ │ │ ├── QueriesController.php │ │ ├── QueriesHelper.php │ │ ├── SavequeryModule.php │ │ ├── default.ini │ │ ├── doap.n3 │ │ ├── log/ │ │ │ ├── getAutocompletionQuery.log │ │ │ ├── getSPARQLQuery.log │ │ │ └── updateTable.log │ │ ├── resources/ │ │ │ ├── codemirror/ │ │ │ │ ├── CONTRIBUTING.md │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── addon/ │ │ │ │ │ ├── dialog/ │ │ │ │ │ │ ├── dialog.css │ │ │ │ │ │ └── dialog.js │ │ │ │ │ ├── edit/ │ │ │ │ │ │ ├── closetag.js │ │ │ │ │ │ ├── continuecomment.js │ │ │ │ │ │ ├── continuelist.js │ │ │ │ │ │ └── matchbrackets.js │ │ │ │ │ ├── fold/ │ │ │ │ │ │ ├── collapserange.js │ │ │ │ │ │ └── foldcode.js │ │ │ │ │ ├── format/ │ │ │ │ │ │ └── formatting.js │ │ │ │ │ ├── hint/ │ │ │ │ │ │ ├── javascript-hint.js │ │ │ │ │ │ ├── pig-hint.js │ │ │ │ │ │ ├── python-hint.js │ │ │ │ │ │ ├── simple-hint.css │ │ │ │ │ │ ├── simple-hint.js │ │ │ │ │ │ └── xml-hint.js │ │ │ │ │ ├── mode/ │ │ │ │ │ │ ├── loadmode.js │ │ │ │ │ │ ├── multiplex.js │ │ │ │ │ │ └── overlay.js │ │ │ │ │ ├── runmode/ │ │ │ │ │ │ ├── colorize.js │ │ │ │ │ │ ├── runmode-standalone.js │ │ │ │ │ │ ├── runmode.js │ │ │ │ │ │ └── runmode.node.js │ │ │ │ │ └── search/ │ │ │ │ │ ├── match-highlighter.js │ │ │ │ │ ├── search.js │ │ │ │ │ └── searchcursor.js │ │ │ │ ├── keymap/ │ │ │ │ │ ├── emacs.js │ │ │ │ │ └── vim.js │ │ │ │ ├── lib/ │ │ │ │ │ ├── codemirror.css │ │ │ │ │ └── codemirror.js │ │ │ │ ├── mode/ │ │ │ │ │ ├── meta.js │ │ │ │ │ ├── ntriples/ │ │ │ │ │ │ └── ntriples.js │ │ │ │ │ ├── sparql/ │ │ │ │ │ │ └── sparql.js │ │ │ │ │ └── xml/ │ │ │ │ │ └── xml.js │ │ │ │ └── theme/ │ │ │ │ ├── ambiance-mobile.css │ │ │ │ ├── ambiance.css │ │ │ │ ├── blackboard.css │ │ │ │ ├── cobalt.css │ │ │ │ ├── eclipse.css │ │ │ │ ├── elegant.css │ │ │ │ ├── erlang-dark.css │ │ │ │ ├── lesser-dark.css │ │ │ │ ├── monokai.css │ │ │ │ ├── neat.css │ │ │ │ ├── night.css │ │ │ │ ├── rubyblue.css │ │ │ │ ├── solarized.css │ │ │ │ ├── twilight.css │ │ │ │ ├── vibrant-ink.css │ │ │ │ └── xq-dark.css │ │ │ ├── querieseditor.css │ │ │ └── savepartial.js │ │ └── templates/ │ │ ├── partials/ │ │ │ ├── list_queries_element.phtml │ │ │ └── list_queries_main.phtml │ │ ├── queries/ │ │ │ ├── editor.phtml │ │ │ ├── listquery.phtml │ │ │ ├── manage.phtml │ │ │ └── savequery.phtml │ │ ├── queryeditorfromsetter.phtml │ │ ├── savequery.phtml │ │ └── sparqloptions.phtml │ ├── resourcecreationuri/ │ │ ├── ResourcecreationuriPlugin.php │ │ ├── classes/ │ │ │ └── ResourceUriGenerator.php │ │ ├── default.ini │ │ └── doap.n3 │ ├── resourcemodules/ │ │ ├── LinkinghereModule.php │ │ ├── SimilarinstancesModule.php │ │ ├── UsageModule.php │ │ ├── default.ini │ │ ├── doap.n3 │ │ ├── linkinghere.phtml │ │ ├── similarinstances.phtml │ │ └── usage.phtml │ ├── savedqueries/ │ │ ├── SavedqueriesController.php │ │ ├── SavedqueriesModule.php │ │ ├── default.ini │ │ ├── doap.n3 │ │ ├── savedqueries.phtml │ │ └── templates/ │ │ └── savedqueries/ │ │ └── init.phtml │ ├── selectlanguage/ │ │ ├── SelectlanguagePlugin.php │ │ ├── default.ini │ │ ├── doap.n3 │ │ └── languages/ │ │ └── selectlanguage-de.csv │ ├── semanticsitemap/ │ │ ├── SemanticsitemapController.php │ │ ├── default.ini │ │ ├── doap.n3 │ │ ├── semanticsitemap.php │ │ └── templates/ │ │ └── semanticsitemap/ │ │ └── sitemap.phtml │ ├── sendmail/ │ │ ├── SendmailPlugin.php │ │ ├── default.ini │ │ └── doap.n3 │ ├── sindice/ │ │ ├── SindicePlugin.php │ │ ├── default.ini │ │ └── doap.n3 │ ├── sortproperties/ │ │ ├── SortpropertiesPlugin.php │ │ ├── default.ini │ │ └── doap.n3 │ ├── source/ │ │ ├── SourceController.php │ │ ├── SourceHelper.php │ │ ├── default.ini │ │ ├── doap.n3 │ │ ├── templates/ │ │ │ └── source/ │ │ │ └── edit.phtml │ │ └── tests/ │ │ └── SourceControllerTest.php │ ├── themes/ │ │ ├── .htaccess │ │ ├── darkorange/ │ │ │ ├── install.txt │ │ │ └── styles/ │ │ │ └── default.css │ │ └── silverblue/ │ │ ├── sandbox/ │ │ │ ├── detailview.html │ │ │ ├── filter.html │ │ │ ├── forms.html │ │ │ ├── listview.html │ │ │ ├── tables.html │ │ │ ├── uitest.html │ │ │ └── uitestow.html │ │ ├── scripts/ │ │ │ ├── jquery.ontowiki.js │ │ │ ├── libraries/ │ │ │ │ ├── jquery-1.9.1.js │ │ │ │ ├── jquery-migrate-1.3.0.js │ │ │ │ ├── jquery-ui-1.8.22.js │ │ │ │ ├── jquery.clickmenu.js │ │ │ │ ├── jquery.dimensions.js │ │ │ │ ├── jquery.interface.js │ │ │ │ ├── jquery.json.js │ │ │ │ ├── jquery.livequery.js │ │ │ │ ├── jquery.rdfquery.rdfa-1.0.js │ │ │ │ ├── jquery.simplemodal.js │ │ │ │ └── jquery.tablesorter.js │ │ │ ├── main.js │ │ │ ├── serialize-php.js │ │ │ └── support.js │ │ └── styles/ │ │ ├── clickmenu.css │ │ ├── default.css │ │ ├── default.dev.css │ │ ├── deprecated.dev.css │ │ ├── jquery-ui.css │ │ ├── old.css │ │ └── patches/ │ │ ├── ie6.clickmenu.css │ │ ├── ie6.css │ │ └── ie7.css │ ├── translations/ │ │ ├── de/ │ │ │ └── core.csv │ │ ├── en/ │ │ │ └── core.csv │ │ ├── fr/ │ │ │ └── core.csv │ │ ├── ru/ │ │ │ └── core.csv │ │ └── zh/ │ │ └── core.csv │ └── weblink/ │ ├── WeblinkPlugin.php │ └── doap.n3 ├── index.php ├── phpcs.xml ├── phpunit.xml └── web.config