stable

Clone or download

Read-only

Merge remote-tracking branch 'gerrit/burning_parrot' into stable

* gerrit/burning_parrot: (190 commits) Git > restrict mirror Correct button and link label in pending project story #9297: users & projects pending panes are now displayed only if needed display plugins in sidebar Fix access project icon story #9585: svn tokens Change page title for pending projects Add a warning in admin section to warn administrators of regex danger activation story #8118: Fix table row background on hover Fix rendering issue in Firefox Style pending projects Add missing user autocompleter story #9585: plugin restriction Clean-up the sidebar Add project autocompletor in gitolite config Align behavior between projects and users lists Format user in autocompleter story #9585: autocompleter in FTS Introduce user autocompleter Fix sort users ...

Modified Files

Name
M .gitignore +2 −0 Go to diff View file
M .scss-lint.yml +65 −1 Go to diff View file
M Makefile +4 −0 Go to diff View file
M gulpfile.js +51 −11 Go to diff View file
M package.json +1 −0 Go to diff View file
M plugins/IM/include/IMPlugin.class.php +94 −100 Go to diff View file
M plugins/IM/include/IMViews.class.php +81 −81 Go to diff View file
M plugins/admindelegation/build-manifest.json +17 −0 Go to diff View file
A plugins/admindelegation/include/AdminDelegationBuilder.php +97 −0 Go to diff View file
A plugins/admindelegation/include/AdminDelegationPresenter.php +110 −0 Go to diff View file
M plugins/admindelegation/include/admindelegationPlugin.class.php +45 −14 Go to diff View file
M plugins/admindelegation/include/autoload.php +5 −3 Go to diff View file
M plugins/admindelegation/site-content/en_US/admindelegation.tab +11 −1 Go to diff View file
M plugins/admindelegation/site-content/fr_FR/admindelegation.tab +11 −1 Go to diff View file
A plugins/admindelegation/templates/modal-add-permission.mustache +43 −0 Go to diff View file
A plugins/admindelegation/templates/modal-revoke-permission.mustache +19 −0 Go to diff View file
A plugins/admindelegation/templates/permission-delegation.mustache +77 −0 Go to diff View file
M plugins/admindelegation/www/permissions.php +33 −135 Go to diff View file
A plugins/admindelegation/www/scripts/admindelegation.js +54 −0 Go to diff View file
A plugins/admindelegation/www/themes/BurningParrot/css/_admindelegation.scss +34 −0 Go to diff View file
R plugins/git/www/scripts/admin.js Go to diff View file
R src/www/scripts/tuleap/userlist.js Go to diff View file
A plugins/admindelegation/www/themes/BurningParrot/css/style-grey.scss +22 −0 Go to diff View file
A plugins/admindelegation/www/themes/BurningParrot/css/style-orange.scss +22 −0 Go to diff View file
A plugins/admindelegation/www/themes/BurningParrot/css/style-purple.scss +22 −0 Go to diff View file
A plugins/admindelegation/www/themes/BurningParrot/css/style-red.scss +22 −0 Go to diff View file
M plugins/agiledashboard/www/js/ContentFilter.js +2 −2 Go to diff View file
M plugins/docman/include/docmanPlugin.class.php +192 −102 Go to diff View file
M plugins/fulltextsearch/build-manifest.json +17 −0 Go to diff View file
M plugins/fulltextsearch/include/FullTextSearch/Controller/AdminController.class.php +17 −6 Go to diff View file
M plugins/fulltextsearch/include/FullTextSearch/Presenter/AdminPresenter.class.php +20 −9 Go to diff View file
M plugins/fulltextsearch/include/fulltextsearchPlugin.class.php +44 −4 Go to diff View file
M plugins/fulltextsearch/site-content/en_US/fulltextsearch.tab +4 −2 Go to diff View file
M plugins/fulltextsearch/site-content/fr_FR/fulltextsearch.tab +4 −2 Go to diff View file
M plugins/fulltextsearch/templates/admin.mustache +21 −16 Go to diff View file
M plugins/fulltextsearch/www/scripts/admin-load-project-autocompleter.js +1 −1 Go to diff View file
A plugins/fulltextsearch/www/themes/BurningParrot/css/_fulltextsearch.scss +7 −0 Go to diff View file
A plugins/fulltextsearch/www/themes/BurningParrot/css/style-blue.scss +22 −0 Go to diff View file
A plugins/fulltextsearch/www/themes/BurningParrot/css/style-green.scss +22 −0 Go to diff View file
A plugins/fulltextsearch/www/themes/BurningParrot/css/style-grey.scss +22 −0 Go to diff View file
A plugins/fulltextsearch/www/themes/BurningParrot/css/style-orange.scss +22 −0 Go to diff View file
A plugins/fulltextsearch/www/themes/BurningParrot/css/style-purple.scss +22 −0 Go to diff View file
A plugins/fulltextsearch/www/themes/BurningParrot/css/style-red.scss +22 −0 Go to diff View file
M plugins/git/build-manifest.json +25 −1 Go to diff View file
M plugins/git/include/Git/AdminAllowedProjectsPresenter.class.php +12 −4 Go to diff View file
M plugins/git/include/Git/AdminGerritController.class.php +146 −70 Go to diff View file
M plugins/git/include/Git/AdminGerritPresenter.class.php +84 −8 Go to diff View file
M plugins/git/include/Git/AdminGitoliteConfig.php +16 −6 Go to diff View file
M plugins/git/include/Git/AdminGitoliteConfigPresenter.php +12 −2 Go to diff View file
M plugins/git/include/Git/AdminMirrorController.class.php +49 −92 Go to diff View file
M plugins/git/include/Git/AdminMirrorListPresenter.class.php +25 −10 Go to diff View file
M plugins/git/include/Git/AdminMirrorPresenter.class.php +37 −10 Go to diff View file
M plugins/git/include/Git/AdminPresenter.class.php +3 −3 Go to diff View file
D plugins/git/include/Git/AdminRepositoryListPresenter.class.php +0 −76 Go to diff View file
M plugins/git/include/Git/AdminRouter.class.php +21 −5 Go to diff View file
M plugins/git/include/Git/GeneralSettingsController.php +10 −7 Go to diff View file
M plugins/git/include/Git/GeneralSettingsPresenter.php +6 −4 Go to diff View file
M plugins/git/include/Git/Mirror/MirrorDataMapper.class.php +5 −2 Go to diff View file
A plugins/git/include/Git/Mirror/MirrorPresenter.php +90 −0 Go to diff View file
M plugins/git/include/Git/RemoteServer/GerritServerPresenter.class.php +49 −15 Go to diff View file
M plugins/git/include/GitPresenters/AdminMassUpdatePresenter.class.php +3 −3 Go to diff View file
M plugins/git/include/GitPresenters/AdminMassUpdateSelectRepositoriesPresenter.class.php +3 −3 Go to diff View file
M plugins/git/include/GitViews/RepoManagement/Pane/Delete.class.php +1 −1 Go to diff View file
M plugins/git/include/GitViews/RepoManagement/Pane/Gerrit.class.php +1 −1 Go to diff View file
M plugins/git/include/autoload.php +3 −3 Go to diff View file
M plugins/git/include/gitPlugin.class.php +94 −18 Go to diff View file
M plugins/git/site-content/en_US/git.tab +61 −22 Go to diff View file
M plugins/git/site-content/en_US/script_locale.txt +1 −1 Go to diff View file
M plugins/git/site-content/fr_FR/git.tab +51 −13 Go to diff View file
M plugins/git/templates/admin-mass-update-select-repositories.mustache +3 −1 Go to diff View file
M plugins/git/templates/admin-mass-update.mustache +3 −1 Go to diff View file
D plugins/git/templates/admin-plugin-add-mirror.mustache +0 −45 Go to diff View file
M plugins/git/templates/admin-plugin-edit-mirror.mustache +3 −1 Go to diff View file
M plugins/git/templates/admin-plugin-general.mustache +31 −19 Go to diff View file
A plugins/git/templates/admin-plugin-gerrit-modal-delete.mustache +32 −0 Go to diff View file
A plugins/git/templates/admin-plugin-gerrit-modal-edit.mustache +172 −0 Go to diff View file
A plugins/git/templates/admin-plugin-gerrit-server-modal.mustache +95 −0 Go to diff View file
M plugins/git/templates/admin-plugin-gerrit-server.mustache +162 −137 Go to diff View file
M plugins/git/templates/admin-plugin-gitolite-config.mustache +28 −12 Go to diff View file
M plugins/git/templates/admin-plugin-list-repositories.mustache +34 −36 Go to diff View file
A plugins/git/templates/admin-plugin-mirror-configuration-modal.mustache +22 −0 Go to diff View file
A plugins/git/templates/admin-plugin-mirror-modal-delete.mustache +32 −0 Go to diff View file
A plugins/git/templates/admin-plugin-mirror-modal-edit.mustache +72 −0 Go to diff View file
A plugins/git/templates/admin-plugin-mirror-modal.mustache +42 −0 Go to diff View file
M plugins/git/templates/admin-plugin-mirrors.mustache +156 −79 Go to diff View file
M plugins/git/templates/admin-plugin.mustache +12 −26 Go to diff View file
M plugins/git/tests/Git/AdminGerritControllerTest.php +101 −75 Go to diff View file
A plugins/git/www/scripts/admin-gitolite.js +23 −0 Go to diff View file
A plugins/git/www/scripts/modal-add-gerrit-server.js +29 −0 Go to diff View file
A plugins/git/www/scripts/modal-add-mirror.js +29 −0 Go to diff View file
A plugins/git/www/scripts/modal-delete-gerrit-server.js +36 −0 Go to diff View file
A plugins/git/www/scripts/modal-edit-gerrit-server.js +36 −0 Go to diff View file
A plugins/git/www/scripts/modal-mirror-configuration.js +40 −0 Go to diff View file
A plugins/git/www/themes/BurningParrot/css/_git.scss +133 −0 Go to diff View file
A plugins/git/www/themes/BurningParrot/css/_gitolite.scss +7 −0 Go to diff View file
A plugins/git/www/themes/BurningParrot/css/style-blue.scss +22 −0 Go to diff View file
A plugins/git/www/themes/BurningParrot/css/style-gray.scss +22 −0 Go to diff View file
A plugins/git/www/themes/BurningParrot/css/style-green.scss +22 −0 Go to diff View file
A plugins/git/www/themes/BurningParrot/css/style-orange.scss +22 −0 Go to diff View file
A plugins/git/www/themes/BurningParrot/css/style-purple.scss +22 −0 Go to diff View file
A plugins/git/www/themes/BurningParrot/css/style-red.scss +22 −0 Go to diff View file
M plugins/ldap/include/ldapPlugin.class.php +99 −59 Go to diff View file
M plugins/ldap/site-content/en_US/ldap.tab +1 −1 Go to diff View file
M plugins/ldap/site-content/fr_FR/ldap.tab +2 −2 Go to diff View file
M plugins/ldap/templates/ldap-administration.mustache +9 −14 Go to diff View file
M plugins/mediawiki/build-manifest.json +17 −0 Go to diff View file
M plugins/mediawiki/include/MediawikiSiteAdminAllowedProjectsPresenter.class.php +10 −13 Go to diff View file
M plugins/mediawiki/include/MediawikiSiteAdminController.class.php +21 −11 Go to diff View file
M plugins/mediawiki/include/mediawikiPlugin.class.php +32 −2 Go to diff View file
M plugins/mediawiki/site-content/en_US/mediawiki.tab +5 −4 Go to diff View file
M plugins/mediawiki/site-content/fr_FR/mediawiki.tab +5 −4 Go to diff View file
M plugins/mediawiki/www/forge_admin.php +3 −1 Go to diff View file
M plugins/mediawiki/www/skins/Tuleap/Tuleap.php +7 −2 Go to diff View file
M plugins/mediawiki/www/skins/Tuleap123/Tuleap123.php +7 −2 Go to diff View file
A plugins/mediawiki/www/themes/BurningParrot/css/_mediawiki.scss +0 −0 Go to diff View file
A plugins/mediawiki/www/themes/BurningParrot/css/style-blue.scss +22 −0 Go to diff View file
A plugins/mediawiki/www/themes/BurningParrot/css/style-green.scss +22 −0 Go to diff View file
A plugins/mediawiki/www/themes/BurningParrot/css/style-grey.scss +22 −0 Go to diff View file
A plugins/mediawiki/www/themes/BurningParrot/css/style-orange.scss +22 −0 Go to diff View file
A plugins/mediawiki/www/themes/BurningParrot/css/style-purple.scss +22 −0 Go to diff View file
A plugins/mediawiki/www/themes/BurningParrot/css/style-red.scss +22 −0 Go to diff View file
A plugins/openidconnectclient/.editorconfig +17 −0 Go to diff View file
M plugins/openidconnectclient/build-manifest.json +17 −0 Go to diff View file
M plugins/openidconnectclient/include/OpenIDConnectClient/Administration/Controller.php +15 −12 Go to diff View file
M plugins/openidconnectclient/include/OpenIDConnectClient/Administration/Presenter.php +27 −2 Go to diff View file
M plugins/openidconnectclient/include/openidconnectclientPlugin.class.php +42 −6 Go to diff View file
M plugins/openidconnectclient/site-content/en_US/openidconnectclient.tab +8 −3 Go to diff View file
M plugins/openidconnectclient/site-content/fr_FR/openidconnectclient.tab +7 −2 Go to diff View file
M plugins/openidconnectclient/templates/administration-providers-modal-create.mustache +137 −45 Go to diff View file
M plugins/openidconnectclient/templates/administration-providers-modal-update.mustache +144 −45 Go to diff View file
M plugins/openidconnectclient/templates/administration-providers.mustache +94 −43 Go to diff View file
M plugins/openidconnectclient/www/scripts/open-id-connect-client.js +56 −28 Go to diff View file
A plugins/openidconnectclient/www/themes/BurningParrot/css/includes/_openidconnectclient.scss +51 −0 Go to diff View file
A plugins/openidconnectclient/www/themes/BurningParrot/css/includes/_provider-admin-modal.scss +272 −0 Go to diff View file
A plugins/openidconnectclient/www/themes/BurningParrot/css/style-blue.scss +23 −0 Go to diff View file
A plugins/openidconnectclient/www/themes/BurningParrot/css/style-green.scss +23 −0 Go to diff View file
A plugins/openidconnectclient/www/themes/BurningParrot/css/style-grey.scss +23 −0 Go to diff View file
A plugins/openidconnectclient/www/themes/BurningParrot/css/style-orange.scss +23 −0 Go to diff View file
A plugins/openidconnectclient/www/themes/BurningParrot/css/style-purple.scss +23 −0 Go to diff View file
A plugins/openidconnectclient/www/themes/BurningParrot/css/style-red.scss +23 −0 Go to diff View file
A plugins/phpwiki/build-manifest.json +22 −0 Go to diff View file
M plugins/phpwiki/include/PHPWikiAdminAllowedProjectsPresenter.class.php +9 −8 Go to diff View file
M plugins/phpwiki/include/PHPWikiAdminController.class.php +19 −9 Go to diff View file
M plugins/phpwiki/include/migration/PHPWikiMigratorDao.class.php +2 −2 Go to diff View file
M plugins/phpwiki/include/phpwikiPlugin.class.php +35 −4 Go to diff View file
M plugins/phpwiki/site-content/en_US/phpwiki.tab +5 −4 Go to diff View file
M plugins/phpwiki/site-content/fr_FR/phpwiki.tab +5 −4 Go to diff View file
M plugins/phpwiki/www/admin.php +3 −1 Go to diff View file
A plugins/phpwiki/www/themes/BurningParrot/css/_phpwiki.scss +0 −0 Go to diff View file
A plugins/phpwiki/www/themes/BurningParrot/css/style-blue.scss +22 −0 Go to diff View file
A plugins/phpwiki/www/themes/BurningParrot/css/style-green.scss +22 −0 Go to diff View file
A plugins/phpwiki/www/themes/BurningParrot/css/style-grey.scss +22 −0 Go to diff View file
A plugins/phpwiki/www/themes/BurningParrot/css/style-orange.scss +22 −0 Go to diff View file
A plugins/phpwiki/www/themes/BurningParrot/css/style-purple.scss +22 −0 Go to diff View file
A plugins/phpwiki/www/themes/BurningParrot/css/style-red.scss +22 −0 Go to diff View file
M plugins/pluginsadministration/build-manifest.json +17 −0 Go to diff View file
A plugins/pluginsadministration/include/AvailablePluginsPresenter.php +53 −0 Go to diff View file
M plugins/pluginsadministration/include/ManageAllowedProjectsPresenter.class.php +7 −11 Go to diff View file
A plugins/pluginsadministration/include/PluginPropertiesPresenter.php +97 −0 Go to diff View file
M plugins/pluginsadministration/include/PluginsAdministration.class.php +11 −19 Go to diff View file
M plugins/pluginsadministration/include/PluginsAdministrationActions.class.php +48 −16 Go to diff View file
M plugins/pluginsadministration/include/PluginsAdministrationViews.class.php +225 −289 Go to diff View file
M plugins/pluginsadministration/include/Presenter/installedPluginsPresenter.class.php +85 −27 Go to diff View file
M plugins/pluginsadministration/include/autoload.php +5 −3 Go to diff View file
M plugins/pluginsadministration/include/pluginsadministrationPlugin.class.php +39 −18 Go to diff View file
D plugins/pluginsadministration/site-content/en_US/confirm_uninstall.txt +0 −19 Go to diff View file
M plugins/pluginsadministration/site-content/en_US/pluginsAdministration.tab +45 −15 Go to diff View file
D plugins/pluginsadministration/site-content/fr_FR/confirm_uninstall.txt +0 −19 Go to diff View file
M plugins/pluginsadministration/site-content/fr_FR/pluginsAdministration.tab +45 −15 Go to diff View file
A plugins/pluginsadministration/templates/available-plugins.mustache +50 −0 Go to diff View file
A plugins/pluginsadministration/templates/install-plugin-modal.mustache +57 −0 Go to diff View file
M plugins/pluginsadministration/templates/installed-plugins.mustache +81 −53 Go to diff View file
A plugins/pluginsadministration/templates/plugin-properties.mustache +111 −0 Go to diff View file
A plugins/pluginsadministration/templates/uninstall-plugin-modal.mustache +51 −0 Go to diff View file
D plugins/pluginsadministration/www/documentation/en_US/InstallPlugins.png +- −- Go to diff View file
D plugins/pluginsadministration/www/documentation/en_US/InstalledPlugins.png +- −- Go to diff View file
D plugins/pluginsadministration/www/documentation/en_US/InstalledPlugins_noCSS.png +- −- Go to diff View file
D plugins/pluginsadministration/www/documentation/en_US/Priorities.png +- −- Go to diff View file
D plugins/pluginsadministration/www/documentation/en_US/Priorities_noCSS.png +- −- Go to diff View file
D plugins/pluginsadministration/www/documentation/en_US/index.html +0 −86 Go to diff View file
D plugins/pluginsadministration/www/documentation/en_US/screenshots.css +0 −81 Go to diff View file
D plugins/pluginsadministration/www/documentation/fr_FR/InstallPlugins.png +- −- Go to diff View file
D plugins/pluginsadministration/www/documentation/fr_FR/InstalledPlugins.png +- −- Go to diff View file
D plugins/pluginsadministration/www/documentation/fr_FR/InstalledPlugins_noCSS.png +- −- Go to diff View file
D plugins/pluginsadministration/www/documentation/fr_FR/Priorities.png +- −- Go to diff View file
D plugins/pluginsadministration/www/documentation/fr_FR/Priorities_noCSS.png +- −- Go to diff View file
D plugins/pluginsadministration/www/documentation/fr_FR/index.html +0 −87 Go to diff View file
D plugins/pluginsadministration/www/documentation/fr_FR/screenshots.css +0 −81 Go to diff View file
D plugins/pluginsadministration/www/documentation/style.css +0 −49 Go to diff View file
A plugins/pluginsadministration/www/scripts/pluginsadministration.js +50 −0 Go to diff View file
A plugins/pluginsadministration/www/themes/BurningParrot/css/_pluginsadministration.scss +108 −0 Go to diff View file
A plugins/pluginsadministration/www/themes/BurningParrot/css/style-blue.scss +22 −0 Go to diff View file
A plugins/pluginsadministration/www/themes/BurningParrot/css/style-green.scss +22 −0 Go to diff View file
A plugins/pluginsadministration/www/themes/BurningParrot/css/style-grey.scss +22 −0 Go to diff View file
A plugins/pluginsadministration/www/themes/BurningParrot/css/style-orange.scss +22 −0 Go to diff View file
A plugins/pluginsadministration/www/themes/BurningParrot/css/style-purple.scss +22 −0 Go to diff View file
A plugins/pluginsadministration/www/themes/BurningParrot/css/style-red.scss +22 −0 Go to diff View file
M plugins/statistics/include/statisticsPlugin.class.php +44 −39 Go to diff View file
M plugins/statistics/www/disk_usage.php +26 −26 Go to diff View file
M plugins/statistics/www/frequence_stat.php +4 −4 Go to diff View file
M plugins/statistics/www/index.php +3 −3 Go to diff View file
M plugins/statistics/www/project_over_quota.php +1 −1 Go to diff View file
M plugins/statistics/www/project_quota.php +2 −2 Go to diff View file
M plugins/statistics/www/scm_stats.php +2 −2 Go to diff View file
M plugins/statistics/www/services_usage.php +2 −2 Go to diff View file
M plugins/svn/include/Svn/Admin/RestorePresenter.php +3 −8 Go to diff View file
M plugins/svn/include/svnPlugin.class.php +0 −3 Go to diff View file
M plugins/svn/templates/admin/repository_restore.mustache +41 −27 Go to diff View file
M plugins/tests/include/testsPlugin.class.php +13 −9 Go to diff View file
M plugins/tracker/build-manifest.json +17 −0 Go to diff View file
M plugins/tracker/include/Tracker/Artifact/MailGateway/MailGatewayConfigController.php +14 −12 Go to diff View file
M plugins/tracker/include/Tracker/Artifact/MailGateway/MailGatewayConfigPresenter.php +10 −9 Go to diff View file
M plugins/tracker/include/Tracker/Config/SectionsPresenter.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Deprecation/DeprecationController.php +17 −11 Go to diff View file
M plugins/tracker/include/Tracker/Deprecation/DeprecationPresenter.php +14 −7 Go to diff View file
M plugins/tracker/include/Tracker/FormElement/Field/ArtifactLink/Nature/NatureConfigController.php +28 −8 Go to diff View file
M plugins/tracker/include/Tracker/FormElement/Field/ArtifactLink/Nature/NatureConfigPresenter.php +11 −3 Go to diff View file
M plugins/tracker/include/Tracker/Tracker.class.php +1 −3 Go to diff View file
M plugins/tracker/include/trackerPlugin.class.php +41 −4 Go to diff View file
M plugins/tracker/site-content/en_US/tracker.tab +28 −17 Go to diff View file
M plugins/tracker/site-content/fr_FR/tracker.tab +30 −19 Go to diff View file
M plugins/tracker/templates/siteadmin-config/deprecation.mustache +53 −41 Go to diff View file
M plugins/tracker/templates/siteadmin-config/emailgateway.mustache +66 −64 Go to diff View file
M plugins/tracker/templates/siteadmin-config/natures-modal-create.mustache +54 −40 Go to diff View file
A plugins/tracker/templates/siteadmin-config/natures-modal-delete.mustache +28 −0 Go to diff View file
M plugins/tracker/templates/siteadmin-config/natures-modal-edit.mustache +57 −40 Go to diff View file
M plugins/tracker/templates/siteadmin-config/natures.mustache +100 −74 Go to diff View file
M plugins/tracker/www/config.php +13 −8 Go to diff View file
M plugins/tracker/www/scripts/admin-nature.js +26 −8 Go to diff View file
A plugins/tracker/www/themes/BurningParrot/css/_tracker.scss +32 −0 Go to diff View file
A plugins/tracker/www/themes/BurningParrot/css/style-blue.scss +22 −0 Go to diff View file
A plugins/tracker/www/themes/BurningParrot/css/style-green.scss +22 −0 Go to diff View file
A plugins/tracker/www/themes/BurningParrot/css/style-grey.scss +22 −0 Go to diff View file
A plugins/tracker/www/themes/BurningParrot/css/style-orange.scss +22 −0 Go to diff View file
A plugins/tracker/www/themes/BurningParrot/css/style-purple.scss +22 −0 Go to diff View file
A plugins/tracker/www/themes/BurningParrot/css/style-red.scss +22 −0 Go to diff View file
M plugins/userlog/build-manifest.json +21 −1 Go to diff View file
A plugins/userlog/include/UserLogBuilder.php +125 −0 Go to diff View file
M plugins/userlog/include/UserLogManager.class.php +41 −122 Go to diff View file
A plugins/userlog/include/UserLogPresenter.php +76 −0 Go to diff View file
M plugins/userlog/include/autoload.php +4 −2 Go to diff View file
A plugins/userlog/include/constants.php +21 −0 Go to diff View file
M plugins/userlog/include/userlogPlugin.class.php +44 −15 Go to diff View file
M plugins/userlog/site-content/en_US/userlog.tab +11 −0 Go to diff View file
M plugins/userlog/site-content/fr_FR/userlog.tab +12 −1 Go to diff View file
A plugins/userlog/templates/userlogs.mustache +71 −0 Go to diff View file
A plugins/userlog/www/scripts/user-logging-date-picker.js +25 −0 Go to diff View file
A plugins/userlog/www/themes/BurningParrot/css/_userlog.scss +43 −0 Go to diff View file
A plugins/userlog/www/themes/BurningParrot/css/style-blue.scss +22 −0 Go to diff View file
A plugins/userlog/www/themes/BurningParrot/css/style-green.scss +22 −0 Go to diff View file
A plugins/userlog/www/themes/BurningParrot/css/style-grey.scss +22 −0 Go to diff View file
A plugins/userlog/www/themes/BurningParrot/css/style-orange.scss +22 −0 Go to diff View file
A plugins/userlog/www/themes/BurningParrot/css/style-purple.scss +22 −0 Go to diff View file
A plugins/userlog/www/themes/BurningParrot/css/style-red.scss +22 −0 Go to diff View file
M site-content/en_US/account/account.tab +5 −5 Go to diff View file
M site-content/en_US/admin/admin.tab +187 −62 Go to diff View file
M site-content/en_US/en_US.tab +4 −1 Go to diff View file
M site-content/en_US/include/include.tab +5 −0 Go to diff View file
M site-content/en_US/project/project.tab +1 −0 Go to diff View file
M site-content/en_US/svn/svn.tab +6 −6 Go to diff View file
M site-content/fr_FR/account/account.tab +1 −1 Go to diff View file
M site-content/fr_FR/admin/admin.tab +185 −59 Go to diff View file
M site-content/fr_FR/fr_FR.tab +5 −2 Go to diff View file
M site-content/fr_FR/include/include.tab +5 −0 Go to diff View file
M site-content/fr_FR/project/project.tab +2 −1 Go to diff View file
M site-content/fr_FR/svn/svn.tab +5 −5 Go to diff View file
M src/common/ForgeAccess/AdminController.php +2 −1 Go to diff View file
A src/common/admin/AdminPageRenderer.php +80 −0 Go to diff View file
A src/common/admin/AdminSidebarPresenter.php +138 −0 Go to diff View file
A src/common/admin/AdminSidebarPresenterBuilder.php +145 −0 Go to diff View file
M src/common/admin/Admin_UserListExporter.class.php +1 −1 Go to diff View file
M src/common/admin/Homepage/Controller.php +3 −2 Go to diff View file
M src/common/admin/PermissionDelegationController.php +36 −49 Go to diff View file
M src/common/admin/PermissionDelegationDeleteGroupModalPresenter.php +5 −2 Go to diff View file
M src/common/admin/PermissionDelegationGroupPresenter.php +15 −0 Go to diff View file
M src/common/admin/PermissionDelegationIndexPresenter.php +91 −30 Go to diff View file
M src/common/admin/PermissionDelegationPermissionsModalPresenter.php +5 −2 Go to diff View file
M src/common/autoload.php +37 −2 Go to diff View file
A src/common/constants.php +30 −0 Go to diff View file
M src/common/dao/ProjectDao.class.php +83 −18 Go to diff View file
M src/common/dao/UserDao.class.php +14 −32 Go to diff View file
M src/common/event/Event.class.php +25 −0 Go to diff View file
M src/common/include/Codendi_HTMLPurifier.class.php +1 −9 Go to diff View file
M src/common/include/Response.class.php +1 −1 Go to diff View file
M src/common/include/TemplateSingleton.class.php +23 −18 Go to diff View file
A src/common/layout/BaseLayout.php +376 −0 Go to diff View file
M src/common/layout/DivBasedTabbedLayout.class.php +2 −2 Go to diff View file
M src/common/layout/Layout.class.php +27 −378 Go to diff View file
A src/common/layout/PaginationPresenter.php +89 −0 Go to diff View file
A src/common/layout/SidebarPresenter.php +33 −0 Go to diff View file
M src/common/layout/ThemeManager.class.php +126 −23 Go to diff View file
A src/common/layout/ThemeVariantColor.php +45 −0 Go to diff View file
M src/common/mail/MailPresenterFactory.class.php +5 −1 Go to diff View file
M src/common/plugin/PluginFactory.class.php +13 −3 Go to diff View file
M src/common/plugin/PluginInfo.class.php +3 −2 Go to diff View file
M src/common/plugin/PluginManager.class.php +2 −2 Go to diff View file
A src/common/project/Admin/ProjectAccessPresenter.php +58 −0 Go to diff View file
A src/common/project/Admin/ProjectDescriptionFieldBuilder.php +85 −0 Go to diff View file
A src/common/project/Admin/ProjectDetailsPresenter.php +159 −0 Go to diff View file
A src/common/project/Admin/ProjectHistoryPresenter.php +127 −0 Go to diff View file
A src/common/project/Admin/ProjectHistoryResultsPresenter.php +109 −0 Go to diff View file
A src/common/project/Admin/ProjectHistorySearchPresenter.php +127 −0 Go to diff View file
A src/common/project/Admin/ProjectListPresenter.php +40 −0 Go to diff View file
A src/common/project/Admin/ProjectListResultsPresenter.php +81 −0 Go to diff View file
A src/common/project/Admin/ProjectListResultsPresenterBuilder.php +111 −0 Go to diff View file
A src/common/project/Admin/ProjectListResultsProjectPresenter.php +58 −0 Go to diff View file
A src/common/project/Admin/ProjectListSearchFieldsPresenter.php +44 −0 Go to diff View file
A src/common/project/Admin/ProjectListSearchFieldsPresenterBuilder.php +61 −0 Go to diff View file
A src/common/project/DescriptionFieldsDao.php +31 −0 Go to diff View file
A src/common/project/DescriptionFieldsFactory.php +45 −0 Go to diff View file
M src/common/project/Project.class.php +10 −27 Go to diff View file
M src/common/project/ProjectCreator.class.php +4 −1 Go to diff View file
M src/common/project/ProjectManager.class.php +30 −3 Go to diff View file
M src/common/svn/admin/SVN_Admin_AllowedProjectsPresenter.class.php +5 −9 Go to diff View file
M src/common/svn/admin/SVN_Admin_Controller.php +9 −7 Go to diff View file
M src/common/system_event/SystemEventManager.class.php +45 −45 Go to diff View file
A src/common/user/Admin/PendingProjectBuilder.php +115 −0 Go to diff View file
A src/common/user/Admin/PendingUserPresenter.php +51 −0 Go to diff View file
A src/common/user/Admin/PendingUsersCollectionPresenter.php +100 −0 Go to diff View file
A src/common/user/Admin/ProjectPendingPresenter.php +60 −0 Go to diff View file
A src/common/user/Admin/UserChangePasswordPresenter.php +65 −0 Go to diff View file
A src/common/user/Admin/UserDetailsAccessPresenter.php +57 −0 Go to diff View file
A src/common/user/Admin/UserDetailsFormatter.php +106 −0 Go to diff View file
A src/common/user/Admin/UserDetailsPresenter.php +119 −0 Go to diff View file
A src/common/user/Admin/UserDetailsProjectPresenter.php +37 −0 Go to diff View file
A src/common/user/Admin/UserListPresenter.php +47 −0 Go to diff View file
A src/common/user/Admin/UserListResultsPresenter.php +150 −0 Go to diff View file
A src/common/user/Admin/UserListResultsUserPresenter.php +95 −0 Go to diff View file
A src/common/user/Admin/UserListSearchFieldsPresenter.php +76 −0 Go to diff View file
A src/common/user/Password/PasswordValidatorPresenter.php +35 −0 Go to diff View file
M src/common/user/UserManager.class.php +15 −1 Go to diff View file
M src/common/widget/Widget_Static.class.php +35 −3 Go to diff View file
M src/templates/admin/anonymous/access_choice.mustache +1 −1 Go to diff View file
M src/templates/admin/permission_delegation/delete_group_modal.mustache +27 −17 Go to diff View file
M src/templates/admin/permission_delegation/group_modal.mustache +46 −27 Go to diff View file
M src/templates/admin/permission_delegation/index.mustache +73 −35 Go to diff View file
M src/templates/admin/permission_delegation/permissions_list.mustache +39 −43 Go to diff View file
M src/templates/admin/permission_delegation/permissions_modal.mustache +46 −30 Go to diff View file
M src/templates/admin/permission_delegation/users_list.mustache +54 −40 Go to diff View file
A src/templates/admin/projects/project-history.mustache +177 −0 Go to diff View file
A src/templates/admin/projects/project-info.mustache +178 −0 Go to diff View file
A src/templates/admin/projects/project-pending.mustache +135 −0 Go to diff View file
A src/templates/admin/projects/projectlist.mustache +132 −0 Go to diff View file
A src/templates/admin/sidebar.mustache +7 −0 Go to diff View file
A src/templates/admin/sidebar_configuration.mustache +28 −0 Go to diff View file
A src/templates/admin/sidebar_links.mustache +8 −0 Go to diff View file
A src/templates/admin/sidebar_plugins.mustache +12 −0 Go to diff View file
A src/templates/admin/sidebar_projects.mustache +22 −0 Go to diff View file
A src/templates/admin/sidebar_users.mustache +32 −0 Go to diff View file
A src/templates/admin/sidebar_utils.mustache +11 −0 Go to diff View file
A src/templates/admin/sidebar_version.mustache +9 −0 Go to diff View file
A src/templates/admin/users/no-pending.mustache +19 −0 Go to diff View file
A src/templates/admin/users/pending.mustache +156 −0 Go to diff View file
A src/templates/admin/users/user-change-password.mustache +58 −0 Go to diff View file
A src/templates/admin/users/user.mustache +249 −0 Go to diff View file
A src/templates/admin/users/userlist.mustache +173 −0 Go to diff View file
A src/templates/common/pagination.mustache +55 −0 Go to diff View file
M src/templates/resource_restrictor/allowed-projects-list.mustache +69 −54 Go to diff View file
M src/templates/resource_restrictor/grant-only-allowed-projects.mustache +60 −46 Go to diff View file
M src/templates/resource_restrictor/manage-allowed-projects.mustache +35 −14 Go to diff View file
M src/www/account/index.php +4 −0 Go to diff View file
M src/www/admin/admin_utils.php +0 −2 Go to diff View file
M src/www/admin/approve-pending.php +56 −150 Go to diff View file
M src/www/admin/approve_license.php +5 −5 Go to diff View file
M src/www/admin/approve_pending_users.php +55 −251 Go to diff View file
M src/www/admin/descfields/desc_fields_edit.php +70 −67 Go to diff View file
D src/www/admin/externaltools.php +0 −49 Go to diff View file
M src/www/admin/generic_user.php +2 −2 Go to diff View file
M src/www/admin/groupedit.php +65 −143 Go to diff View file
M src/www/admin/grouplist.php +84 −165 Go to diff View file
M src/www/admin/index.php +147 −215 Go to diff View file
M src/www/admin/lastlogins.php +13 −14 Go to diff View file
M src/www/admin/massmail.php +9 −9 Go to diff View file
M src/www/admin/massmail_execute.php +1 −1 Go to diff View file
M src/www/admin/newprojectmail.php +29 −18 Go to diff View file
A src/www/admin/projecthistory.php +71 −0 Go to diff View file
D src/www/admin/search.php +0 −33 Go to diff View file
D src/www/admin/show_license.php +0 −22 Go to diff View file
M src/www/admin/show_pending_documents.php +167 −121 Go to diff View file
M src/www/admin/svn/svn_tokens.php +3 −1 Go to diff View file
M src/www/admin/system_events/index.php +1 −1 Go to diff View file
M src/www/admin/trove/trove_cat_add.php +5 −5 Go to diff View file
M src/www/admin/trove/trove_cat_delete.php +9 −7 Go to diff View file
M src/www/admin/trove/trove_cat_edit.php +4 −4 Go to diff View file
M src/www/admin/trove/trove_cat_list.php +23 −14 Go to diff View file
M src/www/admin/user_changepw.php +8 −8 Go to diff View file
M src/www/admin/usergroup.php +122 −228 Go to diff View file
M src/www/admin/userlist.php +74 −204 Go to diff View file
D src/www/guidelines/_assets/drag.png +- −- Go to diff View file
D src/www/guidelines/_css/bootstrap-3.3.4.min.css +0 −5 Go to diff View file
D src/www/guidelines/_css/font-awesome-4.3.0.min.css +0 −4 Go to diff View file
D src/www/guidelines/_css/guidelines.scss +0 −255 Go to diff View file
D src/www/guidelines/_css/highlight-solarized-light-8.5.min.css +0 −1 Go to diff View file
D src/www/guidelines/_fonts/FontAwesome.otf +- −- Go to diff View file
D src/www/guidelines/_fonts/fontawesome-webfont.eot +- −- Go to diff View file
D src/www/guidelines/_fonts/fontawesome-webfont.svg +0 −565 Go to diff View file
D src/www/guidelines/_fonts/fontawesome-webfont.woff +- −- Go to diff View file
D src/www/guidelines/_fonts/fontawesome-webfont.woff2 +- −- Go to diff View file
D src/www/guidelines/_js/bootstrap-3.3.4.min.js +0 −7 Go to diff View file
D src/www/guidelines/_js/guidelines.js +0 −32 Go to diff View file
D src/www/guidelines/_js/highlight-8.5.min.js +0 −2 Go to diff View file
D src/www/guidelines/_js/jquery-2.1.4.min.js +0 −4 Go to diff View file
D src/www/guidelines/_js/jsbeautifier.js +0 −2813 Go to diff View file
D src/www/guidelines/avatars/_avatars.scss +0 −31 Go to diff View file
D src/www/guidelines/avatars/avatar-lg.png +- −- Go to diff View file
D src/www/guidelines/avatars/avatar-sm.png +- −- Go to diff View file
D src/www/guidelines/avatars/avatar-xs.png +- −- Go to diff View file
D src/www/guidelines/avatars/avatar.png +- −- Go to diff View file
D src/www/guidelines/avatars/avatars-menu.html +0 −3 Go to diff View file
D src/www/guidelines/avatars/avatars.html +0 −33 Go to diff View file
D src/www/guidelines/buttons/_buttons.scss +0 −97 Go to diff View file
D src/www/guidelines/buttons/buttons-menu.html +0 −10 Go to diff View file
D src/www/guidelines/buttons/buttons.html +0 −208 Go to diff View file
D src/www/guidelines/colors/_colors.scss +0 −283 Go to diff View file
D src/www/guidelines/colors/colors-menu.html +0 −8 Go to diff View file
D src/www/guidelines/colors/colors.html +0 −271 Go to diff View file
D src/www/guidelines/forms/_forms.scss +0 −131 Go to diff View file
D src/www/guidelines/forms/forms-menu.html +0 −14 Go to diff View file
D src/www/guidelines/forms/forms.html +0 −464 Go to diff View file
D src/www/guidelines/icons/icons-menu.html +0 −3 Go to diff View file
D src/www/guidelines/icons/icons.html +0 −13 Go to diff View file
D src/www/guidelines/index.php +0 −139 Go to diff View file
D src/www/guidelines/tables/_tables.scss +0 −62 Go to diff View file
D src/www/guidelines/tables/tables-menu.html +0 −9 Go to diff View file
D src/www/guidelines/tables/tables.html +0 −138 Go to diff View file
D src/www/guidelines/tooltips/_tooltips.scss +0 −31 Go to diff View file
D src/www/guidelines/tooltips/tooltips-menu.html +0 −8 Go to diff View file
D src/www/guidelines/tooltips/tooltips.html +0 −69 Go to diff View file
D src/www/guidelines/typography/_typography.scss +0 −40 Go to diff View file
D src/www/guidelines/typography/typography-menu.html +0 −7 Go to diff View file
D src/www/guidelines/typography/typography.html +0 −33 Go to diff View file
M src/www/include/pre.php +1 −0 Go to diff View file
M src/www/include/utils.php +5 −7 Go to diff View file
M src/www/project/admin/editgenericmember.php +1 −1 Go to diff View file
M src/www/project/admin/editgroupinfo.php +7 −4 Go to diff View file
M src/www/project/autocomplete.php +43 −11 Go to diff View file
R src/www/guidelines/forms/forms.js Go to diff View file
A src/www/scripts/admin/permission-delegation.js +106 −0 Go to diff View file
D src/www/scripts/admin/permission_delegation.js +0 −95 Go to diff View file
A src/www/scripts/admin/project-history.js +70 −0 Go to diff View file
A src/www/scripts/admin/userdetails.js +36 −0 Go to diff View file
M src/www/scripts/codendi/feedback.js +24 −9 Go to diff View file
A src/www/scripts/tuleap/autocomplete-for-select2.js +86 −0 Go to diff View file
M src/www/scripts/tuleap/listFilter.js +45 −32 Go to diff View file
M src/www/scripts/tuleap/manage-allowed-projects-on-resource.js +51 −19 Go to diff View file
M src/www/scripts/user.js +37 −36 Go to diff View file
M src/www/stats/graphs.php +2 −2 Go to diff View file
M src/www/stats/index.php +2 −2 Go to diff View file
M src/www/stats/projects.php +5 −5 Go to diff View file
A src/www/themes/BurningParrot/BurningParrotTheme.php +116 −0 Go to diff View file
A src/www/themes/BurningParrot/ChangeLog +1 −0 Go to diff View file
A src/www/themes/BurningParrot/FooterPresenter.php +40 −0 Go to diff View file
A src/www/themes/BurningParrot/HeaderPresenter.php +117 −0 Go to diff View file
A src/www/themes/BurningParrot/HeaderPresenterBuilder.php +158 −0 Go to diff View file
A src/www/themes/BurningParrot/JavascriptPresenter.php +36 −0 Go to diff View file
A src/www/themes/BurningParrot/Navbar/Dropdown/DropdownPresenter.php +32 −0 Go to diff View file
A src/www/themes/BurningParrot/Navbar/Dropdown/DropdownProjectsPresenter.php +80 −0 Go to diff View file
A src/www/themes/BurningParrot/Navbar/Dropdown/DropdownProjectsPresenterBuilder.php +58 −0 Go to diff View file
A src/www/themes/BurningParrot/Navbar/GlobalMenuItemPresenter.php +44 −0 Go to diff View file
A src/www/themes/BurningParrot/Navbar/GlobalNavPresenter.php +38 −0 Go to diff View file
A src/www/themes/BurningParrot/Navbar/GlobalNavbarDropdownMenuItemPresenter.php +43 −0 Go to diff View file
A src/www/themes/BurningParrot/Navbar/Presenter.php +43 −0 Go to diff View file
A src/www/themes/BurningParrot/Navbar/PresenterBuilder.php +107 −0 Go to diff View file
A src/www/themes/BurningParrot/Navbar/Project/ProjectPresenter.php +61 −0 Go to diff View file
A src/www/themes/BurningParrot/Navbar/Project/ProjectPresenterBuilder.php +84 −0 Go to diff View file
A src/www/themes/BurningParrot/Navbar/SearchPresenter.php +32 −0 Go to diff View file
A src/www/themes/BurningParrot/Navbar/UserNavPresenter.php +125 −0 Go to diff View file
A src/www/themes/BurningParrot/VERSION +1 −0 Go to diff View file
A src/www/themes/BurningParrot/autoload.php +34 −0 Go to diff View file
A src/www/themes/BurningParrot/css/_includes.scss +26 −0 Go to diff View file
A src/www/themes/BurningParrot/css/burning-parrot-blue.scss +24 −0 Go to diff View file
A src/www/themes/BurningParrot/css/burning-parrot-green.scss +24 −0 Go to diff View file
A src/www/themes/BurningParrot/css/burning-parrot-grey.scss +24 −0 Go to diff View file
A src/www/themes/BurningParrot/css/burning-parrot-orange.scss +24 −0 Go to diff View file
A src/www/themes/BurningParrot/css/burning-parrot-purple.scss +24 −0 Go to diff View file
A src/www/themes/BurningParrot/css/burning-parrot-red.scss +24 −0 Go to diff View file
A src/www/themes/BurningParrot/css/includes/_autocomplete.scss +28 −0 Go to diff View file
A src/www/themes/BurningParrot/css/includes/_navbar-dropdown-projects.scss +103 −0 Go to diff View file
A src/www/themes/BurningParrot/css/includes/_navbar-dropdown.scss +133 −0 Go to diff View file
A src/www/themes/BurningParrot/css/includes/_navbar.scss +175 −0 Go to diff View file
A src/www/themes/BurningParrot/css/includes/_resource_restrictor.scss +30 −0 Go to diff View file
A src/www/themes/BurningParrot/css/includes/_siteadmin-homepage.scss +94 −0 Go to diff View file
A src/www/themes/BurningParrot/css/includes/_siteadmin-pending-users.scss +85 −0 Go to diff View file
A src/www/themes/BurningParrot/css/includes/_siteadmin-permission-delegation.scss +118 −0 Go to diff View file
A src/www/themes/BurningParrot/css/includes/_siteadmin-project-history.scss +72 −0 Go to diff View file
A src/www/themes/BurningParrot/css/includes/_siteadmin-project-list.scss +76 −0 Go to diff View file
A src/www/themes/BurningParrot/css/includes/_siteadmin-project.scss +94 −0 Go to diff View file
A src/www/themes/BurningParrot/css/includes/_siteadmin-sidebar.scss +160 −0 Go to diff View file
A src/www/themes/BurningParrot/css/includes/_siteadmin-user-details.scss +106 −0 Go to diff View file
A src/www/themes/BurningParrot/css/includes/_siteadmin-user-list.scss +81 −0 Go to diff View file
A src/www/themes/BurningParrot/css/includes/_siteadmin-user-password.scss +76 −0 Go to diff View file
A src/www/themes/BurningParrot/css/includes/_siteadmin.scss +39 −0 Go to diff View file
A src/www/themes/BurningParrot/css/includes/_siteadmin_pending-projects.scss +94 −0 Go to diff View file
A src/www/themes/BurningParrot/css/includes/_smooth-scrollbar-overrides.scss +13 −0 Go to diff View file
A src/www/themes/BurningParrot/css/includes/_structure.scss +70 −0 Go to diff View file
A src/www/themes/BurningParrot/css/vendor/_smooth-scrollbar.min.scss +1 −0 Go to diff View file
A src/www/themes/BurningParrot/images/admin-sidebar-search-background.png Binary file Go to diff View file
A src/www/themes/BurningParrot/images/favicon/blue/android-chrome-144x144.png Binary file Go to diff View file
A src/www/themes/BurningParrot/images/favicon/blue/android-chrome-192x192.png Binary file Go to diff View file
A src/www/themes/BurningParrot/images/favicon/blue/android-chrome-36x36.png Binary file Go to diff View file
A src/www/themes/BurningParrot/images/favicon/blue/android-chrome-48x48.png Binary file Go to diff View file
A src/www/themes/BurningParrot/images/favicon/blue/android-chrome-72x72.png Binary file Go to diff View file
A src/www/themes/BurningParrot/images/favicon/blue/android-chrome-96x96.png Binary file Go to diff View file
A src/www/themes/BurningParrot/images/favicon/blue/apple-touch-icon-114x114.png Binary file Go to diff View file
A src/www/themes/BurningParrot/images/favicon/blue/apple-touch-icon-120x120.png Binary file Go to diff View file
A src/www/themes/BurningParrot/images/favicon/blue/apple-touch-icon-144x144.png Binary file Go to diff View file
A src/www/themes/BurningParrot/images/favicon/blue/apple-touch-icon-152x152.png Binary file Go to diff View file
A src/www/themes/BurningParrot/images/favicon/blue/apple-touch-icon-180x180.png Binary file Go to diff View file
A src/www/themes/BurningParrot/images/favicon/blue/apple-touch-icon-57x57.png Binary file Go to diff View file
A src/www/themes/BurningParrot/images/favicon/blue/apple-touch-icon-60x60.png Binary file Go to diff View file
A src/www/themes/BurningParrot/images/favicon/blue/apple-touch-icon-72x72.png Binary file Go to diff View file
A src/www/themes/BurningParrot/images/favicon/blue/apple-touch-icon-76x76.png Binary file Go to diff View file
A src/www/themes/BurningParrot/images/favicon/blue/apple-touch-icon-precomposed.png Binary file Go to diff View file
A src/www/themes/BurningParrot/images/favicon/blue/apple-touch-icon.png Binary file Go to diff View file
A src/www/themes/BurningParrot/images/favicon/blue/browserconfig.xml +12 −0 Go to diff View file
A src/www/themes/BurningParrot/images/favicon/blue/favicon-16x16.png Binary file Go to diff View file
A src/www/themes/BurningParrot/images/favicon/blue/favicon-194x194.png Binary file Go to diff View file
A src/www/themes/BurningParrot/images/favicon/blue/favicon-32x32.png Binary file Go to diff View file
A src/www/themes/BurningParrot/images/favicon/blue/favicon-96x96.png Binary file Go to diff View file
A src/www/themes/BurningParrot/images/favicon/blue/favicon.ico Binary file Go to diff View file
A src/www/themes/BurningParrot/images/favicon/blue/manifest.json +41 −0 Go to diff View file
A src/www/themes/BurningParrot/images/favicon/blue/mstile-144x144.png Binary file Go to diff View file
A src/www/themes/BurningParrot/images/favicon/blue/mstile-150x150.png Binary file Go to diff View file
A src/www/themes/BurningParrot/images/favicon/blue/mstile-310x150.png Binary file Go to diff View file
A src/www/themes/BurningParrot/images/favicon/blue/mstile-310x310.png Binary file Go to diff View file
A src/www/themes/BurningParrot/images/favicon/blue/mstile-70x70.png Binary file Go to diff View file
A src/www/themes/BurningParrot/images/favicon/blue/safari-pinned-tab.svg +30 −0 Go to diff View file
A src/www/themes/BurningParrot/images/favicon/green/android-chrome-144x144.png Binary file Go to diff View file
A src/www/themes/BurningParrot/images/favicon/green/android-chrome-192x192.png Binary file Go to diff View file
A src/www/themes/BurningParrot/images/favicon/green/android-chrome-36x36.png Binary file Go to diff View file
A src/www/themes/BurningParrot/images/favicon/green/android-chrome-48x48.png Binary file Go to diff View file
A src/www/themes/BurningParrot/images/favicon/green/android-chrome-72x72.png Binary file Go to diff View file
A src/www/themes/BurningParrot/images/favicon/green/android-chrome-96x96.png Binary file Go to diff View file
A src/www/themes/BurningParrot/images/favicon/green/apple-touch-icon-114x114.png Binary file Go to diff View file
A src/www/themes/BurningParrot/images/favicon/green/apple-touch-icon-120x120.png Binary file Go to diff View file
A src/www/themes/BurningParrot/images/favicon/green/apple-touch-icon-144x144.png Binary file Go to diff View file
A src/www/themes/BurningParrot/images/favicon/green/apple-touch-icon-152x152.png Binary file Go to diff View file
A src/www/themes/BurningParrot/images/favicon/green/apple-touch-icon-180x180.png Binary file Go to diff View file
A src/www/themes/BurningParrot/images/favicon/green/apple-touch-icon-57x57.png Binary file Go to diff View file
A src/www/themes/BurningParrot/images/favicon/green/apple-touch-icon-60x60.png Binary file Go to diff View file
A src/www/themes/BurningParrot/images/favicon/green/apple-touch-icon-72x72.png Binary file Go to diff View file
A src/www/themes/BurningParrot/images/favicon/green/apple-touch-icon-76x76.png Binary file Go to diff View file
A src/www/themes/BurningParrot/images/favicon/green/apple-touch-icon-precomposed.png Binary file Go to diff View file
A src/www/themes/BurningParrot/images/favicon/green/apple-touch-icon.png Binary file Go to diff View file
A src/www/themes/BurningParrot/images/favicon/green/browserconfig.xml +12 −0 Go to diff View file
A src/www/themes/BurningParrot/images/favicon/green/favicon-16x16.png Binary file Go to diff View file
A src/www/themes/BurningParrot/images/favicon/green/favicon-194x194.png Binary file Go to diff View file
A src/www/themes/BurningParrot/images/favicon/green/favicon-32x32.png Binary file Go to diff View file
A src/www/themes/BurningParrot/images/favicon/green/favicon-96x96.png Binary file Go to diff View file
A src/www/themes/BurningParrot/images/favicon/green/favicon.ico Binary file Go to diff View file
A src/www/themes/BurningParrot/images/favicon/green/manifest.json +41 −0 Go to diff View file
A src/www/themes/BurningParrot/images/favicon/green/mstile-144x144.png Binary file Go to diff View file
A src/www/themes/BurningParrot/images/favicon/green/mstile-150x150.png Binary file Go to diff View file
A src/www/themes/BurningParrot/images/favicon/green/mstile-310x150.png Binary file Go to diff View file
A src/www/themes/BurningParrot/images/favicon/green/mstile-310x310.png Binary file Go to diff View file
A src/www/themes/BurningParrot/images/favicon/green/mstile-70x70.png Binary file Go to diff View file
A src/www/themes/BurningParrot/images/favicon/green/safari-pinned-tab.svg +30 −0 Go to diff View file
A src/www/themes/BurningParrot/images/favicon/grey/android-chrome-144x144.png Binary file Go to diff View file
A src/www/themes/BurningParrot/images/favicon/grey/android-chrome-192x192.png Binary file Go to diff View file
A src/www/themes/BurningParrot/images/favicon/grey/android-chrome-36x36.png Binary file Go to diff View file
A src/www/themes/BurningParrot/images/favicon/grey/android-chrome-48x48.png Binary file Go to diff View file
A src/www/themes/BurningParrot/images/favicon/grey/android-chrome-72x72.png Binary file Go to diff View file
A src/www/themes/BurningParrot/images/favicon/grey/android-chrome-96x96.png Binary file Go to diff View file
A src/www/themes/BurningParrot/images/favicon/grey/apple-touch-icon-114x114.png Binary file Go to diff View file
A src/www/themes/BurningParrot/images/favicon/grey/apple-touch-icon-120x120.png Binary file Go to diff View file
A src/www/themes/BurningParrot/images/favicon/grey/apple-touch-icon-144x144.png Binary file Go to diff View file
A src/www/themes/BurningParrot/images/favicon/grey/apple-touch-icon-152x152.png Binary file Go to diff View file
A src/www/themes/BurningParrot/images/favicon/grey/apple-touch-icon-180x180.png Binary file Go to diff View file
A src/www/themes/BurningParrot/images/favicon/grey/apple-touch-icon-57x57.png Binary file Go to diff View file
A src/www/themes/BurningParrot/images/favicon/grey/apple-touch-icon-60x60.png Binary file Go to diff View file
A src/www/themes/BurningParrot/images/favicon/grey/apple-touch-icon-72x72.png Binary file Go to diff View file
A src/www/themes/BurningParrot/images/favicon/grey/apple-touch-icon-76x76.png Binary file Go to diff View file
A src/www/themes/BurningParrot/images/favicon/grey/apple-touch-icon-precomposed.png Binary file Go to diff View file
A src/www/themes/BurningParrot/images/favicon/grey/apple-touch-icon.png Binary file Go to diff View file
A src/www/themes/BurningParrot/images/favicon/grey/browserconfig.xml +12 −0 Go to diff View file
A src/www/themes/BurningParrot/images/favicon/grey/favicon-16x16.png Binary file Go to diff View file
A src/www/themes/BurningParrot/images/favicon/grey/favicon-194x194.png Binary file Go to diff View file
A src/www/themes/BurningParrot/images/favicon/grey/favicon-32x32.png Binary file Go to diff View file
A src/www/themes/BurningParrot/images/favicon/grey/favicon-96x96.png Binary file Go to diff View file
A src/www/themes/BurningParrot/images/favicon/grey/favicon.ico Binary file Go to diff View file
A src/www/themes/BurningParrot/images/favicon/grey/manifest.json +41 −0 Go to diff View file
A src/www/themes/BurningParrot/images/favicon/grey/mstile-144x144.png Binary file Go to diff View file
A src/www/themes/BurningParrot/images/favicon/grey/mstile-150x150.png Binary file Go to diff View file
A src/www/themes/BurningParrot/images/favicon/grey/mstile-310x150.png Binary file Go to diff View file
A src/www/themes/BurningParrot/images/favicon/grey/mstile-310x310.png Binary file Go to diff View file
A src/www/themes/BurningParrot/images/favicon/grey/mstile-70x70.png Binary file Go to diff View file
A src/www/themes/BurningParrot/images/favicon/grey/safari-pinned-tab.svg +30 −0 Go to diff View file
A src/www/themes/BurningParrot/images/favicon/orange/android-chrome-144x144.png Binary file Go to diff View file
A src/www/themes/BurningParrot/images/favicon/orange/android-chrome-192x192.png Binary file Go to diff View file
A src/www/themes/BurningParrot/images/favicon/orange/android-chrome-36x36.png Binary file Go to diff View file
A src/www/themes/BurningParrot/images/favicon/orange/android-chrome-48x48.png Binary file Go to diff View file
A src/www/themes/BurningParrot/images/favicon/orange/android-chrome-72x72.png Binary file Go to diff View file
A src/www/themes/BurningParrot/images/favicon/orange/android-chrome-96x96.png Binary file Go to diff View file
A src/www/themes/BurningParrot/images/favicon/orange/apple-touch-icon-114x114.png Binary file Go to diff View file
A src/www/themes/BurningParrot/images/favicon/orange/apple-touch-icon-120x120.png Binary file Go to diff View file
A src/www/themes/BurningParrot/images/favicon/orange/apple-touch-icon-144x144.png Binary file Go to diff View file
A src/www/themes/BurningParrot/images/favicon/orange/apple-touch-icon-152x152.png Binary file Go to diff View file
A src/www/themes/BurningParrot/images/favicon/orange/apple-touch-icon-180x180.png Binary file Go to diff View file
A src/www/themes/BurningParrot/images/favicon/orange/apple-touch-icon-57x57.png Binary file Go to diff View file
A src/www/themes/BurningParrot/images/favicon/orange/apple-touch-icon-60x60.png Binary file Go to diff View file
A src/www/themes/BurningParrot/images/favicon/orange/apple-touch-icon-72x72.png Binary file Go to diff View file
A src/www/themes/BurningParrot/images/favicon/orange/apple-touch-icon-76x76.png Binary file Go to diff View file
A src/www/themes/BurningParrot/images/favicon/orange/apple-touch-icon-precomposed.png Binary file Go to diff View file
A src/www/themes/BurningParrot/images/favicon/orange/apple-touch-icon.png Binary file Go to diff View file
A src/www/themes/BurningParrot/images/favicon/orange/browserconfig.xml +12 −0 Go to diff View file
A src/www/themes/BurningParrot/images/favicon/orange/favicon-16x16.png Binary file Go to diff View file
A src/www/themes/BurningParrot/images/favicon/orange/favicon-194x194.png Binary file Go to diff View file
A src/www/themes/BurningParrot/images/favicon/orange/favicon-32x32.png Binary file Go to diff View file
A src/www/themes/BurningParrot/images/favicon/orange/favicon-96x96.png Binary file Go to diff View file
A src/www/themes/BurningParrot/images/favicon/orange/favicon.ico Binary file Go to diff View file
A src/www/themes/BurningParrot/images/favicon/orange/manifest.json +41 −0 Go to diff View file
A src/www/themes/BurningParrot/images/favicon/orange/mstile-144x144.png Binary file Go to diff View file
A src/www/themes/BurningParrot/images/favicon/orange/mstile-150x150.png Binary file Go to diff View file
A src/www/themes/BurningParrot/images/favicon/orange/mstile-310x150.png Binary file Go to diff View file
A src/www/themes/BurningParrot/images/favicon/orange/mstile-310x310.png Binary file Go to diff View file
A src/www/themes/BurningParrot/images/favicon/orange/mstile-70x70.png Binary file Go to diff View file
A src/www/themes/BurningParrot/images/favicon/orange/safari-pinned-tab.svg +30 −0 Go to diff View file
A src/www/themes/BurningParrot/images/favicon/purple/android-chrome-144x144.png Binary file Go to diff View file
A src/www/themes/BurningParrot/images/favicon/purple/android-chrome-192x192.png Binary file Go to diff View file
A src/www/themes/BurningParrot/images/favicon/purple/android-chrome-36x36.png Binary file Go to diff View file
A src/www/themes/BurningParrot/images/favicon/purple/android-chrome-48x48.png Binary file Go to diff View file
A src/www/themes/BurningParrot/images/favicon/purple/android-chrome-72x72.png Binary file Go to diff View file
A src/www/themes/BurningParrot/images/favicon/purple/android-chrome-96x96.png Binary file Go to diff View file
A src/www/themes/BurningParrot/images/favicon/purple/apple-touch-icon-114x114.png Binary file Go to diff View file
A src/www/themes/BurningParrot/images/favicon/purple/apple-touch-icon-120x120.png Binary file Go to diff View file
A src/www/themes/BurningParrot/images/favicon/purple/apple-touch-icon-144x144.png Binary file Go to diff View file
A src/www/themes/BurningParrot/images/favicon/purple/apple-touch-icon-152x152.png Binary file Go to diff View file
A src/www/themes/BurningParrot/images/favicon/purple/apple-touch-icon-180x180.png Binary file Go to diff View file
A src/www/themes/BurningParrot/images/favicon/purple/apple-touch-icon-57x57.png Binary file Go to diff View file
A src/www/themes/BurningParrot/images/favicon/purple/apple-touch-icon-60x60.png Binary file Go to diff View file
A src/www/themes/BurningParrot/images/favicon/purple/apple-touch-icon-72x72.png Binary file Go to diff View file
A src/www/themes/BurningParrot/images/favicon/purple/apple-touch-icon-76x76.png Binary file Go to diff View file
A src/www/themes/BurningParrot/images/favicon/purple/apple-touch-icon-precomposed.png Binary file Go to diff View file
A src/www/themes/BurningParrot/images/favicon/purple/apple-touch-icon.png Binary file Go to diff View file
A src/www/themes/BurningParrot/images/favicon/purple/browserconfig.xml +12 −0 Go to diff View file
A src/www/themes/BurningParrot/images/favicon/purple/favicon-16x16.png Binary file Go to diff View file
A src/www/themes/BurningParrot/images/favicon/purple/favicon-194x194.png Binary file Go to diff View file
A src/www/themes/BurningParrot/images/favicon/purple/favicon-32x32.png Binary file Go to diff View file
A src/www/themes/BurningParrot/images/favicon/purple/favicon-96x96.png Binary file Go to diff View file
A src/www/themes/BurningParrot/images/favicon/purple/favicon.ico Binary file Go to diff View file
A src/www/themes/BurningParrot/images/favicon/purple/manifest.json +41 −0 Go to diff View file
A src/www/themes/BurningParrot/images/favicon/purple/mstile-144x144.png Binary file Go to diff View file
A src/www/themes/BurningParrot/images/favicon/purple/mstile-150x150.png Binary file Go to diff View file
A src/www/themes/BurningParrot/images/favicon/purple/mstile-310x150.png Binary file Go to diff View file
A src/www/themes/BurningParrot/images/favicon/purple/mstile-310x310.png Binary file Go to diff View file
A src/www/themes/BurningParrot/images/favicon/purple/mstile-70x70.png Binary file Go to diff View file
A src/www/themes/BurningParrot/images/favicon/purple/safari-pinned-tab.svg +30 −0 Go to diff View file
A src/www/themes/BurningParrot/images/favicon/red/android-chrome-144x144.png Binary file Go to diff View file
A src/www/themes/BurningParrot/images/favicon/red/android-chrome-192x192.png Binary file Go to diff View file
A src/www/themes/BurningParrot/images/favicon/red/android-chrome-36x36.png Binary file Go to diff View file
A src/www/themes/BurningParrot/images/favicon/red/android-chrome-48x48.png Binary file Go to diff View file
A src/www/themes/BurningParrot/images/favicon/red/android-chrome-72x72.png Binary file Go to diff View file
A src/www/themes/BurningParrot/images/favicon/red/android-chrome-96x96.png Binary file Go to diff View file
A src/www/themes/BurningParrot/images/favicon/red/apple-touch-icon-114x114.png Binary file Go to diff View file
A src/www/themes/BurningParrot/images/favicon/red/apple-touch-icon-120x120.png Binary file Go to diff View file
A src/www/themes/BurningParrot/images/favicon/red/apple-touch-icon-144x144.png Binary file Go to diff View file
A src/www/themes/BurningParrot/images/favicon/red/apple-touch-icon-152x152.png Binary file Go to diff View file
A src/www/themes/BurningParrot/images/favicon/red/apple-touch-icon-180x180.png Binary file Go to diff View file
A src/www/themes/BurningParrot/images/favicon/red/apple-touch-icon-57x57.png Binary file Go to diff View file
A src/www/themes/BurningParrot/images/favicon/red/apple-touch-icon-60x60.png Binary file Go to diff View file
A src/www/themes/BurningParrot/images/favicon/red/apple-touch-icon-72x72.png Binary file Go to diff View file
A src/www/themes/BurningParrot/images/favicon/red/apple-touch-icon-76x76.png Binary file Go to diff View file
A src/www/themes/BurningParrot/images/favicon/red/apple-touch-icon-precomposed.png Binary file Go to diff View file
A src/www/themes/BurningParrot/images/favicon/red/apple-touch-icon.png Binary file Go to diff View file
A src/www/themes/BurningParrot/images/favicon/red/browserconfig.xml +12 −0 Go to diff View file
A src/www/themes/BurningParrot/images/favicon/red/favicon-16x16.png Binary file Go to diff View file
A src/www/themes/BurningParrot/images/favicon/red/favicon-194x194.png Binary file Go to diff View file
A src/www/themes/BurningParrot/images/favicon/red/favicon-32x32.png Binary file Go to diff View file
A src/www/themes/BurningParrot/images/favicon/red/favicon-96x96.png Binary file Go to diff View file
A src/www/themes/BurningParrot/images/favicon/red/favicon.ico Binary file Go to diff View file
A src/www/themes/BurningParrot/images/favicon/red/manifest.json +41 −0 Go to diff View file
A src/www/themes/BurningParrot/images/favicon/red/mstile-144x144.png Binary file Go to diff View file
A src/www/themes/BurningParrot/images/favicon/red/mstile-150x150.png Binary file Go to diff View file
A src/www/themes/BurningParrot/images/favicon/red/mstile-310x150.png Binary file Go to diff View file
A src/www/themes/BurningParrot/images/favicon/red/mstile-310x310.png Binary file Go to diff View file
A src/www/themes/BurningParrot/images/favicon/red/mstile-70x70.png Binary file Go to diff View file
A src/www/themes/BurningParrot/images/favicon/red/safari-pinned-tab.svg +30 −0 Go to diff View file
A src/www/themes/BurningParrot/images/organization_logo.png Binary file Go to diff View file
A src/www/themes/BurningParrot/js/navbar-dropdown-projects.js +113 −0 Go to diff View file
A src/www/themes/BurningParrot/js/navbar-dropdown.js +127 −0 Go to diff View file
A src/www/themes/BurningParrot/js/scrollbar.js +26 −0 Go to diff View file
A src/www/themes/BurningParrot/templates/footer.mustache +14 −0 Go to diff View file
A src/www/themes/BurningParrot/templates/global-menu-item.mustache +4 −0 Go to diff View file
A src/www/themes/BurningParrot/templates/global-navbar-dropdown-item.mustache +16 −0 Go to diff View file
A src/www/themes/BurningParrot/templates/header.mustache +51 −0 Go to diff View file
A src/www/themes/BurningParrot/templates/navbar-dropdown-projects.mustache +55 −0 Go to diff View file
A src/www/themes/BurningParrot/templates/navbar-dropdown.mustache +3 −0 Go to diff View file
A src/www/themes/BurningParrot/templates/navbar-global-nav.mustache +11 −0 Go to diff View file
A src/www/themes/BurningParrot/templates/navbar-search.mustache +7 −0 Go to diff View file
A src/www/themes/BurningParrot/templates/navbar-user-nav.mustache +33 −0 Go to diff View file
A src/www/themes/BurningParrot/templates/navbar.mustache +15 −0 Go to diff View file
A src/www/themes/BurningParrot/templates/widget.mustache +8 −0 Go to diff View file
A src/www/themes/BurningParrot/vendor/smooth-scrollbar/smooth-scrollbar.min.css +1 −0 Go to diff View file
A src/www/themes/BurningParrot/vendor/smooth-scrollbar/smooth-scrollbar.min.js +3 −0 Go to diff View file
M src/www/themes/FlamingParrot/FlamingParrot_Theme.class.php +2 −6 Go to diff View file
M src/www/themes/FlamingParrot/js/navbar.js +1 −1 Go to diff View file
A src/www/themes/common/tlp/.gitignore +1 −0 Go to diff View file
A src/www/themes/common/tlp/.scss-lint.yml +1 −0 Go to diff View file
A src/www/themes/common/tlp/README.md +43 −0 Go to diff View file
A src/www/themes/common/tlp/doc/codemirror/.gitignore +1 −0 Go to diff View file
A src/www/themes/common/tlp/doc/codemirror/5.12.2/addon/scroll/simplescrollbars.css +66 −0 Go to diff View file
A src/www/themes/common/tlp/doc/codemirror/5.12.2/codemirror-compressed.js +23 −0 Go to diff View file
A src/www/themes/common/tlp/doc/codemirror/5.12.2/codemirror.css +338 −0 Go to diff View file
A src/www/themes/common/tlp/doc/codemirror/5.12.2/theme/mdn-like.css +44 −0 Go to diff View file
A src/www/themes/common/tlp/doc/css/_demos.scss +196 −0 Go to diff View file
A src/www/themes/common/tlp/doc/css/_nav.scss +124 −0 Go to diff View file
A src/www/themes/common/tlp/doc/css/_sections.scss +86 −0 Go to diff View file
A src/www/themes/common/tlp/doc/css/main.scss +150 −0 Go to diff View file
A src/www/themes/common/tlp/doc/images/random_avatar.jpg Binary file Go to diff View file
A src/www/themes/common/tlp/doc/index.php +235 −0 Go to diff View file
A src/www/themes/common/tlp/doc/js/editors.js +155 −0 Go to diff View file
A src/www/themes/common/tlp/doc/js/main.js +114 −0 Go to diff View file
A src/www/themes/common/tlp/doc/js/polyfills.js +50 −0 Go to diff View file
A src/www/themes/common/tlp/doc/resources/buttons/btn/bar/manifest.json +3 −0 Go to diff View file
A src/www/themes/common/tlp/doc/resources/buttons/btn/disabled/example.html +14 −0 Go to diff View file
A src/www/themes/common/tlp/doc/resources/buttons/btn/disabled/manifest.json +4 −0 Go to diff View file
A src/www/themes/common/tlp/doc/resources/buttons/btn/icon/example.html +25 −0 Go to diff View file
A src/www/themes/common/tlp/doc/resources/buttons/btn/icon/manifest.json +4 −0 Go to diff View file
A src/www/themes/common/tlp/doc/resources/buttons/btn/manifest.json +13 −0 Go to diff View file
A src/www/themes/common/tlp/doc/resources/buttons/btn/outline/example.html +18 −0 Go to diff View file
A src/www/themes/common/tlp/doc/resources/buttons/btn/outline/manifest.json +4 −0 Go to diff View file
A src/www/themes/common/tlp/doc/resources/buttons/btn/sizes/example.html +12 −0 Go to diff View file
A src/www/themes/common/tlp/doc/resources/buttons/btn/sizes/manifest.json +4 −0 Go to diff View file
A src/www/themes/common/tlp/doc/resources/buttons/btn/types/example.html +18 −0 Go to diff View file
A src/www/themes/common/tlp/doc/resources/buttons/btn/types/manifest.json +4 −0 Go to diff View file
A src/www/themes/common/tlp/doc/resources/buttons/btn/wide/example.html +3 −0 Go to diff View file
A src/www/themes/common/tlp/doc/resources/buttons/btn/wide/manifest.json +4 −0 Go to diff View file
A src/www/themes/common/tlp/doc/resources/buttons/dropdowns/manifest.json +3 −0 Go to diff View file
A src/www/themes/common/tlp/doc/resources/buttons/manifest.json +8 −0 Go to diff View file
A src/www/themes/common/tlp/doc/resources/buttons/switch/example.html +13 −0 Go to diff View file
A src/www/themes/common/tlp/doc/resources/buttons/switch/manifest.json +4 −0 Go to diff View file
A src/www/themes/common/tlp/doc/resources/flyover/manifest.json +8 −0 Go to diff View file
A src/www/themes/common/tlp/doc/resources/flyover/modals/manifest.json +9 −0 Go to diff View file
A src/www/themes/common/tlp/doc/resources/flyover/modals/structure/example.html +18 −0 Go to diff View file
A src/www/themes/common/tlp/doc/resources/flyover/modals/structure/manifest.json +3 −0 Go to diff View file
A src/www/themes/common/tlp/doc/resources/flyover/modals/types/example.html +90 −0 Go to diff View file
A src/www/themes/common/tlp/doc/resources/flyover/modals/types/manifest.json +3 −0 Go to diff View file
A src/www/themes/common/tlp/doc/resources/flyover/modals/usage/doc.html +17 −0 Go to diff View file
A src/www/themes/common/tlp/doc/resources/flyover/modals/usage/example.html +80 −0 Go to diff View file
A src/www/themes/common/tlp/doc/resources/flyover/modals/usage/manifest.json +3 −0 Go to diff View file
A src/www/themes/common/tlp/doc/resources/flyover/popovers/manifest.json +3 −0 Go to diff View file
A src/www/themes/common/tlp/doc/resources/flyover/tooltips/manifest.json +8 −0 Go to diff View file
A src/www/themes/common/tlp/doc/resources/flyover/tooltips/tooltips-placement/example.html +7 −0 Go to diff View file
A src/www/themes/common/tlp/doc/resources/flyover/tooltips/tooltips-placement/manifest.json +4 −0 Go to diff View file
A src/www/themes/common/tlp/doc/resources/flyover/tooltips/tooltips-tags/example.html +11 −0 Go to diff View file
A src/www/themes/common/tlp/doc/resources/flyover/tooltips/tooltips-tags/manifest.json +3 −0 Go to diff View file
A src/www/themes/common/tlp/doc/resources/forms/appends/example.html +158 −0 Go to diff View file
A src/www/themes/common/tlp/doc/resources/forms/appends/manifest.json +3 −0 Go to diff View file
A src/www/themes/common/tlp/doc/resources/forms/checkboxes/example.html +40 −0 Go to diff View file
A src/www/themes/common/tlp/doc/resources/forms/checkboxes/manifest.json +3 −0 Go to diff View file
A src/www/themes/common/tlp/doc/resources/forms/datetime/doc.html +4 −0 Go to diff View file
A src/www/themes/common/tlp/doc/resources/forms/datetime/example.html +18 −0 Go to diff View file
A src/www/themes/common/tlp/doc/resources/forms/datetime/manifest.json +4 −0 Go to diff View file
A src/www/themes/common/tlp/doc/resources/forms/doc.html +15 −0 Go to diff View file
A src/www/themes/common/tlp/doc/resources/forms/inputs/example.html +40 −0 Go to diff View file
A src/www/themes/common/tlp/doc/resources/forms/inputs/manifest.json +3 −0 Go to diff View file
A src/www/themes/common/tlp/doc/resources/forms/manifest.json +19 −0 Go to diff View file
A src/www/themes/common/tlp/doc/resources/forms/multi-select2/doc.html +3 −0 Go to diff View file
A src/www/themes/common/tlp/doc/resources/forms/multi-select2/example.html +159 −0 Go to diff View file
A src/www/themes/common/tlp/doc/resources/forms/multi-select2/manifest.json +3 −0 Go to diff View file
A src/www/themes/common/tlp/doc/resources/forms/multi-selects/example.html +89 −0 Go to diff View file
A src/www/themes/common/tlp/doc/resources/forms/multi-selects/manifest.json +3 −0 Go to diff View file
A src/www/themes/common/tlp/doc/resources/forms/prepends/example.html +118 −0 Go to diff View file
A src/www/themes/common/tlp/doc/resources/forms/prepends/manifest.json +3 −0 Go to diff View file
A src/www/themes/common/tlp/doc/resources/forms/properties/example.html +45 −0 Go to diff View file
A src/www/themes/common/tlp/doc/resources/forms/properties/manifest.json +3 −0 Go to diff View file
A src/www/themes/common/tlp/doc/resources/forms/radios/example.html +37 −0 Go to diff View file
A src/www/themes/common/tlp/doc/resources/forms/radios/manifest.json +3 −0 Go to diff View file
A src/www/themes/common/tlp/doc/resources/forms/search/example.html +15 −0 Go to diff View file
A src/www/themes/common/tlp/doc/resources/forms/search/manifest.json +3 −0 Go to diff View file
A src/www/themes/common/tlp/doc/resources/forms/select2/example.html +218 −0 Go to diff View file
A src/www/themes/common/tlp/doc/resources/forms/select2/manifest.json +3 −0 Go to diff View file
A src/www/themes/common/tlp/doc/resources/forms/selects/example.html +85 −0 Go to diff View file
A src/www/themes/common/tlp/doc/resources/forms/selects/manifest.json +3 −0 Go to diff View file
A src/www/themes/common/tlp/doc/resources/forms/textareas/example.html +41 −0 Go to diff View file
A src/www/themes/common/tlp/doc/resources/forms/textareas/manifest.json +3 −0 Go to diff View file
A src/www/themes/common/tlp/doc/resources/manifest.json +10 −0 Go to diff View file
A src/www/themes/common/tlp/doc/resources/structure/alerts/example.html +16 −0 Go to diff View file
A src/www/themes/common/tlp/doc/resources/structure/alerts/manifest.json +4 −0 Go to diff View file
A src/www/themes/common/tlp/doc/resources/structure/layout/centered-and-framed/doc.html +3 −0 Go to diff View file
A src/www/themes/common/tlp/doc/resources/structure/layout/centered-and-framed/example.html +5 −0 Go to diff View file
A src/www/themes/common/tlp/doc/resources/structure/layout/centered-and-framed/manifest.json +2 −0 Go to diff View file
A src/www/themes/common/tlp/doc/resources/structure/layout/centered/doc.html +3 −0 Go to diff View file
A src/www/themes/common/tlp/doc/resources/structure/layout/centered/example.html +5 −0 Go to diff View file
A src/www/themes/common/tlp/doc/resources/structure/layout/centered/manifest.json +4 −0 Go to diff View file
A src/www/themes/common/tlp/doc/resources/structure/layout/complex/doc.html +10 −0 Go to diff View file
A src/www/themes/common/tlp/doc/resources/structure/layout/complex/example.html +19 −0 Go to diff View file
A src/www/themes/common/tlp/doc/resources/structure/layout/complex/manifest.json +2 −0 Go to diff View file
A src/www/themes/common/tlp/doc/resources/structure/layout/framed/doc.html +5 −0 Go to diff View file
A src/www/themes/common/tlp/doc/resources/structure/layout/framed/example.html +5 −0 Go to diff View file
A src/www/themes/common/tlp/doc/resources/structure/layout/framed/manifest.json +4 −0 Go to diff View file
A src/www/themes/common/tlp/doc/resources/structure/layout/manifest.json +10 −0 Go to diff View file
A src/www/themes/common/tlp/doc/resources/structure/layout/vertically/doc.html +4 −0 Go to diff View file
A src/www/themes/common/tlp/doc/resources/structure/layout/vertically/example.html +5 −0 Go to diff View file
A src/www/themes/common/tlp/doc/resources/structure/layout/vertically/manifest.json +2 −0 Go to diff View file
A src/www/themes/common/tlp/doc/resources/structure/manifest.json +10 −0 Go to diff View file
A src/www/themes/common/tlp/doc/resources/structure/pagination/example.html +23 −0 Go to diff View file
A src/www/themes/common/tlp/doc/resources/structure/pagination/manifest.json +4 −0 Go to diff View file
A src/www/themes/common/tlp/doc/resources/structure/panes/manifest.json +8 −0 Go to diff View file
A src/www/themes/common/tlp/doc/resources/structure/panes/simple/example.html +56 −0 Go to diff View file
A src/www/themes/common/tlp/doc/resources/structure/panes/simple/manifest.json +3 −0 Go to diff View file
A src/www/themes/common/tlp/doc/resources/structure/panes/splitted/example.html +46 −0 Go to diff View file
A src/www/themes/common/tlp/doc/resources/structure/panes/splitted/manifest.json +3 −0 Go to diff View file
A src/www/themes/common/tlp/doc/resources/structure/tabs/example.html +43 −0 Go to diff View file
A src/www/themes/common/tlp/doc/resources/structure/tabs/manifest.json +4 −0 Go to diff View file
A src/www/themes/common/tlp/doc/resources/tables/empty/doc.html +4 −0 Go to diff View file
A src/www/themes/common/tlp/doc/resources/tables/empty/example.html +21 −0 Go to diff View file
A src/www/themes/common/tlp/doc/resources/tables/empty/manifest.json +3 −0 Go to diff View file
A src/www/themes/common/tlp/doc/resources/tables/manifest.json +7 −0 Go to diff View file
A src/www/themes/common/tlp/doc/resources/tables/tables/doc.html +6 −0 Go to diff View file
A src/www/themes/common/tlp/doc/resources/tables/tables/example.html +174 −0 Go to diff View file
A src/www/themes/common/tlp/doc/resources/tables/tables/manifest.json +4 −0 Go to diff View file
A src/www/themes/common/tlp/doc/resources/visual-assets/avatars/example.html +25 −0 Go to diff View file
A src/www/themes/common/tlp/doc/resources/visual-assets/avatars/manifest.json +4 −0 Go to diff View file
A src/www/themes/common/tlp/doc/resources/visual-assets/badges/manifest.json +7 −0 Go to diff View file
A src/www/themes/common/tlp/doc/resources/visual-assets/badges/outline/example.html +22 −0 Go to diff View file
A src/www/themes/common/tlp/doc/resources/visual-assets/badges/outline/manifest.json +4 −0 Go to diff View file
A src/www/themes/common/tlp/doc/resources/visual-assets/badges/types/example.html +22 −0 Go to diff View file
A src/www/themes/common/tlp/doc/resources/visual-assets/badges/types/manifest.json +4 −0 Go to diff View file
A src/www/themes/common/tlp/doc/resources/visual-assets/colors/business/demo.html +156 −0 Go to diff View file
A src/www/themes/common/tlp/doc/resources/visual-assets/colors/business/manifest.json +4 −0 Go to diff View file
A src/www/themes/common/tlp/doc/resources/visual-assets/colors/manifest.json +8 −0 Go to diff View file
A src/www/themes/common/tlp/doc/resources/visual-assets/colors/theme/demo.html +60 −0 Go to diff View file
A src/www/themes/common/tlp/doc/resources/visual-assets/colors/theme/manifest.json +4 −0 Go to diff View file
A src/www/themes/common/tlp/doc/resources/visual-assets/colors/ui/demo.html +39 −0 Go to diff View file
A src/www/themes/common/tlp/doc/resources/visual-assets/colors/ui/doc.html +1 −0 Go to diff View file
A src/www/themes/common/tlp/doc/resources/visual-assets/colors/ui/manifest.json +4 −0 Go to diff View file
A src/www/themes/common/tlp/doc/resources/visual-assets/icons/doc.html +1 −0 Go to diff View file
A src/www/themes/common/tlp/doc/resources/visual-assets/icons/example.html +13 −0 Go to diff View file
A src/www/themes/common/tlp/doc/resources/visual-assets/icons/manifest.json +4 −0 Go to diff View file
A src/www/themes/common/tlp/doc/resources/visual-assets/manifest.json +10 −0 Go to diff View file
A src/www/themes/common/tlp/doc/resources/visual-assets/typo/lists/example.html +21 −0 Go to diff View file
A src/www/themes/common/tlp/doc/resources/visual-assets/typo/lists/manifest.json +3 −0 Go to diff View file
A src/www/themes/common/tlp/doc/resources/visual-assets/typo/manifest.json +9 −0 Go to diff View file
A src/www/themes/common/tlp/doc/resources/visual-assets/typo/paragraphs/example.html +34 −0 Go to diff View file
A src/www/themes/common/tlp/doc/resources/visual-assets/typo/paragraphs/manifest.json +3 −0 Go to diff View file
A src/www/themes/common/tlp/doc/resources/visual-assets/typo/titles-desc/example.html +6 −0 Go to diff View file
A src/www/themes/common/tlp/doc/resources/visual-assets/typo/titles-desc/manifest.json +3 −0 Go to diff View file
A src/www/themes/common/tlp/doc/resources/visual-assets/typo/titles/example.html +6 −0 Go to diff View file
A src/www/themes/common/tlp/doc/resources/visual-assets/typo/titles/manifest.json +3 −0 Go to diff View file
A src/www/themes/common/tlp/gulpfile.js +165 −0 Go to diff View file
A src/www/themes/common/tlp/package.json +27 −0 Go to diff View file
A src/www/themes/common/tlp/src/fonts/font-awesome-4.7.0/fonts/FontAwesome.otf Binary file Go to diff View file
A src/www/themes/common/tlp/src/fonts/font-awesome-4.7.0/fonts/fontawesome-webfont.eot Binary file Go to diff View file
A src/www/themes/common/tlp/src/fonts/font-awesome-4.7.0/fonts/fontawesome-webfont.svg +2671 −0 Go to diff View file
R src/www/guidelines/_fonts/fontawesome-webfont.ttf Binary file Go to diff View file
A src/www/themes/common/tlp/src/fonts/font-awesome-4.7.0/fonts/fontawesome-webfont.woff Binary file Go to diff View file
A src/www/themes/common/tlp/src/fonts/font-awesome-4.7.0/fonts/fontawesome-webfont.woff2 Binary file Go to diff View file
A src/www/themes/common/tlp/src/fonts/font-awesome-4.7.0/scss/_animated.scss +34 −0 Go to diff View file
A src/www/themes/common/tlp/src/fonts/font-awesome-4.7.0/scss/_bordered-pulled.scss +25 −0 Go to diff View file
A src/www/themes/common/tlp/src/fonts/font-awesome-4.7.0/scss/_core.scss +12 −0 Go to diff View file
A src/www/themes/common/tlp/src/fonts/font-awesome-4.7.0/scss/_fixed-width.scss +6 −0 Go to diff View file
A src/www/themes/common/tlp/src/fonts/font-awesome-4.7.0/scss/_icons.scss +789 −0 Go to diff View file
A src/www/themes/common/tlp/src/fonts/font-awesome-4.7.0/scss/_larger.scss +13 −0 Go to diff View file
A src/www/themes/common/tlp/src/fonts/font-awesome-4.7.0/scss/_list.scss +19 −0 Go to diff View file
A src/www/themes/common/tlp/src/fonts/font-awesome-4.7.0/scss/_mixins.scss +60 −0 Go to diff View file
A src/www/themes/common/tlp/src/fonts/font-awesome-4.7.0/scss/_path.scss +15 −0 Go to diff View file
A src/www/themes/common/tlp/src/fonts/font-awesome-4.7.0/scss/_rotated-flipped.scss +20 −0 Go to diff View file
A src/www/themes/common/tlp/src/fonts/font-awesome-4.7.0/scss/_screen-reader.scss +5 −0 Go to diff View file
A src/www/themes/common/tlp/src/fonts/font-awesome-4.7.0/scss/_stacked.scss +20 −0 Go to diff View file
A src/www/themes/common/tlp/src/fonts/font-awesome-4.7.0/scss/_variables.scss +800 −0 Go to diff View file
A src/www/themes/common/tlp/src/fonts/font-awesome-4.7.0/scss/font-awesome.scss +18 −0 Go to diff View file
A src/www/themes/common/tlp/src/fonts/source-sans-pro/LICENSE.txt +93 −0 Go to diff View file
A src/www/themes/common/tlp/src/fonts/source-sans-pro/SourceSansPro-Black.eot Binary file Go to diff View file
A src/www/themes/common/tlp/src/fonts/source-sans-pro/SourceSansPro-Black.ttf.woff Binary file Go to diff View file
A src/www/themes/common/tlp/src/fonts/source-sans-pro/SourceSansPro-BlackIt.eot Binary file Go to diff View file
A src/www/themes/common/tlp/src/fonts/source-sans-pro/SourceSansPro-BlackIt.ttf.woff Binary file Go to diff View file
A src/www/themes/common/tlp/src/fonts/source-sans-pro/SourceSansPro-Bold.eot Binary file Go to diff View file
A src/www/themes/common/tlp/src/fonts/source-sans-pro/SourceSansPro-Bold.ttf.woff Binary file Go to diff View file
A src/www/themes/common/tlp/src/fonts/source-sans-pro/SourceSansPro-BoldIt.eot Binary file Go to diff View file
A src/www/themes/common/tlp/src/fonts/source-sans-pro/SourceSansPro-BoldIt.ttf.woff Binary file Go to diff View file
A src/www/themes/common/tlp/src/fonts/source-sans-pro/SourceSansPro-ExtraLight.eot Binary file Go to diff View file
A src/www/themes/common/tlp/src/fonts/source-sans-pro/SourceSansPro-ExtraLight.ttf.woff Binary file Go to diff View file
A src/www/themes/common/tlp/src/fonts/source-sans-pro/SourceSansPro-ExtraLightIt.eot Binary file Go to diff View file
A src/www/themes/common/tlp/src/fonts/source-sans-pro/SourceSansPro-ExtraLightIt.ttf.woff Binary file Go to diff View file
A src/www/themes/common/tlp/src/fonts/source-sans-pro/SourceSansPro-It.eot Binary file Go to diff View file
A src/www/themes/common/tlp/src/fonts/source-sans-pro/SourceSansPro-It.ttf.woff Binary file Go to diff View file
A src/www/themes/common/tlp/src/fonts/source-sans-pro/SourceSansPro-Light.eot Binary file Go to diff View file
A src/www/themes/common/tlp/src/fonts/source-sans-pro/SourceSansPro-Light.otf Binary file Go to diff View file
A src/www/themes/common/tlp/src/fonts/source-sans-pro/SourceSansPro-Light.ttf.woff Binary file Go to diff View file
A src/www/themes/common/tlp/src/fonts/source-sans-pro/SourceSansPro-LightIt.eot Binary file Go to diff View file
A src/www/themes/common/tlp/src/fonts/source-sans-pro/SourceSansPro-LightIt.ttf.woff Binary file Go to diff View file
A src/www/themes/common/tlp/src/fonts/source-sans-pro/SourceSansPro-Regular.eot Binary file Go to diff View file
A src/www/themes/common/tlp/src/fonts/source-sans-pro/SourceSansPro-Regular.otf Binary file Go to diff View file
A src/www/themes/common/tlp/src/fonts/source-sans-pro/SourceSansPro-Regular.ttf.woff Binary file Go to diff View file
A src/www/themes/common/tlp/src/fonts/source-sans-pro/SourceSansPro-Semibold.eot Binary file Go to diff View file
A src/www/themes/common/tlp/src/fonts/source-sans-pro/SourceSansPro-Semibold.ttf.woff Binary file Go to diff View file
A src/www/themes/common/tlp/src/fonts/source-sans-pro/SourceSansPro-SemiboldIt.eot Binary file Go to diff View file
A src/www/themes/common/tlp/src/fonts/source-sans-pro/SourceSansPro-SemiboldIt.ttf.woff Binary file Go to diff View file
A src/www/themes/common/tlp/src/images/tlp-avatar-extra-large.png Binary file Go to diff View file
A src/www/themes/common/tlp/src/images/tlp-avatar-jumbo.png Binary file Go to diff View file
A src/www/themes/common/tlp/src/images/tlp-avatar-large.png Binary file Go to diff View file
A src/www/themes/common/tlp/src/images/tlp-avatar-mini.png Binary file Go to diff View file
A src/www/themes/common/tlp/src/images/tlp-avatar-small.png Binary file Go to diff View file
A src/www/themes/common/tlp/src/images/tlp-avatar.png Binary file Go to diff View file
A src/www/themes/common/tlp/src/images/tlp-search-background.png Binary file Go to diff View file
A src/www/themes/common/tlp/src/images/tlp-search-small-background.png Binary file Go to diff View file
A src/www/themes/common/tlp/src/images/tlp-select-background.png Binary file Go to diff View file
A src/www/themes/common/tlp/src/images/tlp-select-small-background.png Binary file Go to diff View file
A src/www/themes/common/tlp/src/js/default_locale.js +22 −0 Go to diff View file
A src/www/themes/common/tlp/src/js/modal.js +165 −0 Go to diff View file
A src/www/themes/common/tlp/src/js/polyfills.js +34 −0 Go to diff View file
A src/www/themes/common/tlp/src/scss/_components.scss +34 −0 Go to diff View file
A src/www/themes/common/tlp/src/scss/_reset.scss +70 −0 Go to diff View file
A src/www/themes/common/tlp/src/scss/_variables.scss +21 −0 Go to diff View file
A src/www/themes/common/tlp/src/scss/components/_alerts.scss +61 −0 Go to diff View file
A src/www/themes/common/tlp/src/scss/components/_avatars.scss +77 −0 Go to diff View file
A src/www/themes/common/tlp/src/scss/components/_badges.scss +119 −0 Go to diff View file
A src/www/themes/common/tlp/src/scss/components/_buttons.scss +395 −0 Go to diff View file
A src/www/themes/common/tlp/src/scss/components/_dropdowns.scss +195 −0 Go to diff View file
A src/www/themes/common/tlp/src/scss/components/_fonts.scss +47 −0 Go to diff View file
A src/www/themes/common/tlp/src/scss/components/_forms.scss +766 −0 Go to diff View file
A src/www/themes/common/tlp/src/scss/components/_layout.scss +35 −0 Go to diff View file
A src/www/themes/common/tlp/src/scss/components/_modal.scss +172 −0 Go to diff View file
A src/www/themes/common/tlp/src/scss/components/_pagination.scss +40 −0 Go to diff View file
A src/www/themes/common/tlp/src/scss/components/_panes.scss +75 −0 Go to diff View file
A src/www/themes/common/tlp/src/scss/components/_switch.scss +86 −0 Go to diff View file
A src/www/themes/common/tlp/src/scss/components/_tables.scss +157 −0 Go to diff View file
A src/www/themes/common/tlp/src/scss/components/_tabs.scss +118 −0 Go to diff View file
A src/www/themes/common/tlp/src/scss/components/_tooltips.scss +133 −0 Go to diff View file
A src/www/themes/common/tlp/src/scss/components/_typography.scss +196 −0 Go to diff View file
A src/www/themes/common/tlp/src/scss/tlp-blue.scss +22 −0 Go to diff View file
A src/www/themes/common/tlp/src/scss/tlp-green.scss +22 −0 Go to diff View file
A src/www/themes/common/tlp/src/scss/tlp-grey.scss +22 −0 Go to diff View file
A src/www/themes/common/tlp/src/scss/tlp-orange.scss +22 −0 Go to diff View file
A src/www/themes/common/tlp/src/scss/tlp-purple.scss +22 −0 Go to diff View file
A src/www/themes/common/tlp/src/scss/tlp-red.scss +22 −0 Go to diff View file
A src/www/themes/common/tlp/src/scss/variables-blue.scss +34 −0 Go to diff View file
A src/www/themes/common/tlp/src/scss/variables-green.scss +34 −0 Go to diff View file
A src/www/themes/common/tlp/src/scss/variables-grey.scss +34 −0 Go to diff View file
A src/www/themes/common/tlp/src/scss/variables-orange.scss +34 −0 Go to diff View file
A src/www/themes/common/tlp/src/scss/variables-purple.scss +34 −0 Go to diff View file
A src/www/themes/common/tlp/src/scss/variables-red.scss +34 −0 Go to diff View file
A src/www/themes/common/tlp/src/scss/variables/_colors.scss +78 −0 Go to diff View file
A src/www/themes/common/tlp/src/scss/variables/_margins.scss +23 −0 Go to diff View file
A src/www/themes/common/tlp/src/vendor-i18n/en_US/flatpickr.l10n.en.js +3 −0 Go to diff View file
A src/www/themes/common/tlp/src/vendor-i18n/en_US/select2.en.js +3 −0 Go to diff View file
A src/www/themes/common/tlp/src/vendor-i18n/fr_FR/flatpickr.l10n.fr.js +19 −0 Go to diff View file
A src/www/themes/common/tlp/src/vendor-i18n/fr_FR/select2.fr.js +3 −0 Go to diff View file
A src/www/themes/common/tlp/src/vendor-i18n/fr_FR/tlp.fr.js +20 −0 Go to diff View file
A src/www/themes/common/tlp/src/vendor-overrides/flatpickr.js +43 −0 Go to diff View file
A src/www/themes/common/tlp/src/vendor-overrides/select2.js +36 −0 Go to diff View file
A src/www/themes/common/tlp/src/vendor/.gitignore +1 −0 Go to diff View file
A src/www/themes/common/tlp/src/vendor/flatpickr-1.9.1/LICENSE.md +21 −0 Go to diff View file
A src/www/themes/common/tlp/src/vendor/flatpickr-1.9.1/flatpickr.min.css +1 −0 Go to diff View file
A src/www/themes/common/tlp/src/vendor/flatpickr-1.9.1/flatpickr.min.js +1 −0 Go to diff View file
A src/www/themes/common/tlp/src/vendor/jquery-2.1.0/jquery-2.1.0.min.js +4 −0 Go to diff View file
A src/www/themes/common/tlp/src/vendor/select2-4.0.3/select2.full.min.js +3 −0 Go to diff View file
A src/www/themes/common/tlp/src/vendor/select2-4.0.3/select2.min.css +1 −0 Go to diff View file
M src/www/tracker/admin/restore.php +11 −11 Go to diff View file
M src/www/user/autocomplete.php +36 −9 Go to diff View file
M tools/rpm/Makefile +12 −0 Go to diff View file
M tools/rpm/tuleap-all.spec +1 −0 Go to diff View file
M tools/rpm/tuleap.rhel6.spec +19 −2 Go to diff View file
A tools/rpm/tuleap.spec +1205 −0 Go to diff View file
A tools/utils/sass.sh +72 −0 Go to diff View file
M tools/utils/tuleap-gulp-build.js +6 −0 Go to diff View file