├── .gitignore ├── .gitmodules ├── LICENSE ├── README.md ├── app ├── .htaccess ├── AppCache.php ├── AppKernel.php ├── Resources │ └── views │ │ └── base.html.twig ├── SymfonyRequirements.php ├── autoload.php ├── cache │ └── .gitignore ├── check.php ├── config │ ├── config.yml │ ├── config_dev.yml │ ├── config_prod.yml │ ├── config_test.yml │ ├── parameters.yml.dist │ ├── routing.yml │ ├── routing_dev.yml │ └── security.yml ├── console ├── logs │ └── .gitignore └── phpunit.xml.dist ├── bin ├── .htaccess ├── doctrine ├── doctrine.php └── vendors ├── composer.json ├── composer.phar ├── install-no-composer.sh ├── install ├── .gitignore ├── Makefile.am ├── Vagrantfile ├── bootstrap.sh ├── centos7 │ └── install.sh ├── configure.ac ├── netopeergui.conf.in └── ubuntu │ └── Vagrantfile ├── screenshots ├── backup-1.png ├── backup-2.png ├── backup-3.png ├── conn-device-1.png ├── conn-device-2.png ├── conn-device-3.png ├── conn-device-4.png ├── datastores-1.png ├── datastores-2.png ├── datastores-4-2.png ├── datastores-4.png ├── datastores-5.png ├── insertion-1.png ├── insertion-10-2.png ├── insertion-10.png ├── insertion-11.png ├── insertion-2.png ├── insertion-3.png ├── insertion-4.png ├── insertion-5.png ├── insertion-6.png ├── insertion-7.png ├── insertion-8-2.png ├── insertion-8.png ├── insertion-9.png ├── login-screen-1.png ├── login-screen-2.png ├── login-screen.png ├── logo-cesnet-inverted.png ├── main-screen-1.png ├── main-screen-2.png ├── main-screen-3-2.png ├── main-screen-3.png ├── main-screen-4.png ├── main-screen-5.png ├── main-screen.png ├── notif-1.png ├── notif-2.png ├── rpc-1.png ├── rpc-2.png ├── rpc-3.png ├── rpc-4.png ├── rpc-5.png ├── rpc-6.png ├── rpc-7.png ├── userorder-1-2.png ├── userorder-1.png ├── userorder-2.png ├── userorder-3.png ├── validate-1.png └── validate-2.png ├── src ├── .htaccess └── FIT │ ├── Bundle │ ├── ModuleDefaultBundle │ │ ├── Controller │ │ │ └── ModuleController.php │ │ ├── DependencyInjection │ │ │ ├── Configuration.php │ │ │ └── FITModuleDefaultExtension.php │ │ ├── FITModuleDefaultBundle.php │ │ └── Resources │ │ │ ├── config │ │ │ └── services.xml │ │ │ ├── public │ │ │ ├── .gitignore │ │ │ ├── config.rb │ │ │ ├── images │ │ │ │ ├── dot.png │ │ │ │ └── ico │ │ │ │ │ ├── add_child.png │ │ │ │ │ ├── add_sibling.png │ │ │ │ │ ├── remove_child.png │ │ │ │ │ └── sort_item.png │ │ │ ├── js │ │ │ │ └── module-default.js │ │ │ ├── netopeerangular │ │ │ │ ├── .gitignore │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── bower.json │ │ │ │ ├── bower_components │ │ │ │ │ ├── angular-bootstrap │ │ │ │ │ │ ├── ui-bootstrap-tpls.min.js │ │ │ │ │ │ └── ui-bootstrap.min.js │ │ │ │ │ ├── angular-history │ │ │ │ │ │ └── history.js │ │ │ │ │ ├── angular-route │ │ │ │ │ │ └── angular-route.min.js │ │ │ │ │ ├── angular-ui-sortable │ │ │ │ │ │ └── sortable.min.js │ │ │ │ │ ├── angular │ │ │ │ │ │ └── angular.min.js │ │ │ │ │ ├── font-awesome-sass │ │ │ │ │ │ ├── .bower.json │ │ │ │ │ │ ├── .gitignore │ │ │ │ │ │ ├── Gemfile │ │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── Rakefile │ │ │ │ │ │ ├── assets │ │ │ │ │ │ │ ├── fonts │ │ │ │ │ │ │ │ └── font-awesome │ │ │ │ │ │ │ │ │ ├── fontawesome-webfont.eot │ │ │ │ │ │ │ │ │ ├── fontawesome-webfont.svg │ │ │ │ │ │ │ │ │ ├── fontawesome-webfont.ttf │ │ │ │ │ │ │ │ │ ├── fontawesome-webfont.woff │ │ │ │ │ │ │ │ │ └── fontawesome-webfont.woff2 │ │ │ │ │ │ │ └── stylesheets │ │ │ │ │ │ │ │ ├── _font-awesome-compass.scss │ │ │ │ │ │ │ │ ├── _font-awesome-sprockets.scss │ │ │ │ │ │ │ │ ├── font-awesome.scss │ │ │ │ │ │ │ │ └── font-awesome │ │ │ │ │ │ │ │ ├── _animated.scss │ │ │ │ │ │ │ │ ├── _bordered-pulled.scss │ │ │ │ │ │ │ │ ├── _core.scss │ │ │ │ │ │ │ │ ├── _extras.scss │ │ │ │ │ │ │ │ ├── _fixed-width.scss │ │ │ │ │ │ │ │ ├── _icons.scss │ │ │ │ │ │ │ │ ├── _larger.scss │ │ │ │ │ │ │ │ ├── _list.scss │ │ │ │ │ │ │ │ ├── _mixins.scss │ │ │ │ │ │ │ │ ├── _path.scss │ │ │ │ │ │ │ │ ├── _rotated-flipped.scss │ │ │ │ │ │ │ │ ├── _stacked.scss │ │ │ │ │ │ │ │ └── _variables.scss │ │ │ │ │ │ ├── font-awesome-sass.gemspec │ │ │ │ │ │ └── lib │ │ │ │ │ │ │ ├── font-awesome-sass.rb │ │ │ │ │ │ │ └── font_awesome │ │ │ │ │ │ │ └── sass │ │ │ │ │ │ │ ├── rails │ │ │ │ │ │ │ ├── engine.rb │ │ │ │ │ │ │ ├── helpers.rb │ │ │ │ │ │ │ └── railtie.rb │ │ │ │ │ │ │ └── version.rb │ │ │ │ │ ├── jquery-ui │ │ │ │ │ │ └── jquery-ui.min.js │ │ │ │ │ └── ngTraverse │ │ │ │ │ │ └── ngTraverse.js │ │ │ │ ├── css │ │ │ │ │ ├── config.rb │ │ │ │ │ ├── fonts │ │ │ │ │ ├── sass │ │ │ │ │ │ ├── ie.scss │ │ │ │ │ │ ├── print.scss │ │ │ │ │ │ └── screen.scss │ │ │ │ │ └── stylesheets │ │ │ │ │ │ ├── ie.css │ │ │ │ │ │ ├── print.css │ │ │ │ │ │ └── screen.css │ │ │ │ ├── data │ │ │ │ │ ├── get.json │ │ │ │ │ ├── get.xml │ │ │ │ │ ├── get2.xml │ │ │ │ │ ├── model.yin │ │ │ │ │ ├── real.json │ │ │ │ │ ├── test.json │ │ │ │ │ └── test.xml │ │ │ │ ├── gulpfile.js │ │ │ │ ├── index.html │ │ │ │ ├── js │ │ │ │ │ ├── JSONedit.js │ │ │ │ │ ├── directives │ │ │ │ │ │ ├── addItem.js │ │ │ │ │ │ └── switchItem.js │ │ │ │ │ ├── directives2.js │ │ │ │ │ └── services │ │ │ │ │ │ └── ajaxService.js │ │ │ │ ├── node_modules │ │ │ │ │ └── rhaboo │ │ │ │ │ │ └── rhaboo.min.js │ │ │ │ ├── package.json │ │ │ │ ├── public │ │ │ │ │ └── templates.js │ │ │ │ └── templates │ │ │ │ │ ├── directives │ │ │ │ │ ├── addItem.html │ │ │ │ │ └── switchItem.html │ │ │ │ │ ├── main │ │ │ │ │ └── view.html │ │ │ │ │ └── types │ │ │ │ │ ├── Array.html │ │ │ │ │ ├── List.html │ │ │ │ │ └── Object.html │ │ │ ├── sass │ │ │ │ └── screen.scss │ │ │ └── style │ │ │ │ └── screen.css │ │ │ └── views │ │ │ ├── Config │ │ │ ├── leaf.html.twig │ │ │ └── parent.html.twig │ │ │ ├── Module │ │ │ ├── section.html.twig │ │ │ ├── showRPCForm.html.twig │ │ │ └── subsection.html.twig │ │ │ ├── State │ │ │ ├── leaf.html.twig │ │ │ └── parent.html.twig │ │ │ └── layout.html.twig │ └── ModuleXmlBundle │ │ ├── Controller │ │ └── ModuleController.php │ │ ├── DependencyInjection │ │ ├── Configuration.php │ │ └── FITModuleXmlExtension.php │ │ ├── FITModuleXmlBundle.php │ │ └── Resources │ │ ├── config │ │ └── services.xml │ │ ├── public │ │ ├── js │ │ │ └── module-xml.js │ │ └── style │ │ │ └── module-xml.css │ │ └── views │ │ ├── Module │ │ └── section.html.twig │ │ └── layout.html.twig │ └── NetopeerBundle │ ├── Command │ ├── ProjectInitCommand.php │ └── UserCommand.php │ ├── Controller │ ├── AjaxController.php │ ├── BaseController.php │ ├── DefaultController.php │ ├── GenerateController.php │ ├── ModuleController.php │ ├── ModuleControllerInterface.php │ ├── RegistrationController.php │ └── SecurityController.php │ ├── DependencyInjection │ ├── Configuration.php │ └── FITNetopeerExtension.php │ ├── Entity │ ├── BaseConnection.php │ ├── ConnectionSession.php │ ├── CustomUserClass.php │ ├── ModuleController.php │ ├── SamlUser.php │ ├── User.php │ ├── UserCustomData.php │ └── UserSettings.php │ ├── EventListener │ └── ModuleListener.php │ ├── FITNetopeerBundle.php │ ├── Form │ └── UserType.php │ ├── Handler │ └── AuthenticationHandler.php │ ├── Resources │ ├── config │ │ ├── functionality.yml │ │ ├── routing.yml │ │ └── services.yml │ ├── doc │ │ └── .gitignore │ ├── public │ │ ├── .gitignore │ │ ├── config.rb │ │ ├── images │ │ │ ├── ajax-loader.gif │ │ │ ├── ico │ │ │ │ ├── 16_alerts.png │ │ │ │ ├── 16_arrow_down.png │ │ │ │ ├── 16_download.png │ │ │ │ ├── 16_home.png │ │ │ │ ├── 16_kill.png │ │ │ │ ├── 16_lock.png │ │ │ │ ├── 16_refresh.png │ │ │ │ ├── 16_session.png │ │ │ │ ├── 16_unlock.png │ │ │ │ ├── 16_users-o50.png │ │ │ │ ├── 24_home.png │ │ │ │ ├── error.png │ │ │ │ ├── info.png │ │ │ │ └── ok.png │ │ │ └── loading-bar.gif │ │ ├── js │ │ │ ├── bootstrap │ │ │ │ ├── Bootstrap-3-Typeahead │ │ │ │ │ ├── README.md │ │ │ │ │ ├── bootstrap3-typeahead.js │ │ │ │ │ ├── bootstrap3-typeahead.min.js │ │ │ │ │ └── bower.json │ │ │ │ ├── css │ │ │ │ │ ├── bootstrap-theme.css │ │ │ │ │ ├── bootstrap-theme.min.css │ │ │ │ │ ├── bootstrap.css │ │ │ │ │ └── bootstrap.min.css │ │ │ │ └── js │ │ │ │ │ ├── bootstrap.js │ │ │ │ │ └── bootstrap.min.js │ │ │ ├── default.js │ │ │ ├── jquery-1.11.1.min.js │ │ │ ├── jquery-migrate-1.2.1.min.js │ │ │ ├── jquery-ui-1.10.3.custom.min.js │ │ │ ├── jquery.netopeergui.js │ │ │ ├── modernizr.custom.43627.js │ │ │ ├── notifications.js │ │ │ ├── selectivizr-min.js │ │ │ └── single │ │ │ │ └── connections.js │ │ ├── sass │ │ │ ├── custom-variables.scss │ │ │ ├── ie.scss │ │ │ ├── print.scss │ │ │ ├── screen.scss │ │ │ └── variables.scss │ │ └── style │ │ │ ├── PIE.htc │ │ │ ├── ie.css │ │ │ ├── print.css │ │ │ ├── screen.css │ │ │ └── ui-lightness │ │ │ ├── images │ │ │ ├── animated-overlay.gif │ │ │ ├── ui-bg_diagonals-thick_18_b81900_40x40.png │ │ │ ├── ui-bg_diagonals-thick_20_666666_40x40.png │ │ │ ├── ui-bg_flat_10_000000_40x100.png │ │ │ ├── ui-bg_glass_100_f6f6f6_1x400.png │ │ │ ├── ui-bg_glass_100_fdf5ce_1x400.png │ │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ │ ├── ui-bg_gloss-wave_35_f6a828_500x100.png │ │ │ ├── ui-bg_highlight-soft_100_eeeeee_1x100.png │ │ │ ├── ui-bg_highlight-soft_75_ffe45c_1x100.png │ │ │ ├── ui-icons_222222_256x240.png │ │ │ ├── ui-icons_228ef1_256x240.png │ │ │ ├── ui-icons_ef8c08_256x240.png │ │ │ ├── ui-icons_ffd27a_256x240.png │ │ │ └── ui-icons_ffffff_256x240.png │ │ │ ├── jquery-ui-1.10.3.custom.css │ │ │ └── jquery-ui-1.10.3.custom.min.css │ ├── saml │ │ └── openidp.metadata.xml │ ├── translations │ │ └── messages.fr.xliff │ └── views │ │ ├── Ajax │ │ ├── historyOfConnectedDevices.html.twig │ │ └── lookupip.html.twig │ │ ├── Default │ │ └── connections.html.twig │ │ ├── Generate │ │ └── generateXMLFromModel.html.twig │ │ ├── Registration │ │ └── register.html.twig │ │ ├── Security │ │ ├── login.html.twig │ │ └── logout.html.twig │ │ └── layout.html.twig │ ├── Services │ ├── Functionality │ │ ├── ConnectionFunctionality.php │ │ └── NetconfFunctionality.php │ └── Managers │ │ └── SamlToState.php │ ├── Tests │ ├── Codeception │ │ ├── _bootstrap.php │ │ ├── _data │ │ │ └── dump.sql │ │ ├── _helpers │ │ │ ├── CodeHelper.php │ │ │ ├── TestHelper.php │ │ │ └── WebHelper.php │ │ ├── _support │ │ │ └── CommonScenarios.php │ │ ├── acceptance.suite.yml │ │ ├── acceptance │ │ │ ├── ConnectionsCest.php │ │ │ ├── DatastoreConfigureCest.php │ │ │ ├── InterfacesConfigureCest.php │ │ │ ├── NacmConfigureCest.php │ │ │ ├── TuringConfigureCest.php │ │ │ ├── WebGuy.php │ │ │ └── _bootstrap.php │ │ ├── functional.suite.yml │ │ └── functional │ │ │ ├── FormCest.php │ │ │ ├── TestGuy.php │ │ │ └── _bootstrap.php │ ├── Models │ │ └── XMLoperationsTest.php │ ├── Selenium │ │ ├── ConfigureDeviceTestCase.php │ │ ├── DefaultTestCase.php │ │ ├── DeviceConnectionTestCase.php │ │ ├── LoginTestCase.php │ │ └── phpunit.xml │ ├── _files │ │ ├── MockClass │ │ │ └── Data.php │ │ └── completeRequestTree │ │ │ ├── turing-machine-data.dsrl │ │ │ ├── turing-machine-data.rng │ │ │ ├── turing-machine-data.sch │ │ │ ├── turing-machine-gdefs.rng │ │ │ ├── wrapped.wyin │ │ │ ├── wrapped.xml │ │ │ ├── wrapped_choice.wyin │ │ │ ├── wrapped_choice.xml │ │ │ ├── wrapped_ofconfig.wyin │ │ │ └── wrapped_ofconfig.xml │ └── codeception.yml │ ├── Twig │ └── NetopeerTwigExtension.php │ └── bin │ ├── find-identities.py │ ├── find-identities.sh │ ├── netconfwebgui-postinstall.sh │ └── nmp.sh └── web ├── .htaccess ├── app.php ├── app_dev.php ├── apple-touch-icon.png ├── config.php ├── favicon.ico └── robots.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/README.md -------------------------------------------------------------------------------- /app/.htaccess: -------------------------------------------------------------------------------- 1 | deny from all -------------------------------------------------------------------------------- /app/AppCache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/app/AppCache.php -------------------------------------------------------------------------------- /app/AppKernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/app/AppKernel.php -------------------------------------------------------------------------------- /app/Resources/views/base.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/app/Resources/views/base.html.twig -------------------------------------------------------------------------------- /app/SymfonyRequirements.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/app/SymfonyRequirements.php -------------------------------------------------------------------------------- /app/autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/app/autoload.php -------------------------------------------------------------------------------- /app/cache/.gitignore: -------------------------------------------------------------------------------- 1 | [^.]* 2 | 3 | -------------------------------------------------------------------------------- /app/check.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/app/check.php -------------------------------------------------------------------------------- /app/config/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/app/config/config.yml -------------------------------------------------------------------------------- /app/config/config_dev.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/app/config/config_dev.yml -------------------------------------------------------------------------------- /app/config/config_prod.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/app/config/config_prod.yml -------------------------------------------------------------------------------- /app/config/config_test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/app/config/config_test.yml -------------------------------------------------------------------------------- /app/config/parameters.yml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/app/config/parameters.yml.dist -------------------------------------------------------------------------------- /app/config/routing.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/app/config/routing.yml -------------------------------------------------------------------------------- /app/config/routing_dev.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/app/config/routing_dev.yml -------------------------------------------------------------------------------- /app/config/security.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/app/config/security.yml -------------------------------------------------------------------------------- /app/console: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/app/console -------------------------------------------------------------------------------- /app/logs/.gitignore: -------------------------------------------------------------------------------- 1 | [^.]* 2 | 3 | -------------------------------------------------------------------------------- /app/phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/app/phpunit.xml.dist -------------------------------------------------------------------------------- /bin/.htaccess: -------------------------------------------------------------------------------- 1 | deny from all -------------------------------------------------------------------------------- /bin/doctrine: -------------------------------------------------------------------------------- 1 | ../vendor/doctrine/orm/bin/doctrine -------------------------------------------------------------------------------- /bin/doctrine.php: -------------------------------------------------------------------------------- 1 | ../vendor/doctrine/orm/bin/doctrine.php -------------------------------------------------------------------------------- /bin/vendors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/bin/vendors -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/composer.json -------------------------------------------------------------------------------- /composer.phar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/composer.phar -------------------------------------------------------------------------------- /install-no-composer.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/install-no-composer.sh -------------------------------------------------------------------------------- /install/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/install/.gitignore -------------------------------------------------------------------------------- /install/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/install/Makefile.am -------------------------------------------------------------------------------- /install/Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/install/Vagrantfile -------------------------------------------------------------------------------- /install/bootstrap.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | autoreconf -fi 3 | -------------------------------------------------------------------------------- /install/centos7/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/install/centos7/install.sh -------------------------------------------------------------------------------- /install/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/install/configure.ac -------------------------------------------------------------------------------- /install/netopeergui.conf.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/install/netopeergui.conf.in -------------------------------------------------------------------------------- /install/ubuntu/Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/install/ubuntu/Vagrantfile -------------------------------------------------------------------------------- /screenshots/backup-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/screenshots/backup-1.png -------------------------------------------------------------------------------- /screenshots/backup-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/screenshots/backup-2.png -------------------------------------------------------------------------------- /screenshots/backup-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/screenshots/backup-3.png -------------------------------------------------------------------------------- /screenshots/conn-device-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/screenshots/conn-device-1.png -------------------------------------------------------------------------------- /screenshots/conn-device-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/screenshots/conn-device-2.png -------------------------------------------------------------------------------- /screenshots/conn-device-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/screenshots/conn-device-3.png -------------------------------------------------------------------------------- /screenshots/conn-device-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/screenshots/conn-device-4.png -------------------------------------------------------------------------------- /screenshots/datastores-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/screenshots/datastores-1.png -------------------------------------------------------------------------------- /screenshots/datastores-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/screenshots/datastores-2.png -------------------------------------------------------------------------------- /screenshots/datastores-4-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/screenshots/datastores-4-2.png -------------------------------------------------------------------------------- /screenshots/datastores-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/screenshots/datastores-4.png -------------------------------------------------------------------------------- /screenshots/datastores-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/screenshots/datastores-5.png -------------------------------------------------------------------------------- /screenshots/insertion-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/screenshots/insertion-1.png -------------------------------------------------------------------------------- /screenshots/insertion-10-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/screenshots/insertion-10-2.png -------------------------------------------------------------------------------- /screenshots/insertion-10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/screenshots/insertion-10.png -------------------------------------------------------------------------------- /screenshots/insertion-11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/screenshots/insertion-11.png -------------------------------------------------------------------------------- /screenshots/insertion-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/screenshots/insertion-2.png -------------------------------------------------------------------------------- /screenshots/insertion-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/screenshots/insertion-3.png -------------------------------------------------------------------------------- /screenshots/insertion-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/screenshots/insertion-4.png -------------------------------------------------------------------------------- /screenshots/insertion-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/screenshots/insertion-5.png -------------------------------------------------------------------------------- /screenshots/insertion-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/screenshots/insertion-6.png -------------------------------------------------------------------------------- /screenshots/insertion-7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/screenshots/insertion-7.png -------------------------------------------------------------------------------- /screenshots/insertion-8-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/screenshots/insertion-8-2.png -------------------------------------------------------------------------------- /screenshots/insertion-8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/screenshots/insertion-8.png -------------------------------------------------------------------------------- /screenshots/insertion-9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/screenshots/insertion-9.png -------------------------------------------------------------------------------- /screenshots/login-screen-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/screenshots/login-screen-1.png -------------------------------------------------------------------------------- /screenshots/login-screen-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/screenshots/login-screen-2.png -------------------------------------------------------------------------------- /screenshots/login-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/screenshots/login-screen.png -------------------------------------------------------------------------------- /screenshots/logo-cesnet-inverted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/screenshots/logo-cesnet-inverted.png -------------------------------------------------------------------------------- /screenshots/main-screen-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/screenshots/main-screen-1.png -------------------------------------------------------------------------------- /screenshots/main-screen-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/screenshots/main-screen-2.png -------------------------------------------------------------------------------- /screenshots/main-screen-3-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/screenshots/main-screen-3-2.png -------------------------------------------------------------------------------- /screenshots/main-screen-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/screenshots/main-screen-3.png -------------------------------------------------------------------------------- /screenshots/main-screen-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/screenshots/main-screen-4.png -------------------------------------------------------------------------------- /screenshots/main-screen-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/screenshots/main-screen-5.png -------------------------------------------------------------------------------- /screenshots/main-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/screenshots/main-screen.png -------------------------------------------------------------------------------- /screenshots/notif-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/screenshots/notif-1.png -------------------------------------------------------------------------------- /screenshots/notif-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/screenshots/notif-2.png -------------------------------------------------------------------------------- /screenshots/rpc-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/screenshots/rpc-1.png -------------------------------------------------------------------------------- /screenshots/rpc-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/screenshots/rpc-2.png -------------------------------------------------------------------------------- /screenshots/rpc-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/screenshots/rpc-3.png -------------------------------------------------------------------------------- /screenshots/rpc-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/screenshots/rpc-4.png -------------------------------------------------------------------------------- /screenshots/rpc-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/screenshots/rpc-5.png -------------------------------------------------------------------------------- /screenshots/rpc-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/screenshots/rpc-6.png -------------------------------------------------------------------------------- /screenshots/rpc-7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/screenshots/rpc-7.png -------------------------------------------------------------------------------- /screenshots/userorder-1-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/screenshots/userorder-1-2.png -------------------------------------------------------------------------------- /screenshots/userorder-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/screenshots/userorder-1.png -------------------------------------------------------------------------------- /screenshots/userorder-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/screenshots/userorder-2.png -------------------------------------------------------------------------------- /screenshots/userorder-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/screenshots/userorder-3.png -------------------------------------------------------------------------------- /screenshots/validate-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/screenshots/validate-1.png -------------------------------------------------------------------------------- /screenshots/validate-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/screenshots/validate-2.png -------------------------------------------------------------------------------- /src/.htaccess: -------------------------------------------------------------------------------- 1 | deny from all -------------------------------------------------------------------------------- /src/FIT/Bundle/ModuleDefaultBundle/Controller/ModuleController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/src/FIT/Bundle/ModuleDefaultBundle/Controller/ModuleController.php -------------------------------------------------------------------------------- /src/FIT/Bundle/ModuleDefaultBundle/DependencyInjection/Configuration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/src/FIT/Bundle/ModuleDefaultBundle/DependencyInjection/Configuration.php -------------------------------------------------------------------------------- /src/FIT/Bundle/ModuleDefaultBundle/DependencyInjection/FITModuleDefaultExtension.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/src/FIT/Bundle/ModuleDefaultBundle/DependencyInjection/FITModuleDefaultExtension.php -------------------------------------------------------------------------------- /src/FIT/Bundle/ModuleDefaultBundle/FITModuleDefaultBundle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/src/FIT/Bundle/ModuleDefaultBundle/FITModuleDefaultBundle.php -------------------------------------------------------------------------------- /src/FIT/Bundle/ModuleDefaultBundle/Resources/config/services.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/src/FIT/Bundle/ModuleDefaultBundle/Resources/config/services.xml -------------------------------------------------------------------------------- /src/FIT/Bundle/ModuleDefaultBundle/Resources/public/.gitignore: -------------------------------------------------------------------------------- 1 | .sass-cache 2 | -------------------------------------------------------------------------------- /src/FIT/Bundle/ModuleDefaultBundle/Resources/public/config.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/src/FIT/Bundle/ModuleDefaultBundle/Resources/public/config.rb -------------------------------------------------------------------------------- /src/FIT/Bundle/ModuleDefaultBundle/Resources/public/images/dot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/src/FIT/Bundle/ModuleDefaultBundle/Resources/public/images/dot.png -------------------------------------------------------------------------------- /src/FIT/Bundle/ModuleDefaultBundle/Resources/public/images/ico/add_child.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/src/FIT/Bundle/ModuleDefaultBundle/Resources/public/images/ico/add_child.png -------------------------------------------------------------------------------- /src/FIT/Bundle/ModuleDefaultBundle/Resources/public/images/ico/add_sibling.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/src/FIT/Bundle/ModuleDefaultBundle/Resources/public/images/ico/add_sibling.png -------------------------------------------------------------------------------- /src/FIT/Bundle/ModuleDefaultBundle/Resources/public/images/ico/remove_child.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/src/FIT/Bundle/ModuleDefaultBundle/Resources/public/images/ico/remove_child.png -------------------------------------------------------------------------------- /src/FIT/Bundle/ModuleDefaultBundle/Resources/public/images/ico/sort_item.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/src/FIT/Bundle/ModuleDefaultBundle/Resources/public/images/ico/sort_item.png -------------------------------------------------------------------------------- /src/FIT/Bundle/ModuleDefaultBundle/Resources/public/js/module-default.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/src/FIT/Bundle/ModuleDefaultBundle/Resources/public/js/module-default.js -------------------------------------------------------------------------------- /src/FIT/Bundle/ModuleDefaultBundle/Resources/public/netopeerangular/.gitignore: -------------------------------------------------------------------------------- 1 | *.DS_STORE 2 | *.swp 3 | bower_components/* 4 | node_modules 5 | .idea 6 | css/.sass-cache 7 | -------------------------------------------------------------------------------- /src/FIT/Bundle/ModuleDefaultBundle/Resources/public/netopeerangular/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/src/FIT/Bundle/ModuleDefaultBundle/Resources/public/netopeerangular/LICENSE -------------------------------------------------------------------------------- /src/FIT/Bundle/ModuleDefaultBundle/Resources/public/netopeerangular/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/FIT/Bundle/ModuleDefaultBundle/Resources/public/netopeerangular/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/src/FIT/Bundle/ModuleDefaultBundle/Resources/public/netopeerangular/bower.json -------------------------------------------------------------------------------- /src/FIT/Bundle/ModuleDefaultBundle/Resources/public/netopeerangular/bower_components/angular-bootstrap/ui-bootstrap-tpls.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/src/FIT/Bundle/ModuleDefaultBundle/Resources/public/netopeerangular/bower_components/angular-bootstrap/ui-bootstrap-tpls.min.js -------------------------------------------------------------------------------- /src/FIT/Bundle/ModuleDefaultBundle/Resources/public/netopeerangular/bower_components/angular-bootstrap/ui-bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/src/FIT/Bundle/ModuleDefaultBundle/Resources/public/netopeerangular/bower_components/angular-bootstrap/ui-bootstrap.min.js -------------------------------------------------------------------------------- /src/FIT/Bundle/ModuleDefaultBundle/Resources/public/netopeerangular/bower_components/angular-history/history.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/src/FIT/Bundle/ModuleDefaultBundle/Resources/public/netopeerangular/bower_components/angular-history/history.js -------------------------------------------------------------------------------- /src/FIT/Bundle/ModuleDefaultBundle/Resources/public/netopeerangular/bower_components/angular-route/angular-route.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/src/FIT/Bundle/ModuleDefaultBundle/Resources/public/netopeerangular/bower_components/angular-route/angular-route.min.js -------------------------------------------------------------------------------- /src/FIT/Bundle/ModuleDefaultBundle/Resources/public/netopeerangular/bower_components/angular-ui-sortable/sortable.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/src/FIT/Bundle/ModuleDefaultBundle/Resources/public/netopeerangular/bower_components/angular-ui-sortable/sortable.min.js -------------------------------------------------------------------------------- /src/FIT/Bundle/ModuleDefaultBundle/Resources/public/netopeerangular/bower_components/angular/angular.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/src/FIT/Bundle/ModuleDefaultBundle/Resources/public/netopeerangular/bower_components/angular/angular.min.js -------------------------------------------------------------------------------- /src/FIT/Bundle/ModuleDefaultBundle/Resources/public/netopeerangular/bower_components/font-awesome-sass/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/src/FIT/Bundle/ModuleDefaultBundle/Resources/public/netopeerangular/bower_components/font-awesome-sass/.bower.json -------------------------------------------------------------------------------- /src/FIT/Bundle/ModuleDefaultBundle/Resources/public/netopeerangular/bower_components/font-awesome-sass/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/src/FIT/Bundle/ModuleDefaultBundle/Resources/public/netopeerangular/bower_components/font-awesome-sass/.gitignore -------------------------------------------------------------------------------- /src/FIT/Bundle/ModuleDefaultBundle/Resources/public/netopeerangular/bower_components/font-awesome-sass/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/src/FIT/Bundle/ModuleDefaultBundle/Resources/public/netopeerangular/bower_components/font-awesome-sass/Gemfile -------------------------------------------------------------------------------- /src/FIT/Bundle/ModuleDefaultBundle/Resources/public/netopeerangular/bower_components/font-awesome-sass/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/src/FIT/Bundle/ModuleDefaultBundle/Resources/public/netopeerangular/bower_components/font-awesome-sass/LICENSE.txt -------------------------------------------------------------------------------- /src/FIT/Bundle/ModuleDefaultBundle/Resources/public/netopeerangular/bower_components/font-awesome-sass/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/src/FIT/Bundle/ModuleDefaultBundle/Resources/public/netopeerangular/bower_components/font-awesome-sass/README.md -------------------------------------------------------------------------------- /src/FIT/Bundle/ModuleDefaultBundle/Resources/public/netopeerangular/bower_components/font-awesome-sass/Rakefile: -------------------------------------------------------------------------------- 1 | require "bundler/gem_tasks" 2 | -------------------------------------------------------------------------------- /src/FIT/Bundle/ModuleDefaultBundle/Resources/public/netopeerangular/bower_components/font-awesome-sass/assets/fonts/font-awesome/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/src/FIT/Bundle/ModuleDefaultBundle/Resources/public/netopeerangular/bower_components/font-awesome-sass/assets/fonts/font-awesome/fontawesome-webfont.eot -------------------------------------------------------------------------------- /src/FIT/Bundle/ModuleDefaultBundle/Resources/public/netopeerangular/bower_components/font-awesome-sass/assets/fonts/font-awesome/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/src/FIT/Bundle/ModuleDefaultBundle/Resources/public/netopeerangular/bower_components/font-awesome-sass/assets/fonts/font-awesome/fontawesome-webfont.svg -------------------------------------------------------------------------------- /src/FIT/Bundle/ModuleDefaultBundle/Resources/public/netopeerangular/bower_components/font-awesome-sass/assets/fonts/font-awesome/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/src/FIT/Bundle/ModuleDefaultBundle/Resources/public/netopeerangular/bower_components/font-awesome-sass/assets/fonts/font-awesome/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /src/FIT/Bundle/ModuleDefaultBundle/Resources/public/netopeerangular/bower_components/font-awesome-sass/assets/fonts/font-awesome/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/src/FIT/Bundle/ModuleDefaultBundle/Resources/public/netopeerangular/bower_components/font-awesome-sass/assets/fonts/font-awesome/fontawesome-webfont.woff -------------------------------------------------------------------------------- /src/FIT/Bundle/ModuleDefaultBundle/Resources/public/netopeerangular/bower_components/font-awesome-sass/assets/fonts/font-awesome/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/src/FIT/Bundle/ModuleDefaultBundle/Resources/public/netopeerangular/bower_components/font-awesome-sass/assets/fonts/font-awesome/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /src/FIT/Bundle/ModuleDefaultBundle/Resources/public/netopeerangular/bower_components/font-awesome-sass/assets/stylesheets/_font-awesome-compass.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/src/FIT/Bundle/ModuleDefaultBundle/Resources/public/netopeerangular/bower_components/font-awesome-sass/assets/stylesheets/_font-awesome-compass.scss -------------------------------------------------------------------------------- /src/FIT/Bundle/ModuleDefaultBundle/Resources/public/netopeerangular/bower_components/font-awesome-sass/assets/stylesheets/_font-awesome-sprockets.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/src/FIT/Bundle/ModuleDefaultBundle/Resources/public/netopeerangular/bower_components/font-awesome-sass/assets/stylesheets/_font-awesome-sprockets.scss -------------------------------------------------------------------------------- /src/FIT/Bundle/ModuleDefaultBundle/Resources/public/netopeerangular/bower_components/font-awesome-sass/assets/stylesheets/font-awesome.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/src/FIT/Bundle/ModuleDefaultBundle/Resources/public/netopeerangular/bower_components/font-awesome-sass/assets/stylesheets/font-awesome.scss -------------------------------------------------------------------------------- /src/FIT/Bundle/ModuleDefaultBundle/Resources/public/netopeerangular/bower_components/font-awesome-sass/assets/stylesheets/font-awesome/_animated.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/src/FIT/Bundle/ModuleDefaultBundle/Resources/public/netopeerangular/bower_components/font-awesome-sass/assets/stylesheets/font-awesome/_animated.scss -------------------------------------------------------------------------------- /src/FIT/Bundle/ModuleDefaultBundle/Resources/public/netopeerangular/bower_components/font-awesome-sass/assets/stylesheets/font-awesome/_bordered-pulled.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/src/FIT/Bundle/ModuleDefaultBundle/Resources/public/netopeerangular/bower_components/font-awesome-sass/assets/stylesheets/font-awesome/_bordered-pulled.scss -------------------------------------------------------------------------------- /src/FIT/Bundle/ModuleDefaultBundle/Resources/public/netopeerangular/bower_components/font-awesome-sass/assets/stylesheets/font-awesome/_core.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/src/FIT/Bundle/ModuleDefaultBundle/Resources/public/netopeerangular/bower_components/font-awesome-sass/assets/stylesheets/font-awesome/_core.scss -------------------------------------------------------------------------------- /src/FIT/Bundle/ModuleDefaultBundle/Resources/public/netopeerangular/bower_components/font-awesome-sass/assets/stylesheets/font-awesome/_extras.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/src/FIT/Bundle/ModuleDefaultBundle/Resources/public/netopeerangular/bower_components/font-awesome-sass/assets/stylesheets/font-awesome/_extras.scss -------------------------------------------------------------------------------- /src/FIT/Bundle/ModuleDefaultBundle/Resources/public/netopeerangular/bower_components/font-awesome-sass/assets/stylesheets/font-awesome/_fixed-width.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/src/FIT/Bundle/ModuleDefaultBundle/Resources/public/netopeerangular/bower_components/font-awesome-sass/assets/stylesheets/font-awesome/_fixed-width.scss -------------------------------------------------------------------------------- /src/FIT/Bundle/ModuleDefaultBundle/Resources/public/netopeerangular/bower_components/font-awesome-sass/assets/stylesheets/font-awesome/_icons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/src/FIT/Bundle/ModuleDefaultBundle/Resources/public/netopeerangular/bower_components/font-awesome-sass/assets/stylesheets/font-awesome/_icons.scss -------------------------------------------------------------------------------- /src/FIT/Bundle/ModuleDefaultBundle/Resources/public/netopeerangular/bower_components/font-awesome-sass/assets/stylesheets/font-awesome/_larger.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/src/FIT/Bundle/ModuleDefaultBundle/Resources/public/netopeerangular/bower_components/font-awesome-sass/assets/stylesheets/font-awesome/_larger.scss -------------------------------------------------------------------------------- /src/FIT/Bundle/ModuleDefaultBundle/Resources/public/netopeerangular/bower_components/font-awesome-sass/assets/stylesheets/font-awesome/_list.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/src/FIT/Bundle/ModuleDefaultBundle/Resources/public/netopeerangular/bower_components/font-awesome-sass/assets/stylesheets/font-awesome/_list.scss -------------------------------------------------------------------------------- /src/FIT/Bundle/ModuleDefaultBundle/Resources/public/netopeerangular/bower_components/font-awesome-sass/assets/stylesheets/font-awesome/_mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/src/FIT/Bundle/ModuleDefaultBundle/Resources/public/netopeerangular/bower_components/font-awesome-sass/assets/stylesheets/font-awesome/_mixins.scss -------------------------------------------------------------------------------- /src/FIT/Bundle/ModuleDefaultBundle/Resources/public/netopeerangular/bower_components/font-awesome-sass/assets/stylesheets/font-awesome/_path.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/src/FIT/Bundle/ModuleDefaultBundle/Resources/public/netopeerangular/bower_components/font-awesome-sass/assets/stylesheets/font-awesome/_path.scss -------------------------------------------------------------------------------- /src/FIT/Bundle/ModuleDefaultBundle/Resources/public/netopeerangular/bower_components/font-awesome-sass/assets/stylesheets/font-awesome/_rotated-flipped.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/src/FIT/Bundle/ModuleDefaultBundle/Resources/public/netopeerangular/bower_components/font-awesome-sass/assets/stylesheets/font-awesome/_rotated-flipped.scss -------------------------------------------------------------------------------- /src/FIT/Bundle/ModuleDefaultBundle/Resources/public/netopeerangular/bower_components/font-awesome-sass/assets/stylesheets/font-awesome/_stacked.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/src/FIT/Bundle/ModuleDefaultBundle/Resources/public/netopeerangular/bower_components/font-awesome-sass/assets/stylesheets/font-awesome/_stacked.scss -------------------------------------------------------------------------------- /src/FIT/Bundle/ModuleDefaultBundle/Resources/public/netopeerangular/bower_components/font-awesome-sass/assets/stylesheets/font-awesome/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/src/FIT/Bundle/ModuleDefaultBundle/Resources/public/netopeerangular/bower_components/font-awesome-sass/assets/stylesheets/font-awesome/_variables.scss -------------------------------------------------------------------------------- /src/FIT/Bundle/ModuleDefaultBundle/Resources/public/netopeerangular/bower_components/font-awesome-sass/font-awesome-sass.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/src/FIT/Bundle/ModuleDefaultBundle/Resources/public/netopeerangular/bower_components/font-awesome-sass/font-awesome-sass.gemspec -------------------------------------------------------------------------------- /src/FIT/Bundle/ModuleDefaultBundle/Resources/public/netopeerangular/bower_components/font-awesome-sass/lib/font-awesome-sass.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/src/FIT/Bundle/ModuleDefaultBundle/Resources/public/netopeerangular/bower_components/font-awesome-sass/lib/font-awesome-sass.rb -------------------------------------------------------------------------------- /src/FIT/Bundle/ModuleDefaultBundle/Resources/public/netopeerangular/bower_components/font-awesome-sass/lib/font_awesome/sass/rails/engine.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/src/FIT/Bundle/ModuleDefaultBundle/Resources/public/netopeerangular/bower_components/font-awesome-sass/lib/font_awesome/sass/rails/engine.rb -------------------------------------------------------------------------------- /src/FIT/Bundle/ModuleDefaultBundle/Resources/public/netopeerangular/bower_components/font-awesome-sass/lib/font_awesome/sass/rails/helpers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/src/FIT/Bundle/ModuleDefaultBundle/Resources/public/netopeerangular/bower_components/font-awesome-sass/lib/font_awesome/sass/rails/helpers.rb -------------------------------------------------------------------------------- /src/FIT/Bundle/ModuleDefaultBundle/Resources/public/netopeerangular/bower_components/font-awesome-sass/lib/font_awesome/sass/rails/railtie.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/src/FIT/Bundle/ModuleDefaultBundle/Resources/public/netopeerangular/bower_components/font-awesome-sass/lib/font_awesome/sass/rails/railtie.rb -------------------------------------------------------------------------------- /src/FIT/Bundle/ModuleDefaultBundle/Resources/public/netopeerangular/bower_components/font-awesome-sass/lib/font_awesome/sass/version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/src/FIT/Bundle/ModuleDefaultBundle/Resources/public/netopeerangular/bower_components/font-awesome-sass/lib/font_awesome/sass/version.rb -------------------------------------------------------------------------------- /src/FIT/Bundle/ModuleDefaultBundle/Resources/public/netopeerangular/bower_components/jquery-ui/jquery-ui.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/src/FIT/Bundle/ModuleDefaultBundle/Resources/public/netopeerangular/bower_components/jquery-ui/jquery-ui.min.js -------------------------------------------------------------------------------- /src/FIT/Bundle/ModuleDefaultBundle/Resources/public/netopeerangular/bower_components/ngTraverse/ngTraverse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/src/FIT/Bundle/ModuleDefaultBundle/Resources/public/netopeerangular/bower_components/ngTraverse/ngTraverse.js -------------------------------------------------------------------------------- /src/FIT/Bundle/ModuleDefaultBundle/Resources/public/netopeerangular/css/config.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/src/FIT/Bundle/ModuleDefaultBundle/Resources/public/netopeerangular/css/config.rb -------------------------------------------------------------------------------- /src/FIT/Bundle/ModuleDefaultBundle/Resources/public/netopeerangular/css/fonts: -------------------------------------------------------------------------------- 1 | ../bower_components/font-awesome-sass/assets/fonts -------------------------------------------------------------------------------- /src/FIT/Bundle/ModuleDefaultBundle/Resources/public/netopeerangular/css/sass/ie.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/src/FIT/Bundle/ModuleDefaultBundle/Resources/public/netopeerangular/css/sass/ie.scss -------------------------------------------------------------------------------- /src/FIT/Bundle/ModuleDefaultBundle/Resources/public/netopeerangular/css/sass/print.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/src/FIT/Bundle/ModuleDefaultBundle/Resources/public/netopeerangular/css/sass/print.scss -------------------------------------------------------------------------------- /src/FIT/Bundle/ModuleDefaultBundle/Resources/public/netopeerangular/css/sass/screen.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/src/FIT/Bundle/ModuleDefaultBundle/Resources/public/netopeerangular/css/sass/screen.scss -------------------------------------------------------------------------------- /src/FIT/Bundle/ModuleDefaultBundle/Resources/public/netopeerangular/css/stylesheets/ie.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/src/FIT/Bundle/ModuleDefaultBundle/Resources/public/netopeerangular/css/stylesheets/ie.css -------------------------------------------------------------------------------- /src/FIT/Bundle/ModuleDefaultBundle/Resources/public/netopeerangular/css/stylesheets/print.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/src/FIT/Bundle/ModuleDefaultBundle/Resources/public/netopeerangular/css/stylesheets/print.css -------------------------------------------------------------------------------- /src/FIT/Bundle/ModuleDefaultBundle/Resources/public/netopeerangular/css/stylesheets/screen.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/src/FIT/Bundle/ModuleDefaultBundle/Resources/public/netopeerangular/css/stylesheets/screen.css -------------------------------------------------------------------------------- /src/FIT/Bundle/ModuleDefaultBundle/Resources/public/netopeerangular/data/get.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/src/FIT/Bundle/ModuleDefaultBundle/Resources/public/netopeerangular/data/get.json -------------------------------------------------------------------------------- /src/FIT/Bundle/ModuleDefaultBundle/Resources/public/netopeerangular/data/get.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/src/FIT/Bundle/ModuleDefaultBundle/Resources/public/netopeerangular/data/get.xml -------------------------------------------------------------------------------- /src/FIT/Bundle/ModuleDefaultBundle/Resources/public/netopeerangular/data/get2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/src/FIT/Bundle/ModuleDefaultBundle/Resources/public/netopeerangular/data/get2.xml -------------------------------------------------------------------------------- /src/FIT/Bundle/ModuleDefaultBundle/Resources/public/netopeerangular/data/model.yin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/src/FIT/Bundle/ModuleDefaultBundle/Resources/public/netopeerangular/data/model.yin -------------------------------------------------------------------------------- /src/FIT/Bundle/ModuleDefaultBundle/Resources/public/netopeerangular/data/real.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/src/FIT/Bundle/ModuleDefaultBundle/Resources/public/netopeerangular/data/real.json -------------------------------------------------------------------------------- /src/FIT/Bundle/ModuleDefaultBundle/Resources/public/netopeerangular/data/test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/src/FIT/Bundle/ModuleDefaultBundle/Resources/public/netopeerangular/data/test.json -------------------------------------------------------------------------------- /src/FIT/Bundle/ModuleDefaultBundle/Resources/public/netopeerangular/data/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/src/FIT/Bundle/ModuleDefaultBundle/Resources/public/netopeerangular/data/test.xml -------------------------------------------------------------------------------- /src/FIT/Bundle/ModuleDefaultBundle/Resources/public/netopeerangular/gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/src/FIT/Bundle/ModuleDefaultBundle/Resources/public/netopeerangular/gulpfile.js -------------------------------------------------------------------------------- /src/FIT/Bundle/ModuleDefaultBundle/Resources/public/netopeerangular/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/src/FIT/Bundle/ModuleDefaultBundle/Resources/public/netopeerangular/index.html -------------------------------------------------------------------------------- /src/FIT/Bundle/ModuleDefaultBundle/Resources/public/netopeerangular/js/JSONedit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/src/FIT/Bundle/ModuleDefaultBundle/Resources/public/netopeerangular/js/JSONedit.js -------------------------------------------------------------------------------- /src/FIT/Bundle/ModuleDefaultBundle/Resources/public/netopeerangular/js/directives/addItem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/src/FIT/Bundle/ModuleDefaultBundle/Resources/public/netopeerangular/js/directives/addItem.js -------------------------------------------------------------------------------- /src/FIT/Bundle/ModuleDefaultBundle/Resources/public/netopeerangular/js/directives/switchItem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/src/FIT/Bundle/ModuleDefaultBundle/Resources/public/netopeerangular/js/directives/switchItem.js -------------------------------------------------------------------------------- /src/FIT/Bundle/ModuleDefaultBundle/Resources/public/netopeerangular/js/directives2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/src/FIT/Bundle/ModuleDefaultBundle/Resources/public/netopeerangular/js/directives2.js -------------------------------------------------------------------------------- /src/FIT/Bundle/ModuleDefaultBundle/Resources/public/netopeerangular/js/services/ajaxService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/src/FIT/Bundle/ModuleDefaultBundle/Resources/public/netopeerangular/js/services/ajaxService.js -------------------------------------------------------------------------------- /src/FIT/Bundle/ModuleDefaultBundle/Resources/public/netopeerangular/node_modules/rhaboo/rhaboo.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/src/FIT/Bundle/ModuleDefaultBundle/Resources/public/netopeerangular/node_modules/rhaboo/rhaboo.min.js -------------------------------------------------------------------------------- /src/FIT/Bundle/ModuleDefaultBundle/Resources/public/netopeerangular/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/src/FIT/Bundle/ModuleDefaultBundle/Resources/public/netopeerangular/package.json -------------------------------------------------------------------------------- /src/FIT/Bundle/ModuleDefaultBundle/Resources/public/netopeerangular/public/templates.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/src/FIT/Bundle/ModuleDefaultBundle/Resources/public/netopeerangular/public/templates.js -------------------------------------------------------------------------------- /src/FIT/Bundle/ModuleDefaultBundle/Resources/public/netopeerangular/templates/directives/addItem.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/src/FIT/Bundle/ModuleDefaultBundle/Resources/public/netopeerangular/templates/directives/addItem.html -------------------------------------------------------------------------------- /src/FIT/Bundle/ModuleDefaultBundle/Resources/public/netopeerangular/templates/directives/switchItem.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/src/FIT/Bundle/ModuleDefaultBundle/Resources/public/netopeerangular/templates/directives/switchItem.html -------------------------------------------------------------------------------- /src/FIT/Bundle/ModuleDefaultBundle/Resources/public/netopeerangular/templates/main/view.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/src/FIT/Bundle/ModuleDefaultBundle/Resources/public/netopeerangular/templates/main/view.html -------------------------------------------------------------------------------- /src/FIT/Bundle/ModuleDefaultBundle/Resources/public/netopeerangular/templates/types/Array.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/src/FIT/Bundle/ModuleDefaultBundle/Resources/public/netopeerangular/templates/types/Array.html -------------------------------------------------------------------------------- /src/FIT/Bundle/ModuleDefaultBundle/Resources/public/netopeerangular/templates/types/List.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/src/FIT/Bundle/ModuleDefaultBundle/Resources/public/netopeerangular/templates/types/List.html -------------------------------------------------------------------------------- /src/FIT/Bundle/ModuleDefaultBundle/Resources/public/netopeerangular/templates/types/Object.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/src/FIT/Bundle/ModuleDefaultBundle/Resources/public/netopeerangular/templates/types/Object.html -------------------------------------------------------------------------------- /src/FIT/Bundle/ModuleDefaultBundle/Resources/public/sass/screen.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/src/FIT/Bundle/ModuleDefaultBundle/Resources/public/sass/screen.scss -------------------------------------------------------------------------------- /src/FIT/Bundle/ModuleDefaultBundle/Resources/public/style/screen.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/src/FIT/Bundle/ModuleDefaultBundle/Resources/public/style/screen.css -------------------------------------------------------------------------------- /src/FIT/Bundle/ModuleDefaultBundle/Resources/views/Config/leaf.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/src/FIT/Bundle/ModuleDefaultBundle/Resources/views/Config/leaf.html.twig -------------------------------------------------------------------------------- /src/FIT/Bundle/ModuleDefaultBundle/Resources/views/Config/parent.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/src/FIT/Bundle/ModuleDefaultBundle/Resources/views/Config/parent.html.twig -------------------------------------------------------------------------------- /src/FIT/Bundle/ModuleDefaultBundle/Resources/views/Module/section.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/src/FIT/Bundle/ModuleDefaultBundle/Resources/views/Module/section.html.twig -------------------------------------------------------------------------------- /src/FIT/Bundle/ModuleDefaultBundle/Resources/views/Module/showRPCForm.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/src/FIT/Bundle/ModuleDefaultBundle/Resources/views/Module/showRPCForm.html.twig -------------------------------------------------------------------------------- /src/FIT/Bundle/ModuleDefaultBundle/Resources/views/Module/subsection.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/src/FIT/Bundle/ModuleDefaultBundle/Resources/views/Module/subsection.html.twig -------------------------------------------------------------------------------- /src/FIT/Bundle/ModuleDefaultBundle/Resources/views/State/leaf.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/src/FIT/Bundle/ModuleDefaultBundle/Resources/views/State/leaf.html.twig -------------------------------------------------------------------------------- /src/FIT/Bundle/ModuleDefaultBundle/Resources/views/State/parent.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/src/FIT/Bundle/ModuleDefaultBundle/Resources/views/State/parent.html.twig -------------------------------------------------------------------------------- /src/FIT/Bundle/ModuleDefaultBundle/Resources/views/layout.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/src/FIT/Bundle/ModuleDefaultBundle/Resources/views/layout.html.twig -------------------------------------------------------------------------------- /src/FIT/Bundle/ModuleXmlBundle/Controller/ModuleController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/src/FIT/Bundle/ModuleXmlBundle/Controller/ModuleController.php -------------------------------------------------------------------------------- /src/FIT/Bundle/ModuleXmlBundle/DependencyInjection/Configuration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/src/FIT/Bundle/ModuleXmlBundle/DependencyInjection/Configuration.php -------------------------------------------------------------------------------- /src/FIT/Bundle/ModuleXmlBundle/DependencyInjection/FITModuleXmlExtension.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/src/FIT/Bundle/ModuleXmlBundle/DependencyInjection/FITModuleXmlExtension.php -------------------------------------------------------------------------------- /src/FIT/Bundle/ModuleXmlBundle/FITModuleXmlBundle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/src/FIT/Bundle/ModuleXmlBundle/FITModuleXmlBundle.php -------------------------------------------------------------------------------- /src/FIT/Bundle/ModuleXmlBundle/Resources/config/services.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/src/FIT/Bundle/ModuleXmlBundle/Resources/config/services.xml -------------------------------------------------------------------------------- /src/FIT/Bundle/ModuleXmlBundle/Resources/public/js/module-xml.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/FIT/Bundle/ModuleXmlBundle/Resources/public/style/module-xml.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/FIT/Bundle/ModuleXmlBundle/Resources/views/Module/section.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/src/FIT/Bundle/ModuleXmlBundle/Resources/views/Module/section.html.twig -------------------------------------------------------------------------------- /src/FIT/Bundle/ModuleXmlBundle/Resources/views/layout.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/src/FIT/Bundle/ModuleXmlBundle/Resources/views/layout.html.twig -------------------------------------------------------------------------------- /src/FIT/NetopeerBundle/Command/ProjectInitCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/src/FIT/NetopeerBundle/Command/ProjectInitCommand.php -------------------------------------------------------------------------------- /src/FIT/NetopeerBundle/Command/UserCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/src/FIT/NetopeerBundle/Command/UserCommand.php -------------------------------------------------------------------------------- /src/FIT/NetopeerBundle/Controller/AjaxController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/src/FIT/NetopeerBundle/Controller/AjaxController.php -------------------------------------------------------------------------------- /src/FIT/NetopeerBundle/Controller/BaseController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/src/FIT/NetopeerBundle/Controller/BaseController.php -------------------------------------------------------------------------------- /src/FIT/NetopeerBundle/Controller/DefaultController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/src/FIT/NetopeerBundle/Controller/DefaultController.php -------------------------------------------------------------------------------- /src/FIT/NetopeerBundle/Controller/GenerateController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/src/FIT/NetopeerBundle/Controller/GenerateController.php -------------------------------------------------------------------------------- /src/FIT/NetopeerBundle/Controller/ModuleController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/src/FIT/NetopeerBundle/Controller/ModuleController.php -------------------------------------------------------------------------------- /src/FIT/NetopeerBundle/Controller/ModuleControllerInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/src/FIT/NetopeerBundle/Controller/ModuleControllerInterface.php -------------------------------------------------------------------------------- /src/FIT/NetopeerBundle/Controller/RegistrationController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/src/FIT/NetopeerBundle/Controller/RegistrationController.php -------------------------------------------------------------------------------- /src/FIT/NetopeerBundle/Controller/SecurityController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/src/FIT/NetopeerBundle/Controller/SecurityController.php -------------------------------------------------------------------------------- /src/FIT/NetopeerBundle/DependencyInjection/Configuration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/src/FIT/NetopeerBundle/DependencyInjection/Configuration.php -------------------------------------------------------------------------------- /src/FIT/NetopeerBundle/DependencyInjection/FITNetopeerExtension.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/src/FIT/NetopeerBundle/DependencyInjection/FITNetopeerExtension.php -------------------------------------------------------------------------------- /src/FIT/NetopeerBundle/Entity/BaseConnection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/src/FIT/NetopeerBundle/Entity/BaseConnection.php -------------------------------------------------------------------------------- /src/FIT/NetopeerBundle/Entity/ConnectionSession.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/src/FIT/NetopeerBundle/Entity/ConnectionSession.php -------------------------------------------------------------------------------- /src/FIT/NetopeerBundle/Entity/CustomUserClass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/src/FIT/NetopeerBundle/Entity/CustomUserClass.php -------------------------------------------------------------------------------- /src/FIT/NetopeerBundle/Entity/ModuleController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/src/FIT/NetopeerBundle/Entity/ModuleController.php -------------------------------------------------------------------------------- /src/FIT/NetopeerBundle/Entity/SamlUser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/src/FIT/NetopeerBundle/Entity/SamlUser.php -------------------------------------------------------------------------------- /src/FIT/NetopeerBundle/Entity/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/src/FIT/NetopeerBundle/Entity/User.php -------------------------------------------------------------------------------- /src/FIT/NetopeerBundle/Entity/UserCustomData.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/src/FIT/NetopeerBundle/Entity/UserCustomData.php -------------------------------------------------------------------------------- /src/FIT/NetopeerBundle/Entity/UserSettings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/src/FIT/NetopeerBundle/Entity/UserSettings.php -------------------------------------------------------------------------------- /src/FIT/NetopeerBundle/EventListener/ModuleListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/src/FIT/NetopeerBundle/EventListener/ModuleListener.php -------------------------------------------------------------------------------- /src/FIT/NetopeerBundle/FITNetopeerBundle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/src/FIT/NetopeerBundle/FITNetopeerBundle.php -------------------------------------------------------------------------------- /src/FIT/NetopeerBundle/Form/UserType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/src/FIT/NetopeerBundle/Form/UserType.php -------------------------------------------------------------------------------- /src/FIT/NetopeerBundle/Handler/AuthenticationHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/src/FIT/NetopeerBundle/Handler/AuthenticationHandler.php -------------------------------------------------------------------------------- /src/FIT/NetopeerBundle/Resources/config/functionality.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/src/FIT/NetopeerBundle/Resources/config/functionality.yml -------------------------------------------------------------------------------- /src/FIT/NetopeerBundle/Resources/config/routing.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/src/FIT/NetopeerBundle/Resources/config/routing.yml -------------------------------------------------------------------------------- /src/FIT/NetopeerBundle/Resources/config/services.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/src/FIT/NetopeerBundle/Resources/config/services.yml -------------------------------------------------------------------------------- /src/FIT/NetopeerBundle/Resources/doc/.gitignore: -------------------------------------------------------------------------------- 1 | [^.]* 2 | -------------------------------------------------------------------------------- /src/FIT/NetopeerBundle/Resources/public/.gitignore: -------------------------------------------------------------------------------- 1 | ./docu 2 | .sass-cache 3 | style/variables.css 4 | -------------------------------------------------------------------------------- /src/FIT/NetopeerBundle/Resources/public/config.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/src/FIT/NetopeerBundle/Resources/public/config.rb -------------------------------------------------------------------------------- /src/FIT/NetopeerBundle/Resources/public/images/ajax-loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/src/FIT/NetopeerBundle/Resources/public/images/ajax-loader.gif -------------------------------------------------------------------------------- /src/FIT/NetopeerBundle/Resources/public/images/ico/16_alerts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/src/FIT/NetopeerBundle/Resources/public/images/ico/16_alerts.png -------------------------------------------------------------------------------- /src/FIT/NetopeerBundle/Resources/public/images/ico/16_arrow_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/src/FIT/NetopeerBundle/Resources/public/images/ico/16_arrow_down.png -------------------------------------------------------------------------------- /src/FIT/NetopeerBundle/Resources/public/images/ico/16_download.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/src/FIT/NetopeerBundle/Resources/public/images/ico/16_download.png -------------------------------------------------------------------------------- /src/FIT/NetopeerBundle/Resources/public/images/ico/16_home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/src/FIT/NetopeerBundle/Resources/public/images/ico/16_home.png -------------------------------------------------------------------------------- /src/FIT/NetopeerBundle/Resources/public/images/ico/16_kill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/src/FIT/NetopeerBundle/Resources/public/images/ico/16_kill.png -------------------------------------------------------------------------------- /src/FIT/NetopeerBundle/Resources/public/images/ico/16_lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/src/FIT/NetopeerBundle/Resources/public/images/ico/16_lock.png -------------------------------------------------------------------------------- /src/FIT/NetopeerBundle/Resources/public/images/ico/16_refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/src/FIT/NetopeerBundle/Resources/public/images/ico/16_refresh.png -------------------------------------------------------------------------------- /src/FIT/NetopeerBundle/Resources/public/images/ico/16_session.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/src/FIT/NetopeerBundle/Resources/public/images/ico/16_session.png -------------------------------------------------------------------------------- /src/FIT/NetopeerBundle/Resources/public/images/ico/16_unlock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/src/FIT/NetopeerBundle/Resources/public/images/ico/16_unlock.png -------------------------------------------------------------------------------- /src/FIT/NetopeerBundle/Resources/public/images/ico/16_users-o50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/src/FIT/NetopeerBundle/Resources/public/images/ico/16_users-o50.png -------------------------------------------------------------------------------- /src/FIT/NetopeerBundle/Resources/public/images/ico/24_home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/src/FIT/NetopeerBundle/Resources/public/images/ico/24_home.png -------------------------------------------------------------------------------- /src/FIT/NetopeerBundle/Resources/public/images/ico/error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/src/FIT/NetopeerBundle/Resources/public/images/ico/error.png -------------------------------------------------------------------------------- /src/FIT/NetopeerBundle/Resources/public/images/ico/info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/src/FIT/NetopeerBundle/Resources/public/images/ico/info.png -------------------------------------------------------------------------------- /src/FIT/NetopeerBundle/Resources/public/images/ico/ok.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/src/FIT/NetopeerBundle/Resources/public/images/ico/ok.png -------------------------------------------------------------------------------- /src/FIT/NetopeerBundle/Resources/public/images/loading-bar.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/src/FIT/NetopeerBundle/Resources/public/images/loading-bar.gif -------------------------------------------------------------------------------- /src/FIT/NetopeerBundle/Resources/public/js/bootstrap/Bootstrap-3-Typeahead/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/src/FIT/NetopeerBundle/Resources/public/js/bootstrap/Bootstrap-3-Typeahead/README.md -------------------------------------------------------------------------------- /src/FIT/NetopeerBundle/Resources/public/js/bootstrap/Bootstrap-3-Typeahead/bootstrap3-typeahead.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/src/FIT/NetopeerBundle/Resources/public/js/bootstrap/Bootstrap-3-Typeahead/bootstrap3-typeahead.js -------------------------------------------------------------------------------- /src/FIT/NetopeerBundle/Resources/public/js/bootstrap/Bootstrap-3-Typeahead/bootstrap3-typeahead.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/src/FIT/NetopeerBundle/Resources/public/js/bootstrap/Bootstrap-3-Typeahead/bootstrap3-typeahead.min.js -------------------------------------------------------------------------------- /src/FIT/NetopeerBundle/Resources/public/js/bootstrap/Bootstrap-3-Typeahead/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/src/FIT/NetopeerBundle/Resources/public/js/bootstrap/Bootstrap-3-Typeahead/bower.json -------------------------------------------------------------------------------- /src/FIT/NetopeerBundle/Resources/public/js/bootstrap/css/bootstrap-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/src/FIT/NetopeerBundle/Resources/public/js/bootstrap/css/bootstrap-theme.css -------------------------------------------------------------------------------- /src/FIT/NetopeerBundle/Resources/public/js/bootstrap/css/bootstrap-theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/src/FIT/NetopeerBundle/Resources/public/js/bootstrap/css/bootstrap-theme.min.css -------------------------------------------------------------------------------- /src/FIT/NetopeerBundle/Resources/public/js/bootstrap/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/src/FIT/NetopeerBundle/Resources/public/js/bootstrap/css/bootstrap.css -------------------------------------------------------------------------------- /src/FIT/NetopeerBundle/Resources/public/js/bootstrap/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/src/FIT/NetopeerBundle/Resources/public/js/bootstrap/css/bootstrap.min.css -------------------------------------------------------------------------------- /src/FIT/NetopeerBundle/Resources/public/js/bootstrap/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/src/FIT/NetopeerBundle/Resources/public/js/bootstrap/js/bootstrap.js -------------------------------------------------------------------------------- /src/FIT/NetopeerBundle/Resources/public/js/bootstrap/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/src/FIT/NetopeerBundle/Resources/public/js/bootstrap/js/bootstrap.min.js -------------------------------------------------------------------------------- /src/FIT/NetopeerBundle/Resources/public/js/default.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/src/FIT/NetopeerBundle/Resources/public/js/default.js -------------------------------------------------------------------------------- /src/FIT/NetopeerBundle/Resources/public/js/jquery-1.11.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/src/FIT/NetopeerBundle/Resources/public/js/jquery-1.11.1.min.js -------------------------------------------------------------------------------- /src/FIT/NetopeerBundle/Resources/public/js/jquery-migrate-1.2.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/src/FIT/NetopeerBundle/Resources/public/js/jquery-migrate-1.2.1.min.js -------------------------------------------------------------------------------- /src/FIT/NetopeerBundle/Resources/public/js/jquery-ui-1.10.3.custom.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/src/FIT/NetopeerBundle/Resources/public/js/jquery-ui-1.10.3.custom.min.js -------------------------------------------------------------------------------- /src/FIT/NetopeerBundle/Resources/public/js/jquery.netopeergui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/src/FIT/NetopeerBundle/Resources/public/js/jquery.netopeergui.js -------------------------------------------------------------------------------- /src/FIT/NetopeerBundle/Resources/public/js/modernizr.custom.43627.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/src/FIT/NetopeerBundle/Resources/public/js/modernizr.custom.43627.js -------------------------------------------------------------------------------- /src/FIT/NetopeerBundle/Resources/public/js/notifications.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/src/FIT/NetopeerBundle/Resources/public/js/notifications.js -------------------------------------------------------------------------------- /src/FIT/NetopeerBundle/Resources/public/js/selectivizr-min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/src/FIT/NetopeerBundle/Resources/public/js/selectivizr-min.js -------------------------------------------------------------------------------- /src/FIT/NetopeerBundle/Resources/public/js/single/connections.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/src/FIT/NetopeerBundle/Resources/public/js/single/connections.js -------------------------------------------------------------------------------- /src/FIT/NetopeerBundle/Resources/public/sass/custom-variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/src/FIT/NetopeerBundle/Resources/public/sass/custom-variables.scss -------------------------------------------------------------------------------- /src/FIT/NetopeerBundle/Resources/public/sass/ie.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/src/FIT/NetopeerBundle/Resources/public/sass/ie.scss -------------------------------------------------------------------------------- /src/FIT/NetopeerBundle/Resources/public/sass/print.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/src/FIT/NetopeerBundle/Resources/public/sass/print.scss -------------------------------------------------------------------------------- /src/FIT/NetopeerBundle/Resources/public/sass/screen.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/src/FIT/NetopeerBundle/Resources/public/sass/screen.scss -------------------------------------------------------------------------------- /src/FIT/NetopeerBundle/Resources/public/sass/variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/src/FIT/NetopeerBundle/Resources/public/sass/variables.scss -------------------------------------------------------------------------------- /src/FIT/NetopeerBundle/Resources/public/style/PIE.htc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/src/FIT/NetopeerBundle/Resources/public/style/PIE.htc -------------------------------------------------------------------------------- /src/FIT/NetopeerBundle/Resources/public/style/ie.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/src/FIT/NetopeerBundle/Resources/public/style/ie.css -------------------------------------------------------------------------------- /src/FIT/NetopeerBundle/Resources/public/style/print.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/src/FIT/NetopeerBundle/Resources/public/style/print.css -------------------------------------------------------------------------------- /src/FIT/NetopeerBundle/Resources/public/style/screen.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/src/FIT/NetopeerBundle/Resources/public/style/screen.css -------------------------------------------------------------------------------- /src/FIT/NetopeerBundle/Resources/public/style/ui-lightness/images/animated-overlay.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/src/FIT/NetopeerBundle/Resources/public/style/ui-lightness/images/animated-overlay.gif -------------------------------------------------------------------------------- /src/FIT/NetopeerBundle/Resources/public/style/ui-lightness/images/ui-bg_diagonals-thick_18_b81900_40x40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/src/FIT/NetopeerBundle/Resources/public/style/ui-lightness/images/ui-bg_diagonals-thick_18_b81900_40x40.png -------------------------------------------------------------------------------- /src/FIT/NetopeerBundle/Resources/public/style/ui-lightness/images/ui-bg_diagonals-thick_20_666666_40x40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/src/FIT/NetopeerBundle/Resources/public/style/ui-lightness/images/ui-bg_diagonals-thick_20_666666_40x40.png -------------------------------------------------------------------------------- /src/FIT/NetopeerBundle/Resources/public/style/ui-lightness/images/ui-bg_flat_10_000000_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/src/FIT/NetopeerBundle/Resources/public/style/ui-lightness/images/ui-bg_flat_10_000000_40x100.png -------------------------------------------------------------------------------- /src/FIT/NetopeerBundle/Resources/public/style/ui-lightness/images/ui-bg_glass_100_f6f6f6_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/src/FIT/NetopeerBundle/Resources/public/style/ui-lightness/images/ui-bg_glass_100_f6f6f6_1x400.png -------------------------------------------------------------------------------- /src/FIT/NetopeerBundle/Resources/public/style/ui-lightness/images/ui-bg_glass_100_fdf5ce_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/src/FIT/NetopeerBundle/Resources/public/style/ui-lightness/images/ui-bg_glass_100_fdf5ce_1x400.png -------------------------------------------------------------------------------- /src/FIT/NetopeerBundle/Resources/public/style/ui-lightness/images/ui-bg_glass_65_ffffff_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/src/FIT/NetopeerBundle/Resources/public/style/ui-lightness/images/ui-bg_glass_65_ffffff_1x400.png -------------------------------------------------------------------------------- /src/FIT/NetopeerBundle/Resources/public/style/ui-lightness/images/ui-bg_gloss-wave_35_f6a828_500x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/src/FIT/NetopeerBundle/Resources/public/style/ui-lightness/images/ui-bg_gloss-wave_35_f6a828_500x100.png -------------------------------------------------------------------------------- /src/FIT/NetopeerBundle/Resources/public/style/ui-lightness/images/ui-bg_highlight-soft_100_eeeeee_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/src/FIT/NetopeerBundle/Resources/public/style/ui-lightness/images/ui-bg_highlight-soft_100_eeeeee_1x100.png -------------------------------------------------------------------------------- /src/FIT/NetopeerBundle/Resources/public/style/ui-lightness/images/ui-bg_highlight-soft_75_ffe45c_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/src/FIT/NetopeerBundle/Resources/public/style/ui-lightness/images/ui-bg_highlight-soft_75_ffe45c_1x100.png -------------------------------------------------------------------------------- /src/FIT/NetopeerBundle/Resources/public/style/ui-lightness/images/ui-icons_222222_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/src/FIT/NetopeerBundle/Resources/public/style/ui-lightness/images/ui-icons_222222_256x240.png -------------------------------------------------------------------------------- /src/FIT/NetopeerBundle/Resources/public/style/ui-lightness/images/ui-icons_228ef1_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/src/FIT/NetopeerBundle/Resources/public/style/ui-lightness/images/ui-icons_228ef1_256x240.png -------------------------------------------------------------------------------- /src/FIT/NetopeerBundle/Resources/public/style/ui-lightness/images/ui-icons_ef8c08_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/src/FIT/NetopeerBundle/Resources/public/style/ui-lightness/images/ui-icons_ef8c08_256x240.png -------------------------------------------------------------------------------- /src/FIT/NetopeerBundle/Resources/public/style/ui-lightness/images/ui-icons_ffd27a_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/src/FIT/NetopeerBundle/Resources/public/style/ui-lightness/images/ui-icons_ffd27a_256x240.png -------------------------------------------------------------------------------- /src/FIT/NetopeerBundle/Resources/public/style/ui-lightness/images/ui-icons_ffffff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/src/FIT/NetopeerBundle/Resources/public/style/ui-lightness/images/ui-icons_ffffff_256x240.png -------------------------------------------------------------------------------- /src/FIT/NetopeerBundle/Resources/public/style/ui-lightness/jquery-ui-1.10.3.custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/src/FIT/NetopeerBundle/Resources/public/style/ui-lightness/jquery-ui-1.10.3.custom.css -------------------------------------------------------------------------------- /src/FIT/NetopeerBundle/Resources/public/style/ui-lightness/jquery-ui-1.10.3.custom.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/src/FIT/NetopeerBundle/Resources/public/style/ui-lightness/jquery-ui-1.10.3.custom.min.css -------------------------------------------------------------------------------- /src/FIT/NetopeerBundle/Resources/saml/openidp.metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/src/FIT/NetopeerBundle/Resources/saml/openidp.metadata.xml -------------------------------------------------------------------------------- /src/FIT/NetopeerBundle/Resources/translations/messages.fr.xliff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/src/FIT/NetopeerBundle/Resources/translations/messages.fr.xliff -------------------------------------------------------------------------------- /src/FIT/NetopeerBundle/Resources/views/Ajax/historyOfConnectedDevices.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/src/FIT/NetopeerBundle/Resources/views/Ajax/historyOfConnectedDevices.html.twig -------------------------------------------------------------------------------- /src/FIT/NetopeerBundle/Resources/views/Ajax/lookupip.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/src/FIT/NetopeerBundle/Resources/views/Ajax/lookupip.html.twig -------------------------------------------------------------------------------- /src/FIT/NetopeerBundle/Resources/views/Default/connections.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/src/FIT/NetopeerBundle/Resources/views/Default/connections.html.twig -------------------------------------------------------------------------------- /src/FIT/NetopeerBundle/Resources/views/Generate/generateXMLFromModel.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/src/FIT/NetopeerBundle/Resources/views/Generate/generateXMLFromModel.html.twig -------------------------------------------------------------------------------- /src/FIT/NetopeerBundle/Resources/views/Registration/register.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/src/FIT/NetopeerBundle/Resources/views/Registration/register.html.twig -------------------------------------------------------------------------------- /src/FIT/NetopeerBundle/Resources/views/Security/login.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/src/FIT/NetopeerBundle/Resources/views/Security/login.html.twig -------------------------------------------------------------------------------- /src/FIT/NetopeerBundle/Resources/views/Security/logout.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/src/FIT/NetopeerBundle/Resources/views/Security/logout.html.twig -------------------------------------------------------------------------------- /src/FIT/NetopeerBundle/Resources/views/layout.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/src/FIT/NetopeerBundle/Resources/views/layout.html.twig -------------------------------------------------------------------------------- /src/FIT/NetopeerBundle/Services/Functionality/ConnectionFunctionality.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/src/FIT/NetopeerBundle/Services/Functionality/ConnectionFunctionality.php -------------------------------------------------------------------------------- /src/FIT/NetopeerBundle/Services/Functionality/NetconfFunctionality.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/src/FIT/NetopeerBundle/Services/Functionality/NetconfFunctionality.php -------------------------------------------------------------------------------- /src/FIT/NetopeerBundle/Services/Managers/SamlToState.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/src/FIT/NetopeerBundle/Services/Managers/SamlToState.php -------------------------------------------------------------------------------- /src/FIT/NetopeerBundle/Tests/Codeception/_bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/src/FIT/NetopeerBundle/Tests/Codeception/_bootstrap.php -------------------------------------------------------------------------------- /src/FIT/NetopeerBundle/Tests/Codeception/_data/dump.sql: -------------------------------------------------------------------------------- 1 | /* Replace this file with actual dump of your database */ -------------------------------------------------------------------------------- /src/FIT/NetopeerBundle/Tests/Codeception/_helpers/CodeHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/src/FIT/NetopeerBundle/Tests/Codeception/_helpers/CodeHelper.php -------------------------------------------------------------------------------- /src/FIT/NetopeerBundle/Tests/Codeception/_helpers/TestHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/src/FIT/NetopeerBundle/Tests/Codeception/_helpers/TestHelper.php -------------------------------------------------------------------------------- /src/FIT/NetopeerBundle/Tests/Codeception/_helpers/WebHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/src/FIT/NetopeerBundle/Tests/Codeception/_helpers/WebHelper.php -------------------------------------------------------------------------------- /src/FIT/NetopeerBundle/Tests/Codeception/_support/CommonScenarios.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/src/FIT/NetopeerBundle/Tests/Codeception/_support/CommonScenarios.php -------------------------------------------------------------------------------- /src/FIT/NetopeerBundle/Tests/Codeception/acceptance.suite.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/src/FIT/NetopeerBundle/Tests/Codeception/acceptance.suite.yml -------------------------------------------------------------------------------- /src/FIT/NetopeerBundle/Tests/Codeception/acceptance/ConnectionsCest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/src/FIT/NetopeerBundle/Tests/Codeception/acceptance/ConnectionsCest.php -------------------------------------------------------------------------------- /src/FIT/NetopeerBundle/Tests/Codeception/acceptance/DatastoreConfigureCest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/src/FIT/NetopeerBundle/Tests/Codeception/acceptance/DatastoreConfigureCest.php -------------------------------------------------------------------------------- /src/FIT/NetopeerBundle/Tests/Codeception/acceptance/InterfacesConfigureCest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/src/FIT/NetopeerBundle/Tests/Codeception/acceptance/InterfacesConfigureCest.php -------------------------------------------------------------------------------- /src/FIT/NetopeerBundle/Tests/Codeception/acceptance/NacmConfigureCest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/src/FIT/NetopeerBundle/Tests/Codeception/acceptance/NacmConfigureCest.php -------------------------------------------------------------------------------- /src/FIT/NetopeerBundle/Tests/Codeception/acceptance/TuringConfigureCest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/src/FIT/NetopeerBundle/Tests/Codeception/acceptance/TuringConfigureCest.php -------------------------------------------------------------------------------- /src/FIT/NetopeerBundle/Tests/Codeception/acceptance/WebGuy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/src/FIT/NetopeerBundle/Tests/Codeception/acceptance/WebGuy.php -------------------------------------------------------------------------------- /src/FIT/NetopeerBundle/Tests/Codeception/acceptance/_bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/src/FIT/NetopeerBundle/Tests/Codeception/acceptance/_bootstrap.php -------------------------------------------------------------------------------- /src/FIT/NetopeerBundle/Tests/Codeception/functional.suite.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/src/FIT/NetopeerBundle/Tests/Codeception/functional.suite.yml -------------------------------------------------------------------------------- /src/FIT/NetopeerBundle/Tests/Codeception/functional/FormCest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/src/FIT/NetopeerBundle/Tests/Codeception/functional/FormCest.php -------------------------------------------------------------------------------- /src/FIT/NetopeerBundle/Tests/Codeception/functional/TestGuy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/src/FIT/NetopeerBundle/Tests/Codeception/functional/TestGuy.php -------------------------------------------------------------------------------- /src/FIT/NetopeerBundle/Tests/Codeception/functional/_bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/src/FIT/NetopeerBundle/Tests/Codeception/functional/_bootstrap.php -------------------------------------------------------------------------------- /src/FIT/NetopeerBundle/Tests/Models/XMLoperationsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/src/FIT/NetopeerBundle/Tests/Models/XMLoperationsTest.php -------------------------------------------------------------------------------- /src/FIT/NetopeerBundle/Tests/Selenium/ConfigureDeviceTestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/src/FIT/NetopeerBundle/Tests/Selenium/ConfigureDeviceTestCase.php -------------------------------------------------------------------------------- /src/FIT/NetopeerBundle/Tests/Selenium/DefaultTestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/src/FIT/NetopeerBundle/Tests/Selenium/DefaultTestCase.php -------------------------------------------------------------------------------- /src/FIT/NetopeerBundle/Tests/Selenium/DeviceConnectionTestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/src/FIT/NetopeerBundle/Tests/Selenium/DeviceConnectionTestCase.php -------------------------------------------------------------------------------- /src/FIT/NetopeerBundle/Tests/Selenium/LoginTestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/src/FIT/NetopeerBundle/Tests/Selenium/LoginTestCase.php -------------------------------------------------------------------------------- /src/FIT/NetopeerBundle/Tests/Selenium/phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/src/FIT/NetopeerBundle/Tests/Selenium/phpunit.xml -------------------------------------------------------------------------------- /src/FIT/NetopeerBundle/Tests/_files/MockClass/Data.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/src/FIT/NetopeerBundle/Tests/_files/MockClass/Data.php -------------------------------------------------------------------------------- /src/FIT/NetopeerBundle/Tests/_files/completeRequestTree/turing-machine-data.dsrl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/src/FIT/NetopeerBundle/Tests/_files/completeRequestTree/turing-machine-data.dsrl -------------------------------------------------------------------------------- /src/FIT/NetopeerBundle/Tests/_files/completeRequestTree/turing-machine-data.rng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/src/FIT/NetopeerBundle/Tests/_files/completeRequestTree/turing-machine-data.rng -------------------------------------------------------------------------------- /src/FIT/NetopeerBundle/Tests/_files/completeRequestTree/turing-machine-data.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/src/FIT/NetopeerBundle/Tests/_files/completeRequestTree/turing-machine-data.sch -------------------------------------------------------------------------------- /src/FIT/NetopeerBundle/Tests/_files/completeRequestTree/turing-machine-gdefs.rng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/src/FIT/NetopeerBundle/Tests/_files/completeRequestTree/turing-machine-gdefs.rng -------------------------------------------------------------------------------- /src/FIT/NetopeerBundle/Tests/_files/completeRequestTree/wrapped.wyin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/src/FIT/NetopeerBundle/Tests/_files/completeRequestTree/wrapped.wyin -------------------------------------------------------------------------------- /src/FIT/NetopeerBundle/Tests/_files/completeRequestTree/wrapped.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/src/FIT/NetopeerBundle/Tests/_files/completeRequestTree/wrapped.xml -------------------------------------------------------------------------------- /src/FIT/NetopeerBundle/Tests/_files/completeRequestTree/wrapped_choice.wyin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/src/FIT/NetopeerBundle/Tests/_files/completeRequestTree/wrapped_choice.wyin -------------------------------------------------------------------------------- /src/FIT/NetopeerBundle/Tests/_files/completeRequestTree/wrapped_choice.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/src/FIT/NetopeerBundle/Tests/_files/completeRequestTree/wrapped_choice.xml -------------------------------------------------------------------------------- /src/FIT/NetopeerBundle/Tests/_files/completeRequestTree/wrapped_ofconfig.wyin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/src/FIT/NetopeerBundle/Tests/_files/completeRequestTree/wrapped_ofconfig.wyin -------------------------------------------------------------------------------- /src/FIT/NetopeerBundle/Tests/_files/completeRequestTree/wrapped_ofconfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/src/FIT/NetopeerBundle/Tests/_files/completeRequestTree/wrapped_ofconfig.xml -------------------------------------------------------------------------------- /src/FIT/NetopeerBundle/Tests/codeception.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/src/FIT/NetopeerBundle/Tests/codeception.yml -------------------------------------------------------------------------------- /src/FIT/NetopeerBundle/Twig/NetopeerTwigExtension.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/src/FIT/NetopeerBundle/Twig/NetopeerTwigExtension.php -------------------------------------------------------------------------------- /src/FIT/NetopeerBundle/bin/find-identities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/src/FIT/NetopeerBundle/bin/find-identities.py -------------------------------------------------------------------------------- /src/FIT/NetopeerBundle/bin/find-identities.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/src/FIT/NetopeerBundle/bin/find-identities.sh -------------------------------------------------------------------------------- /src/FIT/NetopeerBundle/bin/netconfwebgui-postinstall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/src/FIT/NetopeerBundle/bin/netconfwebgui-postinstall.sh -------------------------------------------------------------------------------- /src/FIT/NetopeerBundle/bin/nmp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/src/FIT/NetopeerBundle/bin/nmp.sh -------------------------------------------------------------------------------- /web/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/web/.htaccess -------------------------------------------------------------------------------- /web/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/web/app.php -------------------------------------------------------------------------------- /web/app_dev.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/web/app_dev.php -------------------------------------------------------------------------------- /web/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/web/apple-touch-icon.png -------------------------------------------------------------------------------- /web/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/web/config.php -------------------------------------------------------------------------------- /web/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/web/favicon.ico -------------------------------------------------------------------------------- /web/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/web/robots.txt --------------------------------------------------------------------------------