NetopeerGUI - JSON test
27 | 28 | 29 | 30 | 31 |36 |
├── app ├── .htaccess ├── cache │ └── .gitignore ├── logs │ └── .gitignore ├── AppCache.php ├── autoload.php ├── Resources │ └── views │ │ └── base.html.twig ├── config │ ├── config_test.yml │ ├── routing_dev.yml │ ├── config_prod.yml │ ├── parameters.yml.dist │ ├── routing.yml │ ├── config_dev.yml │ └── config.yml ├── console ├── phpunit.xml.dist ├── AppKernel.php └── check.php ├── bin ├── .htaccess ├── doctrine └── doctrine.php ├── src ├── .htaccess └── FIT │ ├── NetopeerBundle │ ├── Resources │ │ ├── doc │ │ │ └── .gitignore │ │ ├── public │ │ │ ├── .gitignore │ │ │ ├── images │ │ │ │ ├── ico │ │ │ │ │ ├── info.png │ │ │ │ │ ├── ok.png │ │ │ │ │ ├── error.png │ │ │ │ │ ├── 16_alerts.png │ │ │ │ │ ├── 16_home.png │ │ │ │ │ ├── 16_kill.png │ │ │ │ │ ├── 16_lock.png │ │ │ │ │ ├── 16_unlock.png │ │ │ │ │ ├── 24_home.png │ │ │ │ │ ├── 16_download.png │ │ │ │ │ ├── 16_refresh.png │ │ │ │ │ ├── 16_session.png │ │ │ │ │ ├── 16_arrow_down.png │ │ │ │ │ └── 16_users-o50.png │ │ │ │ ├── ajax-loader.gif │ │ │ │ └── loading-bar.gif │ │ │ ├── style │ │ │ │ ├── ui-lightness │ │ │ │ │ └── images │ │ │ │ │ │ ├── animated-overlay.gif │ │ │ │ │ │ ├── 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 │ │ │ │ │ │ ├── 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_75_ffe45c_1x100.png │ │ │ │ │ │ ├── ui-bg_diagonals-thick_18_b81900_40x40.png │ │ │ │ │ │ ├── ui-bg_diagonals-thick_20_666666_40x40.png │ │ │ │ │ │ └── ui-bg_highlight-soft_100_eeeeee_1x100.png │ │ │ │ ├── print.css │ │ │ │ └── ie.css │ │ │ ├── sass │ │ │ │ ├── print.scss │ │ │ │ ├── ie.scss │ │ │ │ └── custom-variables.scss │ │ │ ├── js │ │ │ │ └── bootstrap │ │ │ │ │ └── Bootstrap-3-Typeahead │ │ │ │ │ └── bower.json │ │ │ └── config.rb │ │ ├── translations │ │ │ └── messages.fr.xliff │ │ ├── views │ │ │ ├── Security │ │ │ │ └── logout.html.twig │ │ │ ├── Generate │ │ │ │ └── generateXMLFromModel.html.twig │ │ │ ├── Ajax │ │ │ │ ├── lookupip.html.twig │ │ │ │ └── historyOfConnectedDevices.html.twig │ │ │ └── Registration │ │ │ │ └── register.html.twig │ │ └── config │ │ │ ├── routing.yml │ │ │ └── functionality.yml │ ├── Tests │ │ ├── Codeception │ │ │ ├── _data │ │ │ │ └── dump.sql │ │ │ ├── acceptance │ │ │ │ ├── _bootstrap.php │ │ │ │ ├── ConnectionsCest.php │ │ │ │ ├── InterfacesConfigureCest.php │ │ │ │ ├── NacmConfigureCest.php │ │ │ │ └── DatastoreConfigureCest.php │ │ │ ├── functional │ │ │ │ ├── _bootstrap.php │ │ │ │ └── FormCest.php │ │ │ ├── _helpers │ │ │ │ ├── WebHelper.php │ │ │ │ ├── CodeHelper.php │ │ │ │ └── TestHelper.php │ │ │ ├── _bootstrap.php │ │ │ ├── functional.suite.yml │ │ │ ├── acceptance.suite.yml │ │ │ └── _support │ │ │ │ └── CommonScenarios.php │ │ ├── _files │ │ │ ├── MockClass │ │ │ │ └── Data.php │ │ │ └── completeRequestTree │ │ │ │ ├── turing-machine-data.dsrl │ │ │ │ ├── turing-machine-data.sch │ │ │ │ ├── turing-machine-gdefs.rng │ │ │ │ └── turing-machine-data.rng │ │ ├── codeception.yml │ │ └── Selenium │ │ │ ├── phpunit.xml │ │ │ └── LoginTestCase.php │ ├── FITNetopeerBundle.php │ ├── Form │ │ └── UserType.php │ ├── bin │ │ ├── netconfwebgui-postinstall.sh │ │ └── find-identities.sh │ ├── Controller │ │ ├── RegistrationController.php │ │ └── ModuleControllerInterface.php │ ├── DependencyInjection │ │ ├── Configuration.php │ │ └── FITNetopeerExtension.php │ └── Entity │ │ └── UserSettings.php │ └── Bundle │ ├── ModuleXmlBundle │ ├── Resources │ │ ├── public │ │ │ ├── js │ │ │ │ └── module-xml.js │ │ │ └── style │ │ │ │ └── module-xml.css │ │ ├── views │ │ │ ├── layout.html.twig │ │ │ └── Module │ │ │ │ └── section.html.twig │ │ └── config │ │ │ └── services.xml │ ├── FITModuleXmlBundle.php │ ├── DependencyInjection │ │ ├── Configuration.php │ │ └── FITModuleXmlExtension.php │ └── Controller │ │ └── ModuleController.php │ └── ModuleDefaultBundle │ ├── Resources │ ├── public │ │ ├── .gitignore │ │ ├── netopeerangular │ │ │ ├── README.md │ │ │ ├── css │ │ │ │ ├── fonts │ │ │ │ ├── stylesheets │ │ │ │ │ ├── print.css │ │ │ │ │ └── ie.css │ │ │ │ ├── sass │ │ │ │ │ ├── print.scss │ │ │ │ │ └── ie.scss │ │ │ │ └── config.rb │ │ │ ├── bower_components │ │ │ │ ├── font-awesome-sass │ │ │ │ │ ├── Rakefile │ │ │ │ │ ├── lib │ │ │ │ │ │ ├── font_awesome │ │ │ │ │ │ │ └── sass │ │ │ │ │ │ │ │ ├── version.rb │ │ │ │ │ │ │ │ └── rails │ │ │ │ │ │ │ │ ├── railtie.rb │ │ │ │ │ │ │ │ ├── engine.rb │ │ │ │ │ │ │ │ └── helpers.rb │ │ │ │ │ │ └── font-awesome-sass.rb │ │ │ │ │ ├── Gemfile │ │ │ │ │ ├── assets │ │ │ │ │ │ ├── stylesheets │ │ │ │ │ │ │ ├── _font-awesome-sprockets.scss │ │ │ │ │ │ │ ├── _font-awesome-compass.scss │ │ │ │ │ │ │ ├── font-awesome │ │ │ │ │ │ │ │ ├── _fixed-width.scss │ │ │ │ │ │ │ │ ├── _larger.scss │ │ │ │ │ │ │ │ ├── _list.scss │ │ │ │ │ │ │ │ ├── _core.scss │ │ │ │ │ │ │ │ ├── _stacked.scss │ │ │ │ │ │ │ │ ├── _bordered-pulled.scss │ │ │ │ │ │ │ │ ├── _rotated-flipped.scss │ │ │ │ │ │ │ │ ├── _animated.scss │ │ │ │ │ │ │ │ ├── _mixins.scss │ │ │ │ │ │ │ │ ├── _path.scss │ │ │ │ │ │ │ │ └── _extras.scss │ │ │ │ │ │ │ └── font-awesome.scss │ │ │ │ │ │ └── fonts │ │ │ │ │ │ │ └── font-awesome │ │ │ │ │ │ │ ├── fontawesome-webfont.eot │ │ │ │ │ │ │ ├── fontawesome-webfont.ttf │ │ │ │ │ │ │ ├── fontawesome-webfont.woff │ │ │ │ │ │ │ └── fontawesome-webfont.woff2 │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── .bower.json │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ ├── font-awesome-sass.gemspec │ │ │ │ │ └── README.md │ │ │ │ └── angular-ui-sortable │ │ │ │ │ └── sortable.min.js │ │ │ ├── .gitignore │ │ │ ├── js │ │ │ │ ├── directives │ │ │ │ │ ├── switchItem.js │ │ │ │ │ └── addItem.js │ │ │ │ └── services │ │ │ │ │ └── ajaxService.js │ │ │ ├── templates │ │ │ │ ├── types │ │ │ │ │ ├── Array.html │ │ │ │ │ ├── List.html │ │ │ │ │ └── Object.html │ │ │ │ ├── directives │ │ │ │ │ ├── switchItem.html │ │ │ │ │ └── addItem.html │ │ │ │ └── main │ │ │ │ │ └── view.html │ │ │ ├── package.json │ │ │ ├── gulpfile.js │ │ │ ├── bower.json │ │ │ ├── data │ │ │ │ ├── test.xml │ │ │ │ └── get.json │ │ │ ├── LICENSE │ │ │ └── index.html │ │ ├── images │ │ │ ├── dot.png │ │ │ └── ico │ │ │ │ ├── add_child.png │ │ │ │ ├── sort_item.png │ │ │ │ ├── add_sibling.png │ │ │ │ └── remove_child.png │ │ ├── config.rb │ │ └── js │ │ │ └── module-default.js │ ├── config │ │ └── services.xml │ └── views │ │ ├── Module │ │ ├── subsection.html.twig │ │ └── showRPCForm.html.twig │ │ ├── layout.html.twig │ │ └── Config │ │ └── parent.html.twig │ ├── FITModuleDefaultBundle.php │ └── DependencyInjection │ ├── Configuration.php │ └── FITModuleDefaultExtension.php ├── install ├── bootstrap.sh ├── .gitignore ├── Vagrantfile ├── netopeergui.conf.in ├── Makefile.am ├── centos7 │ └── install.sh ├── ubuntu │ └── Vagrantfile └── configure.ac ├── composer.phar ├── web ├── favicon.ico ├── apple-touch-icon.png ├── robots.txt ├── app.php ├── app_dev.php └── .htaccess ├── screenshots ├── rpc-1.png ├── rpc-2.png ├── rpc-3.png ├── rpc-4.png ├── rpc-5.png ├── rpc-6.png ├── rpc-7.png ├── backup-1.png ├── backup-2.png ├── backup-3.png ├── notif-1.png ├── notif-2.png ├── validate-1.png ├── validate-2.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.png ├── datastores-5.png ├── insertion-1.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.png ├── main-screen-1.png ├── main-screen-2.png ├── main-screen-3.png ├── main-screen-4.png ├── main-screen-5.png ├── main-screen.png ├── userorder-1-2.png ├── userorder-1.png ├── userorder-2.png ├── userorder-3.png ├── datastores-4-2.png ├── insertion-10-2.png ├── login-screen-1.png ├── login-screen-2.png ├── main-screen-3-2.png └── logo-cesnet-inverted.png ├── .gitmodules ├── .gitignore ├── install-no-composer.sh ├── LICENSE └── composer.json /app/.htaccess: -------------------------------------------------------------------------------- 1 | deny from all -------------------------------------------------------------------------------- /bin/.htaccess: -------------------------------------------------------------------------------- 1 | deny from all -------------------------------------------------------------------------------- /src/.htaccess: -------------------------------------------------------------------------------- 1 | deny from all -------------------------------------------------------------------------------- /app/cache/.gitignore: -------------------------------------------------------------------------------- 1 | [^.]* 2 | 3 | -------------------------------------------------------------------------------- /app/logs/.gitignore: -------------------------------------------------------------------------------- 1 | [^.]* 2 | 3 | -------------------------------------------------------------------------------- /bin/doctrine: -------------------------------------------------------------------------------- 1 | ../vendor/doctrine/orm/bin/doctrine -------------------------------------------------------------------------------- /bin/doctrine.php: -------------------------------------------------------------------------------- 1 | ../vendor/doctrine/orm/bin/doctrine.php -------------------------------------------------------------------------------- /install/bootstrap.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | autoreconf -fi 3 | -------------------------------------------------------------------------------- /src/FIT/NetopeerBundle/Resources/doc/.gitignore: -------------------------------------------------------------------------------- 1 | [^.]* 2 | -------------------------------------------------------------------------------- /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/ModuleDefaultBundle/Resources/public/.gitignore: -------------------------------------------------------------------------------- 1 | .sass-cache 2 | -------------------------------------------------------------------------------- /src/FIT/Bundle/ModuleDefaultBundle/Resources/public/netopeerangular/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /composer.phar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/composer.phar -------------------------------------------------------------------------------- /web/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/web/favicon.ico -------------------------------------------------------------------------------- /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/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/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 -------------------------------------------------------------------------------- /src/FIT/NetopeerBundle/Resources/public/.gitignore: -------------------------------------------------------------------------------- 1 | ./docu 2 | .sass-cache 3 | style/variables.css 4 | -------------------------------------------------------------------------------- /web/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/web/apple-touch-icon.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 -------------------------------------------------------------------------------- /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.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.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.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/screenshots/login-screen.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.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/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 -------------------------------------------------------------------------------- /src/FIT/NetopeerBundle/Tests/Codeception/_data/dump.sql: -------------------------------------------------------------------------------- 1 | /* Replace this file with actual dump of your database */ -------------------------------------------------------------------------------- /screenshots/datastores-4-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/screenshots/datastores-4-2.png -------------------------------------------------------------------------------- /screenshots/insertion-10-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/screenshots/insertion-10-2.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/main-screen-3-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/screenshots/main-screen-3-2.png -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- 1 | [submodule "netopeerguid"] 2 | path = install/netopeerguid 3 | url = https://github.com/CESNET/netopeerguid 4 | -------------------------------------------------------------------------------- /screenshots/logo-cesnet-inverted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/Netopeer-GUI/HEAD/screenshots/logo-cesnet-inverted.png -------------------------------------------------------------------------------- /src/FIT/Bundle/ModuleDefaultBundle/Resources/public/netopeerangular/css/fonts: -------------------------------------------------------------------------------- 1 | ../bower_components/font-awesome-sass/assets/fonts -------------------------------------------------------------------------------- /web/robots.txt: -------------------------------------------------------------------------------- 1 | # www.robotstxt.org/ 2 | # www.google.com/support/webmasters/bin/answer.py?hl=en&answer=156449 3 | 4 | User-agent: * 5 | -------------------------------------------------------------------------------- /src/FIT/Bundle/ModuleDefaultBundle/Resources/public/netopeerangular/bower_components/font-awesome-sass/Rakefile: -------------------------------------------------------------------------------- 1 | require "bundler/gem_tasks" 2 | -------------------------------------------------------------------------------- /src/FIT/NetopeerBundle/Tests/Codeception/acceptance/_bootstrap.php: -------------------------------------------------------------------------------- 1 | */ 4 | -------------------------------------------------------------------------------- /src/FIT/NetopeerBundle/Resources/public/style/print.css: -------------------------------------------------------------------------------- 1 | /* Welcome to Compass. Use this file to define print styles. 2 | * Import this file using the following HTML or equivalent: 3 | * */ 4 | -------------------------------------------------------------------------------- /src/FIT/Bundle/ModuleDefaultBundle/Resources/public/netopeerangular/bower_components/font-awesome-sass/assets/stylesheets/font-awesome/_fixed-width.scss: -------------------------------------------------------------------------------- 1 | // Fixed Width Icons 2 | // ------------------------- 3 | .#{$fa-css-prefix}-fw { 4 | width: (18em / 14); 5 | text-align: center; 6 | } 7 | -------------------------------------------------------------------------------- /src/FIT/Bundle/ModuleDefaultBundle/Resources/public/netopeerangular/css/stylesheets/print.css: -------------------------------------------------------------------------------- 1 | /* Welcome to Compass. Use this file to define print styles. Import this file using the following HTML or equivalent: */ 2 | -------------------------------------------------------------------------------- /src/FIT/Bundle/ModuleDefaultBundle/Resources/public/netopeerangular/css/sass/print.scss: -------------------------------------------------------------------------------- 1 | /* Welcome to Compass. Use this file to define print styles. 2 | * Import this file using the following HTML or equivalent: 3 | * */ 4 | -------------------------------------------------------------------------------- /src/FIT/NetopeerBundle/Resources/public/sass/ie.scss: -------------------------------------------------------------------------------- 1 | /* Welcome to Compass. Use this file to write IE specific override styles. 2 | * Import this file using the following HTML or equivalent: 3 | * */ 6 | -------------------------------------------------------------------------------- /src/FIT/NetopeerBundle/Resources/public/style/ie.css: -------------------------------------------------------------------------------- 1 | /* Welcome to Compass. Use this file to write IE specific override styles. 2 | * Import this file using the following HTML or equivalent: 3 | * */ 6 | -------------------------------------------------------------------------------- /app/autoload.php: -------------------------------------------------------------------------------- 1 | */ 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.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 -------------------------------------------------------------------------------- /install/Vagrantfile: -------------------------------------------------------------------------------- 1 | # -*- mode: ruby -*- 2 | # vi: set ft=ruby : 3 | 4 | Vagrant.configure(2) do |config| 5 | config.vm.box = "centos/7" 6 | config.ssh.insert_key = false 7 | 8 | config.vm.network "forwarded_port", guest: 80, host: 2280 9 | 10 | config.vm.provision "shell" do |s| 11 | s.path = "centos7/install.sh" 12 | end 13 | end 14 | -------------------------------------------------------------------------------- /src/FIT/Bundle/ModuleDefaultBundle/Resources/public/netopeerangular/css/sass/ie.scss: -------------------------------------------------------------------------------- 1 | /* Welcome to Compass. Use this file to write IE specific override styles. 2 | * Import this file using the following HTML or equivalent: 3 | * */ 6 | -------------------------------------------------------------------------------- /src/FIT/Bundle/ModuleDefaultBundle/Resources/public/netopeerangular/bower_components/font-awesome-sass/.gitignore: -------------------------------------------------------------------------------- 1 | *.gem 2 | *.rbc 3 | .idea 4 | .bundle 5 | .config 6 | .yardoc 7 | .DS_Store 8 | Gemfile.lock 9 | InstalledFiles 10 | _yardoc 11 | coverage 12 | doc/ 13 | lib/bundler/man 14 | pkg 15 | rdoc 16 | spec/reports 17 | test/tmp 18 | test/version_tmp 19 | tmp 20 | -------------------------------------------------------------------------------- /src/FIT/NetopeerBundle/FITNetopeerBundle.php: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 |
18 | {{ yangSchema }}
19 |
20 |
56 | {{ stateArr.asXml|trim }}
57 |
58 | {% endif %}
59 |
60 | {% endif %}
61 | {% endblock singleContent %}
62 | {% endblock state %}
63 |
64 | {% block config %}
65 |
70 | {{ configArr.asXml|trim }}
71 |
72 | {% endif %}
73 | {% endblock config %}
74 |
75 |
--------------------------------------------------------------------------------
/install/configure.ac:
--------------------------------------------------------------------------------
1 | # -*- Autoconf -*-
2 | # Process this file with autoconf to produce a configure script.
3 |
4 | AC_PREREQ([2.63])
5 | AC_INIT([netopeergui], [2.0.0], [cejkat@cesnet.cz])
6 | AM_INIT_AUTOMAKE([foreign silent-rules tar-pax])
7 |
8 | USERNAME=`git config --get user.name`
9 | USERMAIL=`git config --get user.email`
10 | AC_SUBST(USERNAME)
11 | AC_SUBST(USERMAIL)
12 |
13 | RELEASE=1
14 | AC_SUBST(RELEASE)
15 |
16 | if test "x$webguidir" == x; then
17 | webguidir=$(cd ..; dirname $PWD)
18 | fi
19 | AC_ARG_VAR(webguidir, [Installation directory for webgui [/var/www]])
20 | AC_SUBST(webguidir)
21 |
22 | if test "x$webguiname" == x; then
23 | webguiname=$(cd ..; basename $PWD)
24 | fi
25 | AC_ARG_VAR(webguiname, [Installation directory name for webgui [netopeergui]])
26 | AC_SUBST(webguiname)
27 |
28 | if test "x$httpdconfddir" == x; then
29 | httpdconfddir="/etc/httpd/conf.d"
30 | fi
31 | AC_ARG_VAR(httpdconfddir, [Directory for Apache configuration files [/etc/httpd/conf.d]])
32 | AC_SUBST(httpdconfddir)
33 |
34 | AC_ARG_WITH(netopeerguid, AC_HELP_STRING([--without-netopeerguid],[Do not compile and install netopeerguid.]), [], [with_netopeerguid="yes"])
35 | AM_CONDITIONAL([NETOPEERGUID_OPT], [test "x$with_netopeerguid" != "xno"])
36 |
37 | # Check for rpmbuild
38 | AC_CHECK_PROG(RPMBUILD, [rpmbuild], [rpmbuild], [""])
39 | AC_CHECK_PROG(HTTPD, [httpd], [yes], [""])
40 | AC_PATH_PROGS(APACHECTL, apachectl apache2ctl, no, [$PATH:/usr/sbin])
41 |
42 | AC_PATH_PROGS(PHP, php, [no], [$PATH])
43 | if test "x$PHP" != xno; then
44 | for i in dom json xml pdo intl sysvsem; do
45 | AC_MSG_CHECKING([for php module $i])
46 | php -m | grep "$i" > /dev/null && AC_MSG_RESULT([yes]) || AC_MSG_ERROR([not found])
47 | done
48 | else
49 | AC_MSG_ERROR([php was not found])
50 | fi
51 | AC_SUBST(PHP)
52 |
53 | # Check for rpmbuild
54 | AC_CHECK_PROG(RPMBUILD, rpmbuild, rpmbuild, [""])
55 | RPM_RELEASE=1
56 | AC_SUBST(RPM_RELEASE)
57 | AM_CONDITIONAL(MAKE_RPMS, test x$RPMBUILD != x)
58 |
59 | # Checks for libraries.
60 |
61 | # Checks for header files.
62 |
63 | # Checks for typedefs, structures, and compiler characteristics.
64 |
65 | # Checks for library functions.
66 |
67 | AC_CONFIG_SUBDIRS(netopeerguid)
68 | AC_CONFIG_FILES([Makefile
69 | netopeergui.conf])
70 | AC_OUTPUT
71 |
72 | echo
73 | echo
74 | echo "------------------------------------------------------------------------"
75 | echo "$PACKAGE $VERSION"
76 | echo "------------------------------------------------------------------------"
77 | echo
78 | echo
79 | echo "Configuration Options Summary:"
80 | echo
81 | echo "Documentation..........: ${build_doc}"
82 | echo
83 | echo "Compilation............: make (or gmake)"
84 | echo " asxs.................: $ASXS"
85 | echo " LIBS.................: $LIBS"
86 | echo " CFLAGS...............: $CFLAGS"
87 | echo
88 | echo "Components"
89 | echo " netopeerguid.........: $with_netopeerguid"
90 | echo
91 | echo "Installation...........: make install (as root if needed, with 'su' or 'sudo')"
92 | echo " prefix...............: $prefix"
93 | echo " python module dir....: $pyplugindir"
94 | echo " webgui dir...........: $webguidir"
95 | echo " webgui name..........: $webguiname"
96 | echo " httpdconfddir........: $(test -z "$httpdconfddir" && echo "Apache default path" || echo "$httpdconfddir")"
97 | echo
98 |
99 |
--------------------------------------------------------------------------------
/src/FIT/NetopeerBundle/Resources/views/Ajax/historyOfConnectedDevices.html.twig:
--------------------------------------------------------------------------------
1 | {#
2 | @author David Alexa | {{ type }} | 31 |{{ child['$@'+$parent.keyName][type] }} | 32 |