├── .gitignore ├── CHANGELOG ├── Capfile ├── Gemfile ├── Gemfile.lock ├── Gestpay-instructions.rdoc ├── README.license ├── README.md ├── Rakefile ├── VERSION ├── app ├── controllers │ ├── account_sessions_controller.rb │ ├── accounts_controller.rb │ ├── application_controller.rb │ ├── configurations_controller.rb │ ├── email_password_resets_controller.rb │ ├── mobile_phone_password_resets_controller.rb │ ├── online_users_controller.rb │ ├── operator_sessions_controller.rb │ ├── operators_controller.rb │ ├── password_resets_controller.rb │ ├── radius_accountings_controller.rb │ ├── radius_checks_controller.rb │ ├── radius_groups_controller.rb │ ├── radius_replies_controller.rb │ ├── social_auth_controller.rb │ ├── spoken_captcha_controller.rb │ ├── stats_controller.rb │ └── users_controller.rb ├── helpers │ ├── accounts_helper.rb │ ├── application_helper.rb │ └── users_helper.rb ├── mailers │ └── notifier.rb ├── models │ ├── account.rb │ ├── account_common.rb │ ├── account_session.rb │ ├── associated_user.rb │ ├── configuration.rb │ ├── country.rb │ ├── credit_card_transaction.rb │ ├── invoice.rb │ ├── mobile_prefix.rb │ ├── online_user.rb │ ├── operator.rb │ ├── operator_session.rb │ ├── radius_accounting.rb │ ├── radius_check.rb │ ├── radius_group.rb │ ├── radius_nas.rb │ ├── radius_reply.rb │ ├── role.rb │ ├── social_auth.rb │ └── user.rb └── views │ ├── account_sessions │ ├── new.html.erb │ ├── new.mobile.erb │ └── new.xml.builder │ ├── accounts │ ├── _credit_card_form.html.erb │ ├── _credit_card_form.mobile.erb │ ├── _expired.html.erb │ ├── _expired.mobile.erb │ ├── _form.html.erb │ ├── _form.mobile.erb │ ├── _verification.html.erb │ ├── _verification.mobile.erb │ ├── _verification_periodic_check.html.erb │ ├── additional_fields.html.erb │ ├── additional_fields.mobile.erb │ ├── edit.html.erb │ ├── edit.mobile.erb │ ├── edit.xml.builder │ ├── expired.html.erb │ ├── expired.mobile.erb │ ├── gestpay_verified_by_visa_error.html.erb │ ├── gestpay_verified_by_visa_error.mobile.erb │ ├── gestpay_verify_credit_card.js.erb │ ├── instructions.html.erb │ ├── instructions.mobile.erb │ ├── new.html.erb │ ├── new.mobile.erb │ ├── new.xml.builder │ ├── no_verification.html.erb │ ├── no_verification.mobile.erb │ ├── show.html.erb │ ├── show.jpg.flexi │ ├── show.js.erb │ ├── show.mobile.erb │ ├── show.xml.builder │ ├── verification.html.erb │ ├── verification.mobile.erb │ └── verification.xml.builder │ ├── common │ ├── _radius_accounting_list.html.erb │ ├── _radius_accounting_list.mobile.erb │ ├── _radius_accounting_list_brief.html.erb │ ├── _top_traffic_users_brief.html.erb │ ├── abuse.html.erb │ ├── form_elements │ │ ├── _credit_card.html.erb │ │ ├── _credit_card.mobile.erb │ │ ├── _identity_document.html.erb │ │ ├── _identity_document.mobile.erb │ │ ├── _mobile_phone.html.erb │ │ ├── _mobile_phone.mobile.erb │ │ ├── _password_reset.html.erb │ │ ├── _password_reset.mobile.erb │ │ ├── _personal_data.html.erb │ │ └── _personal_data.mobile.erb │ ├── invalid_token.html.erb │ └── invalid_token.mobile.erb │ ├── configurations │ ├── edit.html.erb │ └── index.html.erb │ ├── email_password_resets │ ├── edit.html.erb │ ├── edit.mobile.erb │ ├── edit.xml.builder │ ├── new.html.erb │ ├── new.mobile.erb │ └── new.xml.builder │ ├── exception_notifier │ └── _authlogic.text.erb │ ├── kaminari │ ├── _first_page.html.erb │ ├── _gap.html.erb │ ├── _last_page.html.erb │ ├── _next_page.html.erb │ ├── _page.html.erb │ ├── _paginator.html.erb │ └── _prev_page.html.erb │ ├── layouts │ ├── application.html.erb │ ├── application.mobile.erb │ └── application.xml.builder │ ├── mobile_phone_password_resets │ ├── _verification.html.erb │ ├── _verification.mobile.erb │ ├── edit.html.erb │ ├── edit.mobile.erb │ ├── edit.xml.builder │ ├── new.html.erb │ ├── new.mobile.erb │ ├── new.xml.builder │ ├── recovery_confirmation.html.erb │ ├── recovery_confirmation.mobile.erb │ ├── recovery_confirmation.xml.builder │ ├── verification.html.erb │ ├── verification.mobile.erb │ └── verification.xml.builder │ ├── notifier │ ├── password_reset_instructions.text.erb │ └── send_invoice_to_admin.text.erb │ ├── online_users │ └── index.xml.builder │ ├── operator_sessions │ └── new.html.erb │ ├── operators │ ├── _form.html.erb │ ├── edit.html.erb │ ├── index.html.erb │ ├── new.html.erb │ └── show.html.erb │ ├── password_resets │ ├── new.html.erb │ └── new.mobile.erb │ ├── radius_accountings │ └── index.xml.builder │ ├── radius_checks │ ├── _form.html.erb │ ├── _list.html.erb │ ├── edit.html.erb │ ├── new.html.erb │ └── show.html.erb │ ├── radius_groups │ ├── _form.html.erb │ ├── _list.html.erb │ ├── edit.html.erb │ ├── index.html.erb │ ├── new.html.erb │ └── show.html.erb │ ├── radius_replies │ ├── _form.html.erb │ ├── _list.html.erb │ ├── edit.html.erb │ └── new.html.erb │ ├── simple_captcha │ └── _simple_captcha.erb │ ├── stats │ ├── graphs │ │ ├── _account_logins.json.erb │ │ ├── _account_traffic.json.erb │ │ ├── _logins.html.erb │ │ ├── _logins.json.erb │ │ ├── _registered_users.html.erb │ │ ├── _registered_users.json.erb │ │ ├── _registered_users_daily.html.erb │ │ ├── _registered_users_daily.json.erb │ │ ├── _traffic.html.erb │ │ ├── _traffic.json.erb │ │ ├── _user_logins.json.erb │ │ └── _user_traffic.json.erb │ ├── index.html.erb │ ├── info_boxes │ │ ├── _last_logins.js.erb │ │ ├── _last_registered.js.erb │ │ └── _top_traffic_users.js.erb │ ├── show.html.erb │ ├── show.js.erb │ └── show.json.erb │ └── users │ ├── _form.html.erb │ ├── _list.html.erb │ ├── _list_brief.html.erb │ ├── _radius_group_select.html.erb │ ├── edit.html.erb │ ├── index.html.erb │ ├── index.js.erb │ ├── new.html.erb │ ├── search.html.erb │ ├── show.html.erb │ ├── show.jpg.flexi │ ├── show.js.erb │ └── ticket.html.erb ├── certs └── .gitignore ├── config.ru ├── config ├── application.rb ├── backgroundrb.yml ├── boot.rb ├── config.default.yml ├── daemons.yml ├── database.yml.example ├── deploy.rb ├── deploy │ └── example.host.it ├── environment.rb ├── environments │ ├── development.rb │ ├── production.rb │ └── test.rb ├── initializers │ ├── 01_sentry.rb │ ├── acl9.rb │ ├── backtrace_silencers.rb │ ├── easy_captcha.rb │ ├── exception_notification.rb │ ├── gestpay.rb │ ├── inflections.rb │ ├── logger_message_format.rb │ ├── mime_types.rb │ ├── mini_profiler.rb │ ├── owmw.rb │ ├── require_external_commands.rb │ ├── secret_token.rb │ ├── session_store.rb │ ├── simple_form.rb │ └── social_login.rb ├── locales │ ├── de.yml │ ├── en.yml │ ├── es.yml │ ├── fur.yml │ ├── it.yml │ ├── owums.de.yml │ ├── owums.en.yml │ ├── owums.es.yml │ ├── owums.fur.yml │ ├── owums.it.yml │ ├── owums.sl.yml │ └── sl.yml ├── owmw.yml.example ├── preinitializer.rb └── routes.rb ├── db ├── fixtures │ ├── configurations.yml │ ├── countries.yml │ ├── dictionary.yml │ ├── mobile_prefixes.yml │ ├── nas.yml │ ├── radius_checks.yml │ ├── radius_groups.yml │ └── radius_replies.yml ├── migrate │ ├── 20090919154910_create_operators.rb │ ├── 20090920121738_create_roles.rb │ ├── 20090920121954_create_operators_roles.rb │ ├── 20091227122908_create_users.rb │ ├── 20091227133453_create_sessions.rb │ ├── 20091228102900_create_radius_groups.rb │ ├── 20091228103337_create_radius_groups_users.rb │ ├── 20091228110343_create_radius_replies.rb │ ├── 20091228110359_create_radius_checks.rb │ ├── 20091228173405_create_radius_stuff.rb │ ├── 20100105150432_create_backgroundrb_queue_table.rb │ ├── 20100114113944_create_configurations.rb │ ├── 20100115150513_create_mobile_prefixes.rb │ ├── 20100115150746_create_countries.rb │ ├── 20110317145357_add_more_indexes.rb │ ├── 20110614081842_remove_timestamps_from_radius_groups_users.rb │ ├── 20110614081904_remove_timestamps_from_operators_roles.rb │ ├── 20120330100718_rename_radius_attribute_attribute.rb │ ├── 20120508143312_add_note_to_radius_groups.rb │ ├── 20120509150547_fix_radius_check_and_reply_views.rb │ ├── 20120512103045_add_notes_to_users.rb │ ├── 20121203110128_optional_user_fields.rb │ ├── 20130204104618_add_creditcardinfo_to_users.rb │ ├── 20130306151353_add_configuration_keys.rb │ ├── 20130314133354_add_roles_to_admin.rb │ ├── 20130523082716_add_new_configuration_keys.rb │ ├── 20130524081315_create_invoices.rb │ ├── 20130619082839_add_webservice_method_configs.rb │ ├── 20130821133539_add_spanish_translations.rb │ ├── 20130826101227_add_unique_key_to_username.rb │ ├── 20140408155422_add_invoicing_configurationkey.rb │ ├── 20140409142151_add_fur_language_config_keys.rb │ ├── 20140415095736_create_credit_card_transactions.rb │ ├── 20140626093613_add_sl_language_config_keys.rb │ ├── 20140630141524_optimize_indexes_radacct.rb │ ├── 20140804133259_optimize_indexes_user.rb │ ├── 20140908132846_sl_data_migration.rb │ ├── 20140908144456_fur_data_migration.rb │ ├── 20150127184426_de_data_migration.rb │ ├── 20150422124519_clean_unused_mobile_phones.rb │ ├── 20150427135816_create_social_auth.rb │ ├── 20150505102206_social_enabled_data_migration.rb │ ├── 20160125135035_add_index_persistence_token.rb │ ├── 20160202174235_add_index_perishable_token.rb │ └── 20160309093849_add_radius_auth_user_fields.rb └── seeds.rb ├── doc ├── OWUMS-RESTful API.pages └── OWUMS-RESTful API.pdf ├── gpl.txt ├── invoices └── .gitignore ├── lib ├── daemons │ ├── mobile_phone_sip_busy_machine.rb │ └── mobile_phone_sip_busy_machine_ctl ├── mobile_phone_sip_busy_machine.rb ├── null_crypto_provider.rb ├── recipes │ ├── deploy.rb │ └── rails.rb ├── sip_busy_machine.rb ├── tasks │ ├── daemons_start_stop.rake │ ├── extract_fixtures.rake │ ├── load_fixtures.rake │ ├── radius_accountings.rake │ └── test_load_fixtures.rake └── workers │ └── house_keeper_worker.rb ├── log └── .gitignore ├── public ├── 404.html ├── 422.html ├── 500.html ├── documents │ ├── cookie.pdf │ ├── eula.pdf │ └── privacy.pdf ├── favicon.ico ├── images │ ├── accept.png │ ├── arrow_down.gif │ ├── arrow_up.gif │ ├── close.png │ ├── delete.png │ ├── disk.png │ ├── favicon.png │ ├── gestpay_new.png │ ├── gestpay_new_mobile.png │ ├── locale │ │ ├── de.jpg │ │ ├── en.jpg │ │ ├── es.jpg │ │ ├── fur.jpg │ │ ├── it.jpg │ │ └── sl.jpg │ ├── logo.png │ ├── openwisp-logo.png │ ├── openwisp.ico │ ├── paypal.png │ ├── rails.png │ ├── spinner.gif │ ├── spinner_black.gif │ ├── switch_minus.gif │ ├── switch_plus.gif │ └── visa-mastercard.png ├── javascripts │ ├── application-mobile.js │ ├── application.js │ ├── fluid16.js │ ├── highcharts.exporting.js │ ├── highcharts.js │ ├── jHtmlArea-0.7.5.min.js │ ├── jquery-ui.js │ ├── jquery.js │ ├── jquery.mobile.js │ ├── jquery.observe.js │ ├── jquery.password.js │ ├── jquery_ujs.js │ ├── owums.account_logins_graph.js │ ├── owums.account_traffic_graph.js │ ├── owums.graphs.js │ ├── owums.logins_graph.js │ ├── owums.registered_users_daily_graph.js │ ├── owums.registered_users_graph.js │ ├── owums.traffic_graph.js │ ├── owums.user_logins_graph.js │ └── owums.user_traffic_graph.js ├── robots.txt └── stylesheets │ ├── custom-ie.css │ ├── custom-mobile.css │ ├── custom-print.css │ ├── custom.css │ ├── fluid960 │ ├── 960.css │ ├── grid.css │ ├── ie.css │ ├── ie6.css │ ├── layout.css │ ├── nav.css │ ├── reset.css │ └── text.css │ ├── jHtmlArea │ ├── Readme.txt │ ├── jHtmlArea.Editor.css │ ├── jHtmlArea.css │ ├── jHtmlArea.png │ ├── jHtmlArea_Toolbar_Group_BG.png │ └── jHtmlArea_Toolbar_Group__Btn_Select_BG.png │ ├── jquery-ui │ ├── images │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ ├── ui-bg_flat_75_ffffff_40x100.png │ │ ├── ui-bg_glass_55_fbf9ee_1x400.png │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ ├── ui-bg_glass_75_dadada_1x400.png │ │ ├── ui-bg_glass_75_e6e6e6_1x400.png │ │ ├── ui-bg_highlight-soft_75_cccccc_1x100.png │ │ ├── ui-bg_inset-soft_95_fef1ec_1x100.png │ │ ├── ui-icons_222222_256x240.png │ │ ├── ui-icons_2e83ff_256x240.png │ │ ├── ui-icons_454545_256x240.png │ │ ├── ui-icons_888888_256x240.png │ │ └── ui-icons_cd0a0a_256x240.png │ └── styles.css │ └── jquery.mobile │ ├── images │ ├── ajax-loader.png │ ├── icon-search-black.png │ ├── icons-18-black.png │ ├── icons-18-white.png │ ├── icons-36-black.png │ └── icons-36-white.png │ └── styles.css ├── script ├── backgroundrb ├── load_worker_env.rb └── rails ├── test ├── bdrb_test_helper.rb ├── fixtures │ ├── configurations.yml │ ├── countries.yml │ ├── dictionary.yml │ ├── invoices.yml │ ├── mobile_prefixes.yml │ ├── nas.yml │ ├── operators.yml │ ├── operators_roles.yml │ ├── radius_checks.yml │ ├── radius_groups.yml │ ├── radius_replies.yml │ ├── roles.yml │ └── users.yml ├── functional │ ├── accounts_controller_test.rb │ ├── accounts_sessions_controller_test.rb │ ├── configurations_controller_test.rb │ ├── email_password_resets_controller_test.rb │ ├── online_users_controller_test.rb │ ├── operators_controller_test.rb │ ├── password_resets_controller_test.rb │ ├── user_sessions_controller_test.rb │ └── users_controller_test.rb ├── performance │ └── browsing_test.rb ├── test_helper.rb └── unit │ ├── account_test.rb │ ├── configuration_test.rb │ ├── country_test.rb │ ├── credit_card_transaction_test.rb │ ├── helpers │ ├── application_helper_test.rb │ ├── configurations_helper_test.rb │ ├── online_users_helper_test.rb │ ├── operators_helper_test.rb │ ├── password_resets_helper_test.rb │ ├── user_sessions_helper_test.rb │ └── users_helper_test.rb │ ├── invoice_test.rb │ ├── mobile_prefix_test.rb │ ├── nas_test.rb │ ├── notifier_test.rb │ ├── online_user_test.rb │ ├── radius_accounting_test.rb │ ├── radius_check_test.rb │ ├── radius_group_test.rb │ ├── radius_reply_test.rb │ ├── user_test.rb │ └── users_radius_groups_test.rb ├── tmp ├── cache │ └── .gitignore ├── pids │ └── .gitignore ├── sessions │ └── .gitignore ├── sockets │ └── .gitignore └── stat_exports │ └── .gitignore └── vendor └── plugins ├── daemon_generator ├── README ├── install.rb └── lib │ ├── generators │ └── daemon │ │ ├── USAGE │ │ ├── daemon_generator.rb │ │ └── templates │ │ ├── daemons │ │ ├── daemons.yml │ │ ├── script.rb │ │ └── script_ctl │ └── tasks │ └── daemon_generator.rake ├── dynamic_form ├── MIT-LICENSE ├── README ├── Rakefile ├── dynamic_form.gemspec ├── init.rb ├── lib │ ├── action_view │ │ ├── helpers │ │ │ └── dynamic_form.rb │ │ └── locale │ │ │ └── en.yml │ └── dynamic_form.rb └── test │ ├── dynamic_form_i18n_test.rb │ ├── dynamic_form_test.rb │ └── test_helper.rb └── mobile-fu ├── CHANGELOG ├── MIT-LICENSE ├── README.rdoc ├── Rakefile ├── init.rb ├── install.rb ├── lib ├── mobile_fu.rb ├── mobile_fu_helper.rb └── mobilized_styles.rb ├── spec ├── mobilized_styles_spec.rb └── spec_helper.rb └── uninstall.rb /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/CHANGELOG -------------------------------------------------------------------------------- /Capfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/Capfile -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /Gestpay-instructions.rdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/Gestpay-instructions.rdoc -------------------------------------------------------------------------------- /README.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/README.license -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/Rakefile -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 1.4b 2 | -------------------------------------------------------------------------------- /app/controllers/account_sessions_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/app/controllers/account_sessions_controller.rb -------------------------------------------------------------------------------- /app/controllers/accounts_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/app/controllers/accounts_controller.rb -------------------------------------------------------------------------------- /app/controllers/application_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/app/controllers/application_controller.rb -------------------------------------------------------------------------------- /app/controllers/configurations_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/app/controllers/configurations_controller.rb -------------------------------------------------------------------------------- /app/controllers/email_password_resets_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/app/controllers/email_password_resets_controller.rb -------------------------------------------------------------------------------- /app/controllers/mobile_phone_password_resets_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/app/controllers/mobile_phone_password_resets_controller.rb -------------------------------------------------------------------------------- /app/controllers/online_users_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/app/controllers/online_users_controller.rb -------------------------------------------------------------------------------- /app/controllers/operator_sessions_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/app/controllers/operator_sessions_controller.rb -------------------------------------------------------------------------------- /app/controllers/operators_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/app/controllers/operators_controller.rb -------------------------------------------------------------------------------- /app/controllers/password_resets_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/app/controllers/password_resets_controller.rb -------------------------------------------------------------------------------- /app/controllers/radius_accountings_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/app/controllers/radius_accountings_controller.rb -------------------------------------------------------------------------------- /app/controllers/radius_checks_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/app/controllers/radius_checks_controller.rb -------------------------------------------------------------------------------- /app/controllers/radius_groups_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/app/controllers/radius_groups_controller.rb -------------------------------------------------------------------------------- /app/controllers/radius_replies_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/app/controllers/radius_replies_controller.rb -------------------------------------------------------------------------------- /app/controllers/social_auth_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/app/controllers/social_auth_controller.rb -------------------------------------------------------------------------------- /app/controllers/spoken_captcha_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/app/controllers/spoken_captcha_controller.rb -------------------------------------------------------------------------------- /app/controllers/stats_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/app/controllers/stats_controller.rb -------------------------------------------------------------------------------- /app/controllers/users_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/app/controllers/users_controller.rb -------------------------------------------------------------------------------- /app/helpers/accounts_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/app/helpers/accounts_helper.rb -------------------------------------------------------------------------------- /app/helpers/application_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/app/helpers/application_helper.rb -------------------------------------------------------------------------------- /app/helpers/users_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/app/helpers/users_helper.rb -------------------------------------------------------------------------------- /app/mailers/notifier.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/app/mailers/notifier.rb -------------------------------------------------------------------------------- /app/models/account.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/app/models/account.rb -------------------------------------------------------------------------------- /app/models/account_common.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/app/models/account_common.rb -------------------------------------------------------------------------------- /app/models/account_session.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/app/models/account_session.rb -------------------------------------------------------------------------------- /app/models/associated_user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/app/models/associated_user.rb -------------------------------------------------------------------------------- /app/models/configuration.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/app/models/configuration.rb -------------------------------------------------------------------------------- /app/models/country.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/app/models/country.rb -------------------------------------------------------------------------------- /app/models/credit_card_transaction.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/app/models/credit_card_transaction.rb -------------------------------------------------------------------------------- /app/models/invoice.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/app/models/invoice.rb -------------------------------------------------------------------------------- /app/models/mobile_prefix.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/app/models/mobile_prefix.rb -------------------------------------------------------------------------------- /app/models/online_user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/app/models/online_user.rb -------------------------------------------------------------------------------- /app/models/operator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/app/models/operator.rb -------------------------------------------------------------------------------- /app/models/operator_session.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/app/models/operator_session.rb -------------------------------------------------------------------------------- /app/models/radius_accounting.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/app/models/radius_accounting.rb -------------------------------------------------------------------------------- /app/models/radius_check.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/app/models/radius_check.rb -------------------------------------------------------------------------------- /app/models/radius_group.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/app/models/radius_group.rb -------------------------------------------------------------------------------- /app/models/radius_nas.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/app/models/radius_nas.rb -------------------------------------------------------------------------------- /app/models/radius_reply.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/app/models/radius_reply.rb -------------------------------------------------------------------------------- /app/models/role.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/app/models/role.rb -------------------------------------------------------------------------------- /app/models/social_auth.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/app/models/social_auth.rb -------------------------------------------------------------------------------- /app/models/user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/app/models/user.rb -------------------------------------------------------------------------------- /app/views/account_sessions/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/app/views/account_sessions/new.html.erb -------------------------------------------------------------------------------- /app/views/account_sessions/new.mobile.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/app/views/account_sessions/new.mobile.erb -------------------------------------------------------------------------------- /app/views/account_sessions/new.xml.builder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/app/views/account_sessions/new.xml.builder -------------------------------------------------------------------------------- /app/views/accounts/_credit_card_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/app/views/accounts/_credit_card_form.html.erb -------------------------------------------------------------------------------- /app/views/accounts/_credit_card_form.mobile.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/app/views/accounts/_credit_card_form.mobile.erb -------------------------------------------------------------------------------- /app/views/accounts/_expired.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/app/views/accounts/_expired.html.erb -------------------------------------------------------------------------------- /app/views/accounts/_expired.mobile.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/app/views/accounts/_expired.mobile.erb -------------------------------------------------------------------------------- /app/views/accounts/_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/app/views/accounts/_form.html.erb -------------------------------------------------------------------------------- /app/views/accounts/_form.mobile.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/app/views/accounts/_form.mobile.erb -------------------------------------------------------------------------------- /app/views/accounts/_verification.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/app/views/accounts/_verification.html.erb -------------------------------------------------------------------------------- /app/views/accounts/_verification.mobile.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/app/views/accounts/_verification.mobile.erb -------------------------------------------------------------------------------- /app/views/accounts/_verification_periodic_check.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/app/views/accounts/_verification_periodic_check.html.erb -------------------------------------------------------------------------------- /app/views/accounts/additional_fields.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/app/views/accounts/additional_fields.html.erb -------------------------------------------------------------------------------- /app/views/accounts/additional_fields.mobile.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/app/views/accounts/additional_fields.mobile.erb -------------------------------------------------------------------------------- /app/views/accounts/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/app/views/accounts/edit.html.erb -------------------------------------------------------------------------------- /app/views/accounts/edit.mobile.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/app/views/accounts/edit.mobile.erb -------------------------------------------------------------------------------- /app/views/accounts/edit.xml.builder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/app/views/accounts/edit.xml.builder -------------------------------------------------------------------------------- /app/views/accounts/expired.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/app/views/accounts/expired.html.erb -------------------------------------------------------------------------------- /app/views/accounts/expired.mobile.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/app/views/accounts/expired.mobile.erb -------------------------------------------------------------------------------- /app/views/accounts/gestpay_verified_by_visa_error.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/app/views/accounts/gestpay_verified_by_visa_error.html.erb -------------------------------------------------------------------------------- /app/views/accounts/gestpay_verified_by_visa_error.mobile.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/app/views/accounts/gestpay_verified_by_visa_error.mobile.erb -------------------------------------------------------------------------------- /app/views/accounts/gestpay_verify_credit_card.js.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/app/views/accounts/gestpay_verify_credit_card.js.erb -------------------------------------------------------------------------------- /app/views/accounts/instructions.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/app/views/accounts/instructions.html.erb -------------------------------------------------------------------------------- /app/views/accounts/instructions.mobile.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/app/views/accounts/instructions.mobile.erb -------------------------------------------------------------------------------- /app/views/accounts/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/app/views/accounts/new.html.erb -------------------------------------------------------------------------------- /app/views/accounts/new.mobile.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/app/views/accounts/new.mobile.erb -------------------------------------------------------------------------------- /app/views/accounts/new.xml.builder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/app/views/accounts/new.xml.builder -------------------------------------------------------------------------------- /app/views/accounts/no_verification.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/app/views/accounts/no_verification.html.erb -------------------------------------------------------------------------------- /app/views/accounts/no_verification.mobile.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/app/views/accounts/no_verification.mobile.erb -------------------------------------------------------------------------------- /app/views/accounts/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/app/views/accounts/show.html.erb -------------------------------------------------------------------------------- /app/views/accounts/show.jpg.flexi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/app/views/accounts/show.jpg.flexi -------------------------------------------------------------------------------- /app/views/accounts/show.js.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/app/views/accounts/show.js.erb -------------------------------------------------------------------------------- /app/views/accounts/show.mobile.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/app/views/accounts/show.mobile.erb -------------------------------------------------------------------------------- /app/views/accounts/show.xml.builder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/app/views/accounts/show.xml.builder -------------------------------------------------------------------------------- /app/views/accounts/verification.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/app/views/accounts/verification.html.erb -------------------------------------------------------------------------------- /app/views/accounts/verification.mobile.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/app/views/accounts/verification.mobile.erb -------------------------------------------------------------------------------- /app/views/accounts/verification.xml.builder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/app/views/accounts/verification.xml.builder -------------------------------------------------------------------------------- /app/views/common/_radius_accounting_list.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/app/views/common/_radius_accounting_list.html.erb -------------------------------------------------------------------------------- /app/views/common/_radius_accounting_list.mobile.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/app/views/common/_radius_accounting_list.mobile.erb -------------------------------------------------------------------------------- /app/views/common/_radius_accounting_list_brief.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/app/views/common/_radius_accounting_list_brief.html.erb -------------------------------------------------------------------------------- /app/views/common/_top_traffic_users_brief.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/app/views/common/_top_traffic_users_brief.html.erb -------------------------------------------------------------------------------- /app/views/common/abuse.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/app/views/common/abuse.html.erb -------------------------------------------------------------------------------- /app/views/common/form_elements/_credit_card.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/app/views/common/form_elements/_credit_card.html.erb -------------------------------------------------------------------------------- /app/views/common/form_elements/_credit_card.mobile.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/app/views/common/form_elements/_credit_card.mobile.erb -------------------------------------------------------------------------------- /app/views/common/form_elements/_identity_document.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/app/views/common/form_elements/_identity_document.html.erb -------------------------------------------------------------------------------- /app/views/common/form_elements/_identity_document.mobile.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/app/views/common/form_elements/_identity_document.mobile.erb -------------------------------------------------------------------------------- /app/views/common/form_elements/_mobile_phone.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/app/views/common/form_elements/_mobile_phone.html.erb -------------------------------------------------------------------------------- /app/views/common/form_elements/_mobile_phone.mobile.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/app/views/common/form_elements/_mobile_phone.mobile.erb -------------------------------------------------------------------------------- /app/views/common/form_elements/_password_reset.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/app/views/common/form_elements/_password_reset.html.erb -------------------------------------------------------------------------------- /app/views/common/form_elements/_password_reset.mobile.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/app/views/common/form_elements/_password_reset.mobile.erb -------------------------------------------------------------------------------- /app/views/common/form_elements/_personal_data.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/app/views/common/form_elements/_personal_data.html.erb -------------------------------------------------------------------------------- /app/views/common/form_elements/_personal_data.mobile.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/app/views/common/form_elements/_personal_data.mobile.erb -------------------------------------------------------------------------------- /app/views/common/invalid_token.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/app/views/common/invalid_token.html.erb -------------------------------------------------------------------------------- /app/views/common/invalid_token.mobile.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/app/views/common/invalid_token.mobile.erb -------------------------------------------------------------------------------- /app/views/configurations/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/app/views/configurations/edit.html.erb -------------------------------------------------------------------------------- /app/views/configurations/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/app/views/configurations/index.html.erb -------------------------------------------------------------------------------- /app/views/email_password_resets/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/app/views/email_password_resets/edit.html.erb -------------------------------------------------------------------------------- /app/views/email_password_resets/edit.mobile.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/app/views/email_password_resets/edit.mobile.erb -------------------------------------------------------------------------------- /app/views/email_password_resets/edit.xml.builder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/app/views/email_password_resets/edit.xml.builder -------------------------------------------------------------------------------- /app/views/email_password_resets/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/app/views/email_password_resets/new.html.erb -------------------------------------------------------------------------------- /app/views/email_password_resets/new.mobile.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/app/views/email_password_resets/new.mobile.erb -------------------------------------------------------------------------------- /app/views/email_password_resets/new.xml.builder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/app/views/email_password_resets/new.xml.builder -------------------------------------------------------------------------------- /app/views/exception_notifier/_authlogic.text.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/app/views/exception_notifier/_authlogic.text.erb -------------------------------------------------------------------------------- /app/views/kaminari/_first_page.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/app/views/kaminari/_first_page.html.erb -------------------------------------------------------------------------------- /app/views/kaminari/_gap.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/app/views/kaminari/_gap.html.erb -------------------------------------------------------------------------------- /app/views/kaminari/_last_page.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/app/views/kaminari/_last_page.html.erb -------------------------------------------------------------------------------- /app/views/kaminari/_next_page.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/app/views/kaminari/_next_page.html.erb -------------------------------------------------------------------------------- /app/views/kaminari/_page.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/app/views/kaminari/_page.html.erb -------------------------------------------------------------------------------- /app/views/kaminari/_paginator.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/app/views/kaminari/_paginator.html.erb -------------------------------------------------------------------------------- /app/views/kaminari/_prev_page.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/app/views/kaminari/_prev_page.html.erb -------------------------------------------------------------------------------- /app/views/layouts/application.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/app/views/layouts/application.html.erb -------------------------------------------------------------------------------- /app/views/layouts/application.mobile.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/app/views/layouts/application.mobile.erb -------------------------------------------------------------------------------- /app/views/layouts/application.xml.builder: -------------------------------------------------------------------------------- 1 | xml.instruct! 2 | xml << yield -------------------------------------------------------------------------------- /app/views/mobile_phone_password_resets/_verification.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/app/views/mobile_phone_password_resets/_verification.html.erb -------------------------------------------------------------------------------- /app/views/mobile_phone_password_resets/_verification.mobile.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/app/views/mobile_phone_password_resets/_verification.mobile.erb -------------------------------------------------------------------------------- /app/views/mobile_phone_password_resets/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/app/views/mobile_phone_password_resets/edit.html.erb -------------------------------------------------------------------------------- /app/views/mobile_phone_password_resets/edit.mobile.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/app/views/mobile_phone_password_resets/edit.mobile.erb -------------------------------------------------------------------------------- /app/views/mobile_phone_password_resets/edit.xml.builder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/app/views/mobile_phone_password_resets/edit.xml.builder -------------------------------------------------------------------------------- /app/views/mobile_phone_password_resets/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/app/views/mobile_phone_password_resets/new.html.erb -------------------------------------------------------------------------------- /app/views/mobile_phone_password_resets/new.mobile.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/app/views/mobile_phone_password_resets/new.mobile.erb -------------------------------------------------------------------------------- /app/views/mobile_phone_password_resets/new.xml.builder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/app/views/mobile_phone_password_resets/new.xml.builder -------------------------------------------------------------------------------- /app/views/mobile_phone_password_resets/recovery_confirmation.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/app/views/mobile_phone_password_resets/recovery_confirmation.html.erb -------------------------------------------------------------------------------- /app/views/mobile_phone_password_resets/recovery_confirmation.mobile.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/app/views/mobile_phone_password_resets/recovery_confirmation.mobile.erb -------------------------------------------------------------------------------- /app/views/mobile_phone_password_resets/recovery_confirmation.xml.builder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/app/views/mobile_phone_password_resets/recovery_confirmation.xml.builder -------------------------------------------------------------------------------- /app/views/mobile_phone_password_resets/verification.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/app/views/mobile_phone_password_resets/verification.html.erb -------------------------------------------------------------------------------- /app/views/mobile_phone_password_resets/verification.mobile.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/app/views/mobile_phone_password_resets/verification.mobile.erb -------------------------------------------------------------------------------- /app/views/mobile_phone_password_resets/verification.xml.builder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/app/views/mobile_phone_password_resets/verification.xml.builder -------------------------------------------------------------------------------- /app/views/notifier/password_reset_instructions.text.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/app/views/notifier/password_reset_instructions.text.erb -------------------------------------------------------------------------------- /app/views/notifier/send_invoice_to_admin.text.erb: -------------------------------------------------------------------------------- 1 | <%= @message.html_safe %> -------------------------------------------------------------------------------- /app/views/online_users/index.xml.builder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/app/views/online_users/index.xml.builder -------------------------------------------------------------------------------- /app/views/operator_sessions/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/app/views/operator_sessions/new.html.erb -------------------------------------------------------------------------------- /app/views/operators/_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/app/views/operators/_form.html.erb -------------------------------------------------------------------------------- /app/views/operators/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/app/views/operators/edit.html.erb -------------------------------------------------------------------------------- /app/views/operators/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/app/views/operators/index.html.erb -------------------------------------------------------------------------------- /app/views/operators/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/app/views/operators/new.html.erb -------------------------------------------------------------------------------- /app/views/operators/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/app/views/operators/show.html.erb -------------------------------------------------------------------------------- /app/views/password_resets/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/app/views/password_resets/new.html.erb -------------------------------------------------------------------------------- /app/views/password_resets/new.mobile.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/app/views/password_resets/new.mobile.erb -------------------------------------------------------------------------------- /app/views/radius_accountings/index.xml.builder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/app/views/radius_accountings/index.xml.builder -------------------------------------------------------------------------------- /app/views/radius_checks/_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/app/views/radius_checks/_form.html.erb -------------------------------------------------------------------------------- /app/views/radius_checks/_list.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/app/views/radius_checks/_list.html.erb -------------------------------------------------------------------------------- /app/views/radius_checks/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/app/views/radius_checks/edit.html.erb -------------------------------------------------------------------------------- /app/views/radius_checks/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/app/views/radius_checks/new.html.erb -------------------------------------------------------------------------------- /app/views/radius_checks/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/app/views/radius_checks/show.html.erb -------------------------------------------------------------------------------- /app/views/radius_groups/_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/app/views/radius_groups/_form.html.erb -------------------------------------------------------------------------------- /app/views/radius_groups/_list.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/app/views/radius_groups/_list.html.erb -------------------------------------------------------------------------------- /app/views/radius_groups/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/app/views/radius_groups/edit.html.erb -------------------------------------------------------------------------------- /app/views/radius_groups/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/app/views/radius_groups/index.html.erb -------------------------------------------------------------------------------- /app/views/radius_groups/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/app/views/radius_groups/new.html.erb -------------------------------------------------------------------------------- /app/views/radius_groups/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/app/views/radius_groups/show.html.erb -------------------------------------------------------------------------------- /app/views/radius_replies/_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/app/views/radius_replies/_form.html.erb -------------------------------------------------------------------------------- /app/views/radius_replies/_list.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/app/views/radius_replies/_list.html.erb -------------------------------------------------------------------------------- /app/views/radius_replies/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/app/views/radius_replies/edit.html.erb -------------------------------------------------------------------------------- /app/views/radius_replies/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/app/views/radius_replies/new.html.erb -------------------------------------------------------------------------------- /app/views/simple_captcha/_simple_captcha.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/app/views/simple_captcha/_simple_captcha.erb -------------------------------------------------------------------------------- /app/views/stats/graphs/_account_logins.json.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/app/views/stats/graphs/_account_logins.json.erb -------------------------------------------------------------------------------- /app/views/stats/graphs/_account_traffic.json.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/app/views/stats/graphs/_account_traffic.json.erb -------------------------------------------------------------------------------- /app/views/stats/graphs/_logins.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/app/views/stats/graphs/_logins.html.erb -------------------------------------------------------------------------------- /app/views/stats/graphs/_logins.json.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/app/views/stats/graphs/_logins.json.erb -------------------------------------------------------------------------------- /app/views/stats/graphs/_registered_users.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/app/views/stats/graphs/_registered_users.html.erb -------------------------------------------------------------------------------- /app/views/stats/graphs/_registered_users.json.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/app/views/stats/graphs/_registered_users.json.erb -------------------------------------------------------------------------------- /app/views/stats/graphs/_registered_users_daily.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/app/views/stats/graphs/_registered_users_daily.html.erb -------------------------------------------------------------------------------- /app/views/stats/graphs/_registered_users_daily.json.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/app/views/stats/graphs/_registered_users_daily.json.erb -------------------------------------------------------------------------------- /app/views/stats/graphs/_traffic.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/app/views/stats/graphs/_traffic.html.erb -------------------------------------------------------------------------------- /app/views/stats/graphs/_traffic.json.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/app/views/stats/graphs/_traffic.json.erb -------------------------------------------------------------------------------- /app/views/stats/graphs/_user_logins.json.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/app/views/stats/graphs/_user_logins.json.erb -------------------------------------------------------------------------------- /app/views/stats/graphs/_user_traffic.json.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/app/views/stats/graphs/_user_traffic.json.erb -------------------------------------------------------------------------------- /app/views/stats/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/app/views/stats/index.html.erb -------------------------------------------------------------------------------- /app/views/stats/info_boxes/_last_logins.js.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/app/views/stats/info_boxes/_last_logins.js.erb -------------------------------------------------------------------------------- /app/views/stats/info_boxes/_last_registered.js.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/app/views/stats/info_boxes/_last_registered.js.erb -------------------------------------------------------------------------------- /app/views/stats/info_boxes/_top_traffic_users.js.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/app/views/stats/info_boxes/_top_traffic_users.js.erb -------------------------------------------------------------------------------- /app/views/stats/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/app/views/stats/show.html.erb -------------------------------------------------------------------------------- /app/views/stats/show.js.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/app/views/stats/show.js.erb -------------------------------------------------------------------------------- /app/views/stats/show.json.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/app/views/stats/show.json.erb -------------------------------------------------------------------------------- /app/views/users/_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/app/views/users/_form.html.erb -------------------------------------------------------------------------------- /app/views/users/_list.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/app/views/users/_list.html.erb -------------------------------------------------------------------------------- /app/views/users/_list_brief.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/app/views/users/_list_brief.html.erb -------------------------------------------------------------------------------- /app/views/users/_radius_group_select.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/app/views/users/_radius_group_select.html.erb -------------------------------------------------------------------------------- /app/views/users/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/app/views/users/edit.html.erb -------------------------------------------------------------------------------- /app/views/users/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/app/views/users/index.html.erb -------------------------------------------------------------------------------- /app/views/users/index.js.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/app/views/users/index.js.erb -------------------------------------------------------------------------------- /app/views/users/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/app/views/users/new.html.erb -------------------------------------------------------------------------------- /app/views/users/search.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/app/views/users/search.html.erb -------------------------------------------------------------------------------- /app/views/users/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/app/views/users/show.html.erb -------------------------------------------------------------------------------- /app/views/users/show.jpg.flexi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/app/views/users/show.jpg.flexi -------------------------------------------------------------------------------- /app/views/users/show.js.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/app/views/users/show.js.erb -------------------------------------------------------------------------------- /app/views/users/ticket.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/app/views/users/ticket.html.erb -------------------------------------------------------------------------------- /certs/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/certs/.gitignore -------------------------------------------------------------------------------- /config.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/config.ru -------------------------------------------------------------------------------- /config/application.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/config/application.rb -------------------------------------------------------------------------------- /config/backgroundrb.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/config/backgroundrb.yml -------------------------------------------------------------------------------- /config/boot.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/config/boot.rb -------------------------------------------------------------------------------- /config/config.default.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/config/config.default.yml -------------------------------------------------------------------------------- /config/daemons.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/config/daemons.yml -------------------------------------------------------------------------------- /config/database.yml.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/config/database.yml.example -------------------------------------------------------------------------------- /config/deploy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/config/deploy.rb -------------------------------------------------------------------------------- /config/deploy/example.host.it: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/config/deploy/example.host.it -------------------------------------------------------------------------------- /config/environment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/config/environment.rb -------------------------------------------------------------------------------- /config/environments/development.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/config/environments/development.rb -------------------------------------------------------------------------------- /config/environments/production.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/config/environments/production.rb -------------------------------------------------------------------------------- /config/environments/test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/config/environments/test.rb -------------------------------------------------------------------------------- /config/initializers/01_sentry.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/config/initializers/01_sentry.rb -------------------------------------------------------------------------------- /config/initializers/acl9.rb: -------------------------------------------------------------------------------- 1 | Acl9::config[:default_subject_method] = :current_operator -------------------------------------------------------------------------------- /config/initializers/backtrace_silencers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/config/initializers/backtrace_silencers.rb -------------------------------------------------------------------------------- /config/initializers/easy_captcha.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/config/initializers/easy_captcha.rb -------------------------------------------------------------------------------- /config/initializers/exception_notification.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/config/initializers/exception_notification.rb -------------------------------------------------------------------------------- /config/initializers/gestpay.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/config/initializers/gestpay.rb -------------------------------------------------------------------------------- /config/initializers/inflections.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/config/initializers/inflections.rb -------------------------------------------------------------------------------- /config/initializers/logger_message_format.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/config/initializers/logger_message_format.rb -------------------------------------------------------------------------------- /config/initializers/mime_types.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/config/initializers/mime_types.rb -------------------------------------------------------------------------------- /config/initializers/mini_profiler.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/config/initializers/mini_profiler.rb -------------------------------------------------------------------------------- /config/initializers/owmw.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/config/initializers/owmw.rb -------------------------------------------------------------------------------- /config/initializers/require_external_commands.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/config/initializers/require_external_commands.rb -------------------------------------------------------------------------------- /config/initializers/secret_token.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/config/initializers/secret_token.rb -------------------------------------------------------------------------------- /config/initializers/session_store.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/config/initializers/session_store.rb -------------------------------------------------------------------------------- /config/initializers/simple_form.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/config/initializers/simple_form.rb -------------------------------------------------------------------------------- /config/initializers/social_login.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/config/initializers/social_login.rb -------------------------------------------------------------------------------- /config/locales/de.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/config/locales/de.yml -------------------------------------------------------------------------------- /config/locales/en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/config/locales/en.yml -------------------------------------------------------------------------------- /config/locales/es.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/config/locales/es.yml -------------------------------------------------------------------------------- /config/locales/fur.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/config/locales/fur.yml -------------------------------------------------------------------------------- /config/locales/it.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/config/locales/it.yml -------------------------------------------------------------------------------- /config/locales/owums.de.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/config/locales/owums.de.yml -------------------------------------------------------------------------------- /config/locales/owums.en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/config/locales/owums.en.yml -------------------------------------------------------------------------------- /config/locales/owums.es.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/config/locales/owums.es.yml -------------------------------------------------------------------------------- /config/locales/owums.fur.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/config/locales/owums.fur.yml -------------------------------------------------------------------------------- /config/locales/owums.it.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/config/locales/owums.it.yml -------------------------------------------------------------------------------- /config/locales/owums.sl.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/config/locales/owums.sl.yml -------------------------------------------------------------------------------- /config/locales/sl.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/config/locales/sl.yml -------------------------------------------------------------------------------- /config/owmw.yml.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/config/owmw.yml.example -------------------------------------------------------------------------------- /config/preinitializer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/config/preinitializer.rb -------------------------------------------------------------------------------- /config/routes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/config/routes.rb -------------------------------------------------------------------------------- /db/fixtures/configurations.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/db/fixtures/configurations.yml -------------------------------------------------------------------------------- /db/fixtures/countries.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/db/fixtures/countries.yml -------------------------------------------------------------------------------- /db/fixtures/dictionary.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/db/fixtures/dictionary.yml -------------------------------------------------------------------------------- /db/fixtures/mobile_prefixes.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/db/fixtures/mobile_prefixes.yml -------------------------------------------------------------------------------- /db/fixtures/nas.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/db/fixtures/nas.yml -------------------------------------------------------------------------------- /db/fixtures/radius_checks.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/db/fixtures/radius_checks.yml -------------------------------------------------------------------------------- /db/fixtures/radius_groups.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/db/fixtures/radius_groups.yml -------------------------------------------------------------------------------- /db/fixtures/radius_replies.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/db/fixtures/radius_replies.yml -------------------------------------------------------------------------------- /db/migrate/20090919154910_create_operators.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/db/migrate/20090919154910_create_operators.rb -------------------------------------------------------------------------------- /db/migrate/20090920121738_create_roles.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/db/migrate/20090920121738_create_roles.rb -------------------------------------------------------------------------------- /db/migrate/20090920121954_create_operators_roles.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/db/migrate/20090920121954_create_operators_roles.rb -------------------------------------------------------------------------------- /db/migrate/20091227122908_create_users.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/db/migrate/20091227122908_create_users.rb -------------------------------------------------------------------------------- /db/migrate/20091227133453_create_sessions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/db/migrate/20091227133453_create_sessions.rb -------------------------------------------------------------------------------- /db/migrate/20091228102900_create_radius_groups.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/db/migrate/20091228102900_create_radius_groups.rb -------------------------------------------------------------------------------- /db/migrate/20091228103337_create_radius_groups_users.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/db/migrate/20091228103337_create_radius_groups_users.rb -------------------------------------------------------------------------------- /db/migrate/20091228110343_create_radius_replies.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/db/migrate/20091228110343_create_radius_replies.rb -------------------------------------------------------------------------------- /db/migrate/20091228110359_create_radius_checks.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/db/migrate/20091228110359_create_radius_checks.rb -------------------------------------------------------------------------------- /db/migrate/20091228173405_create_radius_stuff.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/db/migrate/20091228173405_create_radius_stuff.rb -------------------------------------------------------------------------------- /db/migrate/20100105150432_create_backgroundrb_queue_table.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/db/migrate/20100105150432_create_backgroundrb_queue_table.rb -------------------------------------------------------------------------------- /db/migrate/20100114113944_create_configurations.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/db/migrate/20100114113944_create_configurations.rb -------------------------------------------------------------------------------- /db/migrate/20100115150513_create_mobile_prefixes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/db/migrate/20100115150513_create_mobile_prefixes.rb -------------------------------------------------------------------------------- /db/migrate/20100115150746_create_countries.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/db/migrate/20100115150746_create_countries.rb -------------------------------------------------------------------------------- /db/migrate/20110317145357_add_more_indexes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/db/migrate/20110317145357_add_more_indexes.rb -------------------------------------------------------------------------------- /db/migrate/20110614081842_remove_timestamps_from_radius_groups_users.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/db/migrate/20110614081842_remove_timestamps_from_radius_groups_users.rb -------------------------------------------------------------------------------- /db/migrate/20110614081904_remove_timestamps_from_operators_roles.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/db/migrate/20110614081904_remove_timestamps_from_operators_roles.rb -------------------------------------------------------------------------------- /db/migrate/20120330100718_rename_radius_attribute_attribute.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/db/migrate/20120330100718_rename_radius_attribute_attribute.rb -------------------------------------------------------------------------------- /db/migrate/20120508143312_add_note_to_radius_groups.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/db/migrate/20120508143312_add_note_to_radius_groups.rb -------------------------------------------------------------------------------- /db/migrate/20120509150547_fix_radius_check_and_reply_views.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/db/migrate/20120509150547_fix_radius_check_and_reply_views.rb -------------------------------------------------------------------------------- /db/migrate/20120512103045_add_notes_to_users.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/db/migrate/20120512103045_add_notes_to_users.rb -------------------------------------------------------------------------------- /db/migrate/20121203110128_optional_user_fields.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/db/migrate/20121203110128_optional_user_fields.rb -------------------------------------------------------------------------------- /db/migrate/20130204104618_add_creditcardinfo_to_users.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/db/migrate/20130204104618_add_creditcardinfo_to_users.rb -------------------------------------------------------------------------------- /db/migrate/20130306151353_add_configuration_keys.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/db/migrate/20130306151353_add_configuration_keys.rb -------------------------------------------------------------------------------- /db/migrate/20130314133354_add_roles_to_admin.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/db/migrate/20130314133354_add_roles_to_admin.rb -------------------------------------------------------------------------------- /db/migrate/20130523082716_add_new_configuration_keys.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/db/migrate/20130523082716_add_new_configuration_keys.rb -------------------------------------------------------------------------------- /db/migrate/20130524081315_create_invoices.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/db/migrate/20130524081315_create_invoices.rb -------------------------------------------------------------------------------- /db/migrate/20130619082839_add_webservice_method_configs.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/db/migrate/20130619082839_add_webservice_method_configs.rb -------------------------------------------------------------------------------- /db/migrate/20130821133539_add_spanish_translations.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/db/migrate/20130821133539_add_spanish_translations.rb -------------------------------------------------------------------------------- /db/migrate/20130826101227_add_unique_key_to_username.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/db/migrate/20130826101227_add_unique_key_to_username.rb -------------------------------------------------------------------------------- /db/migrate/20140408155422_add_invoicing_configurationkey.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/db/migrate/20140408155422_add_invoicing_configurationkey.rb -------------------------------------------------------------------------------- /db/migrate/20140409142151_add_fur_language_config_keys.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/db/migrate/20140409142151_add_fur_language_config_keys.rb -------------------------------------------------------------------------------- /db/migrate/20140415095736_create_credit_card_transactions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/db/migrate/20140415095736_create_credit_card_transactions.rb -------------------------------------------------------------------------------- /db/migrate/20140626093613_add_sl_language_config_keys.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/db/migrate/20140626093613_add_sl_language_config_keys.rb -------------------------------------------------------------------------------- /db/migrate/20140630141524_optimize_indexes_radacct.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/db/migrate/20140630141524_optimize_indexes_radacct.rb -------------------------------------------------------------------------------- /db/migrate/20140804133259_optimize_indexes_user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/db/migrate/20140804133259_optimize_indexes_user.rb -------------------------------------------------------------------------------- /db/migrate/20140908132846_sl_data_migration.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/db/migrate/20140908132846_sl_data_migration.rb -------------------------------------------------------------------------------- /db/migrate/20140908144456_fur_data_migration.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/db/migrate/20140908144456_fur_data_migration.rb -------------------------------------------------------------------------------- /db/migrate/20150127184426_de_data_migration.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/db/migrate/20150127184426_de_data_migration.rb -------------------------------------------------------------------------------- /db/migrate/20150422124519_clean_unused_mobile_phones.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/db/migrate/20150422124519_clean_unused_mobile_phones.rb -------------------------------------------------------------------------------- /db/migrate/20150427135816_create_social_auth.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/db/migrate/20150427135816_create_social_auth.rb -------------------------------------------------------------------------------- /db/migrate/20150505102206_social_enabled_data_migration.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/db/migrate/20150505102206_social_enabled_data_migration.rb -------------------------------------------------------------------------------- /db/migrate/20160125135035_add_index_persistence_token.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/db/migrate/20160125135035_add_index_persistence_token.rb -------------------------------------------------------------------------------- /db/migrate/20160202174235_add_index_perishable_token.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/db/migrate/20160202174235_add_index_perishable_token.rb -------------------------------------------------------------------------------- /db/migrate/20160309093849_add_radius_auth_user_fields.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/db/migrate/20160309093849_add_radius_auth_user_fields.rb -------------------------------------------------------------------------------- /db/seeds.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/db/seeds.rb -------------------------------------------------------------------------------- /doc/OWUMS-RESTful API.pages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/doc/OWUMS-RESTful API.pages -------------------------------------------------------------------------------- /doc/OWUMS-RESTful API.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/doc/OWUMS-RESTful API.pdf -------------------------------------------------------------------------------- /gpl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/gpl.txt -------------------------------------------------------------------------------- /invoices/.gitignore: -------------------------------------------------------------------------------- 1 | *.pdf -------------------------------------------------------------------------------- /lib/daemons/mobile_phone_sip_busy_machine.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/lib/daemons/mobile_phone_sip_busy_machine.rb -------------------------------------------------------------------------------- /lib/daemons/mobile_phone_sip_busy_machine_ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/lib/daemons/mobile_phone_sip_busy_machine_ctl -------------------------------------------------------------------------------- /lib/mobile_phone_sip_busy_machine.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/lib/mobile_phone_sip_busy_machine.rb -------------------------------------------------------------------------------- /lib/null_crypto_provider.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/lib/null_crypto_provider.rb -------------------------------------------------------------------------------- /lib/recipes/deploy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/lib/recipes/deploy.rb -------------------------------------------------------------------------------- /lib/recipes/rails.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/lib/recipes/rails.rb -------------------------------------------------------------------------------- /lib/sip_busy_machine.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/lib/sip_busy_machine.rb -------------------------------------------------------------------------------- /lib/tasks/daemons_start_stop.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/lib/tasks/daemons_start_stop.rake -------------------------------------------------------------------------------- /lib/tasks/extract_fixtures.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/lib/tasks/extract_fixtures.rake -------------------------------------------------------------------------------- /lib/tasks/load_fixtures.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/lib/tasks/load_fixtures.rake -------------------------------------------------------------------------------- /lib/tasks/radius_accountings.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/lib/tasks/radius_accountings.rake -------------------------------------------------------------------------------- /lib/tasks/test_load_fixtures.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/lib/tasks/test_load_fixtures.rake -------------------------------------------------------------------------------- /lib/workers/house_keeper_worker.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/lib/workers/house_keeper_worker.rb -------------------------------------------------------------------------------- /log/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/log/.gitignore -------------------------------------------------------------------------------- /public/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/public/404.html -------------------------------------------------------------------------------- /public/422.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/public/422.html -------------------------------------------------------------------------------- /public/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/public/500.html -------------------------------------------------------------------------------- /public/documents/cookie.pdf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/documents/eula.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/public/documents/eula.pdf -------------------------------------------------------------------------------- /public/documents/privacy.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/public/documents/privacy.pdf -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/images/accept.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/public/images/accept.png -------------------------------------------------------------------------------- /public/images/arrow_down.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/public/images/arrow_down.gif -------------------------------------------------------------------------------- /public/images/arrow_up.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/public/images/arrow_up.gif -------------------------------------------------------------------------------- /public/images/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/public/images/close.png -------------------------------------------------------------------------------- /public/images/delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/public/images/delete.png -------------------------------------------------------------------------------- /public/images/disk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/public/images/disk.png -------------------------------------------------------------------------------- /public/images/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/public/images/favicon.png -------------------------------------------------------------------------------- /public/images/gestpay_new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/public/images/gestpay_new.png -------------------------------------------------------------------------------- /public/images/gestpay_new_mobile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/public/images/gestpay_new_mobile.png -------------------------------------------------------------------------------- /public/images/locale/de.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/public/images/locale/de.jpg -------------------------------------------------------------------------------- /public/images/locale/en.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/public/images/locale/en.jpg -------------------------------------------------------------------------------- /public/images/locale/es.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/public/images/locale/es.jpg -------------------------------------------------------------------------------- /public/images/locale/fur.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/public/images/locale/fur.jpg -------------------------------------------------------------------------------- /public/images/locale/it.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/public/images/locale/it.jpg -------------------------------------------------------------------------------- /public/images/locale/sl.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/public/images/locale/sl.jpg -------------------------------------------------------------------------------- /public/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/public/images/logo.png -------------------------------------------------------------------------------- /public/images/openwisp-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/public/images/openwisp-logo.png -------------------------------------------------------------------------------- /public/images/openwisp.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/public/images/openwisp.ico -------------------------------------------------------------------------------- /public/images/paypal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/public/images/paypal.png -------------------------------------------------------------------------------- /public/images/rails.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/public/images/rails.png -------------------------------------------------------------------------------- /public/images/spinner.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/public/images/spinner.gif -------------------------------------------------------------------------------- /public/images/spinner_black.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/public/images/spinner_black.gif -------------------------------------------------------------------------------- /public/images/switch_minus.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/public/images/switch_minus.gif -------------------------------------------------------------------------------- /public/images/switch_plus.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/public/images/switch_plus.gif -------------------------------------------------------------------------------- /public/images/visa-mastercard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/public/images/visa-mastercard.png -------------------------------------------------------------------------------- /public/javascripts/application-mobile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/public/javascripts/application-mobile.js -------------------------------------------------------------------------------- /public/javascripts/application.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/public/javascripts/application.js -------------------------------------------------------------------------------- /public/javascripts/fluid16.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/public/javascripts/fluid16.js -------------------------------------------------------------------------------- /public/javascripts/highcharts.exporting.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/public/javascripts/highcharts.exporting.js -------------------------------------------------------------------------------- /public/javascripts/highcharts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/public/javascripts/highcharts.js -------------------------------------------------------------------------------- /public/javascripts/jHtmlArea-0.7.5.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/public/javascripts/jHtmlArea-0.7.5.min.js -------------------------------------------------------------------------------- /public/javascripts/jquery-ui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/public/javascripts/jquery-ui.js -------------------------------------------------------------------------------- /public/javascripts/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/public/javascripts/jquery.js -------------------------------------------------------------------------------- /public/javascripts/jquery.mobile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/public/javascripts/jquery.mobile.js -------------------------------------------------------------------------------- /public/javascripts/jquery.observe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/public/javascripts/jquery.observe.js -------------------------------------------------------------------------------- /public/javascripts/jquery.password.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/public/javascripts/jquery.password.js -------------------------------------------------------------------------------- /public/javascripts/jquery_ujs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/public/javascripts/jquery_ujs.js -------------------------------------------------------------------------------- /public/javascripts/owums.account_logins_graph.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/public/javascripts/owums.account_logins_graph.js -------------------------------------------------------------------------------- /public/javascripts/owums.account_traffic_graph.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/public/javascripts/owums.account_traffic_graph.js -------------------------------------------------------------------------------- /public/javascripts/owums.graphs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/public/javascripts/owums.graphs.js -------------------------------------------------------------------------------- /public/javascripts/owums.logins_graph.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/public/javascripts/owums.logins_graph.js -------------------------------------------------------------------------------- /public/javascripts/owums.registered_users_daily_graph.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/public/javascripts/owums.registered_users_daily_graph.js -------------------------------------------------------------------------------- /public/javascripts/owums.registered_users_graph.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/public/javascripts/owums.registered_users_graph.js -------------------------------------------------------------------------------- /public/javascripts/owums.traffic_graph.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/public/javascripts/owums.traffic_graph.js -------------------------------------------------------------------------------- /public/javascripts/owums.user_logins_graph.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/public/javascripts/owums.user_logins_graph.js -------------------------------------------------------------------------------- /public/javascripts/owums.user_traffic_graph.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/public/javascripts/owums.user_traffic_graph.js -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/public/robots.txt -------------------------------------------------------------------------------- /public/stylesheets/custom-ie.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/public/stylesheets/custom-ie.css -------------------------------------------------------------------------------- /public/stylesheets/custom-mobile.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/public/stylesheets/custom-mobile.css -------------------------------------------------------------------------------- /public/stylesheets/custom-print.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/public/stylesheets/custom-print.css -------------------------------------------------------------------------------- /public/stylesheets/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/public/stylesheets/custom.css -------------------------------------------------------------------------------- /public/stylesheets/fluid960/960.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/public/stylesheets/fluid960/960.css -------------------------------------------------------------------------------- /public/stylesheets/fluid960/grid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/public/stylesheets/fluid960/grid.css -------------------------------------------------------------------------------- /public/stylesheets/fluid960/ie.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/public/stylesheets/fluid960/ie.css -------------------------------------------------------------------------------- /public/stylesheets/fluid960/ie6.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/public/stylesheets/fluid960/ie6.css -------------------------------------------------------------------------------- /public/stylesheets/fluid960/layout.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/public/stylesheets/fluid960/layout.css -------------------------------------------------------------------------------- /public/stylesheets/fluid960/nav.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/public/stylesheets/fluid960/nav.css -------------------------------------------------------------------------------- /public/stylesheets/fluid960/reset.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/public/stylesheets/fluid960/reset.css -------------------------------------------------------------------------------- /public/stylesheets/fluid960/text.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/public/stylesheets/fluid960/text.css -------------------------------------------------------------------------------- /public/stylesheets/jHtmlArea/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/public/stylesheets/jHtmlArea/Readme.txt -------------------------------------------------------------------------------- /public/stylesheets/jHtmlArea/jHtmlArea.Editor.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/public/stylesheets/jHtmlArea/jHtmlArea.Editor.css -------------------------------------------------------------------------------- /public/stylesheets/jHtmlArea/jHtmlArea.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/public/stylesheets/jHtmlArea/jHtmlArea.css -------------------------------------------------------------------------------- /public/stylesheets/jHtmlArea/jHtmlArea.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/public/stylesheets/jHtmlArea/jHtmlArea.png -------------------------------------------------------------------------------- /public/stylesheets/jHtmlArea/jHtmlArea_Toolbar_Group_BG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/public/stylesheets/jHtmlArea/jHtmlArea_Toolbar_Group_BG.png -------------------------------------------------------------------------------- /public/stylesheets/jHtmlArea/jHtmlArea_Toolbar_Group__Btn_Select_BG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/public/stylesheets/jHtmlArea/jHtmlArea_Toolbar_Group__Btn_Select_BG.png -------------------------------------------------------------------------------- /public/stylesheets/jquery-ui/images/ui-bg_flat_0_aaaaaa_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/public/stylesheets/jquery-ui/images/ui-bg_flat_0_aaaaaa_40x100.png -------------------------------------------------------------------------------- /public/stylesheets/jquery-ui/images/ui-bg_flat_75_ffffff_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/public/stylesheets/jquery-ui/images/ui-bg_flat_75_ffffff_40x100.png -------------------------------------------------------------------------------- /public/stylesheets/jquery-ui/images/ui-bg_glass_55_fbf9ee_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/public/stylesheets/jquery-ui/images/ui-bg_glass_55_fbf9ee_1x400.png -------------------------------------------------------------------------------- /public/stylesheets/jquery-ui/images/ui-bg_glass_65_ffffff_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/public/stylesheets/jquery-ui/images/ui-bg_glass_65_ffffff_1x400.png -------------------------------------------------------------------------------- /public/stylesheets/jquery-ui/images/ui-bg_glass_75_dadada_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/public/stylesheets/jquery-ui/images/ui-bg_glass_75_dadada_1x400.png -------------------------------------------------------------------------------- /public/stylesheets/jquery-ui/images/ui-bg_glass_75_e6e6e6_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/public/stylesheets/jquery-ui/images/ui-bg_glass_75_e6e6e6_1x400.png -------------------------------------------------------------------------------- /public/stylesheets/jquery-ui/images/ui-bg_highlight-soft_75_cccccc_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/public/stylesheets/jquery-ui/images/ui-bg_highlight-soft_75_cccccc_1x100.png -------------------------------------------------------------------------------- /public/stylesheets/jquery-ui/images/ui-bg_inset-soft_95_fef1ec_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/public/stylesheets/jquery-ui/images/ui-bg_inset-soft_95_fef1ec_1x100.png -------------------------------------------------------------------------------- /public/stylesheets/jquery-ui/images/ui-icons_222222_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/public/stylesheets/jquery-ui/images/ui-icons_222222_256x240.png -------------------------------------------------------------------------------- /public/stylesheets/jquery-ui/images/ui-icons_2e83ff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/public/stylesheets/jquery-ui/images/ui-icons_2e83ff_256x240.png -------------------------------------------------------------------------------- /public/stylesheets/jquery-ui/images/ui-icons_454545_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/public/stylesheets/jquery-ui/images/ui-icons_454545_256x240.png -------------------------------------------------------------------------------- /public/stylesheets/jquery-ui/images/ui-icons_888888_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/public/stylesheets/jquery-ui/images/ui-icons_888888_256x240.png -------------------------------------------------------------------------------- /public/stylesheets/jquery-ui/images/ui-icons_cd0a0a_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/public/stylesheets/jquery-ui/images/ui-icons_cd0a0a_256x240.png -------------------------------------------------------------------------------- /public/stylesheets/jquery-ui/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/public/stylesheets/jquery-ui/styles.css -------------------------------------------------------------------------------- /public/stylesheets/jquery.mobile/images/ajax-loader.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/public/stylesheets/jquery.mobile/images/ajax-loader.png -------------------------------------------------------------------------------- /public/stylesheets/jquery.mobile/images/icon-search-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/public/stylesheets/jquery.mobile/images/icon-search-black.png -------------------------------------------------------------------------------- /public/stylesheets/jquery.mobile/images/icons-18-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/public/stylesheets/jquery.mobile/images/icons-18-black.png -------------------------------------------------------------------------------- /public/stylesheets/jquery.mobile/images/icons-18-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/public/stylesheets/jquery.mobile/images/icons-18-white.png -------------------------------------------------------------------------------- /public/stylesheets/jquery.mobile/images/icons-36-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/public/stylesheets/jquery.mobile/images/icons-36-black.png -------------------------------------------------------------------------------- /public/stylesheets/jquery.mobile/images/icons-36-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/public/stylesheets/jquery.mobile/images/icons-36-white.png -------------------------------------------------------------------------------- /public/stylesheets/jquery.mobile/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/public/stylesheets/jquery.mobile/styles.css -------------------------------------------------------------------------------- /script/backgroundrb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/script/backgroundrb -------------------------------------------------------------------------------- /script/load_worker_env.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/script/load_worker_env.rb -------------------------------------------------------------------------------- /script/rails: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/script/rails -------------------------------------------------------------------------------- /test/bdrb_test_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/test/bdrb_test_helper.rb -------------------------------------------------------------------------------- /test/fixtures/configurations.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/test/fixtures/configurations.yml -------------------------------------------------------------------------------- /test/fixtures/countries.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/test/fixtures/countries.yml -------------------------------------------------------------------------------- /test/fixtures/dictionary.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/test/fixtures/dictionary.yml -------------------------------------------------------------------------------- /test/fixtures/invoices.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/test/fixtures/invoices.yml -------------------------------------------------------------------------------- /test/fixtures/mobile_prefixes.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/test/fixtures/mobile_prefixes.yml -------------------------------------------------------------------------------- /test/fixtures/nas.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/test/fixtures/nas.yml -------------------------------------------------------------------------------- /test/fixtures/operators.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/test/fixtures/operators.yml -------------------------------------------------------------------------------- /test/fixtures/operators_roles.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/test/fixtures/operators_roles.yml -------------------------------------------------------------------------------- /test/fixtures/radius_checks.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/test/fixtures/radius_checks.yml -------------------------------------------------------------------------------- /test/fixtures/radius_groups.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/test/fixtures/radius_groups.yml -------------------------------------------------------------------------------- /test/fixtures/radius_replies.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/test/fixtures/radius_replies.yml -------------------------------------------------------------------------------- /test/fixtures/roles.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/test/fixtures/roles.yml -------------------------------------------------------------------------------- /test/fixtures/users.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/test/fixtures/users.yml -------------------------------------------------------------------------------- /test/functional/accounts_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/test/functional/accounts_controller_test.rb -------------------------------------------------------------------------------- /test/functional/accounts_sessions_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/test/functional/accounts_sessions_controller_test.rb -------------------------------------------------------------------------------- /test/functional/configurations_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/test/functional/configurations_controller_test.rb -------------------------------------------------------------------------------- /test/functional/email_password_resets_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/test/functional/email_password_resets_controller_test.rb -------------------------------------------------------------------------------- /test/functional/online_users_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/test/functional/online_users_controller_test.rb -------------------------------------------------------------------------------- /test/functional/operators_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/test/functional/operators_controller_test.rb -------------------------------------------------------------------------------- /test/functional/password_resets_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/test/functional/password_resets_controller_test.rb -------------------------------------------------------------------------------- /test/functional/user_sessions_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/test/functional/user_sessions_controller_test.rb -------------------------------------------------------------------------------- /test/functional/users_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/test/functional/users_controller_test.rb -------------------------------------------------------------------------------- /test/performance/browsing_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/test/performance/browsing_test.rb -------------------------------------------------------------------------------- /test/test_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/test/test_helper.rb -------------------------------------------------------------------------------- /test/unit/account_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/test/unit/account_test.rb -------------------------------------------------------------------------------- /test/unit/configuration_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/test/unit/configuration_test.rb -------------------------------------------------------------------------------- /test/unit/country_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/test/unit/country_test.rb -------------------------------------------------------------------------------- /test/unit/credit_card_transaction_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/test/unit/credit_card_transaction_test.rb -------------------------------------------------------------------------------- /test/unit/helpers/application_helper_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/test/unit/helpers/application_helper_test.rb -------------------------------------------------------------------------------- /test/unit/helpers/configurations_helper_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/test/unit/helpers/configurations_helper_test.rb -------------------------------------------------------------------------------- /test/unit/helpers/online_users_helper_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/test/unit/helpers/online_users_helper_test.rb -------------------------------------------------------------------------------- /test/unit/helpers/operators_helper_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/test/unit/helpers/operators_helper_test.rb -------------------------------------------------------------------------------- /test/unit/helpers/password_resets_helper_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/test/unit/helpers/password_resets_helper_test.rb -------------------------------------------------------------------------------- /test/unit/helpers/user_sessions_helper_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/test/unit/helpers/user_sessions_helper_test.rb -------------------------------------------------------------------------------- /test/unit/helpers/users_helper_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/test/unit/helpers/users_helper_test.rb -------------------------------------------------------------------------------- /test/unit/invoice_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/test/unit/invoice_test.rb -------------------------------------------------------------------------------- /test/unit/mobile_prefix_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/test/unit/mobile_prefix_test.rb -------------------------------------------------------------------------------- /test/unit/nas_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/test/unit/nas_test.rb -------------------------------------------------------------------------------- /test/unit/notifier_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/test/unit/notifier_test.rb -------------------------------------------------------------------------------- /test/unit/online_user_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/test/unit/online_user_test.rb -------------------------------------------------------------------------------- /test/unit/radius_accounting_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/test/unit/radius_accounting_test.rb -------------------------------------------------------------------------------- /test/unit/radius_check_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/test/unit/radius_check_test.rb -------------------------------------------------------------------------------- /test/unit/radius_group_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/test/unit/radius_group_test.rb -------------------------------------------------------------------------------- /test/unit/radius_reply_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/test/unit/radius_reply_test.rb -------------------------------------------------------------------------------- /test/unit/user_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/test/unit/user_test.rb -------------------------------------------------------------------------------- /test/unit/users_radius_groups_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/test/unit/users_radius_groups_test.rb -------------------------------------------------------------------------------- /tmp/cache/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/tmp/cache/.gitignore -------------------------------------------------------------------------------- /tmp/pids/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/tmp/pids/.gitignore -------------------------------------------------------------------------------- /tmp/sessions/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/tmp/sessions/.gitignore -------------------------------------------------------------------------------- /tmp/sockets/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/tmp/sockets/.gitignore -------------------------------------------------------------------------------- /tmp/stat_exports/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/tmp/stat_exports/.gitignore -------------------------------------------------------------------------------- /vendor/plugins/daemon_generator/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/vendor/plugins/daemon_generator/README -------------------------------------------------------------------------------- /vendor/plugins/daemon_generator/install.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/vendor/plugins/daemon_generator/install.rb -------------------------------------------------------------------------------- /vendor/plugins/daemon_generator/lib/generators/daemon/USAGE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/vendor/plugins/daemon_generator/lib/generators/daemon/USAGE -------------------------------------------------------------------------------- /vendor/plugins/daemon_generator/lib/generators/daemon/daemon_generator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/vendor/plugins/daemon_generator/lib/generators/daemon/daemon_generator.rb -------------------------------------------------------------------------------- /vendor/plugins/daemon_generator/lib/generators/daemon/templates/daemons: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env ruby 2 | Dir[File.dirname(__FILE__) + "/../lib/daemons/*_ctl"].each {|f| `#{f} #{ARGV.first}`} -------------------------------------------------------------------------------- /vendor/plugins/daemon_generator/lib/generators/daemon/templates/daemons.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/vendor/plugins/daemon_generator/lib/generators/daemon/templates/daemons.yml -------------------------------------------------------------------------------- /vendor/plugins/daemon_generator/lib/generators/daemon/templates/script.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/vendor/plugins/daemon_generator/lib/generators/daemon/templates/script.rb -------------------------------------------------------------------------------- /vendor/plugins/daemon_generator/lib/generators/daemon/templates/script_ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/vendor/plugins/daemon_generator/lib/generators/daemon/templates/script_ctl -------------------------------------------------------------------------------- /vendor/plugins/daemon_generator/lib/tasks/daemon_generator.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/vendor/plugins/daemon_generator/lib/tasks/daemon_generator.rake -------------------------------------------------------------------------------- /vendor/plugins/dynamic_form/MIT-LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/vendor/plugins/dynamic_form/MIT-LICENSE -------------------------------------------------------------------------------- /vendor/plugins/dynamic_form/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/vendor/plugins/dynamic_form/README -------------------------------------------------------------------------------- /vendor/plugins/dynamic_form/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/vendor/plugins/dynamic_form/Rakefile -------------------------------------------------------------------------------- /vendor/plugins/dynamic_form/dynamic_form.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/vendor/plugins/dynamic_form/dynamic_form.gemspec -------------------------------------------------------------------------------- /vendor/plugins/dynamic_form/init.rb: -------------------------------------------------------------------------------- 1 | require 'dynamic_form' 2 | -------------------------------------------------------------------------------- /vendor/plugins/dynamic_form/lib/action_view/helpers/dynamic_form.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/vendor/plugins/dynamic_form/lib/action_view/helpers/dynamic_form.rb -------------------------------------------------------------------------------- /vendor/plugins/dynamic_form/lib/action_view/locale/en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/vendor/plugins/dynamic_form/lib/action_view/locale/en.yml -------------------------------------------------------------------------------- /vendor/plugins/dynamic_form/lib/dynamic_form.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/vendor/plugins/dynamic_form/lib/dynamic_form.rb -------------------------------------------------------------------------------- /vendor/plugins/dynamic_form/test/dynamic_form_i18n_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/vendor/plugins/dynamic_form/test/dynamic_form_i18n_test.rb -------------------------------------------------------------------------------- /vendor/plugins/dynamic_form/test/dynamic_form_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/vendor/plugins/dynamic_form/test/dynamic_form_test.rb -------------------------------------------------------------------------------- /vendor/plugins/dynamic_form/test/test_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/vendor/plugins/dynamic_form/test/test_helper.rb -------------------------------------------------------------------------------- /vendor/plugins/mobile-fu/CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/vendor/plugins/mobile-fu/CHANGELOG -------------------------------------------------------------------------------- /vendor/plugins/mobile-fu/MIT-LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/vendor/plugins/mobile-fu/MIT-LICENSE -------------------------------------------------------------------------------- /vendor/plugins/mobile-fu/README.rdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/vendor/plugins/mobile-fu/README.rdoc -------------------------------------------------------------------------------- /vendor/plugins/mobile-fu/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/vendor/plugins/mobile-fu/Rakefile -------------------------------------------------------------------------------- /vendor/plugins/mobile-fu/init.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/vendor/plugins/mobile-fu/init.rb -------------------------------------------------------------------------------- /vendor/plugins/mobile-fu/install.rb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/plugins/mobile-fu/lib/mobile_fu.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/vendor/plugins/mobile-fu/lib/mobile_fu.rb -------------------------------------------------------------------------------- /vendor/plugins/mobile-fu/lib/mobile_fu_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/vendor/plugins/mobile-fu/lib/mobile_fu_helper.rb -------------------------------------------------------------------------------- /vendor/plugins/mobile-fu/lib/mobilized_styles.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/vendor/plugins/mobile-fu/lib/mobilized_styles.rb -------------------------------------------------------------------------------- /vendor/plugins/mobile-fu/spec/mobilized_styles_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-User-Management-System/HEAD/vendor/plugins/mobile-fu/spec/mobilized_styles_spec.rb -------------------------------------------------------------------------------- /vendor/plugins/mobile-fu/spec/spec_helper.rb: -------------------------------------------------------------------------------- 1 | require File.dirname(__FILE__) + "/../lib/mobilized_styles" -------------------------------------------------------------------------------- /vendor/plugins/mobile-fu/uninstall.rb: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------