├── .env.example ├── .gitattributes ├── .gitignore ├── LICENSE ├── Parser ├── Console │ └── Commands │ │ ├── ClearDatabaseCommand.php │ │ ├── InstallCronCommand.php │ │ └── ParseCommand.php ├── Contracts │ └── ParserContract.php ├── Drivers │ └── DrupalcampLondon.php ├── Parser.php ├── Providers │ └── ConnfaParserServiceProvider.php └── config │ └── parser.php ├── app ├── Console │ ├── Commands │ │ ├── ChangePassword.php │ │ ├── EmulateEventsUpdates.php │ │ ├── Inspire.php │ │ └── SeedEvents.php │ └── Kernel.php ├── Events │ └── Event.php ├── Exceptions │ ├── DirectoryNotFoundException.php │ └── Handler.php ├── Helpers │ └── ImageHelper.php ├── Http │ ├── Controllers │ │ ├── Api │ │ │ ├── EventLevelsController.php │ │ │ ├── EventTracksController.php │ │ │ ├── EventTypesController.php │ │ │ ├── EventsController.php │ │ │ ├── FloorsController.php │ │ │ ├── LocationsController.php │ │ │ ├── PagesController.php │ │ │ ├── PointsController.php │ │ │ ├── SchedulesController.php │ │ │ ├── SettingsController.php │ │ │ ├── SpeakersController.php │ │ │ └── UpdatesController.php │ │ ├── ApiController.php │ │ ├── Auth │ │ │ ├── AuthController.php │ │ │ └── PasswordController.php │ │ ├── CMS │ │ │ ├── BaseController.php │ │ │ ├── ConferencesController.php │ │ │ ├── DashboardController.php │ │ │ ├── Events │ │ │ │ ├── BofsController.php │ │ │ │ ├── LevelsController.php │ │ │ │ ├── SessionsController.php │ │ │ │ ├── SocialController.php │ │ │ │ ├── TracksController.php │ │ │ │ └── TypesController.php │ │ │ ├── EventsController.php │ │ │ ├── FloorsController.php │ │ │ ├── LocationsController.php │ │ │ ├── PagesController.php │ │ │ ├── PointsController.php │ │ │ ├── SettingsController.php │ │ │ ├── SpeakersController.php │ │ │ ├── UploadController.php │ │ │ └── UsersController.php │ │ ├── Controller.php │ │ └── Web │ │ │ └── SchedulesController.php │ ├── Kernel.php │ ├── Middleware │ │ ├── Authenticate.php │ │ ├── EncryptCookies.php │ │ ├── RedirectIfAuthenticated.php │ │ └── VerifyCsrfToken.php │ ├── Requests │ │ ├── ConferenceRequest.php │ │ ├── EventRequest.php │ │ ├── FloorRequest.php │ │ ├── LevelRequest.php │ │ ├── LocationRequest.php │ │ ├── PageRequest.php │ │ ├── PointRequest.php │ │ ├── Request.php │ │ ├── SettingRequest.php │ │ ├── SpeakerRequest.php │ │ ├── TrackRequest.php │ │ ├── TypeRequest.php │ │ ├── UploadImageRequest.php │ │ └── UserRequest.php │ ├── breadcrumbs.php │ └── routes.php ├── Jobs │ └── Job.php ├── Listeners │ ├── .gitkeep │ └── AddLastModifiedToResponse.php ├── Models │ ├── Conference.php │ ├── Event.php │ ├── Event │ │ ├── Level.php │ │ ├── Track.php │ │ └── Type.php │ ├── Floor.php │ ├── Location.php │ ├── Page.php │ ├── Permission.php │ ├── Point.php │ ├── Role.php │ ├── Schedule.php │ ├── Setting.php │ ├── Speaker.php │ ├── Traits │ │ ├── DateFormatterTrait.php │ │ ├── OrderTrait.php │ │ └── UrlableTrait.php │ └── User.php ├── Policies │ └── .gitkeep ├── Providers │ ├── AppServiceProvider.php │ ├── AuthServiceProvider.php │ ├── EventServiceProvider.php │ └── RouteServiceProvider.php ├── Repositories │ ├── BaseRepository.php │ ├── ConferenceRepository.php │ ├── Event │ │ ├── LevelRepository.php │ │ ├── TrackRepository.php │ │ └── TypeRepository.php │ ├── EventRepository.php │ ├── FloorRepository.php │ ├── LocationRepository.php │ ├── PageRepository.php │ ├── PointRepository.php │ ├── RoleRepository.php │ ├── ScheduleRepository.php │ ├── SettingsRepository.php │ ├── SpeakerRepository.php │ ├── UpdateRepository.php │ └── UserRepository.php ├── Services │ └── ConferenceService.php ├── Support │ └── helpers.php └── Transformers │ ├── AuthentificateTransformer.php │ ├── Event │ ├── BofTransformer.php │ ├── LevelTransformer.php │ ├── SessionTransformer.php │ ├── SocialEventTransformer.php │ ├── TrackTransformer.php │ └── TypeTransformer.php │ ├── EventTransformer.php │ ├── FloorTransformer.php │ ├── InfoTransformer.php │ ├── Interfaces │ └── EmbeddedTransformer.php │ ├── LocationTransformer.php │ ├── PageTransformer.php │ ├── PointTransformer.php │ ├── ScheduleTransformer.php │ ├── SettingsTransformer.php │ ├── SpeakerTransformer.php │ └── Traits │ └── TransformTrait.php ├── artisan ├── bootstrap ├── app.php ├── autoload.php └── cache │ └── .gitignore ├── codeception.yml ├── composer.json ├── composer.lock ├── config ├── api.php ├── app.php ├── auth.php ├── breadcrumbs.php ├── broadcasting.php ├── cache.php ├── compile.php ├── database.php ├── datatables.php ├── entrust.php ├── excel.php ├── filesystems.php ├── image.php ├── mail.php ├── queue.php ├── services.php ├── session.php ├── settings.php └── view.php ├── database ├── .gitignore ├── factories │ └── ModelFactory.php ├── migrations │ ├── .gitkeep │ ├── 2014_10_12_000000_create_users_table.php │ ├── 2014_10_12_100000_create_password_resets_table.php │ ├── 2015_08_29-192817_create_settings_table.php │ ├── 2016_05_10_121655_create_speakers_table.php │ ├── 2016_05_11_084328_create_event_types_table.php │ ├── 2016_05_11_112518_create_event_levels_table.php │ ├── 2016_05_11_121504_create_event_tracks_table.php │ ├── 2016_05_11_125741_create_events_table.php │ ├── 2016_05_13_112900_create_plans_table.php │ ├── 2016_05_13_125313_create_pages_table.php │ ├── 2016_05_13_133912_create_locations_table.php │ ├── 2016_05_13_140920_create_points_table.php │ ├── 2016_08_18_112934_entrust_setup_tables.php │ ├── 2017_02_07_132152_events_text_make_nullable.php │ ├── 2017_02_22_110227_create_conferences_table.php │ ├── 2017_02_22_121420_add_conference_relations_table.php │ ├── 2017_03_03_080232_drop_unique_key_settings_table.php │ ├── 2017_03_28_081506_create_schedules_table.php │ └── 2017_03_28_081510_create_schedules_events_table.php └── seeds │ ├── .gitkeep │ ├── ConferencesTableSeeder.php │ ├── DatabaseSeeder.php │ ├── EventLevelsTableSeeder.php │ ├── EventTracksTableSeeder.php │ ├── EventTypesTableSeeder.php │ ├── EventsTableSeeder.php │ ├── FloorsTableSeeder.php │ ├── LocationsTableSeeder.php │ ├── PagesTableSeeder.php │ ├── PermissionsTableSeeder.php │ ├── PointsTableSeeder.php │ ├── RolesTableSeeder.php │ ├── SchedulesTableSeeder.php │ ├── SettingsTableSeeder.php │ ├── SpeakersTableSeeder.php │ └── UsersTableSeeder.php ├── gulpfile.js ├── package.json ├── phpunit.xml ├── public ├── .htaccess ├── api │ └── docs │ │ ├── favicon-16x16.png │ │ ├── favicon-32x32.png │ │ ├── index.html │ │ ├── oauth2-redirect.html │ │ ├── swagger-ui-bundle.js │ │ ├── swagger-ui-bundle.js.map │ │ ├── swagger-ui-standalone-preset.js │ │ ├── swagger-ui-standalone-preset.js.map │ │ ├── swagger-ui.css │ │ ├── swagger-ui.css.map │ │ ├── swagger-ui.js │ │ └── swagger-ui.js.map ├── apple-app-site-association.example ├── assets │ ├── css │ │ ├── custom.css │ │ ├── dataTables.bootstrap.min.css │ │ └── maps │ │ │ └── jquery-jvectormap-2.0.3.css │ ├── images │ │ ├── 1.png │ │ ├── 4.jpg │ │ ├── american-express.png │ │ ├── apple-store-icon.png │ │ ├── apple-touch-icon-precomposed.png │ │ ├── back_disabled.png │ │ ├── back_enabled.png │ │ ├── back_enabled_hover.png │ │ ├── bootstrap-colorpicker │ │ │ ├── alpha-horizontal.png │ │ │ ├── alpha.png │ │ │ ├── hue-horizontal.png │ │ │ ├── hue.png │ │ │ └── saturation.png │ │ ├── data.png │ │ ├── favicon.ico │ │ ├── forward_disabled.png │ │ ├── forward_enabled.png │ │ ├── forward_enabled_hover.png │ │ ├── google-play-icon.png │ │ ├── icons.png │ │ ├── img.jpg │ │ ├── loading.gif │ │ ├── mastercard.png │ │ ├── paypal2.png │ │ ├── picture-2.jpg │ │ ├── picture.jpg │ │ ├── picture2.jpg │ │ ├── prod1.jpg │ │ ├── prod2.jpg │ │ ├── prod3.jpg │ │ ├── prod4.jpg │ │ ├── prod5.jpg │ │ ├── sprite-skin-flat.png │ │ ├── sprite-skin-modern.png │ │ ├── sprite-skin-nice.png │ │ ├── sprite-skin-simple.png │ │ ├── user.png │ │ └── visa.png │ ├── js │ │ ├── custom.js │ │ ├── dataTables.bootstrap.min.js │ │ ├── jquery.dataTables.min.js │ │ ├── jquery.synctranslit.min.js │ │ └── moment │ │ │ └── moment.min.js │ ├── less │ │ └── custom.css │ └── vendors │ │ ├── bootstrap-datetimepicker │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── .jscs.json │ │ ├── .npmignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bower.json │ │ ├── build │ │ │ ├── build.less │ │ │ └── build_standalone.less │ │ ├── css │ │ │ ├── bootstrap-datetimepicker.css │ │ │ └── bootstrap-datetimepicker.min.css │ │ ├── js │ │ │ ├── bootstrap-datetimepicker.js │ │ │ ├── bootstrap-datetimepicker.min.js │ │ │ └── locales │ │ │ │ ├── bootstrap-datetimepicker.ar.js │ │ │ │ ├── bootstrap-datetimepicker.az.js │ │ │ │ ├── bootstrap-datetimepicker.bg.js │ │ │ │ ├── bootstrap-datetimepicker.bn.js │ │ │ │ ├── bootstrap-datetimepicker.ca.js │ │ │ │ ├── bootstrap-datetimepicker.cs.js │ │ │ │ ├── bootstrap-datetimepicker.da.js │ │ │ │ ├── bootstrap-datetimepicker.de.js │ │ │ │ ├── bootstrap-datetimepicker.ee.js │ │ │ │ ├── bootstrap-datetimepicker.el.js │ │ │ │ ├── bootstrap-datetimepicker.es.js │ │ │ │ ├── bootstrap-datetimepicker.fi.js │ │ │ │ ├── bootstrap-datetimepicker.fr.js │ │ │ │ ├── bootstrap-datetimepicker.he.js │ │ │ │ ├── bootstrap-datetimepicker.hr.js │ │ │ │ ├── bootstrap-datetimepicker.hu.js │ │ │ │ ├── bootstrap-datetimepicker.hy.js │ │ │ │ ├── bootstrap-datetimepicker.id.js │ │ │ │ ├── bootstrap-datetimepicker.is.js │ │ │ │ ├── bootstrap-datetimepicker.it.js │ │ │ │ ├── bootstrap-datetimepicker.ja.js │ │ │ │ ├── bootstrap-datetimepicker.ka.js │ │ │ │ ├── bootstrap-datetimepicker.ko.js │ │ │ │ ├── bootstrap-datetimepicker.lt.js │ │ │ │ ├── bootstrap-datetimepicker.lv.js │ │ │ │ ├── bootstrap-datetimepicker.ms.js │ │ │ │ ├── bootstrap-datetimepicker.nb.js │ │ │ │ ├── bootstrap-datetimepicker.nl.js │ │ │ │ ├── bootstrap-datetimepicker.no.js │ │ │ │ ├── bootstrap-datetimepicker.pl.js │ │ │ │ ├── bootstrap-datetimepicker.pt-BR.js │ │ │ │ ├── bootstrap-datetimepicker.pt.js │ │ │ │ ├── bootstrap-datetimepicker.ro.js │ │ │ │ ├── bootstrap-datetimepicker.rs-latin.js │ │ │ │ ├── bootstrap-datetimepicker.rs.js │ │ │ │ ├── bootstrap-datetimepicker.ru.js │ │ │ │ ├── bootstrap-datetimepicker.sk.js │ │ │ │ ├── bootstrap-datetimepicker.sl.js │ │ │ │ ├── bootstrap-datetimepicker.sv.js │ │ │ │ ├── bootstrap-datetimepicker.sw.js │ │ │ │ ├── bootstrap-datetimepicker.th.js │ │ │ │ ├── bootstrap-datetimepicker.tr.js │ │ │ │ ├── bootstrap-datetimepicker.ua.js │ │ │ │ ├── bootstrap-datetimepicker.uk.js │ │ │ │ ├── bootstrap-datetimepicker.zh-CN.js │ │ │ │ └── bootstrap-datetimepicker.zh-TW.js │ │ ├── less │ │ │ └── datetimepicker.less │ │ ├── minify.sh │ │ ├── package.json │ │ ├── sample in bootstrap v2 │ │ │ ├── bootstrap │ │ │ │ ├── css │ │ │ │ │ ├── bootstrap.css │ │ │ │ │ └── bootstrap.min.css │ │ │ │ ├── img │ │ │ │ │ ├── glyphicons-halflings-white.png │ │ │ │ │ └── glyphicons-halflings.png │ │ │ │ └── js │ │ │ │ │ ├── bootstrap.js │ │ │ │ │ └── bootstrap.min.js │ │ │ ├── index.html │ │ │ └── jquery │ │ │ │ └── jquery-1.8.3.min.js │ │ ├── sample in bootstrap v3 │ │ │ ├── bootstrap │ │ │ │ ├── css │ │ │ │ │ ├── bootstrap-theme.css │ │ │ │ │ ├── bootstrap-theme.min.css │ │ │ │ │ ├── bootstrap.css │ │ │ │ │ └── bootstrap.min.css │ │ │ │ ├── fonts │ │ │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ │ │ └── glyphicons-halflings-regular.woff │ │ │ │ └── js │ │ │ │ │ ├── bootstrap.js │ │ │ │ │ └── bootstrap.min.js │ │ │ ├── index.html │ │ │ └── jquery │ │ │ │ └── jquery-1.8.3.min.js │ │ ├── screenshot │ │ │ ├── standard_day.png │ │ │ ├── standard_day_meridian.png │ │ │ ├── standard_decade.png │ │ │ ├── standard_full.png │ │ │ ├── standard_hour.png │ │ │ ├── standard_hour_meridian.png │ │ │ ├── standard_month.png │ │ │ └── standard_year.png │ │ └── tests │ │ │ ├── README.md │ │ │ ├── _coverage.html │ │ │ ├── assets │ │ │ ├── coverage.js │ │ │ ├── jquery-1.7.1.min.js │ │ │ ├── mock.js │ │ │ ├── qunit-logging.js │ │ │ ├── qunit.css │ │ │ ├── qunit.js │ │ │ └── utils.js │ │ │ ├── run-qunit.js │ │ │ ├── suites │ │ │ ├── component.js │ │ │ ├── events.js │ │ │ ├── formats.js │ │ │ ├── inline.js │ │ │ ├── keyboard_navigation │ │ │ │ ├── 2011.js │ │ │ │ ├── 2012.js │ │ │ │ └── all.js │ │ │ ├── mouse_navigation │ │ │ │ ├── 2011.js │ │ │ │ ├── 2012.js │ │ │ │ └── all.js │ │ │ └── options.js │ │ │ ├── tests.html │ │ │ └── tests.min.html │ │ ├── bootstrap │ │ ├── .bower.json │ │ ├── CHANGELOG.md │ │ ├── Gruntfile.js │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bower.json │ │ ├── dist │ │ │ ├── css │ │ │ │ ├── bootstrap-theme.css │ │ │ │ ├── bootstrap-theme.css.map │ │ │ │ ├── bootstrap-theme.min.css │ │ │ │ ├── bootstrap-theme.min.css.map │ │ │ │ ├── bootstrap.css │ │ │ │ ├── bootstrap.css.map │ │ │ │ ├── bootstrap.min.css │ │ │ │ └── bootstrap.min.css.map │ │ │ ├── fonts │ │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ │ └── glyphicons-halflings-regular.woff2 │ │ │ └── js │ │ │ │ ├── bootstrap.js │ │ │ │ ├── bootstrap.min.js │ │ │ │ └── npm.js │ │ ├── fonts │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ └── glyphicons-halflings-regular.woff2 │ │ ├── grunt │ │ │ ├── .jshintrc │ │ │ ├── bs-commonjs-generator.js │ │ │ ├── bs-glyphicons-data-generator.js │ │ │ ├── bs-lessdoc-parser.js │ │ │ ├── bs-raw-files-generator.js │ │ │ ├── configBridge.json │ │ │ └── sauce_browsers.yml │ │ ├── js │ │ │ ├── .jscsrc │ │ │ ├── .jshintrc │ │ │ ├── affix.js │ │ │ ├── alert.js │ │ │ ├── button.js │ │ │ ├── carousel.js │ │ │ ├── collapse.js │ │ │ ├── dropdown.js │ │ │ ├── modal.js │ │ │ ├── popover.js │ │ │ ├── scrollspy.js │ │ │ ├── tab.js │ │ │ ├── tooltip.js │ │ │ └── transition.js │ │ ├── less │ │ │ ├── .csscomb.json │ │ │ ├── .csslintrc │ │ │ ├── alerts.less │ │ │ ├── badges.less │ │ │ ├── bootstrap.less │ │ │ ├── breadcrumbs.less │ │ │ ├── button-groups.less │ │ │ ├── buttons.less │ │ │ ├── carousel.less │ │ │ ├── close.less │ │ │ ├── code.less │ │ │ ├── component-animations.less │ │ │ ├── dropdowns.less │ │ │ ├── forms.less │ │ │ ├── glyphicons.less │ │ │ ├── grid.less │ │ │ ├── input-groups.less │ │ │ ├── jumbotron.less │ │ │ ├── labels.less │ │ │ ├── list-group.less │ │ │ ├── media.less │ │ │ ├── mixins.less │ │ │ ├── mixins │ │ │ │ ├── alerts.less │ │ │ │ ├── background-variant.less │ │ │ │ ├── border-radius.less │ │ │ │ ├── buttons.less │ │ │ │ ├── center-block.less │ │ │ │ ├── clearfix.less │ │ │ │ ├── forms.less │ │ │ │ ├── gradients.less │ │ │ │ ├── grid-framework.less │ │ │ │ ├── grid.less │ │ │ │ ├── hide-text.less │ │ │ │ ├── image.less │ │ │ │ ├── labels.less │ │ │ │ ├── list-group.less │ │ │ │ ├── nav-divider.less │ │ │ │ ├── nav-vertical-align.less │ │ │ │ ├── opacity.less │ │ │ │ ├── pagination.less │ │ │ │ ├── panels.less │ │ │ │ ├── progress-bar.less │ │ │ │ ├── reset-filter.less │ │ │ │ ├── reset-text.less │ │ │ │ ├── resize.less │ │ │ │ ├── responsive-visibility.less │ │ │ │ ├── size.less │ │ │ │ ├── tab-focus.less │ │ │ │ ├── table-row.less │ │ │ │ ├── text-emphasis.less │ │ │ │ ├── text-overflow.less │ │ │ │ └── vendor-prefixes.less │ │ │ ├── modals.less │ │ │ ├── navbar.less │ │ │ ├── navs.less │ │ │ ├── normalize.less │ │ │ ├── pager.less │ │ │ ├── pagination.less │ │ │ ├── panels.less │ │ │ ├── popovers.less │ │ │ ├── print.less │ │ │ ├── progress-bars.less │ │ │ ├── responsive-embed.less │ │ │ ├── responsive-utilities.less │ │ │ ├── scaffolding.less │ │ │ ├── tables.less │ │ │ ├── theme.less │ │ │ ├── thumbnails.less │ │ │ ├── tooltip.less │ │ │ ├── type.less │ │ │ ├── utilities.less │ │ │ ├── variables.less │ │ │ └── wells.less │ │ ├── nuget │ │ │ ├── MyGet.ps1 │ │ │ ├── bootstrap.less.nuspec │ │ │ └── bootstrap.nuspec │ │ ├── package.js │ │ └── package.json │ │ ├── ckeditor │ │ ├── CHANGES.md │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── adapters │ │ │ └── jquery.js │ │ ├── build-config.js │ │ ├── ckeditor.js │ │ ├── config.js │ │ ├── contents.css │ │ ├── lang │ │ │ ├── af.js │ │ │ ├── ar.js │ │ │ ├── bg.js │ │ │ ├── bn.js │ │ │ ├── bs.js │ │ │ ├── ca.js │ │ │ ├── cs.js │ │ │ ├── cy.js │ │ │ ├── da.js │ │ │ ├── de-ch.js │ │ │ ├── de.js │ │ │ ├── el.js │ │ │ ├── en-au.js │ │ │ ├── en-ca.js │ │ │ ├── en-gb.js │ │ │ ├── en.js │ │ │ ├── eo.js │ │ │ ├── es.js │ │ │ ├── et.js │ │ │ ├── eu.js │ │ │ ├── fa.js │ │ │ ├── fi.js │ │ │ ├── fo.js │ │ │ ├── fr-ca.js │ │ │ ├── fr.js │ │ │ ├── gl.js │ │ │ ├── gu.js │ │ │ ├── he.js │ │ │ ├── hi.js │ │ │ ├── hr.js │ │ │ ├── hu.js │ │ │ ├── id.js │ │ │ ├── is.js │ │ │ ├── it.js │ │ │ ├── ja.js │ │ │ ├── ka.js │ │ │ ├── km.js │ │ │ ├── ko.js │ │ │ ├── ku.js │ │ │ ├── lt.js │ │ │ ├── lv.js │ │ │ ├── mk.js │ │ │ ├── mn.js │ │ │ ├── ms.js │ │ │ ├── nb.js │ │ │ ├── nl.js │ │ │ ├── no.js │ │ │ ├── pl.js │ │ │ ├── pt-br.js │ │ │ ├── pt.js │ │ │ ├── ro.js │ │ │ ├── ru.js │ │ │ ├── si.js │ │ │ ├── sk.js │ │ │ ├── sl.js │ │ │ ├── sq.js │ │ │ ├── sr-latn.js │ │ │ ├── sr.js │ │ │ ├── sv.js │ │ │ ├── th.js │ │ │ ├── tr.js │ │ │ ├── tt.js │ │ │ ├── ug.js │ │ │ ├── uk.js │ │ │ ├── vi.js │ │ │ ├── zh-cn.js │ │ │ └── zh.js │ │ ├── plugins │ │ │ ├── a11yhelp │ │ │ │ └── dialogs │ │ │ │ │ ├── a11yhelp.js │ │ │ │ │ └── lang │ │ │ │ │ ├── _translationstatus.txt │ │ │ │ │ ├── af.js │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── cy.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de-ch.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en-gb.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── eu.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fo.js │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── gu.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hi.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── id.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── km.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── lt.js │ │ │ │ │ ├── lv.js │ │ │ │ │ ├── mk.js │ │ │ │ │ ├── mn.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── no.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ro.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── si.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sl.js │ │ │ │ │ ├── sq.js │ │ │ │ │ ├── sr-latn.js │ │ │ │ │ ├── sr.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── th.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── tt.js │ │ │ │ │ ├── ug.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── vi.js │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ └── zh.js │ │ │ ├── about │ │ │ │ └── dialogs │ │ │ │ │ ├── about.js │ │ │ │ │ ├── hidpi │ │ │ │ │ └── logo_ckeditor.png │ │ │ │ │ └── logo_ckeditor.png │ │ │ ├── clipboard │ │ │ │ └── dialogs │ │ │ │ │ └── paste.js │ │ │ ├── dialog │ │ │ │ └── dialogDefinition.js │ │ │ ├── filetools │ │ │ │ ├── dev │ │ │ │ │ └── uploaddebugger.js │ │ │ │ ├── lang │ │ │ │ │ ├── az.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de-ch.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── eu.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── id.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── km.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── oc.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── ug.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ └── zh.js │ │ │ │ └── plugin.js │ │ │ ├── icons.png │ │ │ ├── icons_hidpi.png │ │ │ ├── image │ │ │ │ ├── dialogs │ │ │ │ │ └── image.js │ │ │ │ └── images │ │ │ │ │ └── noimage.png │ │ │ ├── image2 │ │ │ │ ├── dev │ │ │ │ │ ├── assets │ │ │ │ │ │ ├── image1.jpg │ │ │ │ │ │ └── image2.jpg │ │ │ │ │ ├── contents.css │ │ │ │ │ └── image2.html │ │ │ │ ├── dialogs │ │ │ │ │ └── image2.js │ │ │ │ ├── icons │ │ │ │ │ ├── hidpi │ │ │ │ │ │ └── image.png │ │ │ │ │ └── image.png │ │ │ │ ├── lang │ │ │ │ │ ├── af.js │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── az.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── bn.js │ │ │ │ │ ├── bs.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── cy.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de-ch.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en-au.js │ │ │ │ │ ├── en-ca.js │ │ │ │ │ ├── en-gb.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── eu.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fo.js │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── gu.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hi.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── id.js │ │ │ │ │ ├── is.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── ka.js │ │ │ │ │ ├── km.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── lt.js │ │ │ │ │ ├── lv.js │ │ │ │ │ ├── mk.js │ │ │ │ │ ├── mn.js │ │ │ │ │ ├── ms.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── no.js │ │ │ │ │ ├── oc.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ro.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── si.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sl.js │ │ │ │ │ ├── sq.js │ │ │ │ │ ├── sr-latn.js │ │ │ │ │ ├── sr.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── th.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── tt.js │ │ │ │ │ ├── ug.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── vi.js │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ └── zh.js │ │ │ │ ├── plugin.js │ │ │ │ └── samples │ │ │ │ │ ├── assets │ │ │ │ │ ├── image1.jpg │ │ │ │ │ └── image2.jpg │ │ │ │ │ └── image2.html │ │ │ ├── justify │ │ │ │ ├── icons │ │ │ │ │ ├── hidpi │ │ │ │ │ │ ├── justifyblock.png │ │ │ │ │ │ ├── justifycenter.png │ │ │ │ │ │ ├── justifyleft.png │ │ │ │ │ │ └── justifyright.png │ │ │ │ │ ├── justifyblock.png │ │ │ │ │ ├── justifycenter.png │ │ │ │ │ ├── justifyleft.png │ │ │ │ │ └── justifyright.png │ │ │ │ ├── lang │ │ │ │ │ ├── af.js │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── az.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── bn.js │ │ │ │ │ ├── bs.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── cy.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de-ch.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en-au.js │ │ │ │ │ ├── en-ca.js │ │ │ │ │ ├── en-gb.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── eu.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fo.js │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── gu.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hi.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── id.js │ │ │ │ │ ├── is.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── ka.js │ │ │ │ │ ├── km.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── lt.js │ │ │ │ │ ├── lv.js │ │ │ │ │ ├── mk.js │ │ │ │ │ ├── mn.js │ │ │ │ │ ├── ms.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── no.js │ │ │ │ │ ├── oc.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ro.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── si.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sl.js │ │ │ │ │ ├── sq.js │ │ │ │ │ ├── sr-latn.js │ │ │ │ │ ├── sr.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── th.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── tt.js │ │ │ │ │ ├── ug.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── vi.js │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ └── zh.js │ │ │ │ └── plugin.js │ │ │ ├── lineutils │ │ │ │ ├── dev │ │ │ │ │ ├── dnd.html │ │ │ │ │ └── magicfinger.html │ │ │ │ └── plugin.js │ │ │ ├── link │ │ │ │ ├── dialogs │ │ │ │ │ ├── anchor.js │ │ │ │ │ └── link.js │ │ │ │ └── images │ │ │ │ │ ├── anchor.png │ │ │ │ │ └── hidpi │ │ │ │ │ └── anchor.png │ │ │ ├── magicline │ │ │ │ └── images │ │ │ │ │ ├── hidpi │ │ │ │ │ ├── icon-rtl.png │ │ │ │ │ └── icon.png │ │ │ │ │ ├── icon-rtl.png │ │ │ │ │ └── icon.png │ │ │ ├── notification │ │ │ │ ├── lang │ │ │ │ │ ├── az.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de-ch.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── eu.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── id.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── km.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── oc.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── ug.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ └── zh.js │ │ │ │ └── plugin.js │ │ │ ├── notificationaggregator │ │ │ │ └── plugin.js │ │ │ ├── pastefromword │ │ │ │ └── filter │ │ │ │ │ └── default.js │ │ │ ├── scayt │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── LICENSE.md │ │ │ │ ├── README.md │ │ │ │ └── dialogs │ │ │ │ │ ├── options.js │ │ │ │ │ └── toolbar.css │ │ │ ├── specialchar │ │ │ │ └── dialogs │ │ │ │ │ ├── lang │ │ │ │ │ ├── _translationstatus.txt │ │ │ │ │ ├── af.js │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── cy.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de-ch.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en-gb.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── eu.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── id.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── km.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── lt.js │ │ │ │ │ ├── lv.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── no.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── si.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sl.js │ │ │ │ │ ├── sq.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── th.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── tt.js │ │ │ │ │ ├── ug.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── vi.js │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ └── zh.js │ │ │ │ │ └── specialchar.js │ │ │ ├── table │ │ │ │ └── dialogs │ │ │ │ │ └── table.js │ │ │ ├── tabletools │ │ │ │ └── dialogs │ │ │ │ │ └── tableCell.js │ │ │ ├── uploadimage │ │ │ │ └── plugin.js │ │ │ ├── uploadwidget │ │ │ │ ├── dev │ │ │ │ │ ├── cors.html │ │ │ │ │ ├── filereaderplugin.js │ │ │ │ │ └── upload.html │ │ │ │ ├── lang │ │ │ │ │ ├── az.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de-ch.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── eu.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── id.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── km.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── no.js │ │ │ │ │ ├── oc.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── ug.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ └── zh.js │ │ │ │ └── plugin.js │ │ │ ├── widget │ │ │ │ ├── dev │ │ │ │ │ ├── assets │ │ │ │ │ │ ├── contents.css │ │ │ │ │ │ ├── sample.jpg │ │ │ │ │ │ └── simplebox │ │ │ │ │ │ │ ├── contents.css │ │ │ │ │ │ │ ├── dialogs │ │ │ │ │ │ │ └── simplebox.js │ │ │ │ │ │ │ ├── icons │ │ │ │ │ │ │ └── simplebox.png │ │ │ │ │ │ │ └── plugin.js │ │ │ │ │ ├── console.js │ │ │ │ │ ├── nestedwidgets.html │ │ │ │ │ └── widgetstyles.html │ │ │ │ ├── images │ │ │ │ │ └── handle.png │ │ │ │ ├── lang │ │ │ │ │ ├── af.js │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── az.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── cy.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de-ch.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en-gb.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── eu.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── id.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── km.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── lv.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── no.js │ │ │ │ │ ├── oc.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sl.js │ │ │ │ │ ├── sq.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── tt.js │ │ │ │ │ ├── ug.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── vi.js │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ └── zh.js │ │ │ │ └── plugin.js │ │ │ ├── widgetselection │ │ │ │ └── plugin.js │ │ │ └── wsc │ │ │ │ ├── LICENSE.md │ │ │ │ ├── README.md │ │ │ │ └── dialogs │ │ │ │ ├── ciframe.html │ │ │ │ ├── tmpFrameset.html │ │ │ │ ├── wsc.css │ │ │ │ ├── wsc.js │ │ │ │ └── wsc_ie.js │ │ ├── samples │ │ │ ├── css │ │ │ │ └── samples.css │ │ │ ├── img │ │ │ │ ├── github-top.png │ │ │ │ ├── header-bg.png │ │ │ │ ├── header-separator.png │ │ │ │ ├── logo.png │ │ │ │ └── navigation-tip.png │ │ │ ├── index.html │ │ │ ├── js │ │ │ │ ├── sample.js │ │ │ │ └── sf.js │ │ │ ├── old │ │ │ │ ├── ajax.html │ │ │ │ ├── api.html │ │ │ │ ├── appendto.html │ │ │ │ ├── assets │ │ │ │ │ ├── inlineall │ │ │ │ │ │ └── logo.png │ │ │ │ │ ├── outputxhtml │ │ │ │ │ │ └── outputxhtml.css │ │ │ │ │ ├── posteddata.php │ │ │ │ │ ├── sample.jpg │ │ │ │ │ └── uilanguages │ │ │ │ │ │ └── languages.js │ │ │ │ ├── datafiltering.html │ │ │ │ ├── dialog │ │ │ │ │ ├── assets │ │ │ │ │ │ └── my_dialog.js │ │ │ │ │ └── dialog.html │ │ │ │ ├── divreplace.html │ │ │ │ ├── enterkey │ │ │ │ │ └── enterkey.html │ │ │ │ ├── htmlwriter │ │ │ │ │ ├── assets │ │ │ │ │ │ └── outputforflash │ │ │ │ │ │ │ ├── outputforflash.fla │ │ │ │ │ │ │ ├── outputforflash.swf │ │ │ │ │ │ │ └── swfobject.js │ │ │ │ │ ├── outputforflash.html │ │ │ │ │ └── outputhtml.html │ │ │ │ ├── index.html │ │ │ │ ├── inlineall.html │ │ │ │ ├── inlinebycode.html │ │ │ │ ├── inlinetextarea.html │ │ │ │ ├── jquery.html │ │ │ │ ├── magicline │ │ │ │ │ └── magicline.html │ │ │ │ ├── readonly.html │ │ │ │ ├── replacebyclass.html │ │ │ │ ├── replacebycode.html │ │ │ │ ├── sample.css │ │ │ │ ├── sample.js │ │ │ │ ├── sample_posteddata.php │ │ │ │ ├── tabindex.html │ │ │ │ ├── toolbar │ │ │ │ │ └── toolbar.html │ │ │ │ ├── uicolor.html │ │ │ │ ├── uilanguages.html │ │ │ │ ├── wysiwygarea │ │ │ │ │ └── fullpage.html │ │ │ │ └── xhtmlstyle.html │ │ │ └── toolbarconfigurator │ │ │ │ ├── css │ │ │ │ └── fontello.css │ │ │ │ ├── font │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── config.json │ │ │ │ ├── fontello.eot │ │ │ │ ├── fontello.svg │ │ │ │ ├── fontello.ttf │ │ │ │ └── fontello.woff │ │ │ │ ├── index.html │ │ │ │ ├── js │ │ │ │ ├── abstracttoolbarmodifier.js │ │ │ │ ├── fulltoolbareditor.js │ │ │ │ ├── toolbarmodifier.js │ │ │ │ └── toolbartextmodifier.js │ │ │ │ └── lib │ │ │ │ └── codemirror │ │ │ │ ├── LICENSE │ │ │ │ ├── codemirror.css │ │ │ │ ├── codemirror.js │ │ │ │ ├── javascript.js │ │ │ │ ├── neo.css │ │ │ │ ├── show-hint.css │ │ │ │ └── show-hint.js │ │ ├── skins │ │ │ └── moono │ │ │ │ ├── dialog.css │ │ │ │ ├── dialog_ie.css │ │ │ │ ├── dialog_ie7.css │ │ │ │ ├── dialog_ie8.css │ │ │ │ ├── dialog_iequirks.css │ │ │ │ ├── editor.css │ │ │ │ ├── editor_gecko.css │ │ │ │ ├── editor_ie.css │ │ │ │ ├── editor_ie7.css │ │ │ │ ├── editor_ie8.css │ │ │ │ ├── editor_iequirks.css │ │ │ │ ├── icons.png │ │ │ │ ├── icons_hidpi.png │ │ │ │ ├── images │ │ │ │ ├── arrow.png │ │ │ │ ├── close.png │ │ │ │ ├── hidpi │ │ │ │ │ ├── close.png │ │ │ │ │ ├── lock-open.png │ │ │ │ │ ├── lock.png │ │ │ │ │ └── refresh.png │ │ │ │ ├── lock-open.png │ │ │ │ ├── lock.png │ │ │ │ ├── refresh.png │ │ │ │ └── spinner.gif │ │ │ │ └── readme.md │ │ └── styles.js │ │ ├── font-awesome │ │ ├── .bower.json │ │ ├── .gitignore │ │ ├── .npmignore │ │ ├── HELP-US-OUT.txt │ │ ├── bower.json │ │ ├── css │ │ │ ├── font-awesome.css │ │ │ ├── font-awesome.css.map │ │ │ └── font-awesome.min.css │ │ ├── fonts │ │ │ ├── 4.4.0 │ │ │ │ └── index.html │ │ │ ├── FontAwesome.otf │ │ │ ├── fontawesome-webfont.eot │ │ │ ├── fontawesome-webfont.svg │ │ │ ├── fontawesome-webfont.ttf │ │ │ ├── fontawesome-webfont.woff │ │ │ └── fontawesome-webfont.woff2 │ │ ├── less │ │ │ ├── animated.less │ │ │ ├── bordered-pulled.less │ │ │ ├── core.less │ │ │ ├── fixed-width.less │ │ │ ├── font-awesome.less │ │ │ ├── icons.less │ │ │ ├── larger.less │ │ │ ├── list.less │ │ │ ├── mixins.less │ │ │ ├── path.less │ │ │ ├── rotated-flipped.less │ │ │ ├── screen-reader.less │ │ │ ├── stacked.less │ │ │ └── variables.less │ │ └── scss │ │ │ ├── _animated.scss │ │ │ ├── _bordered-pulled.scss │ │ │ ├── _core.scss │ │ │ ├── _fixed-width.scss │ │ │ ├── _icons.scss │ │ │ ├── _larger.scss │ │ │ ├── _list.scss │ │ │ ├── _mixins.scss │ │ │ ├── _path.scss │ │ │ ├── _rotated-flipped.scss │ │ │ ├── _screen-reader.scss │ │ │ ├── _stacked.scss │ │ │ ├── _variables.scss │ │ │ └── font-awesome.scss │ │ ├── iCheck │ │ ├── .bower.json │ │ ├── bower.json │ │ ├── icheck.jquery.json │ │ ├── icheck.js │ │ ├── icheck.min.js │ │ └── skins │ │ │ ├── all.css │ │ │ ├── flat │ │ │ ├── _all.css │ │ │ ├── aero.css │ │ │ ├── aero.png │ │ │ ├── aero@2x.png │ │ │ ├── blue.css │ │ │ ├── blue.png │ │ │ ├── blue@2x.png │ │ │ ├── flat.css │ │ │ ├── flat.png │ │ │ ├── flat@2x.png │ │ │ ├── green.css │ │ │ ├── green.png │ │ │ ├── green@2x.png │ │ │ ├── grey.css │ │ │ ├── grey.png │ │ │ ├── grey@2x.png │ │ │ ├── orange.css │ │ │ ├── orange.png │ │ │ ├── orange@2x.png │ │ │ ├── pink.css │ │ │ ├── pink.png │ │ │ ├── pink@2x.png │ │ │ ├── purple.css │ │ │ ├── purple.png │ │ │ ├── purple@2x.png │ │ │ ├── red.css │ │ │ ├── red.png │ │ │ ├── red@2x.png │ │ │ ├── yellow.css │ │ │ ├── yellow.png │ │ │ └── yellow@2x.png │ │ │ ├── futurico │ │ │ ├── futurico.css │ │ │ ├── futurico.png │ │ │ └── futurico@2x.png │ │ │ ├── line │ │ │ ├── _all.css │ │ │ ├── aero.css │ │ │ ├── blue.css │ │ │ ├── green.css │ │ │ ├── grey.css │ │ │ ├── line.css │ │ │ ├── line.png │ │ │ ├── line@2x.png │ │ │ ├── orange.css │ │ │ ├── pink.css │ │ │ ├── purple.css │ │ │ ├── red.css │ │ │ └── yellow.css │ │ │ ├── minimal │ │ │ ├── _all.css │ │ │ ├── aero.css │ │ │ ├── aero.png │ │ │ ├── aero@2x.png │ │ │ ├── blue.css │ │ │ ├── blue.png │ │ │ ├── blue@2x.png │ │ │ ├── green.css │ │ │ ├── green.png │ │ │ ├── green@2x.png │ │ │ ├── grey.css │ │ │ ├── grey.png │ │ │ ├── grey@2x.png │ │ │ ├── minimal.css │ │ │ ├── minimal.png │ │ │ ├── minimal@2x.png │ │ │ ├── orange.css │ │ │ ├── orange.png │ │ │ ├── orange@2x.png │ │ │ ├── pink.css │ │ │ ├── pink.png │ │ │ ├── pink@2x.png │ │ │ ├── purple.css │ │ │ ├── purple.png │ │ │ ├── purple@2x.png │ │ │ ├── red.css │ │ │ ├── red.png │ │ │ ├── red@2x.png │ │ │ ├── yellow.css │ │ │ ├── yellow.png │ │ │ └── yellow@2x.png │ │ │ ├── polaris │ │ │ ├── polaris.css │ │ │ ├── polaris.png │ │ │ └── polaris@2x.png │ │ │ └── square │ │ │ ├── _all.css │ │ │ ├── aero.css │ │ │ ├── aero.png │ │ │ ├── aero@2x.png │ │ │ ├── blue.css │ │ │ ├── blue.png │ │ │ ├── blue@2x.png │ │ │ ├── green.css │ │ │ ├── green.png │ │ │ ├── green@2x.png │ │ │ ├── grey.css │ │ │ ├── grey.png │ │ │ ├── grey@2x.png │ │ │ ├── orange.css │ │ │ ├── orange.png │ │ │ ├── orange@2x.png │ │ │ ├── pink.css │ │ │ ├── pink.png │ │ │ ├── pink@2x.png │ │ │ ├── purple.css │ │ │ ├── purple.png │ │ │ ├── purple@2x.png │ │ │ ├── red.css │ │ │ ├── red.png │ │ │ ├── red@2x.png │ │ │ ├── square.css │ │ │ ├── square.png │ │ │ ├── square@2x.png │ │ │ ├── yellow.css │ │ │ ├── yellow.png │ │ │ └── yellow@2x.png │ │ ├── jquery │ │ ├── .bower.json │ │ ├── AUTHORS.txt │ │ ├── LICENSE.txt │ │ ├── README.md │ │ ├── bower.json │ │ ├── dist │ │ │ ├── jquery.js │ │ │ ├── jquery.min.js │ │ │ ├── jquery.min.map │ │ │ ├── jquery.slim.js │ │ │ ├── jquery.slim.min.js │ │ │ └── jquery.slim.min.map │ │ ├── sizzle │ │ │ ├── LICENSE.txt │ │ │ └── dist │ │ │ │ ├── sizzle.js │ │ │ │ ├── sizzle.min.js │ │ │ │ └── sizzle.min.map │ │ └── src │ │ │ ├── .jshintrc │ │ │ ├── ajax.js │ │ │ ├── ajax │ │ │ ├── jsonp.js │ │ │ ├── load.js │ │ │ ├── parseJSON.js │ │ │ ├── parseXML.js │ │ │ ├── script.js │ │ │ ├── var │ │ │ │ ├── location.js │ │ │ │ ├── nonce.js │ │ │ │ └── rquery.js │ │ │ └── xhr.js │ │ │ ├── attributes.js │ │ │ ├── attributes │ │ │ ├── attr.js │ │ │ ├── classes.js │ │ │ ├── prop.js │ │ │ ├── support.js │ │ │ └── val.js │ │ │ ├── callbacks.js │ │ │ ├── core.js │ │ │ ├── core │ │ │ ├── DOMEval.js │ │ │ ├── access.js │ │ │ ├── init.js │ │ │ ├── parseHTML.js │ │ │ ├── ready.js │ │ │ ├── support.js │ │ │ └── var │ │ │ │ └── rsingleTag.js │ │ │ ├── css.js │ │ │ ├── css │ │ │ ├── addGetHookIf.js │ │ │ ├── adjustCSS.js │ │ │ ├── curCSS.js │ │ │ ├── defaultDisplay.js │ │ │ ├── hiddenVisibleSelectors.js │ │ │ ├── showHide.js │ │ │ ├── support.js │ │ │ └── var │ │ │ │ ├── cssExpand.js │ │ │ │ ├── getStyles.js │ │ │ │ ├── isHidden.js │ │ │ │ ├── rmargin.js │ │ │ │ ├── rnumnonpx.js │ │ │ │ └── swap.js │ │ │ ├── data.js │ │ │ ├── data │ │ │ ├── Data.js │ │ │ ├── accepts.js │ │ │ ├── support.js │ │ │ └── var │ │ │ │ ├── acceptData.js │ │ │ │ ├── dataPriv.js │ │ │ │ └── dataUser.js │ │ │ ├── deferred.js │ │ │ ├── deferred │ │ │ └── exceptionHook.js │ │ │ ├── deprecated.js │ │ │ ├── dimensions.js │ │ │ ├── effects.js │ │ │ ├── effects │ │ │ ├── Tween.js │ │ │ ├── animatedSelector.js │ │ │ └── support.js │ │ │ ├── event.js │ │ │ ├── event │ │ │ ├── ajax.js │ │ │ ├── alias.js │ │ │ ├── focusin.js │ │ │ ├── support.js │ │ │ └── trigger.js │ │ │ ├── exports │ │ │ ├── amd.js │ │ │ └── global.js │ │ │ ├── intro.js │ │ │ ├── jquery.js │ │ │ ├── manipulation.js │ │ │ ├── manipulation │ │ │ ├── _evalUrl.js │ │ │ ├── buildFragment.js │ │ │ ├── createSafeFragment.js │ │ │ ├── getAll.js │ │ │ ├── setGlobalEval.js │ │ │ ├── support.js │ │ │ ├── var │ │ │ │ ├── nodeNames.js │ │ │ │ ├── rcheckableType.js │ │ │ │ ├── rleadingWhitespace.js │ │ │ │ ├── rscriptType.js │ │ │ │ └── rtagName.js │ │ │ └── wrapMap.js │ │ │ ├── offset.js │ │ │ ├── outro.js │ │ │ ├── queue.js │ │ │ ├── queue │ │ │ └── delay.js │ │ │ ├── selector-native.js │ │ │ ├── selector-sizzle.js │ │ │ ├── selector.js │ │ │ ├── serialize.js │ │ │ ├── support.js │ │ │ ├── traversing.js │ │ │ ├── traversing │ │ │ ├── findFilter.js │ │ │ └── var │ │ │ │ ├── dir.js │ │ │ │ ├── rneedsContext.js │ │ │ │ └── siblings.js │ │ │ ├── var │ │ │ ├── arr.js │ │ │ ├── class2type.js │ │ │ ├── concat.js │ │ │ ├── deletedIds.js │ │ │ ├── document.js │ │ │ ├── documentElement.js │ │ │ ├── hasOwn.js │ │ │ ├── indexOf.js │ │ │ ├── pnum.js │ │ │ ├── push.js │ │ │ ├── rcssNum.js │ │ │ ├── rnotwhite.js │ │ │ ├── slice.js │ │ │ ├── support.js │ │ │ └── toString.js │ │ │ └── wrap.js │ │ ├── nprogress │ │ ├── .bower.json │ │ ├── History.md │ │ ├── License.md │ │ ├── Notes.md │ │ ├── Readme.md │ │ ├── bower.json │ │ ├── component.json │ │ ├── index.html │ │ ├── nprogress.css │ │ ├── nprogress.js │ │ └── support │ │ │ ├── extras.css │ │ │ └── style.css │ │ ├── select2 │ │ ├── .bower.json │ │ ├── .editorconfig │ │ ├── .gitignore │ │ ├── .jshintignore │ │ ├── .jshintrc │ │ ├── .travis.yml │ │ ├── CONTRIBUTING.md │ │ ├── Gruntfile.js │ │ ├── ISSUE_TEMPLATE.md │ │ ├── LICENSE.md │ │ ├── PULL_REQUEST_TEMPLATE.md │ │ ├── README.md │ │ ├── bower.json │ │ ├── component.json │ │ ├── composer.json │ │ ├── dist │ │ │ ├── css │ │ │ │ ├── select2.css │ │ │ │ └── select2.min.css │ │ │ └── js │ │ │ │ ├── i18n │ │ │ │ ├── ar.js │ │ │ │ ├── az.js │ │ │ │ ├── bg.js │ │ │ │ ├── ca.js │ │ │ │ ├── cs.js │ │ │ │ ├── da.js │ │ │ │ ├── de.js │ │ │ │ ├── en.js │ │ │ │ ├── es.js │ │ │ │ ├── et.js │ │ │ │ ├── eu.js │ │ │ │ ├── fa.js │ │ │ │ ├── fi.js │ │ │ │ ├── fr.js │ │ │ │ ├── gl.js │ │ │ │ ├── he.js │ │ │ │ ├── hi.js │ │ │ │ ├── hr.js │ │ │ │ ├── hu.js │ │ │ │ ├── id.js │ │ │ │ ├── is.js │ │ │ │ ├── it.js │ │ │ │ ├── ja.js │ │ │ │ ├── ko.js │ │ │ │ ├── lt.js │ │ │ │ ├── lv.js │ │ │ │ ├── mk.js │ │ │ │ ├── ms.js │ │ │ │ ├── nb.js │ │ │ │ ├── nl.js │ │ │ │ ├── pl.js │ │ │ │ ├── pt-BR.js │ │ │ │ ├── pt.js │ │ │ │ ├── ro.js │ │ │ │ ├── ru.js │ │ │ │ ├── sk.js │ │ │ │ ├── sr-Cyrl.js │ │ │ │ ├── sr.js │ │ │ │ ├── sv.js │ │ │ │ ├── th.js │ │ │ │ ├── tr.js │ │ │ │ ├── uk.js │ │ │ │ ├── vi.js │ │ │ │ ├── zh-CN.js │ │ │ │ └── zh-TW.js │ │ │ │ ├── select2.full.js │ │ │ │ ├── select2.full.min.js │ │ │ │ ├── select2.js │ │ │ │ └── select2.min.js │ │ ├── docs │ │ │ ├── .gitignore │ │ │ ├── README.md │ │ │ ├── _includes │ │ │ │ ├── examples │ │ │ │ │ ├── basics.html │ │ │ │ │ ├── data.html │ │ │ │ │ ├── disabled-mode.html │ │ │ │ │ ├── disabled-results.html │ │ │ │ │ ├── hide-search.html │ │ │ │ │ ├── localization-rtl-diacritics.html │ │ │ │ │ ├── matcher.html │ │ │ │ │ ├── multiple-max.html │ │ │ │ │ ├── placeholders.html │ │ │ │ │ ├── programmatic-control.html │ │ │ │ │ ├── tags.html │ │ │ │ │ ├── themes-templating-responsive-design.html │ │ │ │ │ └── tokenizer.html │ │ │ │ ├── footer.html │ │ │ │ ├── ga.html │ │ │ │ ├── head.html │ │ │ │ ├── js-source-states.html │ │ │ │ ├── nav │ │ │ │ │ ├── announcements-4.0.html │ │ │ │ │ ├── examples.html │ │ │ │ │ ├── options-old.html │ │ │ │ │ └── options.html │ │ │ │ ├── navigation.html │ │ │ │ ├── notice-previous.html │ │ │ │ ├── options-old │ │ │ │ │ ├── adapters.html │ │ │ │ │ ├── backwards-compatibility.html │ │ │ │ │ ├── core-options.html │ │ │ │ │ ├── dropdown.html │ │ │ │ │ ├── events.html │ │ │ │ │ └── setting-default-options.html │ │ │ │ ├── options │ │ │ │ │ ├── compatibility.html │ │ │ │ │ ├── compatibility │ │ │ │ │ │ ├── initial-selection.html │ │ │ │ │ │ ├── introduction.html │ │ │ │ │ │ ├── matcher.html │ │ │ │ │ │ ├── query-function.html │ │ │ │ │ │ └── text-input.html │ │ │ │ │ ├── core.html │ │ │ │ │ ├── core │ │ │ │ │ │ ├── amd-support.html │ │ │ │ │ │ ├── data-attributes.html │ │ │ │ │ │ └── options.html │ │ │ │ │ ├── data.html │ │ │ │ │ ├── data │ │ │ │ │ │ ├── ajax.html │ │ │ │ │ │ ├── array.html │ │ │ │ │ │ └── select.html │ │ │ │ │ ├── dropdown.html │ │ │ │ │ ├── dropdown │ │ │ │ │ │ ├── filtering.html │ │ │ │ │ │ ├── placement.html │ │ │ │ │ │ ├── selections.html │ │ │ │ │ │ └── tagging.html │ │ │ │ │ ├── events.html │ │ │ │ │ ├── events │ │ │ │ │ │ ├── internal.html │ │ │ │ │ │ └── jquery.html │ │ │ │ │ ├── introduction.html │ │ │ │ │ ├── not-written.html │ │ │ │ │ ├── selections.html │ │ │ │ │ └── selections │ │ │ │ │ │ ├── clearing-selections.html │ │ │ │ │ │ ├── multiple.html │ │ │ │ │ │ ├── placeholder.html │ │ │ │ │ │ └── templating.html │ │ │ │ └── social-buttons.html │ │ │ ├── _layouts │ │ │ │ ├── default.html │ │ │ │ └── home.html │ │ │ ├── _sass │ │ │ │ ├── _alert.scss │ │ │ │ ├── _anchorjs.scss │ │ │ │ ├── _buttons.scss │ │ │ │ ├── _code.scss │ │ │ │ ├── _dl-panels.scss │ │ │ │ ├── _examples.scss │ │ │ │ ├── _featurette.scss │ │ │ │ ├── _footer.scss │ │ │ │ ├── _hamburger.scss │ │ │ │ ├── _home.scss │ │ │ │ ├── _jumbotron.scss │ │ │ │ ├── _layout.scss │ │ │ │ ├── _nav.scss │ │ │ │ ├── _prettify.scss │ │ │ │ ├── _result-repository.scss │ │ │ │ ├── _sidenav.scss │ │ │ │ ├── _social.scss │ │ │ │ ├── _syntax-highlighting.scss │ │ │ │ ├── _typography.scss │ │ │ │ └── vendor │ │ │ │ │ ├── bootstrap │ │ │ │ │ ├── _alerts.scss │ │ │ │ │ ├── _badges.scss │ │ │ │ │ ├── _breadcrumbs.scss │ │ │ │ │ ├── _button-groups.scss │ │ │ │ │ ├── _buttons.scss │ │ │ │ │ ├── _carousel.scss │ │ │ │ │ ├── _close.scss │ │ │ │ │ ├── _code.scss │ │ │ │ │ ├── _component-animations.scss │ │ │ │ │ ├── _dropdowns.scss │ │ │ │ │ ├── _forms.scss │ │ │ │ │ ├── _glyphicons.scss │ │ │ │ │ ├── _grid.scss │ │ │ │ │ ├── _input-groups.scss │ │ │ │ │ ├── _jumbotron.scss │ │ │ │ │ ├── _labels.scss │ │ │ │ │ ├── _list-group.scss │ │ │ │ │ ├── _media.scss │ │ │ │ │ ├── _mixins.scss │ │ │ │ │ ├── _modals.scss │ │ │ │ │ ├── _navbar.scss │ │ │ │ │ ├── _navs.scss │ │ │ │ │ ├── _normalize.scss │ │ │ │ │ ├── _pager.scss │ │ │ │ │ ├── _pagination.scss │ │ │ │ │ ├── _panels.scss │ │ │ │ │ ├── _popovers.scss │ │ │ │ │ ├── _print.scss │ │ │ │ │ ├── _progress-bars.scss │ │ │ │ │ ├── _responsive-embed.scss │ │ │ │ │ ├── _responsive-utilities.scss │ │ │ │ │ ├── _scaffolding.scss │ │ │ │ │ ├── _tables.scss │ │ │ │ │ ├── _theme.scss │ │ │ │ │ ├── _thumbnails.scss │ │ │ │ │ ├── _tooltip.scss │ │ │ │ │ ├── _type.scss │ │ │ │ │ ├── _utilities.scss │ │ │ │ │ ├── _variables.scss │ │ │ │ │ ├── _wells.scss │ │ │ │ │ └── mixins │ │ │ │ │ │ ├── _alerts.scss │ │ │ │ │ │ ├── _background-variant.scss │ │ │ │ │ │ ├── _border-radius.scss │ │ │ │ │ │ ├── _buttons.scss │ │ │ │ │ │ ├── _center-block.scss │ │ │ │ │ │ ├── _clearfix.scss │ │ │ │ │ │ ├── _forms.scss │ │ │ │ │ │ ├── _gradients.scss │ │ │ │ │ │ ├── _grid-framework.scss │ │ │ │ │ │ ├── _grid.scss │ │ │ │ │ │ ├── _hide-text.scss │ │ │ │ │ │ ├── _image.scss │ │ │ │ │ │ ├── _labels.scss │ │ │ │ │ │ ├── _list-group.scss │ │ │ │ │ │ ├── _nav-divider.scss │ │ │ │ │ │ ├── _nav-vertical-align.scss │ │ │ │ │ │ ├── _opacity.scss │ │ │ │ │ │ ├── _pagination.scss │ │ │ │ │ │ ├── _panels.scss │ │ │ │ │ │ ├── _progress-bar.scss │ │ │ │ │ │ ├── _reset-filter.scss │ │ │ │ │ │ ├── _reset-text.scss │ │ │ │ │ │ ├── _resize.scss │ │ │ │ │ │ ├── _responsive-visibility.scss │ │ │ │ │ │ ├── _size.scss │ │ │ │ │ │ ├── _tab-focus.scss │ │ │ │ │ │ ├── _table-row.scss │ │ │ │ │ │ ├── _text-emphasis.scss │ │ │ │ │ │ ├── _text-overflow.scss │ │ │ │ │ │ └── _vendor-prefixes.scss │ │ │ │ │ └── font-awesome │ │ │ │ │ ├── _animated.scss │ │ │ │ │ ├── _bordered-pulled.scss │ │ │ │ │ ├── _core.scss │ │ │ │ │ ├── _fixed-width.scss │ │ │ │ │ ├── _icons.scss │ │ │ │ │ ├── _larger.scss │ │ │ │ │ ├── _list.scss │ │ │ │ │ ├── _mixins.scss │ │ │ │ │ ├── _path.scss │ │ │ │ │ ├── _rotated-flipped.scss │ │ │ │ │ ├── _stacked.scss │ │ │ │ │ └── _variables.scss │ │ │ ├── announcements-4.0.html │ │ │ ├── community.html │ │ │ ├── css │ │ │ │ ├── bootstrap.scss │ │ │ │ ├── font-awesome.scss │ │ │ │ └── s2-docs.scss │ │ │ ├── examples.html │ │ │ ├── images │ │ │ │ └── logo.png │ │ │ ├── index.html │ │ │ ├── options-old.html │ │ │ ├── options.html │ │ │ └── vendor │ │ │ │ ├── fonts │ │ │ │ ├── FontAwesome.otf │ │ │ │ ├── fontawesome-webfont.eot │ │ │ │ ├── fontawesome-webfont.svg │ │ │ │ ├── fontawesome-webfont.ttf │ │ │ │ ├── fontawesome-webfont.woff │ │ │ │ └── fontawesome-webfont.woff2 │ │ │ │ ├── images │ │ │ │ └── flags │ │ │ │ │ ├── ak.png │ │ │ │ │ ├── al.png │ │ │ │ │ ├── ar.png │ │ │ │ │ ├── az.png │ │ │ │ │ ├── ca.png │ │ │ │ │ ├── co.png │ │ │ │ │ ├── ct.png │ │ │ │ │ ├── de.png │ │ │ │ │ ├── fl.png │ │ │ │ │ ├── ga.png │ │ │ │ │ ├── hi.png │ │ │ │ │ ├── ia.png │ │ │ │ │ ├── id.png │ │ │ │ │ ├── il.png │ │ │ │ │ ├── in.png │ │ │ │ │ ├── ks.png │ │ │ │ │ ├── ky.png │ │ │ │ │ ├── la.png │ │ │ │ │ ├── ma.png │ │ │ │ │ ├── md.png │ │ │ │ │ ├── me.png │ │ │ │ │ ├── mi.png │ │ │ │ │ ├── mn.png │ │ │ │ │ ├── mo.png │ │ │ │ │ ├── ms.png │ │ │ │ │ ├── mt.png │ │ │ │ │ ├── nc.png │ │ │ │ │ ├── nd.png │ │ │ │ │ ├── ne.png │ │ │ │ │ ├── nh.png │ │ │ │ │ ├── nj.png │ │ │ │ │ ├── nm.png │ │ │ │ │ ├── nv.png │ │ │ │ │ ├── ny.png │ │ │ │ │ ├── oh.png │ │ │ │ │ ├── ok.png │ │ │ │ │ ├── or.png │ │ │ │ │ ├── pa.png │ │ │ │ │ ├── ri.png │ │ │ │ │ ├── sc.png │ │ │ │ │ ├── sd.png │ │ │ │ │ ├── tn.png │ │ │ │ │ ├── tx.png │ │ │ │ │ ├── ut.png │ │ │ │ │ ├── va.png │ │ │ │ │ ├── vt.png │ │ │ │ │ ├── wa.png │ │ │ │ │ ├── wi.png │ │ │ │ │ ├── wv.png │ │ │ │ │ └── wy.png │ │ │ │ └── js │ │ │ │ ├── anchor.min.js │ │ │ │ ├── bootstrap.min.js │ │ │ │ ├── jquery.min.js │ │ │ │ ├── placeholders.jquery.min.js │ │ │ │ └── prettify.min.js │ │ ├── package.json │ │ ├── select2.jquery.json │ │ ├── src │ │ │ ├── js │ │ │ │ ├── banner.end.js │ │ │ │ ├── banner.start.js │ │ │ │ ├── jquery.mousewheel.shim.js │ │ │ │ ├── jquery.select2.js │ │ │ │ ├── jquery.shim.js │ │ │ │ ├── select2 │ │ │ │ │ ├── compat │ │ │ │ │ │ ├── containerCss.js │ │ │ │ │ │ ├── dropdownCss.js │ │ │ │ │ │ ├── initSelection.js │ │ │ │ │ │ ├── inputData.js │ │ │ │ │ │ ├── matcher.js │ │ │ │ │ │ ├── query.js │ │ │ │ │ │ └── utils.js │ │ │ │ │ ├── core.js │ │ │ │ │ ├── data │ │ │ │ │ │ ├── ajax.js │ │ │ │ │ │ ├── array.js │ │ │ │ │ │ ├── base.js │ │ │ │ │ │ ├── maximumInputLength.js │ │ │ │ │ │ ├── maximumSelectionLength.js │ │ │ │ │ │ ├── minimumInputLength.js │ │ │ │ │ │ ├── select.js │ │ │ │ │ │ ├── tags.js │ │ │ │ │ │ └── tokenizer.js │ │ │ │ │ ├── defaults.js │ │ │ │ │ ├── diacritics.js │ │ │ │ │ ├── dropdown.js │ │ │ │ │ ├── dropdown │ │ │ │ │ │ ├── attachBody.js │ │ │ │ │ │ ├── attachContainer.js │ │ │ │ │ │ ├── closeOnSelect.js │ │ │ │ │ │ ├── hidePlaceholder.js │ │ │ │ │ │ ├── infiniteScroll.js │ │ │ │ │ │ ├── minimumResultsForSearch.js │ │ │ │ │ │ ├── search.js │ │ │ │ │ │ ├── selectOnClose.js │ │ │ │ │ │ └── stopPropagation.js │ │ │ │ │ ├── i18n │ │ │ │ │ │ ├── ar.js │ │ │ │ │ │ ├── az.js │ │ │ │ │ │ ├── bg.js │ │ │ │ │ │ ├── ca.js │ │ │ │ │ │ ├── cs.js │ │ │ │ │ │ ├── da.js │ │ │ │ │ │ ├── de.js │ │ │ │ │ │ ├── en.js │ │ │ │ │ │ ├── es.js │ │ │ │ │ │ ├── et.js │ │ │ │ │ │ ├── eu.js │ │ │ │ │ │ ├── fa.js │ │ │ │ │ │ ├── fi.js │ │ │ │ │ │ ├── fr.js │ │ │ │ │ │ ├── gl.js │ │ │ │ │ │ ├── he.js │ │ │ │ │ │ ├── hi.js │ │ │ │ │ │ ├── hr.js │ │ │ │ │ │ ├── hu.js │ │ │ │ │ │ ├── id.js │ │ │ │ │ │ ├── is.js │ │ │ │ │ │ ├── it.js │ │ │ │ │ │ ├── ja.js │ │ │ │ │ │ ├── ko.js │ │ │ │ │ │ ├── lt.js │ │ │ │ │ │ ├── lv.js │ │ │ │ │ │ ├── mk.js │ │ │ │ │ │ ├── ms.js │ │ │ │ │ │ ├── nb.js │ │ │ │ │ │ ├── nl.js │ │ │ │ │ │ ├── pl.js │ │ │ │ │ │ ├── pt-BR.js │ │ │ │ │ │ ├── pt.js │ │ │ │ │ │ ├── ro.js │ │ │ │ │ │ ├── ru.js │ │ │ │ │ │ ├── sk.js │ │ │ │ │ │ ├── sr-Cyrl.js │ │ │ │ │ │ ├── sr.js │ │ │ │ │ │ ├── sv.js │ │ │ │ │ │ ├── th.js │ │ │ │ │ │ ├── tr.js │ │ │ │ │ │ ├── uk.js │ │ │ │ │ │ ├── vi.js │ │ │ │ │ │ ├── zh-CN.js │ │ │ │ │ │ └── zh-TW.js │ │ │ │ │ ├── keys.js │ │ │ │ │ ├── options.js │ │ │ │ │ ├── results.js │ │ │ │ │ ├── selection │ │ │ │ │ │ ├── allowClear.js │ │ │ │ │ │ ├── base.js │ │ │ │ │ │ ├── clickMask.js │ │ │ │ │ │ ├── eventRelay.js │ │ │ │ │ │ ├── multiple.js │ │ │ │ │ │ ├── placeholder.js │ │ │ │ │ │ ├── search.js │ │ │ │ │ │ ├── single.js │ │ │ │ │ │ └── stopPropagation.js │ │ │ │ │ ├── translation.js │ │ │ │ │ └── utils.js │ │ │ │ ├── wrapper.end.js │ │ │ │ └── wrapper.start.js │ │ │ └── scss │ │ │ │ ├── _dropdown.scss │ │ │ │ ├── _multiple.scss │ │ │ │ ├── _single.scss │ │ │ │ ├── core.scss │ │ │ │ ├── mixins │ │ │ │ └── _gradients.scss │ │ │ │ └── theme │ │ │ │ ├── classic │ │ │ │ ├── _defaults.scss │ │ │ │ ├── _multiple.scss │ │ │ │ ├── _single.scss │ │ │ │ └── layout.scss │ │ │ │ └── default │ │ │ │ ├── _multiple.scss │ │ │ │ ├── _single.scss │ │ │ │ └── layout.scss │ │ ├── tests │ │ │ ├── a11y │ │ │ │ ├── search-tests.js │ │ │ │ └── selection-tests.js │ │ │ ├── data │ │ │ │ ├── array-tests.js │ │ │ │ ├── base-tests.js │ │ │ │ ├── inputData-tests.js │ │ │ │ ├── maximumInputLength-tests.js │ │ │ │ ├── maximumSelectionLength-tests.js │ │ │ │ ├── minimumInputLength-tests.js │ │ │ │ ├── select-tests.js │ │ │ │ ├── tags-tests.js │ │ │ │ └── tokenizer-tests.js │ │ │ ├── dropdown │ │ │ │ ├── dropdownCss-tests.js │ │ │ │ ├── positioning-tests.js │ │ │ │ ├── selectOnClose-tests.js │ │ │ │ └── stopPropagation-tests.js │ │ │ ├── helpers.js │ │ │ ├── integration.html │ │ │ ├── integration │ │ │ │ └── select2-methods.js │ │ │ ├── options │ │ │ │ ├── ajax-tests.js │ │ │ │ ├── data-tests.js │ │ │ │ ├── deprecated-tests.js │ │ │ │ ├── translation-tests.js │ │ │ │ └── width-tests.js │ │ │ ├── selection │ │ │ │ ├── allowClear-tests.js │ │ │ │ ├── containerCss-tests.js │ │ │ │ ├── multiple-tests.js │ │ │ │ ├── placeholder-tests.js │ │ │ │ ├── search-tests.js │ │ │ │ ├── single-tests.js │ │ │ │ └── stopPropagation-tests.js │ │ │ ├── unit.html │ │ │ ├── utils │ │ │ │ ├── decorator-tests.js │ │ │ │ └── escapeMarkup-tests.js │ │ │ └── vendor │ │ │ │ ├── jquery-1.7.2.js │ │ │ │ ├── qunit-1.14.0.css │ │ │ │ └── qunit-1.14.0.js │ │ └── vendor │ │ │ └── jquery-2.1.0.js │ │ ├── sweetalert │ │ ├── .editorconfig │ │ ├── .gitignore │ │ ├── .jshintrc │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bower.json │ │ ├── dev │ │ │ ├── gulpfile-wrap-template.js │ │ │ ├── ie9.css │ │ │ ├── loader-animation.css │ │ │ ├── modules │ │ │ │ ├── default-params.js │ │ │ │ ├── handle-click.js │ │ │ │ ├── handle-dom.js │ │ │ │ ├── handle-key.js │ │ │ │ ├── handle-swal-dom.js │ │ │ │ ├── injected-html.js │ │ │ │ ├── set-params.js │ │ │ │ └── utils.js │ │ │ ├── sweetalert.es6.js │ │ │ └── sweetalert.scss │ │ ├── dist │ │ │ ├── sweetalert-dev.js │ │ │ ├── sweetalert.css │ │ │ └── sweetalert.min.js │ │ ├── example │ │ │ ├── example.css │ │ │ ├── example.scss │ │ │ └── images │ │ │ │ ├── logo_big.png │ │ │ │ ├── logo_big@2x.png │ │ │ │ ├── logo_small.png │ │ │ │ ├── logo_small@2x.png │ │ │ │ ├── te-logo-small.svg │ │ │ │ ├── thumbs-up.jpg │ │ │ │ ├── vs_icon.png │ │ │ │ └── vs_icon@2x.png │ │ ├── gulpfile.js │ │ ├── index.html │ │ ├── lib │ │ │ ├── modules │ │ │ │ ├── default-params.js │ │ │ │ ├── handle-click.js │ │ │ │ ├── handle-dom.js │ │ │ │ ├── handle-key.js │ │ │ │ ├── handle-swal-dom.js │ │ │ │ ├── injected-html.js │ │ │ │ ├── set-params.js │ │ │ │ └── utils.js │ │ │ └── sweetalert.js │ │ ├── package.json │ │ ├── sweetalert.gif │ │ ├── test │ │ │ ├── index.html │ │ │ └── tests.js │ │ └── themes │ │ │ ├── facebook │ │ │ ├── facebook.css │ │ │ └── facebook.scss │ │ │ ├── google │ │ │ ├── google.css │ │ │ └── google.scss │ │ │ └── twitter │ │ │ ├── twitter.css │ │ │ └── twitter.scss │ │ └── switchery │ │ ├── .bower.json │ │ ├── CHANGELOG.md │ │ ├── bower.json │ │ ├── dist │ │ ├── switchery.css │ │ ├── switchery.js │ │ ├── switchery.min.css │ │ └── switchery.min.js │ │ ├── meteor │ │ ├── export.js │ │ └── tests.js │ │ ├── package.js │ │ ├── package.json │ │ ├── switchery.css │ │ └── switchery.js ├── favicon.ico ├── index.php ├── robots.txt ├── vendor │ └── datatables │ │ └── buttons.server-side.js └── web.config ├── readme.md ├── resources ├── assets │ └── sass │ │ └── app.scss ├── lang │ └── en │ │ ├── auth.php │ │ ├── pagination.php │ │ ├── passwords.php │ │ └── validation.php └── views │ ├── auth │ ├── emails │ │ └── password.blade.php │ ├── login.blade.php │ ├── passwords │ │ ├── email.blade.php │ │ └── reset.blade.php │ └── register.blade.php │ ├── conferences │ ├── actions.blade.php │ ├── create.blade.php │ ├── edit.blade.php │ └── index.blade.php │ ├── dashboard.blade.php │ ├── errors │ ├── 403.blade.php │ ├── 404.blade.php │ └── 503.blade.php │ ├── events │ ├── bofs │ │ ├── create.blade.php │ │ ├── edit.blade.php │ │ ├── index.blade.php │ │ └── show.blade.php │ ├── levels │ │ ├── create.blade.php │ │ ├── edit.blade.php │ │ ├── index.blade.php │ │ └── show.blade.php │ ├── sessions │ │ ├── create.blade.php │ │ ├── edit.blade.php │ │ ├── index.blade.php │ │ └── show.blade.php │ ├── social │ │ ├── create.blade.php │ │ ├── edit.blade.php │ │ ├── index.blade.php │ │ └── show.blade.php │ ├── tracks │ │ ├── create.blade.php │ │ ├── edit.blade.php │ │ ├── index.blade.php │ │ └── show.blade.php │ └── types │ │ ├── create.blade.php │ │ ├── edit.blade.php │ │ ├── index.blade.php │ │ └── show.blade.php │ ├── floors │ ├── create.blade.php │ ├── edit.blade.php │ ├── index.blade.php │ └── show.blade.php │ ├── layouts │ ├── app.blade.php │ ├── default.blade.php │ └── login.blade.php │ ├── locations │ ├── edit.blade.php │ └── index.blade.php │ ├── pages │ ├── create.blade.php │ ├── edit.blade.php │ ├── index.blade.php │ └── show.blade.php │ ├── partials │ ├── _event-article.blade.php │ ├── actions.blade.php │ ├── event.blade.php │ ├── image-upload.blade.php │ ├── menu.blade.php │ ├── session-message.blade.php │ └── speaker.blade.php │ ├── points │ ├── create.blade.php │ ├── edit.blade.php │ ├── index.blade.php │ └── show.blade.php │ ├── schedule │ └── share.blade.php │ ├── settings │ ├── edit.blade.php │ └── index.blade.php │ ├── speakers │ ├── create.blade.php │ ├── edit.blade.php │ ├── index.blade.php │ └── show.blade.php │ ├── upload │ └── file.blade.php │ ├── users │ ├── create.blade.php │ ├── edit.blade.php │ ├── index.blade.php │ └── show.blade.php │ └── vendor │ ├── .gitkeep │ └── datatables │ ├── print.blade.php │ └── script.blade.php ├── server.php ├── storage ├── app │ ├── .gitignore │ └── public │ │ └── .gitignore ├── framework │ ├── .gitignore │ ├── cache │ │ └── .gitignore │ ├── sessions │ │ └── .gitignore │ └── views │ │ └── .gitignore └── logs │ └── .gitignore └── tests ├── ExampleTest.php ├── TestCase.php ├── _bootstrap.php ├── _data └── dump.sql ├── _output └── .gitignore ├── _support ├── AcceptanceTester.php ├── ApiTester.php ├── FunctionalTester.php ├── Helper │ ├── Acceptance.php │ ├── Api.php │ ├── Functional.php │ └── Unit.php └── UnitTester.php ├── acceptance.suite.yml ├── acceptance └── _bootstrap.php ├── api.suite.yml ├── api ├── BaseCest.php ├── BofsCest.php ├── FloorsCest.php ├── InfoCest.php ├── LevelsCest.php ├── LocationsCest.php ├── PointsCest.php ├── SchedulesCest.php ├── Seeder.php ├── SessionsCest.php ├── SettingsCest.php ├── SocialEventsCest.php ├── SpeakersCest.php ├── TracksCest.php ├── TypesCest.php ├── UpdatesCest.php └── _bootstrap.php ├── functional.suite.yml ├── functional └── _bootstrap.php ├── unit.suite.yml └── unit └── _bootstrap.php /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | *.css linguist-vendored 3 | *.scss linguist-vendored 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /vendor 2 | /node_modules 3 | /public/storage 4 | /public/apple-app-site-association 5 | Homestead.yaml 6 | Homestead.json 7 | .env 8 | .env.testing 9 | .idea 10 | 11 | tests/_output/* 12 | tests/_envs/* 13 | tests/_support/_generated/* 14 | public/uploads/* 15 | public/api/docs/swagger.json 16 | -------------------------------------------------------------------------------- /Parser/config/parser.php: -------------------------------------------------------------------------------- 1 | \Parser\Drivers\DrupalcampLondon::class, 4 | 'baseUrl' => 'http://drupalcamp.london/', 5 | ]; 6 | -------------------------------------------------------------------------------- /app/Events/Event.php: -------------------------------------------------------------------------------- 1 | {'to' . $format}(); 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /app/Policies/.gitkeep: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /app/Repositories/RoleRepository.php: -------------------------------------------------------------------------------- 1 | 'breadcrumbs::bootstrap3', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /config/datatables.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'smart' => true, 6 | 'case_insensitive' => true, 7 | 'use_wildcards' => false, 8 | ], 9 | 10 | 'fractal' => [ 11 | 'serializer' => 'League\Fractal\Serializer\DataArraySerializer', 12 | ], 13 | 14 | 'script_template' => 'datatables::script', 15 | ]; 16 | -------------------------------------------------------------------------------- /config/settings.php: -------------------------------------------------------------------------------- 1 | 'database', 9 | 10 | /** 11 | * Full path to json file (only if 'json' is set as driver above) 12 | */ 13 | 'path' => storage_path().'/settings.json', 14 | 15 | /** 16 | * Database table (only if 'database' is set as driver above) 17 | */ 18 | 'table' => 'settings', 19 | ); 20 | -------------------------------------------------------------------------------- /database/.gitignore: -------------------------------------------------------------------------------- 1 | *.sqlite 2 | -------------------------------------------------------------------------------- /database/migrations/.gitkeep: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /database/seeds/.gitkeep: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /database/seeds/ConferencesTableSeeder.php: -------------------------------------------------------------------------------- 1 | create(); 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "private": true, 3 | "scripts": { 4 | "prod": "gulp --production", 5 | "dev": "gulp watch" 6 | }, 7 | "devDependencies": { 8 | "gulp": "^3.9.1", 9 | "laravel-elixir": "^5.0.0", 10 | "bootstrap-sass": "^3.3.0" 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /public/api/docs/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-integration-server/ddc09fe2fef9b70a1942e35b5fb3182cc2326348/public/api/docs/favicon-16x16.png -------------------------------------------------------------------------------- /public/api/docs/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-integration-server/ddc09fe2fef9b70a1942e35b5fb3182cc2326348/public/api/docs/favicon-32x32.png -------------------------------------------------------------------------------- /public/api/docs/swagger-ui-standalone-preset.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"swagger-ui-standalone-preset.js","sources":["webpack:///swagger-ui-standalone-preset.js"],"mappings":"AAAA;;;;;AA6PA;AAyiGA","sourceRoot":""} -------------------------------------------------------------------------------- /public/api/docs/swagger-ui.css.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"swagger-ui.css","sources":[],"mappings":"","sourceRoot":""} -------------------------------------------------------------------------------- /public/api/docs/swagger-ui.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"swagger-ui.js","sources":["webpack:///swagger-ui.js"],"mappings":"AAAA;;;;;;AA4wCA;AAoyHA;AAuxHA;AAy4FA;AA8rCA;AAugCA;AA+hCA;AA24BA","sourceRoot":""} -------------------------------------------------------------------------------- /public/apple-app-site-association.example: -------------------------------------------------------------------------------- 1 | { 2 | "applinks": { 3 | "apps": [], 4 | "details": [ 5 | { 6 | "appID": "KFCNEC27GU.com.razeware.UniveralLinksTutorial", 7 | "paths": ["*"] 8 | } 9 | ] 10 | } 11 | } -------------------------------------------------------------------------------- /public/assets/images/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-integration-server/ddc09fe2fef9b70a1942e35b5fb3182cc2326348/public/assets/images/1.png -------------------------------------------------------------------------------- /public/assets/images/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-integration-server/ddc09fe2fef9b70a1942e35b5fb3182cc2326348/public/assets/images/4.jpg -------------------------------------------------------------------------------- /public/assets/images/american-express.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-integration-server/ddc09fe2fef9b70a1942e35b5fb3182cc2326348/public/assets/images/american-express.png -------------------------------------------------------------------------------- /public/assets/images/apple-store-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-integration-server/ddc09fe2fef9b70a1942e35b5fb3182cc2326348/public/assets/images/apple-store-icon.png -------------------------------------------------------------------------------- /public/assets/images/apple-touch-icon-precomposed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-integration-server/ddc09fe2fef9b70a1942e35b5fb3182cc2326348/public/assets/images/apple-touch-icon-precomposed.png -------------------------------------------------------------------------------- /public/assets/images/back_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-integration-server/ddc09fe2fef9b70a1942e35b5fb3182cc2326348/public/assets/images/back_disabled.png -------------------------------------------------------------------------------- /public/assets/images/back_enabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-integration-server/ddc09fe2fef9b70a1942e35b5fb3182cc2326348/public/assets/images/back_enabled.png -------------------------------------------------------------------------------- /public/assets/images/back_enabled_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-integration-server/ddc09fe2fef9b70a1942e35b5fb3182cc2326348/public/assets/images/back_enabled_hover.png -------------------------------------------------------------------------------- /public/assets/images/bootstrap-colorpicker/alpha-horizontal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-integration-server/ddc09fe2fef9b70a1942e35b5fb3182cc2326348/public/assets/images/bootstrap-colorpicker/alpha-horizontal.png -------------------------------------------------------------------------------- /public/assets/images/bootstrap-colorpicker/alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-integration-server/ddc09fe2fef9b70a1942e35b5fb3182cc2326348/public/assets/images/bootstrap-colorpicker/alpha.png -------------------------------------------------------------------------------- /public/assets/images/bootstrap-colorpicker/hue-horizontal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-integration-server/ddc09fe2fef9b70a1942e35b5fb3182cc2326348/public/assets/images/bootstrap-colorpicker/hue-horizontal.png -------------------------------------------------------------------------------- /public/assets/images/bootstrap-colorpicker/hue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-integration-server/ddc09fe2fef9b70a1942e35b5fb3182cc2326348/public/assets/images/bootstrap-colorpicker/hue.png -------------------------------------------------------------------------------- /public/assets/images/bootstrap-colorpicker/saturation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-integration-server/ddc09fe2fef9b70a1942e35b5fb3182cc2326348/public/assets/images/bootstrap-colorpicker/saturation.png -------------------------------------------------------------------------------- /public/assets/images/data.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-integration-server/ddc09fe2fef9b70a1942e35b5fb3182cc2326348/public/assets/images/data.png -------------------------------------------------------------------------------- /public/assets/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-integration-server/ddc09fe2fef9b70a1942e35b5fb3182cc2326348/public/assets/images/favicon.ico -------------------------------------------------------------------------------- /public/assets/images/forward_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-integration-server/ddc09fe2fef9b70a1942e35b5fb3182cc2326348/public/assets/images/forward_disabled.png -------------------------------------------------------------------------------- /public/assets/images/forward_enabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-integration-server/ddc09fe2fef9b70a1942e35b5fb3182cc2326348/public/assets/images/forward_enabled.png -------------------------------------------------------------------------------- /public/assets/images/forward_enabled_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-integration-server/ddc09fe2fef9b70a1942e35b5fb3182cc2326348/public/assets/images/forward_enabled_hover.png -------------------------------------------------------------------------------- /public/assets/images/google-play-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-integration-server/ddc09fe2fef9b70a1942e35b5fb3182cc2326348/public/assets/images/google-play-icon.png -------------------------------------------------------------------------------- /public/assets/images/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-integration-server/ddc09fe2fef9b70a1942e35b5fb3182cc2326348/public/assets/images/icons.png -------------------------------------------------------------------------------- /public/assets/images/img.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-integration-server/ddc09fe2fef9b70a1942e35b5fb3182cc2326348/public/assets/images/img.jpg -------------------------------------------------------------------------------- /public/assets/images/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-integration-server/ddc09fe2fef9b70a1942e35b5fb3182cc2326348/public/assets/images/loading.gif -------------------------------------------------------------------------------- /public/assets/images/mastercard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-integration-server/ddc09fe2fef9b70a1942e35b5fb3182cc2326348/public/assets/images/mastercard.png -------------------------------------------------------------------------------- /public/assets/images/paypal2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-integration-server/ddc09fe2fef9b70a1942e35b5fb3182cc2326348/public/assets/images/paypal2.png -------------------------------------------------------------------------------- /public/assets/images/picture-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-integration-server/ddc09fe2fef9b70a1942e35b5fb3182cc2326348/public/assets/images/picture-2.jpg -------------------------------------------------------------------------------- /public/assets/images/picture.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-integration-server/ddc09fe2fef9b70a1942e35b5fb3182cc2326348/public/assets/images/picture.jpg -------------------------------------------------------------------------------- /public/assets/images/picture2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-integration-server/ddc09fe2fef9b70a1942e35b5fb3182cc2326348/public/assets/images/picture2.jpg -------------------------------------------------------------------------------- /public/assets/images/prod1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-integration-server/ddc09fe2fef9b70a1942e35b5fb3182cc2326348/public/assets/images/prod1.jpg -------------------------------------------------------------------------------- /public/assets/images/prod2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-integration-server/ddc09fe2fef9b70a1942e35b5fb3182cc2326348/public/assets/images/prod2.jpg -------------------------------------------------------------------------------- /public/assets/images/prod3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-integration-server/ddc09fe2fef9b70a1942e35b5fb3182cc2326348/public/assets/images/prod3.jpg -------------------------------------------------------------------------------- /public/assets/images/prod4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-integration-server/ddc09fe2fef9b70a1942e35b5fb3182cc2326348/public/assets/images/prod4.jpg -------------------------------------------------------------------------------- /public/assets/images/prod5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-integration-server/ddc09fe2fef9b70a1942e35b5fb3182cc2326348/public/assets/images/prod5.jpg -------------------------------------------------------------------------------- /public/assets/images/sprite-skin-flat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-integration-server/ddc09fe2fef9b70a1942e35b5fb3182cc2326348/public/assets/images/sprite-skin-flat.png -------------------------------------------------------------------------------- /public/assets/images/sprite-skin-modern.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-integration-server/ddc09fe2fef9b70a1942e35b5fb3182cc2326348/public/assets/images/sprite-skin-modern.png -------------------------------------------------------------------------------- /public/assets/images/sprite-skin-nice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-integration-server/ddc09fe2fef9b70a1942e35b5fb3182cc2326348/public/assets/images/sprite-skin-nice.png -------------------------------------------------------------------------------- /public/assets/images/sprite-skin-simple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-integration-server/ddc09fe2fef9b70a1942e35b5fb3182cc2326348/public/assets/images/sprite-skin-simple.png -------------------------------------------------------------------------------- /public/assets/images/user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-integration-server/ddc09fe2fef9b70a1942e35b5fb3182cc2326348/public/assets/images/user.png -------------------------------------------------------------------------------- /public/assets/images/visa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-integration-server/ddc09fe2fef9b70a1942e35b5fb3182cc2326348/public/assets/images/visa.png -------------------------------------------------------------------------------- /public/assets/vendors/bootstrap-datetimepicker/.gitignore: -------------------------------------------------------------------------------- 1 | bower_components 2 | node_modules 3 | .idea 4 | .vs 5 | obj 6 | bin 7 | site/ 8 | *.user 9 | *.csproj 10 | *.sln 11 | *.nupkg 12 | index.html -------------------------------------------------------------------------------- /public/assets/vendors/bootstrap-datetimepicker/.npmignore: -------------------------------------------------------------------------------- 1 | /assets 2 | /_includes 3 | /_layouts 4 | /.gitignore 5 | /node_modules 6 | /Makefile 7 | /test 8 | *.log 9 | *.swp 10 | *~ 11 | *.tgz 12 | /site 13 | *.user 14 | *.csproj 15 | *.sln 16 | *.nupkg -------------------------------------------------------------------------------- /public/assets/vendors/bootstrap-datetimepicker/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | sudo: false 3 | node_js: 4 | - 0.10 5 | 6 | before_script: 7 | - npm install -g grunt-cli 8 | 9 | script: grunt build:travis 10 | -------------------------------------------------------------------------------- /public/assets/vendors/bootstrap-datetimepicker/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "smalot-bootstrap-datetimepicker", 3 | "main": ["js/bootstrap-datetimepicker.min.js", "css/bootstrap-datetimepicker.min.css"], 4 | "ignore": [ 5 | "build", 6 | "sample in bootstrap v2", 7 | "sample in bootstrap v3", 8 | "screenshot", 9 | "tests", 10 | ".gitattributes", 11 | ".gitignore", 12 | ".travis.yml", 13 | "minify.sh" 14 | ] 15 | } 16 | -------------------------------------------------------------------------------- /public/assets/vendors/bootstrap-datetimepicker/sample in bootstrap v2/bootstrap/img/glyphicons-halflings-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-integration-server/ddc09fe2fef9b70a1942e35b5fb3182cc2326348/public/assets/vendors/bootstrap-datetimepicker/sample in bootstrap v2/bootstrap/img/glyphicons-halflings-white.png -------------------------------------------------------------------------------- /public/assets/vendors/bootstrap-datetimepicker/sample in bootstrap v2/bootstrap/img/glyphicons-halflings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-integration-server/ddc09fe2fef9b70a1942e35b5fb3182cc2326348/public/assets/vendors/bootstrap-datetimepicker/sample in bootstrap v2/bootstrap/img/glyphicons-halflings.png -------------------------------------------------------------------------------- /public/assets/vendors/bootstrap-datetimepicker/sample in bootstrap v3/bootstrap/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-integration-server/ddc09fe2fef9b70a1942e35b5fb3182cc2326348/public/assets/vendors/bootstrap-datetimepicker/sample in bootstrap v3/bootstrap/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /public/assets/vendors/bootstrap-datetimepicker/sample in bootstrap v3/bootstrap/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-integration-server/ddc09fe2fef9b70a1942e35b5fb3182cc2326348/public/assets/vendors/bootstrap-datetimepicker/sample in bootstrap v3/bootstrap/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /public/assets/vendors/bootstrap-datetimepicker/sample in bootstrap v3/bootstrap/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-integration-server/ddc09fe2fef9b70a1942e35b5fb3182cc2326348/public/assets/vendors/bootstrap-datetimepicker/sample in bootstrap v3/bootstrap/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /public/assets/vendors/bootstrap-datetimepicker/screenshot/standard_day.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-integration-server/ddc09fe2fef9b70a1942e35b5fb3182cc2326348/public/assets/vendors/bootstrap-datetimepicker/screenshot/standard_day.png -------------------------------------------------------------------------------- /public/assets/vendors/bootstrap-datetimepicker/screenshot/standard_day_meridian.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-integration-server/ddc09fe2fef9b70a1942e35b5fb3182cc2326348/public/assets/vendors/bootstrap-datetimepicker/screenshot/standard_day_meridian.png -------------------------------------------------------------------------------- /public/assets/vendors/bootstrap-datetimepicker/screenshot/standard_decade.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-integration-server/ddc09fe2fef9b70a1942e35b5fb3182cc2326348/public/assets/vendors/bootstrap-datetimepicker/screenshot/standard_decade.png -------------------------------------------------------------------------------- /public/assets/vendors/bootstrap-datetimepicker/screenshot/standard_full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-integration-server/ddc09fe2fef9b70a1942e35b5fb3182cc2326348/public/assets/vendors/bootstrap-datetimepicker/screenshot/standard_full.png -------------------------------------------------------------------------------- /public/assets/vendors/bootstrap-datetimepicker/screenshot/standard_hour.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-integration-server/ddc09fe2fef9b70a1942e35b5fb3182cc2326348/public/assets/vendors/bootstrap-datetimepicker/screenshot/standard_hour.png -------------------------------------------------------------------------------- /public/assets/vendors/bootstrap-datetimepicker/screenshot/standard_hour_meridian.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-integration-server/ddc09fe2fef9b70a1942e35b5fb3182cc2326348/public/assets/vendors/bootstrap-datetimepicker/screenshot/standard_hour_meridian.png -------------------------------------------------------------------------------- /public/assets/vendors/bootstrap-datetimepicker/screenshot/standard_month.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-integration-server/ddc09fe2fef9b70a1942e35b5fb3182cc2326348/public/assets/vendors/bootstrap-datetimepicker/screenshot/standard_month.png -------------------------------------------------------------------------------- /public/assets/vendors/bootstrap-datetimepicker/screenshot/standard_year.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-integration-server/ddc09fe2fef9b70a1942e35b5fb3182cc2326348/public/assets/vendors/bootstrap-datetimepicker/screenshot/standard_year.png -------------------------------------------------------------------------------- /public/assets/vendors/bootstrap/dist/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-integration-server/ddc09fe2fef9b70a1942e35b5fb3182cc2326348/public/assets/vendors/bootstrap/dist/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /public/assets/vendors/bootstrap/dist/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-integration-server/ddc09fe2fef9b70a1942e35b5fb3182cc2326348/public/assets/vendors/bootstrap/dist/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /public/assets/vendors/bootstrap/dist/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-integration-server/ddc09fe2fef9b70a1942e35b5fb3182cc2326348/public/assets/vendors/bootstrap/dist/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /public/assets/vendors/bootstrap/dist/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-integration-server/ddc09fe2fef9b70a1942e35b5fb3182cc2326348/public/assets/vendors/bootstrap/dist/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /public/assets/vendors/bootstrap/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-integration-server/ddc09fe2fef9b70a1942e35b5fb3182cc2326348/public/assets/vendors/bootstrap/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /public/assets/vendors/bootstrap/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-integration-server/ddc09fe2fef9b70a1942e35b5fb3182cc2326348/public/assets/vendors/bootstrap/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /public/assets/vendors/bootstrap/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-integration-server/ddc09fe2fef9b70a1942e35b5fb3182cc2326348/public/assets/vendors/bootstrap/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /public/assets/vendors/bootstrap/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-integration-server/ddc09fe2fef9b70a1942e35b5fb3182cc2326348/public/assets/vendors/bootstrap/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /public/assets/vendors/bootstrap/grunt/.jshintrc: -------------------------------------------------------------------------------- 1 | { 2 | "extends" : "../js/.jshintrc", 3 | "asi" : false, 4 | "browser" : false, 5 | "es3" : false, 6 | "node" : true 7 | } 8 | -------------------------------------------------------------------------------- /public/assets/vendors/bootstrap/js/.jshintrc: -------------------------------------------------------------------------------- 1 | { 2 | "asi" : true, 3 | "browser" : true, 4 | "eqeqeq" : false, 5 | "eqnull" : true, 6 | "es3" : true, 7 | "expr" : true, 8 | "jquery" : true, 9 | "latedef" : true, 10 | "laxbreak" : true, 11 | "nonbsp" : true, 12 | "strict" : true, 13 | "undef" : true, 14 | "unused" : true 15 | } 16 | -------------------------------------------------------------------------------- /public/assets/vendors/bootstrap/less/mixins/alerts.less: -------------------------------------------------------------------------------- 1 | // Alerts 2 | 3 | .alert-variant(@background; @border; @text-color) { 4 | background-color: @background; 5 | border-color: @border; 6 | color: @text-color; 7 | 8 | hr { 9 | border-top-color: darken(@border, 5%); 10 | } 11 | .alert-link { 12 | color: darken(@text-color, 10%); 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /public/assets/vendors/bootstrap/less/mixins/background-variant.less: -------------------------------------------------------------------------------- 1 | // Contextual backgrounds 2 | 3 | .bg-variant(@color) { 4 | background-color: @color; 5 | a&:hover, 6 | a&:focus { 7 | background-color: darken(@color, 10%); 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /public/assets/vendors/bootstrap/less/mixins/center-block.less: -------------------------------------------------------------------------------- 1 | // Center-align a block level element 2 | 3 | .center-block() { 4 | display: block; 5 | margin-left: auto; 6 | margin-right: auto; 7 | } 8 | -------------------------------------------------------------------------------- /public/assets/vendors/bootstrap/less/mixins/labels.less: -------------------------------------------------------------------------------- 1 | // Labels 2 | 3 | .label-variant(@color) { 4 | background-color: @color; 5 | 6 | &[href] { 7 | &:hover, 8 | &:focus { 9 | background-color: darken(@color, 10%); 10 | } 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /public/assets/vendors/bootstrap/less/mixins/nav-divider.less: -------------------------------------------------------------------------------- 1 | // Horizontal dividers 2 | // 3 | // Dividers (basically an hr) within dropdowns and nav lists 4 | 5 | .nav-divider(@color: #e5e5e5) { 6 | height: 1px; 7 | margin: ((@line-height-computed / 2) - 1) 0; 8 | overflow: hidden; 9 | background-color: @color; 10 | } 11 | -------------------------------------------------------------------------------- /public/assets/vendors/bootstrap/less/mixins/opacity.less: -------------------------------------------------------------------------------- 1 | // Opacity 2 | 3 | .opacity(@opacity) { 4 | opacity: @opacity; 5 | // IE8 filter 6 | @opacity-ie: (@opacity * 100); 7 | filter: ~"alpha(opacity=@{opacity-ie})"; 8 | } 9 | -------------------------------------------------------------------------------- /public/assets/vendors/bootstrap/less/mixins/progress-bar.less: -------------------------------------------------------------------------------- 1 | // Progress bars 2 | 3 | .progress-bar-variant(@color) { 4 | background-color: @color; 5 | 6 | // Deprecated parent class requirement as of v3.2.0 7 | .progress-striped & { 8 | #gradient > .striped(); 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /public/assets/vendors/bootstrap/less/mixins/reset-filter.less: -------------------------------------------------------------------------------- 1 | // Reset filters for IE 2 | // 3 | // When you need to remove a gradient background, do not forget to use this to reset 4 | // the IE filter for IE9 and below. 5 | 6 | .reset-filter() { 7 | filter: e(%("progid:DXImageTransform.Microsoft.gradient(enabled = false)")); 8 | } 9 | -------------------------------------------------------------------------------- /public/assets/vendors/bootstrap/less/mixins/resize.less: -------------------------------------------------------------------------------- 1 | // Resize anything 2 | 3 | .resizable(@direction) { 4 | resize: @direction; // Options: horizontal, vertical, both 5 | overflow: auto; // Per CSS3 UI, `resize` only applies when `overflow` isn't `visible` 6 | } 7 | -------------------------------------------------------------------------------- /public/assets/vendors/bootstrap/less/mixins/size.less: -------------------------------------------------------------------------------- 1 | // Sizing shortcuts 2 | 3 | .size(@width; @height) { 4 | width: @width; 5 | height: @height; 6 | } 7 | 8 | .square(@size) { 9 | .size(@size; @size); 10 | } 11 | -------------------------------------------------------------------------------- /public/assets/vendors/bootstrap/less/mixins/tab-focus.less: -------------------------------------------------------------------------------- 1 | // WebKit-style focus 2 | 3 | .tab-focus() { 4 | // Default 5 | outline: thin dotted; 6 | // WebKit 7 | outline: 5px auto -webkit-focus-ring-color; 8 | outline-offset: -2px; 9 | } 10 | -------------------------------------------------------------------------------- /public/assets/vendors/bootstrap/less/mixins/text-emphasis.less: -------------------------------------------------------------------------------- 1 | // Typography 2 | 3 | .text-emphasis-variant(@color) { 4 | color: @color; 5 | a&:hover, 6 | a&:focus { 7 | color: darken(@color, 10%); 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /public/assets/vendors/bootstrap/less/mixins/text-overflow.less: -------------------------------------------------------------------------------- 1 | // Text overflow 2 | // Requires inline-block or block for proper styling 3 | 4 | .text-overflow() { 5 | overflow: hidden; 6 | text-overflow: ellipsis; 7 | white-space: nowrap; 8 | } 9 | -------------------------------------------------------------------------------- /public/assets/vendors/ckeditor/plugins/about/dialogs/hidpi/logo_ckeditor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-integration-server/ddc09fe2fef9b70a1942e35b5fb3182cc2326348/public/assets/vendors/ckeditor/plugins/about/dialogs/hidpi/logo_ckeditor.png -------------------------------------------------------------------------------- /public/assets/vendors/ckeditor/plugins/about/dialogs/logo_ckeditor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-integration-server/ddc09fe2fef9b70a1942e35b5fb3182cc2326348/public/assets/vendors/ckeditor/plugins/about/dialogs/logo_ckeditor.png -------------------------------------------------------------------------------- /public/assets/vendors/ckeditor/plugins/dialog/dialogDefinition.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | -------------------------------------------------------------------------------- /public/assets/vendors/ckeditor/plugins/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-integration-server/ddc09fe2fef9b70a1942e35b5fb3182cc2326348/public/assets/vendors/ckeditor/plugins/icons.png -------------------------------------------------------------------------------- /public/assets/vendors/ckeditor/plugins/icons_hidpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-integration-server/ddc09fe2fef9b70a1942e35b5fb3182cc2326348/public/assets/vendors/ckeditor/plugins/icons_hidpi.png -------------------------------------------------------------------------------- /public/assets/vendors/ckeditor/plugins/image/images/noimage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-integration-server/ddc09fe2fef9b70a1942e35b5fb3182cc2326348/public/assets/vendors/ckeditor/plugins/image/images/noimage.png -------------------------------------------------------------------------------- /public/assets/vendors/ckeditor/plugins/image2/dev/assets/image1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-integration-server/ddc09fe2fef9b70a1942e35b5fb3182cc2326348/public/assets/vendors/ckeditor/plugins/image2/dev/assets/image1.jpg -------------------------------------------------------------------------------- /public/assets/vendors/ckeditor/plugins/image2/dev/assets/image2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-integration-server/ddc09fe2fef9b70a1942e35b5fb3182cc2326348/public/assets/vendors/ckeditor/plugins/image2/dev/assets/image2.jpg -------------------------------------------------------------------------------- /public/assets/vendors/ckeditor/plugins/image2/icons/hidpi/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-integration-server/ddc09fe2fef9b70a1942e35b5fb3182cc2326348/public/assets/vendors/ckeditor/plugins/image2/icons/hidpi/image.png -------------------------------------------------------------------------------- /public/assets/vendors/ckeditor/plugins/image2/icons/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-integration-server/ddc09fe2fef9b70a1942e35b5fb3182cc2326348/public/assets/vendors/ckeditor/plugins/image2/icons/image.png -------------------------------------------------------------------------------- /public/assets/vendors/ckeditor/plugins/image2/samples/assets/image1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-integration-server/ddc09fe2fef9b70a1942e35b5fb3182cc2326348/public/assets/vendors/ckeditor/plugins/image2/samples/assets/image1.jpg -------------------------------------------------------------------------------- /public/assets/vendors/ckeditor/plugins/image2/samples/assets/image2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-integration-server/ddc09fe2fef9b70a1942e35b5fb3182cc2326348/public/assets/vendors/ckeditor/plugins/image2/samples/assets/image2.jpg -------------------------------------------------------------------------------- /public/assets/vendors/ckeditor/plugins/justify/icons/hidpi/justifyblock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-integration-server/ddc09fe2fef9b70a1942e35b5fb3182cc2326348/public/assets/vendors/ckeditor/plugins/justify/icons/hidpi/justifyblock.png -------------------------------------------------------------------------------- /public/assets/vendors/ckeditor/plugins/justify/icons/hidpi/justifycenter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-integration-server/ddc09fe2fef9b70a1942e35b5fb3182cc2326348/public/assets/vendors/ckeditor/plugins/justify/icons/hidpi/justifycenter.png -------------------------------------------------------------------------------- /public/assets/vendors/ckeditor/plugins/justify/icons/hidpi/justifyleft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-integration-server/ddc09fe2fef9b70a1942e35b5fb3182cc2326348/public/assets/vendors/ckeditor/plugins/justify/icons/hidpi/justifyleft.png -------------------------------------------------------------------------------- /public/assets/vendors/ckeditor/plugins/justify/icons/hidpi/justifyright.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-integration-server/ddc09fe2fef9b70a1942e35b5fb3182cc2326348/public/assets/vendors/ckeditor/plugins/justify/icons/hidpi/justifyright.png -------------------------------------------------------------------------------- /public/assets/vendors/ckeditor/plugins/justify/icons/justifyblock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-integration-server/ddc09fe2fef9b70a1942e35b5fb3182cc2326348/public/assets/vendors/ckeditor/plugins/justify/icons/justifyblock.png -------------------------------------------------------------------------------- /public/assets/vendors/ckeditor/plugins/justify/icons/justifycenter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-integration-server/ddc09fe2fef9b70a1942e35b5fb3182cc2326348/public/assets/vendors/ckeditor/plugins/justify/icons/justifycenter.png -------------------------------------------------------------------------------- /public/assets/vendors/ckeditor/plugins/justify/icons/justifyleft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-integration-server/ddc09fe2fef9b70a1942e35b5fb3182cc2326348/public/assets/vendors/ckeditor/plugins/justify/icons/justifyleft.png -------------------------------------------------------------------------------- /public/assets/vendors/ckeditor/plugins/justify/icons/justifyright.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-integration-server/ddc09fe2fef9b70a1942e35b5fb3182cc2326348/public/assets/vendors/ckeditor/plugins/justify/icons/justifyright.png -------------------------------------------------------------------------------- /public/assets/vendors/ckeditor/plugins/justify/lang/af.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'justify', 'af', { 6 | block: 'Uitvul', 7 | center: 'Sentreer', 8 | left: 'Links oplyn', 9 | right: 'Regs oplyn' 10 | } ); 11 | -------------------------------------------------------------------------------- /public/assets/vendors/ckeditor/plugins/justify/lang/ar.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'justify', 'ar', { 6 | block: 'ضبط', 7 | center: 'توسيط', 8 | left: 'محاذاة إلى اليسار', 9 | right: 'محاذاة إلى اليمين' 10 | } ); 11 | -------------------------------------------------------------------------------- /public/assets/vendors/ckeditor/plugins/justify/lang/az.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'justify', 'az', { 6 | block: 'Eninə görə', 7 | center: 'Mərkəz', 8 | left: 'Soldan düzləndir', 9 | right: 'Sağdan düzləndir' 10 | } ); 11 | -------------------------------------------------------------------------------- /public/assets/vendors/ckeditor/plugins/justify/lang/bg.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'justify', 'bg', { 6 | block: 'Двустранно подравняване', 7 | center: 'Център', 8 | left: 'Подравни в ляво', 9 | right: 'Подравни в дясно' 10 | } ); 11 | -------------------------------------------------------------------------------- /public/assets/vendors/ckeditor/plugins/justify/lang/bn.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'justify', 'bn', { 6 | block: 'যাচাই করি', 7 | center: 'মাঝ বরাবর ঘেষা', 8 | left: 'বা দিকে ঘেঁষা', 9 | right: 'ডান দিকে ঘেঁষা' 10 | } ); 11 | -------------------------------------------------------------------------------- /public/assets/vendors/ckeditor/plugins/justify/lang/bs.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'justify', 'bs', { 6 | block: 'Puno poravnanje', 7 | center: 'Centralno poravnanje', 8 | left: 'Lijevo poravnanje', 9 | right: 'Desno poravnanje' 10 | } ); 11 | -------------------------------------------------------------------------------- /public/assets/vendors/ckeditor/plugins/justify/lang/ca.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'justify', 'ca', { 6 | block: 'Justificat', 7 | center: 'Centrat', 8 | left: 'Alinea a l\'esquerra', 9 | right: 'Alinea a la dreta' 10 | } ); 11 | -------------------------------------------------------------------------------- /public/assets/vendors/ckeditor/plugins/justify/lang/cs.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'justify', 'cs', { 6 | block: 'Zarovnat do bloku', 7 | center: 'Zarovnat na střed', 8 | left: 'Zarovnat vlevo', 9 | right: 'Zarovnat vpravo' 10 | } ); 11 | -------------------------------------------------------------------------------- /public/assets/vendors/ckeditor/plugins/justify/lang/cy.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'justify', 'cy', { 6 | block: 'Unioni', 7 | center: 'Alinio i\'r Canol', 8 | left: 'Alinio i\'r Chwith', 9 | right: 'Alinio i\'r Dde' 10 | } ); 11 | -------------------------------------------------------------------------------- /public/assets/vendors/ckeditor/plugins/justify/lang/da.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'justify', 'da', { 6 | block: 'Lige margener', 7 | center: 'Centreret', 8 | left: 'Venstrestillet', 9 | right: 'Højrestillet' 10 | } ); 11 | -------------------------------------------------------------------------------- /public/assets/vendors/ckeditor/plugins/justify/lang/de-ch.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'justify', 'de-ch', { 6 | block: 'Blocksatz', 7 | center: 'Zentriert', 8 | left: 'Linksbündig', 9 | right: 'Rechtsbündig' 10 | } ); 11 | -------------------------------------------------------------------------------- /public/assets/vendors/ckeditor/plugins/justify/lang/de.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'justify', 'de', { 6 | block: 'Blocksatz', 7 | center: 'Zentriert', 8 | left: 'Linksbündig', 9 | right: 'Rechtsbündig' 10 | } ); 11 | -------------------------------------------------------------------------------- /public/assets/vendors/ckeditor/plugins/justify/lang/el.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'justify', 'el', { 6 | block: 'Πλήρης Στοίχιση', 7 | center: 'Στο Κέντρο', 8 | left: 'Στοίχιση Αριστερά', 9 | right: 'Στοίχιση Δεξιά' 10 | } ); 11 | -------------------------------------------------------------------------------- /public/assets/vendors/ckeditor/plugins/justify/lang/en-au.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'justify', 'en-au', { 6 | block: 'Justify', 7 | center: 'Centre', 8 | left: 'Align Left', 9 | right: 'Align Right' 10 | } ); 11 | -------------------------------------------------------------------------------- /public/assets/vendors/ckeditor/plugins/justify/lang/en-ca.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'justify', 'en-ca', { 6 | block: 'Justify', 7 | center: 'Centre', 8 | left: 'Align Left', 9 | right: 'Align Right' 10 | } ); 11 | -------------------------------------------------------------------------------- /public/assets/vendors/ckeditor/plugins/justify/lang/en-gb.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'justify', 'en-gb', { 6 | block: 'Justify', 7 | center: 'Centre', 8 | left: 'Align Left', 9 | right: 'Align Right' 10 | } ); 11 | -------------------------------------------------------------------------------- /public/assets/vendors/ckeditor/plugins/justify/lang/en.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'justify', 'en', { 6 | block: 'Justify', 7 | center: 'Center', 8 | left: 'Align Left', 9 | right: 'Align Right' 10 | } ); 11 | -------------------------------------------------------------------------------- /public/assets/vendors/ckeditor/plugins/justify/lang/eo.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'justify', 'eo', { 6 | block: 'Ĝisrandigi Ambaŭflanke', 7 | center: 'Centrigi', 8 | left: 'Ĝisrandigi maldekstren', 9 | right: 'Ĝisrandigi dekstren' 10 | } ); 11 | -------------------------------------------------------------------------------- /public/assets/vendors/ckeditor/plugins/justify/lang/es.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'justify', 'es', { 6 | block: 'Justificado', 7 | center: 'Centrar', 8 | left: 'Alinear a Izquierda', 9 | right: 'Alinear a Derecha' 10 | } ); 11 | -------------------------------------------------------------------------------- /public/assets/vendors/ckeditor/plugins/justify/lang/et.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'justify', 'et', { 6 | block: 'Rööpjoondus', 7 | center: 'Keskjoondus', 8 | left: 'Vasakjoondus', 9 | right: 'Paremjoondus' 10 | } ); 11 | -------------------------------------------------------------------------------- /public/assets/vendors/ckeditor/plugins/justify/lang/eu.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'justify', 'eu', { 6 | block: 'Justifikatu', 7 | center: 'Erdian', 8 | left: 'Lerrokatu ezkerrean', 9 | right: 'Lerrokatu eskuinean' 10 | } ); 11 | -------------------------------------------------------------------------------- /public/assets/vendors/ckeditor/plugins/justify/lang/fa.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'justify', 'fa', { 6 | block: 'بلوک چین', 7 | center: 'میان چین', 8 | left: 'چپ چین', 9 | right: 'راست چین' 10 | } ); 11 | -------------------------------------------------------------------------------- /public/assets/vendors/ckeditor/plugins/justify/lang/fi.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'justify', 'fi', { 6 | block: 'Tasaa molemmat reunat', 7 | center: 'Keskitä', 8 | left: 'Tasaa vasemmat reunat', 9 | right: 'Tasaa oikeat reunat' 10 | } ); 11 | -------------------------------------------------------------------------------- /public/assets/vendors/ckeditor/plugins/justify/lang/fo.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'justify', 'fo', { 6 | block: 'Javnir tekstkantar', 7 | center: 'Miðsett', 8 | left: 'Vinstrasett', 9 | right: 'Høgrasett' 10 | } ); 11 | -------------------------------------------------------------------------------- /public/assets/vendors/ckeditor/plugins/justify/lang/fr-ca.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'justify', 'fr-ca', { 6 | block: 'Justifié', 7 | center: 'Centré', 8 | left: 'Aligner à gauche', 9 | right: 'Aligner à Droite' 10 | } ); 11 | -------------------------------------------------------------------------------- /public/assets/vendors/ckeditor/plugins/justify/lang/fr.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'justify', 'fr', { 6 | block: 'Justifier', 7 | center: 'Centrer', 8 | left: 'Aligner à gauche', 9 | right: 'Aligner à droite' 10 | } ); 11 | -------------------------------------------------------------------------------- /public/assets/vendors/ckeditor/plugins/justify/lang/gl.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'justify', 'gl', { 6 | block: 'Xustificado', 7 | center: 'Centrado', 8 | left: 'Aliñar á esquerda', 9 | right: 'Aliñar á dereita' 10 | } ); 11 | -------------------------------------------------------------------------------- /public/assets/vendors/ckeditor/plugins/justify/lang/gu.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'justify', 'gu', { 6 | block: 'બ્લૉક, અંતરાય જસ્ટિફાઇ', 7 | center: 'સંકેંદ્રણ/સેંટરિંગ', 8 | left: 'ડાબી બાજુએ/બાજુ તરફ', 9 | right: 'જમણી બાજુએ/બાજુ તરફ' 10 | } ); 11 | -------------------------------------------------------------------------------- /public/assets/vendors/ckeditor/plugins/justify/lang/he.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'justify', 'he', { 6 | block: 'יישור לשוליים', 7 | center: 'מרכוז', 8 | left: 'יישור לשמאל', 9 | right: 'יישור לימין' 10 | } ); 11 | -------------------------------------------------------------------------------- /public/assets/vendors/ckeditor/plugins/justify/lang/hi.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'justify', 'hi', { 6 | block: 'ब्लॉक जस्टीफ़ाई', 7 | center: 'बीच में', 8 | left: 'बायीं तरफ', 9 | right: 'दायीं तरफ' 10 | } ); 11 | -------------------------------------------------------------------------------- /public/assets/vendors/ckeditor/plugins/justify/lang/hr.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'justify', 'hr', { 6 | block: 'Blok poravnanje', 7 | center: 'Središnje poravnanje', 8 | left: 'Lijevo poravnanje', 9 | right: 'Desno poravnanje' 10 | } ); 11 | -------------------------------------------------------------------------------- /public/assets/vendors/ckeditor/plugins/justify/lang/hu.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'justify', 'hu', { 6 | block: 'Sorkizárt', 7 | center: 'Középre', 8 | left: 'Balra', 9 | right: 'Jobbra' 10 | } ); 11 | -------------------------------------------------------------------------------- /public/assets/vendors/ckeditor/plugins/justify/lang/id.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'justify', 'id', { 6 | block: 'Rata kiri-kanan', 7 | center: 'Pusat', 8 | left: 'Align Left', // MISSING 9 | right: 'Align Right' // MISSING 10 | } ); 11 | -------------------------------------------------------------------------------- /public/assets/vendors/ckeditor/plugins/justify/lang/is.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'justify', 'is', { 6 | block: 'Jafna báðum megin', 7 | center: 'Miðja texta', 8 | left: 'Vinstrijöfnun', 9 | right: 'Hægrijöfnun' 10 | } ); 11 | -------------------------------------------------------------------------------- /public/assets/vendors/ckeditor/plugins/justify/lang/it.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'justify', 'it', { 6 | block: 'Giustifica', 7 | center: 'Centra', 8 | left: 'Allinea a sinistra', 9 | right: 'Allinea a destra' 10 | } ); 11 | -------------------------------------------------------------------------------- /public/assets/vendors/ckeditor/plugins/justify/lang/ja.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'justify', 'ja', { 6 | block: '両端揃え', 7 | center: '中央揃え', 8 | left: '左揃え', 9 | right: '右揃え' 10 | } ); 11 | -------------------------------------------------------------------------------- /public/assets/vendors/ckeditor/plugins/justify/lang/ka.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'justify', 'ka', { 6 | block: 'გადასწორება', 7 | center: 'შუაში სწორება', 8 | left: 'მარცხნივ სწორება', 9 | right: 'მარჯვნივ სწორება' 10 | } ); 11 | -------------------------------------------------------------------------------- /public/assets/vendors/ckeditor/plugins/justify/lang/km.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'justify', 'km', { 6 | block: 'តម្រឹម​ពេញ', 7 | center: 'កណ្ដាល', 8 | left: 'តម្រឹម​ឆ្វេង', 9 | right: 'តម្រឹម​ស្ដាំ' 10 | } ); 11 | -------------------------------------------------------------------------------- /public/assets/vendors/ckeditor/plugins/justify/lang/ko.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'justify', 'ko', { 6 | block: '양쪽 맞춤', 7 | center: '가운데 정렬', 8 | left: '왼쪽 정렬', 9 | right: '오른쪽 정렬' 10 | } ); 11 | -------------------------------------------------------------------------------- /public/assets/vendors/ckeditor/plugins/justify/lang/ku.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'justify', 'ku', { 6 | block: 'هاوستوونی', 7 | center: 'ناوەڕاست', 8 | left: 'بەهێڵ کردنی چەپ', 9 | right: 'بەهێڵ کردنی ڕاست' 10 | } ); 11 | -------------------------------------------------------------------------------- /public/assets/vendors/ckeditor/plugins/justify/lang/lt.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'justify', 'lt', { 6 | block: 'Lygiuoti abi puses', 7 | center: 'Centruoti', 8 | left: 'Lygiuoti kairę', 9 | right: 'Lygiuoti dešinę' 10 | } ); 11 | -------------------------------------------------------------------------------- /public/assets/vendors/ckeditor/plugins/justify/lang/lv.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'justify', 'lv', { 6 | block: 'Izlīdzināt malas', 7 | center: 'Izlīdzināt pret centru', 8 | left: 'Izlīdzināt pa kreisi', 9 | right: 'Izlīdzināt pa labi' 10 | } ); 11 | -------------------------------------------------------------------------------- /public/assets/vendors/ckeditor/plugins/justify/lang/mk.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'justify', 'mk', { 6 | block: 'Justify', // MISSING 7 | center: 'Во средина', 8 | left: 'Align Left', // MISSING 9 | right: 'Align Right' // MISSING 10 | } ); 11 | -------------------------------------------------------------------------------- /public/assets/vendors/ckeditor/plugins/justify/lang/mn.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'justify', 'mn', { 6 | block: 'Тэгшлэх', 7 | center: 'Голлуулах', 8 | left: 'Зүүн талд тулгах', 9 | right: 'Баруун талд тулгах' 10 | } ); 11 | -------------------------------------------------------------------------------- /public/assets/vendors/ckeditor/plugins/justify/lang/ms.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'justify', 'ms', { 6 | block: 'Jajaran Blok', 7 | center: 'Jajaran Tengah', 8 | left: 'Jajaran Kiri', 9 | right: 'Jajaran Kanan' 10 | } ); 11 | -------------------------------------------------------------------------------- /public/assets/vendors/ckeditor/plugins/justify/lang/nb.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'justify', 'nb', { 6 | block: 'Blokkjuster', 7 | center: 'Midtstill', 8 | left: 'Venstrejuster', 9 | right: 'Høyrejuster' 10 | } ); 11 | -------------------------------------------------------------------------------- /public/assets/vendors/ckeditor/plugins/justify/lang/nl.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'justify', 'nl', { 6 | block: 'Uitvullen', 7 | center: 'Centreren', 8 | left: 'Links uitlijnen', 9 | right: 'Rechts uitlijnen' 10 | } ); 11 | -------------------------------------------------------------------------------- /public/assets/vendors/ckeditor/plugins/justify/lang/no.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'justify', 'no', { 6 | block: 'Blokkjuster', 7 | center: 'Midtstill', 8 | left: 'Venstrejuster', 9 | right: 'Høyrejuster' 10 | } ); 11 | -------------------------------------------------------------------------------- /public/assets/vendors/ckeditor/plugins/justify/lang/oc.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'justify', 'oc', { 6 | block: 'Justificar', 7 | center: 'Centrar', 8 | left: 'Alinhar a esquèrra', 9 | right: 'Alinhar a dreita' 10 | } ); 11 | -------------------------------------------------------------------------------- /public/assets/vendors/ckeditor/plugins/justify/lang/pl.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'justify', 'pl', { 6 | block: 'Wyjustuj', 7 | center: 'Wyśrodkuj', 8 | left: 'Wyrównaj do lewej', 9 | right: 'Wyrównaj do prawej' 10 | } ); 11 | -------------------------------------------------------------------------------- /public/assets/vendors/ckeditor/plugins/justify/lang/pt-br.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'justify', 'pt-br', { 6 | block: 'Justificado', 7 | center: 'Centralizar', 8 | left: 'Alinhar Esquerda', 9 | right: 'Alinhar Direita' 10 | } ); 11 | -------------------------------------------------------------------------------- /public/assets/vendors/ckeditor/plugins/justify/lang/pt.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'justify', 'pt', { 6 | block: 'Justificado', 7 | center: 'Alinhar ao centro', 8 | left: 'Alinhar à esquerda', 9 | right: 'Alinhar à direita' 10 | } ); 11 | -------------------------------------------------------------------------------- /public/assets/vendors/ckeditor/plugins/justify/lang/ro.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'justify', 'ro', { 6 | block: 'Aliniere în bloc (Block Justify)', 7 | center: 'Aliniere centrală', 8 | left: 'Aliniere la stânga', 9 | right: 'Aliniere la dreapta' 10 | } ); 11 | -------------------------------------------------------------------------------- /public/assets/vendors/ckeditor/plugins/justify/lang/ru.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'justify', 'ru', { 6 | block: 'По ширине', 7 | center: 'По центру', 8 | left: 'По левому краю', 9 | right: 'По правому краю' 10 | } ); 11 | -------------------------------------------------------------------------------- /public/assets/vendors/ckeditor/plugins/justify/lang/si.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'justify', 'si', { 6 | block: 'Justify', // MISSING 7 | center: 'මධ්‍ය', 8 | left: 'Align Left', // MISSING 9 | right: 'Align Right' // MISSING 10 | } ); 11 | -------------------------------------------------------------------------------- /public/assets/vendors/ckeditor/plugins/justify/lang/sk.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'justify', 'sk', { 6 | block: 'Zarovnať do bloku', 7 | center: 'Zarovnať na stred', 8 | left: 'Zarovnať vľavo', 9 | right: 'Zarovnať vpravo' 10 | } ); 11 | -------------------------------------------------------------------------------- /public/assets/vendors/ckeditor/plugins/justify/lang/sl.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'justify', 'sl', { 6 | block: 'Obojestranska poravnava', 7 | center: 'Sredinska poravnava', 8 | left: 'Leva poravnava', 9 | right: 'Desna poravnava' 10 | } ); 11 | -------------------------------------------------------------------------------- /public/assets/vendors/ckeditor/plugins/justify/lang/sq.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'justify', 'sq', { 6 | block: 'Zgjero', 7 | center: 'Qendër', 8 | left: 'Rreshto majtas', 9 | right: 'Rreshto Djathtas' 10 | } ); 11 | -------------------------------------------------------------------------------- /public/assets/vendors/ckeditor/plugins/justify/lang/sr-latn.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'justify', 'sr-latn', { 6 | block: 'Obostrano ravnanje', 7 | center: 'Centriran tekst', 8 | left: 'Levo ravnanje', 9 | right: 'Desno ravnanje' 10 | } ); 11 | -------------------------------------------------------------------------------- /public/assets/vendors/ckeditor/plugins/justify/lang/sr.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'justify', 'sr', { 6 | block: 'Обострано равнање', 7 | center: 'Центриран текст', 8 | left: 'Лево равнање', 9 | right: 'Десно равнање' 10 | } ); 11 | -------------------------------------------------------------------------------- /public/assets/vendors/ckeditor/plugins/justify/lang/sv.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'justify', 'sv', { 6 | block: 'Justera till marginaler', 7 | center: 'Centrera', 8 | left: 'Vänsterjustera', 9 | right: 'Högerjustera' 10 | } ); 11 | -------------------------------------------------------------------------------- /public/assets/vendors/ckeditor/plugins/justify/lang/th.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'justify', 'th', { 6 | block: 'จัดพอดีหน้ากระดาษ', 7 | center: 'จัดกึ่งกลาง', 8 | left: 'จัดชิดซ้าย', 9 | right: 'จัดชิดขวา' 10 | } ); 11 | -------------------------------------------------------------------------------- /public/assets/vendors/ckeditor/plugins/justify/lang/tr.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'justify', 'tr', { 6 | block: 'İki Kenara Yaslanmış', 7 | center: 'Ortalanmış', 8 | left: 'Sola Dayalı', 9 | right: 'Sağa Dayalı' 10 | } ); 11 | -------------------------------------------------------------------------------- /public/assets/vendors/ckeditor/plugins/justify/lang/tt.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'justify', 'tt', { 6 | block: 'Киңлеккә карап тигезләү', 7 | center: 'Үзәккә тигезләү', 8 | left: 'Сул як кырыйдан тигезләү', 9 | right: 'Уң як кырыйдан тигезләү' 10 | } ); 11 | -------------------------------------------------------------------------------- /public/assets/vendors/ckeditor/plugins/justify/lang/ug.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'justify', 'ug', { 6 | block: 'ئىككى تەرەپتىن توغرىلا', 7 | center: 'ئوتتۇرىغا توغرىلا', 8 | left: 'سولغا توغرىلا', 9 | right: 'ئوڭغا توغرىلا' 10 | } ); 11 | -------------------------------------------------------------------------------- /public/assets/vendors/ckeditor/plugins/justify/lang/uk.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'justify', 'uk', { 6 | block: 'По ширині', 7 | center: 'По центру', 8 | left: 'По лівому краю', 9 | right: 'По правому краю' 10 | } ); 11 | -------------------------------------------------------------------------------- /public/assets/vendors/ckeditor/plugins/justify/lang/vi.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'justify', 'vi', { 6 | block: 'Canh đều', 7 | center: 'Canh giữa', 8 | left: 'Canh trái', 9 | right: 'Canh phải' 10 | } ); 11 | -------------------------------------------------------------------------------- /public/assets/vendors/ckeditor/plugins/justify/lang/zh-cn.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'justify', 'zh-cn', { 6 | block: '两端对齐', 7 | center: '居中', 8 | left: '左对齐', 9 | right: '右对齐' 10 | } ); 11 | -------------------------------------------------------------------------------- /public/assets/vendors/ckeditor/plugins/justify/lang/zh.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'justify', 'zh', { 6 | block: '左右對齊', 7 | center: '置中', 8 | left: '靠左對齊', 9 | right: '靠右對齊' 10 | } ); 11 | -------------------------------------------------------------------------------- /public/assets/vendors/ckeditor/plugins/link/images/anchor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-integration-server/ddc09fe2fef9b70a1942e35b5fb3182cc2326348/public/assets/vendors/ckeditor/plugins/link/images/anchor.png -------------------------------------------------------------------------------- /public/assets/vendors/ckeditor/plugins/link/images/hidpi/anchor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-integration-server/ddc09fe2fef9b70a1942e35b5fb3182cc2326348/public/assets/vendors/ckeditor/plugins/link/images/hidpi/anchor.png -------------------------------------------------------------------------------- /public/assets/vendors/ckeditor/plugins/magicline/images/hidpi/icon-rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-integration-server/ddc09fe2fef9b70a1942e35b5fb3182cc2326348/public/assets/vendors/ckeditor/plugins/magicline/images/hidpi/icon-rtl.png -------------------------------------------------------------------------------- /public/assets/vendors/ckeditor/plugins/magicline/images/hidpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-integration-server/ddc09fe2fef9b70a1942e35b5fb3182cc2326348/public/assets/vendors/ckeditor/plugins/magicline/images/hidpi/icon.png -------------------------------------------------------------------------------- /public/assets/vendors/ckeditor/plugins/magicline/images/icon-rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-integration-server/ddc09fe2fef9b70a1942e35b5fb3182cc2326348/public/assets/vendors/ckeditor/plugins/magicline/images/icon-rtl.png -------------------------------------------------------------------------------- /public/assets/vendors/ckeditor/plugins/magicline/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-integration-server/ddc09fe2fef9b70a1942e35b5fb3182cc2326348/public/assets/vendors/ckeditor/plugins/magicline/images/icon.png -------------------------------------------------------------------------------- /public/assets/vendors/ckeditor/plugins/notification/lang/az.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'notification', 'az', { 6 | closed: 'Xəbərdarlıq pəncərəsi bağlanıb' 7 | } ); 8 | -------------------------------------------------------------------------------- /public/assets/vendors/ckeditor/plugins/notification/lang/ca.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'notification', 'ca', { 6 | closed: 'Notificació tancada.' 7 | } ); 8 | -------------------------------------------------------------------------------- /public/assets/vendors/ckeditor/plugins/notification/lang/cs.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'notification', 'cs', { 6 | closed: 'Oznámení zavřeno.' 7 | } ); 8 | -------------------------------------------------------------------------------- /public/assets/vendors/ckeditor/plugins/notification/lang/da.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'notification', 'da', { 6 | closed: 'Notefikation lukket.' 7 | } ); 8 | -------------------------------------------------------------------------------- /public/assets/vendors/ckeditor/plugins/notification/lang/de-ch.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'notification', 'de-ch', { 6 | closed: 'Benachrichtigung geschlossen.' 7 | } ); 8 | -------------------------------------------------------------------------------- /public/assets/vendors/ckeditor/plugins/notification/lang/de.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'notification', 'de', { 6 | closed: 'Benachrichtigung geschlossen.' 7 | } ); 8 | -------------------------------------------------------------------------------- /public/assets/vendors/ckeditor/plugins/notification/lang/en.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'notification', 'en', { 6 | closed: 'Notification closed.' 7 | } ); 8 | -------------------------------------------------------------------------------- /public/assets/vendors/ckeditor/plugins/notification/lang/eo.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'notification', 'eo', { 6 | closed: 'Sciigo fermita' 7 | } ); 8 | -------------------------------------------------------------------------------- /public/assets/vendors/ckeditor/plugins/notification/lang/es.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'notification', 'es', { 6 | closed: 'Notificación cerrada.' 7 | } ); 8 | -------------------------------------------------------------------------------- /public/assets/vendors/ckeditor/plugins/notification/lang/eu.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'notification', 'eu', { 6 | closed: 'Jakinarazpena itxita.' 7 | } ); 8 | -------------------------------------------------------------------------------- /public/assets/vendors/ckeditor/plugins/notification/lang/fr.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'notification', 'fr', { 6 | closed: 'Notification fermée.' 7 | } ); 8 | -------------------------------------------------------------------------------- /public/assets/vendors/ckeditor/plugins/notification/lang/gl.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'notification', 'gl', { 6 | closed: 'Notificación pechada.' 7 | } ); 8 | -------------------------------------------------------------------------------- /public/assets/vendors/ckeditor/plugins/notification/lang/id.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'notification', 'id', { 6 | closed: 'Pemberitahuan ditutup' 7 | } ); 8 | -------------------------------------------------------------------------------- /public/assets/vendors/ckeditor/plugins/notification/lang/it.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'notification', 'it', { 6 | closed: 'Notifica chiusa.' 7 | } ); 8 | -------------------------------------------------------------------------------- /public/assets/vendors/ckeditor/plugins/notification/lang/ja.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'notification', 'ja', { 6 | closed: '通知を閉じました。' 7 | } ); 8 | -------------------------------------------------------------------------------- /public/assets/vendors/ckeditor/plugins/notification/lang/km.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'notification', 'km', { 6 | closed: 'បាន​បិទ​ការ​ផ្ដល់​ដំណឹង។' 7 | } ); 8 | -------------------------------------------------------------------------------- /public/assets/vendors/ckeditor/plugins/notification/lang/ko.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'notification', 'ko', { 6 | closed: '알림이 닫힘.' 7 | } ); 8 | -------------------------------------------------------------------------------- /public/assets/vendors/ckeditor/plugins/notification/lang/ku.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'notification', 'ku', { 6 | closed: 'ئاگادارکەرەوەکە داخرا.' 7 | } ); 8 | -------------------------------------------------------------------------------- /public/assets/vendors/ckeditor/plugins/notification/lang/nb.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'notification', 'nb', { 6 | closed: 'Varsling lukket.' 7 | } ); 8 | -------------------------------------------------------------------------------- /public/assets/vendors/ckeditor/plugins/notification/lang/nl.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'notification', 'nl', { 6 | closed: 'Melding gesloten.' 7 | } ); 8 | -------------------------------------------------------------------------------- /public/assets/vendors/ckeditor/plugins/notification/lang/oc.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'notification', 'oc', { 6 | closed: 'Notificacion tampada.' 7 | } ); 8 | -------------------------------------------------------------------------------- /public/assets/vendors/ckeditor/plugins/notification/lang/pl.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'notification', 'pl', { 6 | closed: 'Powiadomienie zostało zamknięte.' 7 | } ); 8 | -------------------------------------------------------------------------------- /public/assets/vendors/ckeditor/plugins/notification/lang/pt-br.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'notification', 'pt-br', { 6 | closed: 'Notificação fechada.' 7 | } ); 8 | -------------------------------------------------------------------------------- /public/assets/vendors/ckeditor/plugins/notification/lang/pt.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'notification', 'pt', { 6 | closed: 'Notificação encerrada.' 7 | } ); 8 | -------------------------------------------------------------------------------- /public/assets/vendors/ckeditor/plugins/notification/lang/ru.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'notification', 'ru', { 6 | closed: 'Уведомление закрыто' 7 | } ); 8 | -------------------------------------------------------------------------------- /public/assets/vendors/ckeditor/plugins/notification/lang/sv.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'notification', 'sv', { 6 | closed: 'Notifiering stängd.' 7 | } ); 8 | -------------------------------------------------------------------------------- /public/assets/vendors/ckeditor/plugins/notification/lang/tr.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'notification', 'tr', { 6 | closed: 'Uyarılar kapatıldı.' 7 | } ); 8 | -------------------------------------------------------------------------------- /public/assets/vendors/ckeditor/plugins/notification/lang/ug.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'notification', 'ug', { 6 | closed: 'ئوقتۇرۇش تاقالدى.' 7 | } ); 8 | -------------------------------------------------------------------------------- /public/assets/vendors/ckeditor/plugins/notification/lang/uk.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'notification', 'uk', { 6 | closed: 'Сповіщення закрито.' 7 | } ); 8 | -------------------------------------------------------------------------------- /public/assets/vendors/ckeditor/plugins/notification/lang/zh-cn.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'notification', 'zh-cn', { 6 | closed: '通知已关闭' 7 | } ); 8 | -------------------------------------------------------------------------------- /public/assets/vendors/ckeditor/plugins/notification/lang/zh.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'notification', 'zh', { 6 | closed: '通知已關閉。' 7 | } ); 8 | -------------------------------------------------------------------------------- /public/assets/vendors/ckeditor/plugins/widget/dev/assets/sample.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-integration-server/ddc09fe2fef9b70a1942e35b5fb3182cc2326348/public/assets/vendors/ckeditor/plugins/widget/dev/assets/sample.jpg -------------------------------------------------------------------------------- /public/assets/vendors/ckeditor/plugins/widget/dev/assets/simplebox/icons/simplebox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-integration-server/ddc09fe2fef9b70a1942e35b5fb3182cc2326348/public/assets/vendors/ckeditor/plugins/widget/dev/assets/simplebox/icons/simplebox.png -------------------------------------------------------------------------------- /public/assets/vendors/ckeditor/plugins/widget/images/handle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-integration-server/ddc09fe2fef9b70a1942e35b5fb3182cc2326348/public/assets/vendors/ckeditor/plugins/widget/images/handle.png -------------------------------------------------------------------------------- /public/assets/vendors/ckeditor/plugins/widget/lang/af.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @license Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. 3 | * For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'widget', 'af', { 6 | 'move': 'Klik en trek on te beweeg', 7 | 'label': '%1 widget' // MISSING 8 | } ); 9 | -------------------------------------------------------------------------------- /public/assets/vendors/ckeditor/plugins/widget/lang/ar.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @license Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. 3 | * For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'widget', 'ar', { 6 | 'move': 'إضغط و إسحب للتحريك', 7 | 'label': '%1 widget' // MISSING 8 | } ); 9 | -------------------------------------------------------------------------------- /public/assets/vendors/ckeditor/plugins/widget/lang/az.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @license Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. 3 | * For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'widget', 'az', { 6 | 'move': 'Tıklayın və aparın', 7 | 'label': '%1 vidjet' 8 | } ); 9 | -------------------------------------------------------------------------------- /public/assets/vendors/ckeditor/plugins/widget/lang/bg.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @license Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. 3 | * For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'widget', 'bg', { 6 | 'move': 'Кликни и влачи, за да преместиш', 7 | 'label': '%1 widget' // MISSING 8 | } ); 9 | -------------------------------------------------------------------------------- /public/assets/vendors/ckeditor/plugins/widget/lang/ca.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @license Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. 3 | * For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'widget', 'ca', { 6 | 'move': 'Clicar i arrossegar per moure', 7 | 'label': '%1 widget' 8 | } ); 9 | -------------------------------------------------------------------------------- /public/assets/vendors/ckeditor/plugins/widget/lang/cs.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @license Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. 3 | * For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'widget', 'cs', { 6 | 'move': 'Klepněte a táhněte pro přesunutí', 7 | 'label': 'Ovládací prvek %1' 8 | } ); 9 | -------------------------------------------------------------------------------- /public/assets/vendors/ckeditor/plugins/widget/lang/cy.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @license Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. 3 | * For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'widget', 'cy', { 6 | 'move': 'Clcio a llusgo i symud', 7 | 'label': '%1 widget' // MISSING 8 | } ); 9 | -------------------------------------------------------------------------------- /public/assets/vendors/ckeditor/plugins/widget/lang/da.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @license Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. 3 | * For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'widget', 'da', { 6 | 'move': 'Klik og træk for at flytte', 7 | 'label': '%1 widget' // MISSING 8 | } ); 9 | -------------------------------------------------------------------------------- /public/assets/vendors/ckeditor/plugins/widget/lang/de-ch.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @license Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. 3 | * For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'widget', 'de-ch', { 6 | 'move': 'Zum Verschieben anwählen und ziehen', 7 | 'label': '%1 widget' // MISSING 8 | } ); 9 | -------------------------------------------------------------------------------- /public/assets/vendors/ckeditor/plugins/widget/lang/de.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @license Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. 3 | * For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'widget', 'de', { 6 | 'move': 'Zum Verschieben anwählen und ziehen', 7 | 'label': '%1 Steuerelement' 8 | } ); 9 | -------------------------------------------------------------------------------- /public/assets/vendors/ckeditor/plugins/widget/lang/el.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @license Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. 3 | * For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'widget', 'el', { 6 | 'move': 'Κάνετε κλικ και σύρετε το ποντίκι για να μετακινήστε', 7 | 'label': '%1 widget' // MISSING 8 | } ); 9 | -------------------------------------------------------------------------------- /public/assets/vendors/ckeditor/plugins/widget/lang/en-gb.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @license Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. 3 | * For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'widget', 'en-gb', { 6 | 'move': 'Click and drag to move', 7 | 'label': '%1 widget' // MISSING 8 | } ); 9 | -------------------------------------------------------------------------------- /public/assets/vendors/ckeditor/plugins/widget/lang/en.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @license Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. 3 | * For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'widget', 'en', { 6 | 'move': 'Click and drag to move', 7 | 'label': '%1 widget' 8 | } ); 9 | -------------------------------------------------------------------------------- /public/assets/vendors/ckeditor/plugins/widget/lang/eo.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @license Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. 3 | * For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'widget', 'eo', { 6 | 'move': 'klaki kaj treni por movi', 7 | 'label': '%1 widget' // MISSING 8 | } ); 9 | -------------------------------------------------------------------------------- /public/assets/vendors/ckeditor/plugins/widget/lang/es.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @license Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. 3 | * For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'widget', 'es', { 6 | 'move': 'Dar clic y arrastrar para mover', 7 | 'label': 'reproductor %1' 8 | } ); 9 | -------------------------------------------------------------------------------- /public/assets/vendors/ckeditor/plugins/widget/lang/eu.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @license Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. 3 | * For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'widget', 'eu', { 6 | 'move': 'Klikatu eta arrastatu lekuz aldatzeko', 7 | 'label': '%1 widget' 8 | } ); 9 | -------------------------------------------------------------------------------- /public/assets/vendors/ckeditor/plugins/widget/lang/fa.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @license Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. 3 | * For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'widget', 'fa', { 6 | 'move': 'کلیک و کشیدن برای جابجایی', 7 | 'label': '%1 widget' // MISSING 8 | } ); 9 | -------------------------------------------------------------------------------- /public/assets/vendors/ckeditor/plugins/widget/lang/fi.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @license Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. 3 | * For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'widget', 'fi', { 6 | 'move': 'Siirrä klikkaamalla ja raahaamalla', 7 | 'label': '%1 widget' // MISSING 8 | } ); 9 | -------------------------------------------------------------------------------- /public/assets/vendors/ckeditor/plugins/widget/lang/fr.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @license Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. 3 | * For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'widget', 'fr', { 6 | 'move': 'Cliquer et glisser pour déplacer', 7 | 'label': 'Élément %1' 8 | } ); 9 | -------------------------------------------------------------------------------- /public/assets/vendors/ckeditor/plugins/widget/lang/gl.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @license Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. 3 | * For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'widget', 'gl', { 6 | 'move': 'Prema e arrastre para mover', 7 | 'label': '%1 widget' // MISSING 8 | } ); 9 | -------------------------------------------------------------------------------- /public/assets/vendors/ckeditor/plugins/widget/lang/he.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @license Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. 3 | * For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'widget', 'he', { 6 | 'move': 'לחץ וגרור להזזה', 7 | 'label': '%1 widget' // MISSING 8 | } ); 9 | -------------------------------------------------------------------------------- /public/assets/vendors/ckeditor/plugins/widget/lang/hr.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @license Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. 3 | * For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'widget', 'hr', { 6 | 'move': 'Klikni i povuci da pomakneš', 7 | 'label': '%1 widget' // MISSING 8 | } ); 9 | -------------------------------------------------------------------------------- /public/assets/vendors/ckeditor/plugins/widget/lang/hu.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @license Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. 3 | * For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'widget', 'hu', { 6 | 'move': 'Kattints és húzd a mozgatáshoz', 7 | 'label': '%1 widget' // MISSING 8 | } ); 9 | -------------------------------------------------------------------------------- /public/assets/vendors/ckeditor/plugins/widget/lang/id.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @license Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. 3 | * For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'widget', 'id', { 6 | 'move': 'Tekan dan geser untuk memindahkan', 7 | 'label': '%1 widget' // MISSING 8 | } ); 9 | -------------------------------------------------------------------------------- /public/assets/vendors/ckeditor/plugins/widget/lang/it.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @license Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. 3 | * For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'widget', 'it', { 6 | 'move': 'Fare clic e trascinare per spostare', 7 | 'label': 'Widget %1' 8 | } ); 9 | -------------------------------------------------------------------------------- /public/assets/vendors/ckeditor/plugins/widget/lang/ja.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @license Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. 3 | * For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'widget', 'ja', { 6 | 'move': 'ドラッグして移動', 7 | 'label': '%1 ウィジェット' 8 | } ); 9 | -------------------------------------------------------------------------------- /public/assets/vendors/ckeditor/plugins/widget/lang/km.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @license Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. 3 | * For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'widget', 'km', { 6 | 'move': 'ចុច​ហើយ​ទាញ​ដើម្បី​ផ្លាស់​ទី', 7 | 'label': '%1 widget' // MISSING 8 | } ); 9 | -------------------------------------------------------------------------------- /public/assets/vendors/ckeditor/plugins/widget/lang/ko.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @license Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. 3 | * For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'widget', 'ko', { 6 | 'move': '움직이려면 클릭 후 드래그 하세요', 7 | 'label': '%1 widget' // MISSING 8 | } ); 9 | -------------------------------------------------------------------------------- /public/assets/vendors/ckeditor/plugins/widget/lang/ku.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @license Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. 3 | * For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'widget', 'ku', { 6 | 'move': 'کرتەبکە و ڕایبکێشە بۆ جوڵاندن', 7 | 'label': '%1 ویجێت' 8 | } ); 9 | -------------------------------------------------------------------------------- /public/assets/vendors/ckeditor/plugins/widget/lang/lv.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @license Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. 3 | * For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'widget', 'lv', { 6 | 'move': 'Klikšķina un velc, lai pārvietotu', 7 | 'label': '%1 widget' // MISSING 8 | } ); 9 | -------------------------------------------------------------------------------- /public/assets/vendors/ckeditor/plugins/widget/lang/nb.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @license Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. 3 | * For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'widget', 'nb', { 6 | 'move': 'Klikk og dra for å flytte', 7 | 'label': 'Widget %1' 8 | } ); 9 | -------------------------------------------------------------------------------- /public/assets/vendors/ckeditor/plugins/widget/lang/nl.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @license Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. 3 | * For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'widget', 'nl', { 6 | 'move': 'Klik en sleep om te verplaatsen', 7 | 'label': '%1 widget' 8 | } ); 9 | -------------------------------------------------------------------------------- /public/assets/vendors/ckeditor/plugins/widget/lang/no.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @license Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. 3 | * For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'widget', 'no', { 6 | 'move': 'Klikk og dra for å flytte', 7 | 'label': 'Widget %1' 8 | } ); 9 | -------------------------------------------------------------------------------- /public/assets/vendors/ckeditor/plugins/widget/lang/oc.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @license Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. 3 | * For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'widget', 'oc', { 6 | 'move': 'Clicar e lisar per desplaçar', 7 | 'label': 'Element %1' 8 | } ); 9 | -------------------------------------------------------------------------------- /public/assets/vendors/ckeditor/plugins/widget/lang/pl.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @license Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. 3 | * For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'widget', 'pl', { 6 | 'move': 'Kliknij i przeciągnij, by przenieść.', 7 | 'label': 'Widget %1' 8 | } ); 9 | -------------------------------------------------------------------------------- /public/assets/vendors/ckeditor/plugins/widget/lang/pt-br.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @license Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. 3 | * For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'widget', 'pt-br', { 6 | 'move': 'Click e arraste para mover', 7 | 'label': '%1 widget' 8 | } ); 9 | -------------------------------------------------------------------------------- /public/assets/vendors/ckeditor/plugins/widget/lang/pt.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @license Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. 3 | * For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'widget', 'pt', { 6 | 'move': 'Clique e arraste para mover', 7 | 'label': '%1 widget' // MISSING 8 | } ); 9 | -------------------------------------------------------------------------------- /public/assets/vendors/ckeditor/plugins/widget/lang/ru.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @license Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. 3 | * For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'widget', 'ru', { 6 | 'move': 'Нажмите и перетащите, чтобы переместить', 7 | 'label': '%1 виджет' 8 | } ); 9 | -------------------------------------------------------------------------------- /public/assets/vendors/ckeditor/plugins/widget/lang/sk.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @license Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. 3 | * For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'widget', 'sk', { 6 | 'move': 'Kliknite a potiahnite pre presunutie', 7 | 'label': '%1 widget' // MISSING 8 | } ); 9 | -------------------------------------------------------------------------------- /public/assets/vendors/ckeditor/plugins/widget/lang/sl.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @license Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. 3 | * For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'widget', 'sl', { 6 | 'move': 'Kliknite in povlecite, da premaknete', 7 | 'label': '%1 widget' // MISSING 8 | } ); 9 | -------------------------------------------------------------------------------- /public/assets/vendors/ckeditor/plugins/widget/lang/sq.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @license Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. 3 | * For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'widget', 'sq', { 6 | 'move': 'Kliko dhe tërhiqe për ta lëvizur', 7 | 'label': '%1 widget' // MISSING 8 | } ); 9 | -------------------------------------------------------------------------------- /public/assets/vendors/ckeditor/plugins/widget/lang/sv.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @license Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. 3 | * For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'widget', 'sv', { 6 | 'move': 'Klicka och drag för att flytta', 7 | 'label': '%1-widget' 8 | } ); 9 | -------------------------------------------------------------------------------- /public/assets/vendors/ckeditor/plugins/widget/lang/tr.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @license Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. 3 | * For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'widget', 'tr', { 6 | 'move': 'Taşımak için, tıklayın ve sürükleyin', 7 | 'label': '%1 Grafik Beleşeni' 8 | } ); 9 | -------------------------------------------------------------------------------- /public/assets/vendors/ckeditor/plugins/widget/lang/tt.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @license Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. 3 | * For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'widget', 'tt', { 6 | 'move': 'Күчереп куер өчен басып шудырыгыз', 7 | 'label': '%1 widget' // MISSING 8 | } ); 9 | -------------------------------------------------------------------------------- /public/assets/vendors/ckeditor/plugins/widget/lang/ug.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @license Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. 3 | * For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'widget', 'ug', { 6 | 'move': 'يۆتكەشتە چېكىپ سۆرەڭ', 7 | 'label': '%1 widget' // MISSING 8 | } ); 9 | -------------------------------------------------------------------------------- /public/assets/vendors/ckeditor/plugins/widget/lang/uk.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @license Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. 3 | * For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'widget', 'uk', { 6 | 'move': 'Клікніть і потягніть для переміщення', 7 | 'label': '%1 віджет' 8 | } ); 9 | -------------------------------------------------------------------------------- /public/assets/vendors/ckeditor/plugins/widget/lang/vi.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @license Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. 3 | * For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'widget', 'vi', { 6 | 'move': 'Nhấp chuột và kéo để di chuyển', 7 | 'label': '%1 widget' // MISSING 8 | } ); 9 | -------------------------------------------------------------------------------- /public/assets/vendors/ckeditor/plugins/widget/lang/zh-cn.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @license Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. 3 | * For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'widget', 'zh-cn', { 6 | 'move': '点击并拖拽以移动', 7 | 'label': '%1 小部件' 8 | } ); 9 | -------------------------------------------------------------------------------- /public/assets/vendors/ckeditor/plugins/widget/lang/zh.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @license Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. 3 | * For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'widget', 'zh', { 6 | 'move': '拖曳以移動', 7 | 'label': '%1 小工具' 8 | } ); 9 | -------------------------------------------------------------------------------- /public/assets/vendors/ckeditor/samples/img/github-top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-integration-server/ddc09fe2fef9b70a1942e35b5fb3182cc2326348/public/assets/vendors/ckeditor/samples/img/github-top.png -------------------------------------------------------------------------------- /public/assets/vendors/ckeditor/samples/img/header-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-integration-server/ddc09fe2fef9b70a1942e35b5fb3182cc2326348/public/assets/vendors/ckeditor/samples/img/header-bg.png -------------------------------------------------------------------------------- /public/assets/vendors/ckeditor/samples/img/header-separator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-integration-server/ddc09fe2fef9b70a1942e35b5fb3182cc2326348/public/assets/vendors/ckeditor/samples/img/header-separator.png -------------------------------------------------------------------------------- /public/assets/vendors/ckeditor/samples/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-integration-server/ddc09fe2fef9b70a1942e35b5fb3182cc2326348/public/assets/vendors/ckeditor/samples/img/logo.png -------------------------------------------------------------------------------- /public/assets/vendors/ckeditor/samples/img/navigation-tip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-integration-server/ddc09fe2fef9b70a1942e35b5fb3182cc2326348/public/assets/vendors/ckeditor/samples/img/navigation-tip.png -------------------------------------------------------------------------------- /public/assets/vendors/ckeditor/samples/old/assets/inlineall/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-integration-server/ddc09fe2fef9b70a1942e35b5fb3182cc2326348/public/assets/vendors/ckeditor/samples/old/assets/inlineall/logo.png -------------------------------------------------------------------------------- /public/assets/vendors/ckeditor/samples/old/assets/sample.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-integration-server/ddc09fe2fef9b70a1942e35b5fb3182cc2326348/public/assets/vendors/ckeditor/samples/old/assets/sample.jpg -------------------------------------------------------------------------------- /public/assets/vendors/ckeditor/samples/old/htmlwriter/assets/outputforflash/outputforflash.fla: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-integration-server/ddc09fe2fef9b70a1942e35b5fb3182cc2326348/public/assets/vendors/ckeditor/samples/old/htmlwriter/assets/outputforflash/outputforflash.fla -------------------------------------------------------------------------------- /public/assets/vendors/ckeditor/samples/old/htmlwriter/assets/outputforflash/outputforflash.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-integration-server/ddc09fe2fef9b70a1942e35b5fb3182cc2326348/public/assets/vendors/ckeditor/samples/old/htmlwriter/assets/outputforflash/outputforflash.swf -------------------------------------------------------------------------------- /public/assets/vendors/ckeditor/samples/toolbarconfigurator/font/LICENSE.txt: -------------------------------------------------------------------------------- 1 | Font license info 2 | 3 | 4 | ## Font Awesome 5 | 6 | Copyright (C) 2012 by Dave Gandy 7 | 8 | Author: Dave Gandy 9 | License: SIL () 10 | Homepage: http://fortawesome.github.com/Font-Awesome/ 11 | -------------------------------------------------------------------------------- /public/assets/vendors/ckeditor/samples/toolbarconfigurator/font/fontello.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-integration-server/ddc09fe2fef9b70a1942e35b5fb3182cc2326348/public/assets/vendors/ckeditor/samples/toolbarconfigurator/font/fontello.eot -------------------------------------------------------------------------------- /public/assets/vendors/ckeditor/samples/toolbarconfigurator/font/fontello.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-integration-server/ddc09fe2fef9b70a1942e35b5fb3182cc2326348/public/assets/vendors/ckeditor/samples/toolbarconfigurator/font/fontello.ttf -------------------------------------------------------------------------------- /public/assets/vendors/ckeditor/samples/toolbarconfigurator/font/fontello.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-integration-server/ddc09fe2fef9b70a1942e35b5fb3182cc2326348/public/assets/vendors/ckeditor/samples/toolbarconfigurator/font/fontello.woff -------------------------------------------------------------------------------- /public/assets/vendors/ckeditor/skins/moono/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-integration-server/ddc09fe2fef9b70a1942e35b5fb3182cc2326348/public/assets/vendors/ckeditor/skins/moono/icons.png -------------------------------------------------------------------------------- /public/assets/vendors/ckeditor/skins/moono/icons_hidpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-integration-server/ddc09fe2fef9b70a1942e35b5fb3182cc2326348/public/assets/vendors/ckeditor/skins/moono/icons_hidpi.png -------------------------------------------------------------------------------- /public/assets/vendors/ckeditor/skins/moono/images/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-integration-server/ddc09fe2fef9b70a1942e35b5fb3182cc2326348/public/assets/vendors/ckeditor/skins/moono/images/arrow.png -------------------------------------------------------------------------------- /public/assets/vendors/ckeditor/skins/moono/images/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-integration-server/ddc09fe2fef9b70a1942e35b5fb3182cc2326348/public/assets/vendors/ckeditor/skins/moono/images/close.png -------------------------------------------------------------------------------- /public/assets/vendors/ckeditor/skins/moono/images/hidpi/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-integration-server/ddc09fe2fef9b70a1942e35b5fb3182cc2326348/public/assets/vendors/ckeditor/skins/moono/images/hidpi/close.png -------------------------------------------------------------------------------- /public/assets/vendors/ckeditor/skins/moono/images/hidpi/lock-open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-integration-server/ddc09fe2fef9b70a1942e35b5fb3182cc2326348/public/assets/vendors/ckeditor/skins/moono/images/hidpi/lock-open.png -------------------------------------------------------------------------------- /public/assets/vendors/ckeditor/skins/moono/images/hidpi/lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-integration-server/ddc09fe2fef9b70a1942e35b5fb3182cc2326348/public/assets/vendors/ckeditor/skins/moono/images/hidpi/lock.png -------------------------------------------------------------------------------- /public/assets/vendors/ckeditor/skins/moono/images/hidpi/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-integration-server/ddc09fe2fef9b70a1942e35b5fb3182cc2326348/public/assets/vendors/ckeditor/skins/moono/images/hidpi/refresh.png -------------------------------------------------------------------------------- /public/assets/vendors/ckeditor/skins/moono/images/lock-open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-integration-server/ddc09fe2fef9b70a1942e35b5fb3182cc2326348/public/assets/vendors/ckeditor/skins/moono/images/lock-open.png -------------------------------------------------------------------------------- /public/assets/vendors/ckeditor/skins/moono/images/lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-integration-server/ddc09fe2fef9b70a1942e35b5fb3182cc2326348/public/assets/vendors/ckeditor/skins/moono/images/lock.png -------------------------------------------------------------------------------- /public/assets/vendors/ckeditor/skins/moono/images/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-integration-server/ddc09fe2fef9b70a1942e35b5fb3182cc2326348/public/assets/vendors/ckeditor/skins/moono/images/refresh.png -------------------------------------------------------------------------------- /public/assets/vendors/ckeditor/skins/moono/images/spinner.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-integration-server/ddc09fe2fef9b70a1942e35b5fb3182cc2326348/public/assets/vendors/ckeditor/skins/moono/images/spinner.gif -------------------------------------------------------------------------------- /public/assets/vendors/font-awesome/HELP-US-OUT.txt: -------------------------------------------------------------------------------- 1 | I hope you love Font Awesome. If you've found it useful, please do me a favor and check out my latest project, 2 | Fort Awesome (https://fortawesome.com). It makes it easy to put the perfect icons on your website. Choose from our awesome, 3 | comprehensive icon sets or copy and paste your own. 4 | 5 | Please. Check it out. 6 | 7 | -Dave Gandy 8 | -------------------------------------------------------------------------------- /public/assets/vendors/font-awesome/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-integration-server/ddc09fe2fef9b70a1942e35b5fb3182cc2326348/public/assets/vendors/font-awesome/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /public/assets/vendors/font-awesome/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-integration-server/ddc09fe2fef9b70a1942e35b5fb3182cc2326348/public/assets/vendors/font-awesome/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /public/assets/vendors/font-awesome/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-integration-server/ddc09fe2fef9b70a1942e35b5fb3182cc2326348/public/assets/vendors/font-awesome/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /public/assets/vendors/font-awesome/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-integration-server/ddc09fe2fef9b70a1942e35b5fb3182cc2326348/public/assets/vendors/font-awesome/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /public/assets/vendors/font-awesome/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-integration-server/ddc09fe2fef9b70a1942e35b5fb3182cc2326348/public/assets/vendors/font-awesome/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /public/assets/vendors/font-awesome/less/fixed-width.less: -------------------------------------------------------------------------------- 1 | // Fixed Width Icons 2 | // ------------------------- 3 | .@{fa-css-prefix}-fw { 4 | width: (18em / 14); 5 | text-align: center; 6 | } 7 | -------------------------------------------------------------------------------- /public/assets/vendors/font-awesome/less/screen-reader.less: -------------------------------------------------------------------------------- 1 | // Screen Readers 2 | // ------------------------- 3 | 4 | .sr-only { .sr-only(); } 5 | .sr-only-focusable { .sr-only-focusable(); } 6 | -------------------------------------------------------------------------------- /public/assets/vendors/font-awesome/scss/_fixed-width.scss: -------------------------------------------------------------------------------- 1 | // Fixed Width Icons 2 | // ------------------------- 3 | .#{$fa-css-prefix}-fw { 4 | width: (18em / 14); 5 | text-align: center; 6 | } 7 | -------------------------------------------------------------------------------- /public/assets/vendors/font-awesome/scss/_screen-reader.scss: -------------------------------------------------------------------------------- 1 | // Screen Readers 2 | // ------------------------- 3 | 4 | .sr-only { @include sr-only(); } 5 | .sr-only-focusable { @include sr-only-focusable(); } 6 | -------------------------------------------------------------------------------- /public/assets/vendors/iCheck/skins/flat/aero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-integration-server/ddc09fe2fef9b70a1942e35b5fb3182cc2326348/public/assets/vendors/iCheck/skins/flat/aero.png -------------------------------------------------------------------------------- /public/assets/vendors/iCheck/skins/flat/aero@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-integration-server/ddc09fe2fef9b70a1942e35b5fb3182cc2326348/public/assets/vendors/iCheck/skins/flat/aero@2x.png -------------------------------------------------------------------------------- /public/assets/vendors/iCheck/skins/flat/blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-integration-server/ddc09fe2fef9b70a1942e35b5fb3182cc2326348/public/assets/vendors/iCheck/skins/flat/blue.png -------------------------------------------------------------------------------- /public/assets/vendors/iCheck/skins/flat/blue@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-integration-server/ddc09fe2fef9b70a1942e35b5fb3182cc2326348/public/assets/vendors/iCheck/skins/flat/blue@2x.png -------------------------------------------------------------------------------- /public/assets/vendors/iCheck/skins/flat/flat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-integration-server/ddc09fe2fef9b70a1942e35b5fb3182cc2326348/public/assets/vendors/iCheck/skins/flat/flat.png -------------------------------------------------------------------------------- /public/assets/vendors/iCheck/skins/flat/flat@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-integration-server/ddc09fe2fef9b70a1942e35b5fb3182cc2326348/public/assets/vendors/iCheck/skins/flat/flat@2x.png -------------------------------------------------------------------------------- /public/assets/vendors/iCheck/skins/flat/green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-integration-server/ddc09fe2fef9b70a1942e35b5fb3182cc2326348/public/assets/vendors/iCheck/skins/flat/green.png -------------------------------------------------------------------------------- /public/assets/vendors/iCheck/skins/flat/green@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-integration-server/ddc09fe2fef9b70a1942e35b5fb3182cc2326348/public/assets/vendors/iCheck/skins/flat/green@2x.png -------------------------------------------------------------------------------- /public/assets/vendors/iCheck/skins/flat/grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-integration-server/ddc09fe2fef9b70a1942e35b5fb3182cc2326348/public/assets/vendors/iCheck/skins/flat/grey.png -------------------------------------------------------------------------------- /public/assets/vendors/iCheck/skins/flat/grey@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-integration-server/ddc09fe2fef9b70a1942e35b5fb3182cc2326348/public/assets/vendors/iCheck/skins/flat/grey@2x.png -------------------------------------------------------------------------------- /public/assets/vendors/iCheck/skins/flat/orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-integration-server/ddc09fe2fef9b70a1942e35b5fb3182cc2326348/public/assets/vendors/iCheck/skins/flat/orange.png -------------------------------------------------------------------------------- /public/assets/vendors/iCheck/skins/flat/orange@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-integration-server/ddc09fe2fef9b70a1942e35b5fb3182cc2326348/public/assets/vendors/iCheck/skins/flat/orange@2x.png -------------------------------------------------------------------------------- /public/assets/vendors/iCheck/skins/flat/pink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-integration-server/ddc09fe2fef9b70a1942e35b5fb3182cc2326348/public/assets/vendors/iCheck/skins/flat/pink.png -------------------------------------------------------------------------------- /public/assets/vendors/iCheck/skins/flat/pink@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-integration-server/ddc09fe2fef9b70a1942e35b5fb3182cc2326348/public/assets/vendors/iCheck/skins/flat/pink@2x.png -------------------------------------------------------------------------------- /public/assets/vendors/iCheck/skins/flat/purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-integration-server/ddc09fe2fef9b70a1942e35b5fb3182cc2326348/public/assets/vendors/iCheck/skins/flat/purple.png -------------------------------------------------------------------------------- /public/assets/vendors/iCheck/skins/flat/purple@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-integration-server/ddc09fe2fef9b70a1942e35b5fb3182cc2326348/public/assets/vendors/iCheck/skins/flat/purple@2x.png -------------------------------------------------------------------------------- /public/assets/vendors/iCheck/skins/flat/red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-integration-server/ddc09fe2fef9b70a1942e35b5fb3182cc2326348/public/assets/vendors/iCheck/skins/flat/red.png -------------------------------------------------------------------------------- /public/assets/vendors/iCheck/skins/flat/red@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-integration-server/ddc09fe2fef9b70a1942e35b5fb3182cc2326348/public/assets/vendors/iCheck/skins/flat/red@2x.png -------------------------------------------------------------------------------- /public/assets/vendors/iCheck/skins/flat/yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-integration-server/ddc09fe2fef9b70a1942e35b5fb3182cc2326348/public/assets/vendors/iCheck/skins/flat/yellow.png -------------------------------------------------------------------------------- /public/assets/vendors/iCheck/skins/flat/yellow@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-integration-server/ddc09fe2fef9b70a1942e35b5fb3182cc2326348/public/assets/vendors/iCheck/skins/flat/yellow@2x.png -------------------------------------------------------------------------------- /public/assets/vendors/iCheck/skins/futurico/futurico.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-integration-server/ddc09fe2fef9b70a1942e35b5fb3182cc2326348/public/assets/vendors/iCheck/skins/futurico/futurico.png -------------------------------------------------------------------------------- /public/assets/vendors/iCheck/skins/futurico/futurico@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-integration-server/ddc09fe2fef9b70a1942e35b5fb3182cc2326348/public/assets/vendors/iCheck/skins/futurico/futurico@2x.png -------------------------------------------------------------------------------- /public/assets/vendors/iCheck/skins/line/line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-integration-server/ddc09fe2fef9b70a1942e35b5fb3182cc2326348/public/assets/vendors/iCheck/skins/line/line.png -------------------------------------------------------------------------------- /public/assets/vendors/iCheck/skins/line/line@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-integration-server/ddc09fe2fef9b70a1942e35b5fb3182cc2326348/public/assets/vendors/iCheck/skins/line/line@2x.png -------------------------------------------------------------------------------- /public/assets/vendors/iCheck/skins/minimal/aero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-integration-server/ddc09fe2fef9b70a1942e35b5fb3182cc2326348/public/assets/vendors/iCheck/skins/minimal/aero.png -------------------------------------------------------------------------------- /public/assets/vendors/iCheck/skins/minimal/aero@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-integration-server/ddc09fe2fef9b70a1942e35b5fb3182cc2326348/public/assets/vendors/iCheck/skins/minimal/aero@2x.png -------------------------------------------------------------------------------- /public/assets/vendors/iCheck/skins/minimal/blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-integration-server/ddc09fe2fef9b70a1942e35b5fb3182cc2326348/public/assets/vendors/iCheck/skins/minimal/blue.png -------------------------------------------------------------------------------- /public/assets/vendors/iCheck/skins/minimal/blue@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-integration-server/ddc09fe2fef9b70a1942e35b5fb3182cc2326348/public/assets/vendors/iCheck/skins/minimal/blue@2x.png -------------------------------------------------------------------------------- /public/assets/vendors/iCheck/skins/minimal/green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-integration-server/ddc09fe2fef9b70a1942e35b5fb3182cc2326348/public/assets/vendors/iCheck/skins/minimal/green.png -------------------------------------------------------------------------------- /public/assets/vendors/iCheck/skins/minimal/green@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-integration-server/ddc09fe2fef9b70a1942e35b5fb3182cc2326348/public/assets/vendors/iCheck/skins/minimal/green@2x.png -------------------------------------------------------------------------------- /public/assets/vendors/iCheck/skins/minimal/grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-integration-server/ddc09fe2fef9b70a1942e35b5fb3182cc2326348/public/assets/vendors/iCheck/skins/minimal/grey.png -------------------------------------------------------------------------------- /public/assets/vendors/iCheck/skins/minimal/grey@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-integration-server/ddc09fe2fef9b70a1942e35b5fb3182cc2326348/public/assets/vendors/iCheck/skins/minimal/grey@2x.png -------------------------------------------------------------------------------- /public/assets/vendors/iCheck/skins/minimal/minimal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-integration-server/ddc09fe2fef9b70a1942e35b5fb3182cc2326348/public/assets/vendors/iCheck/skins/minimal/minimal.png -------------------------------------------------------------------------------- /public/assets/vendors/iCheck/skins/minimal/minimal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-integration-server/ddc09fe2fef9b70a1942e35b5fb3182cc2326348/public/assets/vendors/iCheck/skins/minimal/minimal@2x.png -------------------------------------------------------------------------------- /public/assets/vendors/iCheck/skins/minimal/orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-integration-server/ddc09fe2fef9b70a1942e35b5fb3182cc2326348/public/assets/vendors/iCheck/skins/minimal/orange.png -------------------------------------------------------------------------------- /public/assets/vendors/iCheck/skins/minimal/orange@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-integration-server/ddc09fe2fef9b70a1942e35b5fb3182cc2326348/public/assets/vendors/iCheck/skins/minimal/orange@2x.png -------------------------------------------------------------------------------- /public/assets/vendors/iCheck/skins/minimal/pink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-integration-server/ddc09fe2fef9b70a1942e35b5fb3182cc2326348/public/assets/vendors/iCheck/skins/minimal/pink.png -------------------------------------------------------------------------------- /public/assets/vendors/iCheck/skins/minimal/pink@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-integration-server/ddc09fe2fef9b70a1942e35b5fb3182cc2326348/public/assets/vendors/iCheck/skins/minimal/pink@2x.png -------------------------------------------------------------------------------- /public/assets/vendors/iCheck/skins/minimal/purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-integration-server/ddc09fe2fef9b70a1942e35b5fb3182cc2326348/public/assets/vendors/iCheck/skins/minimal/purple.png -------------------------------------------------------------------------------- /public/assets/vendors/iCheck/skins/minimal/purple@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-integration-server/ddc09fe2fef9b70a1942e35b5fb3182cc2326348/public/assets/vendors/iCheck/skins/minimal/purple@2x.png -------------------------------------------------------------------------------- /public/assets/vendors/iCheck/skins/minimal/red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-integration-server/ddc09fe2fef9b70a1942e35b5fb3182cc2326348/public/assets/vendors/iCheck/skins/minimal/red.png -------------------------------------------------------------------------------- /public/assets/vendors/iCheck/skins/minimal/red@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-integration-server/ddc09fe2fef9b70a1942e35b5fb3182cc2326348/public/assets/vendors/iCheck/skins/minimal/red@2x.png -------------------------------------------------------------------------------- /public/assets/vendors/iCheck/skins/minimal/yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-integration-server/ddc09fe2fef9b70a1942e35b5fb3182cc2326348/public/assets/vendors/iCheck/skins/minimal/yellow.png -------------------------------------------------------------------------------- /public/assets/vendors/iCheck/skins/minimal/yellow@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-integration-server/ddc09fe2fef9b70a1942e35b5fb3182cc2326348/public/assets/vendors/iCheck/skins/minimal/yellow@2x.png -------------------------------------------------------------------------------- /public/assets/vendors/iCheck/skins/polaris/polaris.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-integration-server/ddc09fe2fef9b70a1942e35b5fb3182cc2326348/public/assets/vendors/iCheck/skins/polaris/polaris.png -------------------------------------------------------------------------------- /public/assets/vendors/iCheck/skins/polaris/polaris@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-integration-server/ddc09fe2fef9b70a1942e35b5fb3182cc2326348/public/assets/vendors/iCheck/skins/polaris/polaris@2x.png -------------------------------------------------------------------------------- /public/assets/vendors/iCheck/skins/square/aero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-integration-server/ddc09fe2fef9b70a1942e35b5fb3182cc2326348/public/assets/vendors/iCheck/skins/square/aero.png -------------------------------------------------------------------------------- /public/assets/vendors/iCheck/skins/square/aero@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-integration-server/ddc09fe2fef9b70a1942e35b5fb3182cc2326348/public/assets/vendors/iCheck/skins/square/aero@2x.png -------------------------------------------------------------------------------- /public/assets/vendors/iCheck/skins/square/blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-integration-server/ddc09fe2fef9b70a1942e35b5fb3182cc2326348/public/assets/vendors/iCheck/skins/square/blue.png -------------------------------------------------------------------------------- /public/assets/vendors/iCheck/skins/square/blue@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-integration-server/ddc09fe2fef9b70a1942e35b5fb3182cc2326348/public/assets/vendors/iCheck/skins/square/blue@2x.png -------------------------------------------------------------------------------- /public/assets/vendors/iCheck/skins/square/green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-integration-server/ddc09fe2fef9b70a1942e35b5fb3182cc2326348/public/assets/vendors/iCheck/skins/square/green.png -------------------------------------------------------------------------------- /public/assets/vendors/iCheck/skins/square/green@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-integration-server/ddc09fe2fef9b70a1942e35b5fb3182cc2326348/public/assets/vendors/iCheck/skins/square/green@2x.png -------------------------------------------------------------------------------- /public/assets/vendors/iCheck/skins/square/grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-integration-server/ddc09fe2fef9b70a1942e35b5fb3182cc2326348/public/assets/vendors/iCheck/skins/square/grey.png -------------------------------------------------------------------------------- /public/assets/vendors/iCheck/skins/square/grey@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-integration-server/ddc09fe2fef9b70a1942e35b5fb3182cc2326348/public/assets/vendors/iCheck/skins/square/grey@2x.png -------------------------------------------------------------------------------- /public/assets/vendors/iCheck/skins/square/orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-integration-server/ddc09fe2fef9b70a1942e35b5fb3182cc2326348/public/assets/vendors/iCheck/skins/square/orange.png -------------------------------------------------------------------------------- /public/assets/vendors/iCheck/skins/square/orange@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-integration-server/ddc09fe2fef9b70a1942e35b5fb3182cc2326348/public/assets/vendors/iCheck/skins/square/orange@2x.png -------------------------------------------------------------------------------- /public/assets/vendors/iCheck/skins/square/pink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-integration-server/ddc09fe2fef9b70a1942e35b5fb3182cc2326348/public/assets/vendors/iCheck/skins/square/pink.png -------------------------------------------------------------------------------- /public/assets/vendors/iCheck/skins/square/pink@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-integration-server/ddc09fe2fef9b70a1942e35b5fb3182cc2326348/public/assets/vendors/iCheck/skins/square/pink@2x.png -------------------------------------------------------------------------------- /public/assets/vendors/iCheck/skins/square/purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-integration-server/ddc09fe2fef9b70a1942e35b5fb3182cc2326348/public/assets/vendors/iCheck/skins/square/purple.png -------------------------------------------------------------------------------- /public/assets/vendors/iCheck/skins/square/purple@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-integration-server/ddc09fe2fef9b70a1942e35b5fb3182cc2326348/public/assets/vendors/iCheck/skins/square/purple@2x.png -------------------------------------------------------------------------------- /public/assets/vendors/iCheck/skins/square/red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-integration-server/ddc09fe2fef9b70a1942e35b5fb3182cc2326348/public/assets/vendors/iCheck/skins/square/red.png -------------------------------------------------------------------------------- /public/assets/vendors/iCheck/skins/square/red@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-integration-server/ddc09fe2fef9b70a1942e35b5fb3182cc2326348/public/assets/vendors/iCheck/skins/square/red@2x.png -------------------------------------------------------------------------------- /public/assets/vendors/iCheck/skins/square/square.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-integration-server/ddc09fe2fef9b70a1942e35b5fb3182cc2326348/public/assets/vendors/iCheck/skins/square/square.png -------------------------------------------------------------------------------- /public/assets/vendors/iCheck/skins/square/square@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-integration-server/ddc09fe2fef9b70a1942e35b5fb3182cc2326348/public/assets/vendors/iCheck/skins/square/square@2x.png -------------------------------------------------------------------------------- /public/assets/vendors/iCheck/skins/square/yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-integration-server/ddc09fe2fef9b70a1942e35b5fb3182cc2326348/public/assets/vendors/iCheck/skins/square/yellow.png -------------------------------------------------------------------------------- /public/assets/vendors/iCheck/skins/square/yellow@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-integration-server/ddc09fe2fef9b70a1942e35b5fb3182cc2326348/public/assets/vendors/iCheck/skins/square/yellow@2x.png -------------------------------------------------------------------------------- /public/assets/vendors/jquery/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "jquery", 3 | "main": "dist/jquery.js", 4 | "license": "MIT", 5 | "ignore": [ 6 | "package.json" 7 | ], 8 | "keywords": [ 9 | "jquery", 10 | "javascript", 11 | "browser", 12 | "library" 13 | ] 14 | } -------------------------------------------------------------------------------- /public/assets/vendors/jquery/src/ajax/parseJSON.js: -------------------------------------------------------------------------------- 1 | define( [ 2 | "../core" 3 | ], function( jQuery ) { 4 | 5 | // Support: Android 2.3 6 | // Workaround failure to string-cast null input 7 | jQuery.parseJSON = function( data ) { 8 | return JSON.parse( data + "" ); 9 | }; 10 | 11 | return jQuery.parseJSON; 12 | 13 | } ); 14 | -------------------------------------------------------------------------------- /public/assets/vendors/jquery/src/ajax/var/location.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | return window.location; 3 | } ); 4 | -------------------------------------------------------------------------------- /public/assets/vendors/jquery/src/ajax/var/nonce.js: -------------------------------------------------------------------------------- 1 | define( [ 2 | "../../core" 3 | ], function( jQuery ) { 4 | return jQuery.now(); 5 | } ); 6 | -------------------------------------------------------------------------------- /public/assets/vendors/jquery/src/ajax/var/rquery.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | return ( /\?/ ); 3 | } ); 4 | -------------------------------------------------------------------------------- /public/assets/vendors/jquery/src/attributes.js: -------------------------------------------------------------------------------- 1 | define( [ 2 | "./core", 3 | "./attributes/attr", 4 | "./attributes/prop", 5 | "./attributes/classes", 6 | "./attributes/val" 7 | ], function( jQuery ) { 8 | 9 | // Return jQuery for attributes-only inclusion 10 | return jQuery; 11 | } ); 12 | -------------------------------------------------------------------------------- /public/assets/vendors/jquery/src/core/DOMEval.js: -------------------------------------------------------------------------------- 1 | define( [ 2 | "../var/document" 3 | ], function( document ) { 4 | function DOMEval( code, doc ) { 5 | doc = doc || document; 6 | 7 | var script = doc.createElement( "script" ); 8 | 9 | script.text = code; 10 | doc.head.appendChild( script ).parentNode.removeChild( script ); 11 | } 12 | 13 | return DOMEval; 14 | } ); 15 | -------------------------------------------------------------------------------- /public/assets/vendors/jquery/src/core/var/rsingleTag.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | 3 | // Match a standalone tag 4 | return ( /^<([\w-]+)\s*\/?>(?:<\/\1>|)$/ ); 5 | } ); 6 | -------------------------------------------------------------------------------- /public/assets/vendors/jquery/src/css/var/cssExpand.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | return [ "Top", "Right", "Bottom", "Left" ]; 3 | } ); 4 | -------------------------------------------------------------------------------- /public/assets/vendors/jquery/src/css/var/rmargin.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | return ( /^margin/ ); 3 | } ); 4 | -------------------------------------------------------------------------------- /public/assets/vendors/jquery/src/css/var/rnumnonpx.js: -------------------------------------------------------------------------------- 1 | define( [ 2 | "../../var/pnum" 3 | ], function( pnum ) { 4 | return new RegExp( "^(" + pnum + ")(?!px)[a-z%]+$", "i" ); 5 | } ); 6 | -------------------------------------------------------------------------------- /public/assets/vendors/jquery/src/data/var/acceptData.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | 3 | /** 4 | * Determines whether an object can have data 5 | */ 6 | return function( owner ) { 7 | 8 | // Accepts only: 9 | // - Node 10 | // - Node.ELEMENT_NODE 11 | // - Node.DOCUMENT_NODE 12 | // - Object 13 | // - Any 14 | /* jshint -W018 */ 15 | return owner.nodeType === 1 || owner.nodeType === 9 || !( +owner.nodeType ); 16 | }; 17 | 18 | } ); 19 | -------------------------------------------------------------------------------- /public/assets/vendors/jquery/src/data/var/dataPriv.js: -------------------------------------------------------------------------------- 1 | define( [ 2 | "../Data" 3 | ], function( Data ) { 4 | return new Data(); 5 | } ); 6 | -------------------------------------------------------------------------------- /public/assets/vendors/jquery/src/data/var/dataUser.js: -------------------------------------------------------------------------------- 1 | define( [ 2 | "../Data" 3 | ], function( Data ) { 4 | return new Data(); 5 | } ); 6 | -------------------------------------------------------------------------------- /public/assets/vendors/jquery/src/effects/animatedSelector.js: -------------------------------------------------------------------------------- 1 | define( [ 2 | "../core", 3 | "../selector", 4 | "../effects" 5 | ], function( jQuery ) { 6 | 7 | jQuery.expr.filters.animated = function( elem ) { 8 | return jQuery.grep( jQuery.timers, function( fn ) { 9 | return elem === fn.elem; 10 | } ).length; 11 | }; 12 | 13 | } ); 14 | -------------------------------------------------------------------------------- /public/assets/vendors/jquery/src/event/support.js: -------------------------------------------------------------------------------- 1 | define( [ 2 | "../var/support" 3 | ], function( support ) { 4 | 5 | support.focusin = "onfocusin" in window; 6 | 7 | return support; 8 | 9 | } ); 10 | -------------------------------------------------------------------------------- /public/assets/vendors/jquery/src/manipulation/var/nodeNames.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | return "abbr|article|aside|audio|bdi|canvas|data|datalist|" + 3 | "details|dialog|figcaption|figure|footer|header|hgroup|main|" + 4 | "mark|meter|nav|output|picture|progress|section|summary|template|time|video"; 5 | } ); 6 | -------------------------------------------------------------------------------- /public/assets/vendors/jquery/src/manipulation/var/rcheckableType.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | return ( /^(?:checkbox|radio)$/i ); 3 | } ); 4 | -------------------------------------------------------------------------------- /public/assets/vendors/jquery/src/manipulation/var/rleadingWhitespace.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | return ( /^\s+/ ); 3 | } ); 4 | -------------------------------------------------------------------------------- /public/assets/vendors/jquery/src/manipulation/var/rscriptType.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | return ( /^$|\/(?:java|ecma)script/i ); 3 | } ); 4 | -------------------------------------------------------------------------------- /public/assets/vendors/jquery/src/manipulation/var/rtagName.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | return ( /<([\w:-]+)/ ); 3 | } ); 4 | -------------------------------------------------------------------------------- /public/assets/vendors/jquery/src/outro.js: -------------------------------------------------------------------------------- 1 | return jQuery; 2 | })); 3 | -------------------------------------------------------------------------------- /public/assets/vendors/jquery/src/selector-sizzle.js: -------------------------------------------------------------------------------- 1 | define( [ 2 | "./core", 3 | "../external/sizzle/dist/sizzle" 4 | ], function( jQuery, Sizzle ) { 5 | 6 | jQuery.find = Sizzle; 7 | jQuery.expr = Sizzle.selectors; 8 | jQuery.expr[ ":" ] = jQuery.expr.pseudos; 9 | jQuery.uniqueSort = jQuery.unique = Sizzle.uniqueSort; 10 | jQuery.text = Sizzle.getText; 11 | jQuery.isXMLDoc = Sizzle.isXML; 12 | jQuery.contains = Sizzle.contains; 13 | 14 | } ); 15 | -------------------------------------------------------------------------------- /public/assets/vendors/jquery/src/selector.js: -------------------------------------------------------------------------------- 1 | define( [ "./selector-sizzle" ], function() {} ); 2 | -------------------------------------------------------------------------------- /public/assets/vendors/jquery/src/traversing/var/rneedsContext.js: -------------------------------------------------------------------------------- 1 | define( [ 2 | "../../core", 3 | "../../selector" 4 | ], function( jQuery ) { 5 | return jQuery.expr.match.needsContext; 6 | } ); 7 | -------------------------------------------------------------------------------- /public/assets/vendors/jquery/src/traversing/var/siblings.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | 3 | return function( n, elem ) { 4 | var matched = []; 5 | 6 | for ( ; n; n = n.nextSibling ) { 7 | if ( n.nodeType === 1 && n !== elem ) { 8 | matched.push( n ); 9 | } 10 | } 11 | 12 | return matched; 13 | }; 14 | 15 | } ); 16 | -------------------------------------------------------------------------------- /public/assets/vendors/jquery/src/var/arr.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | return []; 3 | } ); 4 | -------------------------------------------------------------------------------- /public/assets/vendors/jquery/src/var/class2type.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | 3 | // [[Class]] -> type pairs 4 | return {}; 5 | } ); 6 | -------------------------------------------------------------------------------- /public/assets/vendors/jquery/src/var/concat.js: -------------------------------------------------------------------------------- 1 | define( [ 2 | "./arr" 3 | ], function( arr ) { 4 | return arr.concat; 5 | } ); 6 | -------------------------------------------------------------------------------- /public/assets/vendors/jquery/src/var/deletedIds.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | return []; 3 | } ); 4 | -------------------------------------------------------------------------------- /public/assets/vendors/jquery/src/var/document.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | return window.document; 3 | } ); 4 | -------------------------------------------------------------------------------- /public/assets/vendors/jquery/src/var/documentElement.js: -------------------------------------------------------------------------------- 1 | define( [ 2 | "./document" 3 | ], function( document ) { 4 | return document.documentElement; 5 | } ); 6 | -------------------------------------------------------------------------------- /public/assets/vendors/jquery/src/var/hasOwn.js: -------------------------------------------------------------------------------- 1 | define( [ 2 | "./class2type" 3 | ], function( class2type ) { 4 | return class2type.hasOwnProperty; 5 | } ); 6 | -------------------------------------------------------------------------------- /public/assets/vendors/jquery/src/var/indexOf.js: -------------------------------------------------------------------------------- 1 | define( [ 2 | "./arr" 3 | ], function( arr ) { 4 | return arr.indexOf; 5 | } ); 6 | -------------------------------------------------------------------------------- /public/assets/vendors/jquery/src/var/pnum.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | return ( /[+-]?(?:\d*\.|)\d+(?:[eE][+-]?\d+|)/ ).source; 3 | } ); 4 | -------------------------------------------------------------------------------- /public/assets/vendors/jquery/src/var/push.js: -------------------------------------------------------------------------------- 1 | define( [ 2 | "./arr" 3 | ], function( arr ) { 4 | return arr.push; 5 | } ); 6 | -------------------------------------------------------------------------------- /public/assets/vendors/jquery/src/var/rcssNum.js: -------------------------------------------------------------------------------- 1 | define( [ 2 | "../var/pnum" 3 | ], function( pnum ) { 4 | 5 | return new RegExp( "^(?:([+-])=|)(" + pnum + ")([a-z%]*)$", "i" ); 6 | 7 | } ); 8 | -------------------------------------------------------------------------------- /public/assets/vendors/jquery/src/var/rnotwhite.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | return ( /\S+/g ); 3 | } ); 4 | -------------------------------------------------------------------------------- /public/assets/vendors/jquery/src/var/slice.js: -------------------------------------------------------------------------------- 1 | define( [ 2 | "./arr" 3 | ], function( arr ) { 4 | return arr.slice; 5 | } ); 6 | -------------------------------------------------------------------------------- /public/assets/vendors/jquery/src/var/support.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | 3 | // All support tests are defined in their respective modules. 4 | return {}; 5 | } ); 6 | -------------------------------------------------------------------------------- /public/assets/vendors/jquery/src/var/toString.js: -------------------------------------------------------------------------------- 1 | define( [ 2 | "./class2type" 3 | ], function( class2type ) { 4 | return class2type.toString; 5 | } ); 6 | -------------------------------------------------------------------------------- /public/assets/vendors/nprogress/support/extras.css: -------------------------------------------------------------------------------- 1 | /* Make the entire page show a busy cursor */ 2 | .nprogress-busy body { 3 | cursor: wait; 4 | } 5 | -------------------------------------------------------------------------------- /public/assets/vendors/select2/.editorconfig: -------------------------------------------------------------------------------- 1 | [*] 2 | indent_style = space 3 | end_of_line = lf 4 | 5 | [*.js] 6 | indent_size = 2 7 | -------------------------------------------------------------------------------- /public/assets/vendors/select2/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist/js/i18n/build.txt 3 | .sass-cache 4 | -------------------------------------------------------------------------------- /public/assets/vendors/select2/.jshintignore: -------------------------------------------------------------------------------- 1 | src/js/banner.*.js 2 | src/js/wrapper.*.js 3 | tests/vendor/*.js 4 | tests/helpers.js 5 | -------------------------------------------------------------------------------- /public/assets/vendors/select2/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | This pull request includes a 2 | 3 | - [ ] Bug fix 4 | - [ ] New feature 5 | - [ ] Translation 6 | 7 | The following changes were made 8 | 9 | - 10 | - 11 | - 12 | 13 | If this is related to an existing ticket, include a link to it as well. 14 | -------------------------------------------------------------------------------- /public/assets/vendors/select2/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "select2", 3 | "description": "Select2 is a jQuery based replacement for select boxes. It supports searching, remote data sets, and infinite scrolling of results.", 4 | "main": [ 5 | "dist/js/select2.js", 6 | "src/scss/core.scss" 7 | ], 8 | "repository": { 9 | "type": "git", 10 | "url": "git@github.com:select2/select2.git" 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /public/assets/vendors/select2/docs/.gitignore: -------------------------------------------------------------------------------- 1 | _site 2 | dist 3 | -------------------------------------------------------------------------------- /public/assets/vendors/select2/docs/_includes/notice-previous.html: -------------------------------------------------------------------------------- 1 |
2 |
3 | Looking for the Select2 3.5.2 docs? 4 | We have moved them to a new location 5 | while we push forward with Select2 4.0. 6 |
7 |
8 | -------------------------------------------------------------------------------- /public/assets/vendors/select2/docs/_includes/options/compatibility.html: -------------------------------------------------------------------------------- 1 |
2 |

3 | Backwards compatibility 4 |

5 | 6 | {% include options/compatibility/matcher.html %} 7 | {% include options/compatibility/initial-selection.html %} 8 | {% include options/compatibility/query-function.html %} 9 | {% include options/compatibility/text-input.html %} 10 |
-------------------------------------------------------------------------------- /public/assets/vendors/select2/docs/_includes/options/core.html: -------------------------------------------------------------------------------- 1 |
2 |

3 | Core options 4 |

5 | 6 | {% include options/core/options.html %} 7 | {% include options/core/data-attributes.html %} 8 | {% include options/core/amd-support.html %} 9 |
-------------------------------------------------------------------------------- /public/assets/vendors/select2/docs/_includes/options/data.html: -------------------------------------------------------------------------------- 1 |
2 |

3 | Data adapters 4 |

5 | 6 | {% include options/data/select.html %} 7 | {% include options/data/array.html %} 8 | {% include options/data/ajax.html %} 9 |
-------------------------------------------------------------------------------- /public/assets/vendors/select2/docs/_includes/options/dropdown.html: -------------------------------------------------------------------------------- 1 |
2 |

3 | Displaying results 4 |

5 | 6 | {% include options/dropdown/filtering.html %} 7 | {% include options/dropdown/selections.html %} 8 | {% include options/dropdown/tagging.html %} 9 | {% include options/dropdown/placement.html %} 10 |
-------------------------------------------------------------------------------- /public/assets/vendors/select2/docs/_includes/options/events.html: -------------------------------------------------------------------------------- 1 |
2 |

3 | Events 4 |

5 | 6 | {% include options/events/jquery.html %} 7 | {% include options/events/internal.html %} 8 |
-------------------------------------------------------------------------------- /public/assets/vendors/select2/docs/_includes/options/events/internal.html: -------------------------------------------------------------------------------- 1 |
2 |

3 | Internal Select2 events 4 |

5 | 6 |

7 | Select2 has an internal event system that works independently of the DOM event system. This internal event system is only accesssible from plugins and adapters that are connected to Select2. 8 |

9 |
-------------------------------------------------------------------------------- /public/assets/vendors/select2/docs/_includes/options/not-written.html: -------------------------------------------------------------------------------- 1 |
2 | This answer to this question has not yet been written. You can improve this documentation by creating a pull request with an answer to this question. 3 |
-------------------------------------------------------------------------------- /public/assets/vendors/select2/docs/_includes/options/selections.html: -------------------------------------------------------------------------------- 1 |
2 |

3 | Displaying selections 4 |

5 | 6 | {% include options/selections/multiple.html %} 7 | {% include options/selections/placeholder.html %} 8 | {% include options/selections/clearing-selections.html %} 9 | {% include options/selections/templating.html %} 10 |
-------------------------------------------------------------------------------- /public/assets/vendors/select2/docs/_sass/_code.scss: -------------------------------------------------------------------------------- 1 | // Code (inline and block) 2 | 3 | // Inline code within headings retain the heading's background-color 4 | h2 code, 5 | h3 code, 6 | h4 code { 7 | background-color: inherit; 8 | } 9 | 10 | // Modify Bootstrap's styles for blocks of code 11 | pre.prettyprint { 12 | padding: 9px 14px; 13 | margin-bottom: 14px; 14 | background-color: #f7f7f9; 15 | border: 1px solid #e1e1e8; 16 | } -------------------------------------------------------------------------------- /public/assets/vendors/select2/docs/_sass/_featurette.scss: -------------------------------------------------------------------------------- 1 | // Homepage featurettes 2 | 3 | .s2-docs-featurette { 4 | color: #777; 5 | padding: 15px 0; 6 | text-align: center; 7 | 8 | h4 { 9 | margin: 30px 0 15px; 10 | } 11 | 12 | .fa { 13 | font-size: 28px; 14 | color: #777; 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /public/assets/vendors/select2/docs/_sass/_layout.scss: -------------------------------------------------------------------------------- 1 | // Layout 2 | 3 | .s2-docs-container { 4 | line-height: 1.6; 5 | } 6 | 7 | section { 8 | margin-bottom: 40px; 9 | } 10 | 11 | .page-header { 12 | padding-bottom: 19px; 13 | margin-bottom: 29px; 14 | } 15 | -------------------------------------------------------------------------------- /public/assets/vendors/select2/docs/_sass/_typography.scss: -------------------------------------------------------------------------------- 1 | // Typography 2 | 3 | h1[id] { 4 | padding-top: 20px; 5 | margin-top: 0; 6 | } 7 | -------------------------------------------------------------------------------- /public/assets/vendors/select2/docs/_sass/vendor/bootstrap/mixins/_alerts.scss: -------------------------------------------------------------------------------- 1 | // Alerts 2 | 3 | @mixin alert-variant($background, $border, $text-color) { 4 | background-color: $background; 5 | border-color: $border; 6 | color: $text-color; 7 | 8 | hr { 9 | border-top-color: darken($border, 5%); 10 | } 11 | .alert-link { 12 | color: darken($text-color, 10%); 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /public/assets/vendors/select2/docs/_sass/vendor/bootstrap/mixins/_background-variant.scss: -------------------------------------------------------------------------------- 1 | // Contextual backgrounds 2 | 3 | // [converter] $parent hack 4 | @mixin bg-variant($parent, $color) { 5 | #{$parent} { 6 | background-color: $color; 7 | } 8 | a#{$parent}:hover, 9 | a#{$parent}:focus { 10 | background-color: darken($color, 10%); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /public/assets/vendors/select2/docs/_sass/vendor/bootstrap/mixins/_center-block.scss: -------------------------------------------------------------------------------- 1 | // Center-align a block level element 2 | 3 | @mixin center-block() { 4 | display: block; 5 | margin-left: auto; 6 | margin-right: auto; 7 | } 8 | -------------------------------------------------------------------------------- /public/assets/vendors/select2/docs/_sass/vendor/bootstrap/mixins/_labels.scss: -------------------------------------------------------------------------------- 1 | // Labels 2 | 3 | @mixin label-variant($color) { 4 | background-color: $color; 5 | 6 | &[href] { 7 | &:hover, 8 | &:focus { 9 | background-color: darken($color, 10%); 10 | } 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /public/assets/vendors/select2/docs/_sass/vendor/bootstrap/mixins/_nav-divider.scss: -------------------------------------------------------------------------------- 1 | // Horizontal dividers 2 | // 3 | // Dividers (basically an hr) within dropdowns and nav lists 4 | 5 | @mixin nav-divider($color: #e5e5e5) { 6 | height: 1px; 7 | margin: (($line-height-computed / 2) - 1) 0; 8 | overflow: hidden; 9 | background-color: $color; 10 | } 11 | -------------------------------------------------------------------------------- /public/assets/vendors/select2/docs/_sass/vendor/bootstrap/mixins/_opacity.scss: -------------------------------------------------------------------------------- 1 | // Opacity 2 | 3 | @mixin opacity($opacity) { 4 | opacity: $opacity; 5 | // IE8 filter 6 | $opacity-ie: ($opacity * 100); 7 | filter: alpha(opacity=$opacity-ie); 8 | } 9 | -------------------------------------------------------------------------------- /public/assets/vendors/select2/docs/_sass/vendor/bootstrap/mixins/_progress-bar.scss: -------------------------------------------------------------------------------- 1 | // Progress bars 2 | 3 | @mixin progress-bar-variant($color) { 4 | background-color: $color; 5 | 6 | // Deprecated parent class requirement as of v3.2.0 7 | .progress-striped & { 8 | @include gradient-striped; 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /public/assets/vendors/select2/docs/_sass/vendor/bootstrap/mixins/_reset-filter.scss: -------------------------------------------------------------------------------- 1 | // Reset filters for IE 2 | // 3 | // When you need to remove a gradient background, do not forget to use this to reset 4 | // the IE filter for IE9 and below. 5 | 6 | @mixin reset-filter() { 7 | filter: progid:DXImageTransform.Microsoft.gradient(enabled = false); 8 | } 9 | -------------------------------------------------------------------------------- /public/assets/vendors/select2/docs/_sass/vendor/bootstrap/mixins/_resize.scss: -------------------------------------------------------------------------------- 1 | // Resize anything 2 | 3 | @mixin resizable($direction) { 4 | resize: $direction; // Options: horizontal, vertical, both 5 | overflow: auto; // Per CSS3 UI, `resize` only applies when `overflow` isn't `visible` 6 | } 7 | -------------------------------------------------------------------------------- /public/assets/vendors/select2/docs/_sass/vendor/bootstrap/mixins/_size.scss: -------------------------------------------------------------------------------- 1 | // Sizing shortcuts 2 | 3 | @mixin size($width, $height) { 4 | width: $width; 5 | height: $height; 6 | } 7 | 8 | @mixin square($size) { 9 | @include size($size, $size); 10 | } 11 | -------------------------------------------------------------------------------- /public/assets/vendors/select2/docs/_sass/vendor/bootstrap/mixins/_tab-focus.scss: -------------------------------------------------------------------------------- 1 | // WebKit-style focus 2 | 3 | @mixin tab-focus() { 4 | // Default 5 | outline: thin dotted; 6 | // WebKit 7 | outline: 5px auto -webkit-focus-ring-color; 8 | outline-offset: -2px; 9 | } 10 | -------------------------------------------------------------------------------- /public/assets/vendors/select2/docs/_sass/vendor/bootstrap/mixins/_text-emphasis.scss: -------------------------------------------------------------------------------- 1 | // Typography 2 | 3 | // [converter] $parent hack 4 | @mixin text-emphasis-variant($parent, $color) { 5 | #{$parent} { 6 | color: $color; 7 | } 8 | a#{$parent}:hover, 9 | a#{$parent}:focus { 10 | color: darken($color, 10%); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /public/assets/vendors/select2/docs/_sass/vendor/bootstrap/mixins/_text-overflow.scss: -------------------------------------------------------------------------------- 1 | // Text overflow 2 | // Requires inline-block or block for proper styling 3 | 4 | @mixin text-overflow() { 5 | overflow: hidden; 6 | text-overflow: ellipsis; 7 | white-space: nowrap; 8 | } 9 | -------------------------------------------------------------------------------- /public/assets/vendors/select2/docs/_sass/vendor/font-awesome/_fixed-width.scss: -------------------------------------------------------------------------------- 1 | // Fixed Width Icons 2 | // ------------------------- 3 | .#{$fa-css-prefix}-fw { 4 | width: (18em / 14); 5 | text-align: center; 6 | } 7 | -------------------------------------------------------------------------------- /public/assets/vendors/select2/docs/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-integration-server/ddc09fe2fef9b70a1942e35b5fb3182cc2326348/public/assets/vendors/select2/docs/images/logo.png -------------------------------------------------------------------------------- /public/assets/vendors/select2/docs/vendor/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-integration-server/ddc09fe2fef9b70a1942e35b5fb3182cc2326348/public/assets/vendors/select2/docs/vendor/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /public/assets/vendors/select2/docs/vendor/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-integration-server/ddc09fe2fef9b70a1942e35b5fb3182cc2326348/public/assets/vendors/select2/docs/vendor/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /public/assets/vendors/select2/docs/vendor/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-integration-server/ddc09fe2fef9b70a1942e35b5fb3182cc2326348/public/assets/vendors/select2/docs/vendor/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /public/assets/vendors/select2/docs/vendor/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-integration-server/ddc09fe2fef9b70a1942e35b5fb3182cc2326348/public/assets/vendors/select2/docs/vendor/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /public/assets/vendors/select2/docs/vendor/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-integration-server/ddc09fe2fef9b70a1942e35b5fb3182cc2326348/public/assets/vendors/select2/docs/vendor/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /public/assets/vendors/select2/docs/vendor/images/flags/ak.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-integration-server/ddc09fe2fef9b70a1942e35b5fb3182cc2326348/public/assets/vendors/select2/docs/vendor/images/flags/ak.png -------------------------------------------------------------------------------- /public/assets/vendors/select2/docs/vendor/images/flags/al.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-integration-server/ddc09fe2fef9b70a1942e35b5fb3182cc2326348/public/assets/vendors/select2/docs/vendor/images/flags/al.png -------------------------------------------------------------------------------- /public/assets/vendors/select2/docs/vendor/images/flags/ar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-integration-server/ddc09fe2fef9b70a1942e35b5fb3182cc2326348/public/assets/vendors/select2/docs/vendor/images/flags/ar.png -------------------------------------------------------------------------------- /public/assets/vendors/select2/docs/vendor/images/flags/az.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-integration-server/ddc09fe2fef9b70a1942e35b5fb3182cc2326348/public/assets/vendors/select2/docs/vendor/images/flags/az.png -------------------------------------------------------------------------------- /public/assets/vendors/select2/docs/vendor/images/flags/ca.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-integration-server/ddc09fe2fef9b70a1942e35b5fb3182cc2326348/public/assets/vendors/select2/docs/vendor/images/flags/ca.png -------------------------------------------------------------------------------- /public/assets/vendors/select2/docs/vendor/images/flags/co.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-integration-server/ddc09fe2fef9b70a1942e35b5fb3182cc2326348/public/assets/vendors/select2/docs/vendor/images/flags/co.png -------------------------------------------------------------------------------- /public/assets/vendors/select2/docs/vendor/images/flags/ct.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-integration-server/ddc09fe2fef9b70a1942e35b5fb3182cc2326348/public/assets/vendors/select2/docs/vendor/images/flags/ct.png -------------------------------------------------------------------------------- /public/assets/vendors/select2/docs/vendor/images/flags/de.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-integration-server/ddc09fe2fef9b70a1942e35b5fb3182cc2326348/public/assets/vendors/select2/docs/vendor/images/flags/de.png -------------------------------------------------------------------------------- /public/assets/vendors/select2/docs/vendor/images/flags/fl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-integration-server/ddc09fe2fef9b70a1942e35b5fb3182cc2326348/public/assets/vendors/select2/docs/vendor/images/flags/fl.png -------------------------------------------------------------------------------- /public/assets/vendors/select2/docs/vendor/images/flags/ga.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-integration-server/ddc09fe2fef9b70a1942e35b5fb3182cc2326348/public/assets/vendors/select2/docs/vendor/images/flags/ga.png -------------------------------------------------------------------------------- /public/assets/vendors/select2/docs/vendor/images/flags/hi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-integration-server/ddc09fe2fef9b70a1942e35b5fb3182cc2326348/public/assets/vendors/select2/docs/vendor/images/flags/hi.png -------------------------------------------------------------------------------- /public/assets/vendors/select2/docs/vendor/images/flags/ia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-integration-server/ddc09fe2fef9b70a1942e35b5fb3182cc2326348/public/assets/vendors/select2/docs/vendor/images/flags/ia.png -------------------------------------------------------------------------------- /public/assets/vendors/select2/docs/vendor/images/flags/id.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-integration-server/ddc09fe2fef9b70a1942e35b5fb3182cc2326348/public/assets/vendors/select2/docs/vendor/images/flags/id.png -------------------------------------------------------------------------------- /public/assets/vendors/select2/docs/vendor/images/flags/il.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-integration-server/ddc09fe2fef9b70a1942e35b5fb3182cc2326348/public/assets/vendors/select2/docs/vendor/images/flags/il.png -------------------------------------------------------------------------------- /public/assets/vendors/select2/docs/vendor/images/flags/in.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-integration-server/ddc09fe2fef9b70a1942e35b5fb3182cc2326348/public/assets/vendors/select2/docs/vendor/images/flags/in.png -------------------------------------------------------------------------------- /public/assets/vendors/select2/docs/vendor/images/flags/ks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-integration-server/ddc09fe2fef9b70a1942e35b5fb3182cc2326348/public/assets/vendors/select2/docs/vendor/images/flags/ks.png -------------------------------------------------------------------------------- /public/assets/vendors/select2/docs/vendor/images/flags/ky.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-integration-server/ddc09fe2fef9b70a1942e35b5fb3182cc2326348/public/assets/vendors/select2/docs/vendor/images/flags/ky.png -------------------------------------------------------------------------------- /public/assets/vendors/select2/docs/vendor/images/flags/la.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-integration-server/ddc09fe2fef9b70a1942e35b5fb3182cc2326348/public/assets/vendors/select2/docs/vendor/images/flags/la.png -------------------------------------------------------------------------------- /public/assets/vendors/select2/docs/vendor/images/flags/ma.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-integration-server/ddc09fe2fef9b70a1942e35b5fb3182cc2326348/public/assets/vendors/select2/docs/vendor/images/flags/ma.png -------------------------------------------------------------------------------- /public/assets/vendors/select2/docs/vendor/images/flags/md.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-integration-server/ddc09fe2fef9b70a1942e35b5fb3182cc2326348/public/assets/vendors/select2/docs/vendor/images/flags/md.png -------------------------------------------------------------------------------- /public/assets/vendors/select2/docs/vendor/images/flags/me.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-integration-server/ddc09fe2fef9b70a1942e35b5fb3182cc2326348/public/assets/vendors/select2/docs/vendor/images/flags/me.png -------------------------------------------------------------------------------- /public/assets/vendors/select2/docs/vendor/images/flags/mi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-integration-server/ddc09fe2fef9b70a1942e35b5fb3182cc2326348/public/assets/vendors/select2/docs/vendor/images/flags/mi.png -------------------------------------------------------------------------------- /public/assets/vendors/select2/docs/vendor/images/flags/mn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-integration-server/ddc09fe2fef9b70a1942e35b5fb3182cc2326348/public/assets/vendors/select2/docs/vendor/images/flags/mn.png -------------------------------------------------------------------------------- /public/assets/vendors/select2/docs/vendor/images/flags/mo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-integration-server/ddc09fe2fef9b70a1942e35b5fb3182cc2326348/public/assets/vendors/select2/docs/vendor/images/flags/mo.png -------------------------------------------------------------------------------- /public/assets/vendors/select2/docs/vendor/images/flags/ms.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-integration-server/ddc09fe2fef9b70a1942e35b5fb3182cc2326348/public/assets/vendors/select2/docs/vendor/images/flags/ms.png -------------------------------------------------------------------------------- /public/assets/vendors/select2/docs/vendor/images/flags/mt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-integration-server/ddc09fe2fef9b70a1942e35b5fb3182cc2326348/public/assets/vendors/select2/docs/vendor/images/flags/mt.png -------------------------------------------------------------------------------- /public/assets/vendors/select2/docs/vendor/images/flags/nc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-integration-server/ddc09fe2fef9b70a1942e35b5fb3182cc2326348/public/assets/vendors/select2/docs/vendor/images/flags/nc.png -------------------------------------------------------------------------------- /public/assets/vendors/select2/docs/vendor/images/flags/nd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-integration-server/ddc09fe2fef9b70a1942e35b5fb3182cc2326348/public/assets/vendors/select2/docs/vendor/images/flags/nd.png -------------------------------------------------------------------------------- /public/assets/vendors/select2/docs/vendor/images/flags/ne.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-integration-server/ddc09fe2fef9b70a1942e35b5fb3182cc2326348/public/assets/vendors/select2/docs/vendor/images/flags/ne.png -------------------------------------------------------------------------------- /public/assets/vendors/select2/docs/vendor/images/flags/nh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-integration-server/ddc09fe2fef9b70a1942e35b5fb3182cc2326348/public/assets/vendors/select2/docs/vendor/images/flags/nh.png -------------------------------------------------------------------------------- /public/assets/vendors/select2/docs/vendor/images/flags/nj.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-integration-server/ddc09fe2fef9b70a1942e35b5fb3182cc2326348/public/assets/vendors/select2/docs/vendor/images/flags/nj.png -------------------------------------------------------------------------------- /public/assets/vendors/select2/docs/vendor/images/flags/nm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-integration-server/ddc09fe2fef9b70a1942e35b5fb3182cc2326348/public/assets/vendors/select2/docs/vendor/images/flags/nm.png -------------------------------------------------------------------------------- /public/assets/vendors/select2/docs/vendor/images/flags/nv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-integration-server/ddc09fe2fef9b70a1942e35b5fb3182cc2326348/public/assets/vendors/select2/docs/vendor/images/flags/nv.png -------------------------------------------------------------------------------- /public/assets/vendors/select2/docs/vendor/images/flags/ny.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-integration-server/ddc09fe2fef9b70a1942e35b5fb3182cc2326348/public/assets/vendors/select2/docs/vendor/images/flags/ny.png -------------------------------------------------------------------------------- /public/assets/vendors/select2/docs/vendor/images/flags/oh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-integration-server/ddc09fe2fef9b70a1942e35b5fb3182cc2326348/public/assets/vendors/select2/docs/vendor/images/flags/oh.png -------------------------------------------------------------------------------- /public/assets/vendors/select2/docs/vendor/images/flags/ok.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-integration-server/ddc09fe2fef9b70a1942e35b5fb3182cc2326348/public/assets/vendors/select2/docs/vendor/images/flags/ok.png -------------------------------------------------------------------------------- /public/assets/vendors/select2/docs/vendor/images/flags/or.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-integration-server/ddc09fe2fef9b70a1942e35b5fb3182cc2326348/public/assets/vendors/select2/docs/vendor/images/flags/or.png -------------------------------------------------------------------------------- /public/assets/vendors/select2/docs/vendor/images/flags/pa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-integration-server/ddc09fe2fef9b70a1942e35b5fb3182cc2326348/public/assets/vendors/select2/docs/vendor/images/flags/pa.png -------------------------------------------------------------------------------- /public/assets/vendors/select2/docs/vendor/images/flags/ri.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-integration-server/ddc09fe2fef9b70a1942e35b5fb3182cc2326348/public/assets/vendors/select2/docs/vendor/images/flags/ri.png -------------------------------------------------------------------------------- /public/assets/vendors/select2/docs/vendor/images/flags/sc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-integration-server/ddc09fe2fef9b70a1942e35b5fb3182cc2326348/public/assets/vendors/select2/docs/vendor/images/flags/sc.png -------------------------------------------------------------------------------- /public/assets/vendors/select2/docs/vendor/images/flags/sd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-integration-server/ddc09fe2fef9b70a1942e35b5fb3182cc2326348/public/assets/vendors/select2/docs/vendor/images/flags/sd.png -------------------------------------------------------------------------------- /public/assets/vendors/select2/docs/vendor/images/flags/tn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-integration-server/ddc09fe2fef9b70a1942e35b5fb3182cc2326348/public/assets/vendors/select2/docs/vendor/images/flags/tn.png -------------------------------------------------------------------------------- /public/assets/vendors/select2/docs/vendor/images/flags/tx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-integration-server/ddc09fe2fef9b70a1942e35b5fb3182cc2326348/public/assets/vendors/select2/docs/vendor/images/flags/tx.png -------------------------------------------------------------------------------- /public/assets/vendors/select2/docs/vendor/images/flags/ut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-integration-server/ddc09fe2fef9b70a1942e35b5fb3182cc2326348/public/assets/vendors/select2/docs/vendor/images/flags/ut.png -------------------------------------------------------------------------------- /public/assets/vendors/select2/docs/vendor/images/flags/va.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-integration-server/ddc09fe2fef9b70a1942e35b5fb3182cc2326348/public/assets/vendors/select2/docs/vendor/images/flags/va.png -------------------------------------------------------------------------------- /public/assets/vendors/select2/docs/vendor/images/flags/vt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-integration-server/ddc09fe2fef9b70a1942e35b5fb3182cc2326348/public/assets/vendors/select2/docs/vendor/images/flags/vt.png -------------------------------------------------------------------------------- /public/assets/vendors/select2/docs/vendor/images/flags/wa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-integration-server/ddc09fe2fef9b70a1942e35b5fb3182cc2326348/public/assets/vendors/select2/docs/vendor/images/flags/wa.png -------------------------------------------------------------------------------- /public/assets/vendors/select2/docs/vendor/images/flags/wi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-integration-server/ddc09fe2fef9b70a1942e35b5fb3182cc2326348/public/assets/vendors/select2/docs/vendor/images/flags/wi.png -------------------------------------------------------------------------------- /public/assets/vendors/select2/docs/vendor/images/flags/wv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-integration-server/ddc09fe2fef9b70a1942e35b5fb3182cc2326348/public/assets/vendors/select2/docs/vendor/images/flags/wv.png -------------------------------------------------------------------------------- /public/assets/vendors/select2/docs/vendor/images/flags/wy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-integration-server/ddc09fe2fef9b70a1942e35b5fb3182cc2326348/public/assets/vendors/select2/docs/vendor/images/flags/wy.png -------------------------------------------------------------------------------- /public/assets/vendors/select2/src/js/banner.end.js: -------------------------------------------------------------------------------- 1 | // Return the AMD loader configuration so it can be used outside of this file 2 | return { 3 | define: S2.define, 4 | require: S2.require 5 | }; 6 | }()); 7 | -------------------------------------------------------------------------------- /public/assets/vendors/select2/src/js/banner.start.js: -------------------------------------------------------------------------------- 1 | (function () { 2 | // Restore the Select2 AMD loader so it can be used 3 | // Needed mostly in the language files, where the loader is not inserted 4 | if (jQuery && jQuery.fn && jQuery.fn.select2 && jQuery.fn.select2.amd) { 5 | var S2 = jQuery.fn.select2.amd; 6 | } 7 | -------------------------------------------------------------------------------- /public/assets/vendors/select2/src/js/jquery.mousewheel.shim.js: -------------------------------------------------------------------------------- 1 | define([ 2 | 'jquery' 3 | ], function ($) { 4 | // Used to shim jQuery.mousewheel for non-full builds. 5 | return $; 6 | }); 7 | -------------------------------------------------------------------------------- /public/assets/vendors/sweetalert/.editorconfig: -------------------------------------------------------------------------------- 1 | # editorconfig.org 2 | 3 | root = true 4 | 5 | [*] 6 | charset = utf-8 7 | end_of_line = lf 8 | indent_size = 2 9 | indent_style = space 10 | insert_final_newline = true 11 | trim_trailing_whitespace = true 12 | -------------------------------------------------------------------------------- /public/assets/vendors/sweetalert/.gitignore: -------------------------------------------------------------------------------- 1 | *.codekit 2 | *.sass-cache 3 | *.DS_STORE 4 | node_modules 5 | bower_components 6 | -------------------------------------------------------------------------------- /public/assets/vendors/sweetalert/.jshintrc: -------------------------------------------------------------------------------- 1 | { 2 | "predef": [ 3 | "document", 4 | "window", 5 | "module", 6 | "define" 7 | ], 8 | "browser": true, 9 | "esnext": true, 10 | "validthis": true 11 | } 12 | -------------------------------------------------------------------------------- /public/assets/vendors/sweetalert/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "0.12" 4 | before script: 5 | - npm install -g gulp 6 | - npm install -g bower 7 | - bower install 8 | script: gulp test 9 | -------------------------------------------------------------------------------- /public/assets/vendors/sweetalert/example/images/logo_big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-integration-server/ddc09fe2fef9b70a1942e35b5fb3182cc2326348/public/assets/vendors/sweetalert/example/images/logo_big.png -------------------------------------------------------------------------------- /public/assets/vendors/sweetalert/example/images/logo_big@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-integration-server/ddc09fe2fef9b70a1942e35b5fb3182cc2326348/public/assets/vendors/sweetalert/example/images/logo_big@2x.png -------------------------------------------------------------------------------- /public/assets/vendors/sweetalert/example/images/logo_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-integration-server/ddc09fe2fef9b70a1942e35b5fb3182cc2326348/public/assets/vendors/sweetalert/example/images/logo_small.png -------------------------------------------------------------------------------- /public/assets/vendors/sweetalert/example/images/logo_small@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-integration-server/ddc09fe2fef9b70a1942e35b5fb3182cc2326348/public/assets/vendors/sweetalert/example/images/logo_small@2x.png -------------------------------------------------------------------------------- /public/assets/vendors/sweetalert/example/images/thumbs-up.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-integration-server/ddc09fe2fef9b70a1942e35b5fb3182cc2326348/public/assets/vendors/sweetalert/example/images/thumbs-up.jpg -------------------------------------------------------------------------------- /public/assets/vendors/sweetalert/example/images/vs_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-integration-server/ddc09fe2fef9b70a1942e35b5fb3182cc2326348/public/assets/vendors/sweetalert/example/images/vs_icon.png -------------------------------------------------------------------------------- /public/assets/vendors/sweetalert/example/images/vs_icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-integration-server/ddc09fe2fef9b70a1942e35b5fb3182cc2326348/public/assets/vendors/sweetalert/example/images/vs_icon@2x.png -------------------------------------------------------------------------------- /public/assets/vendors/sweetalert/sweetalert.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-integration-server/ddc09fe2fef9b70a1942e35b5fb3182cc2326348/public/assets/vendors/sweetalert/sweetalert.gif -------------------------------------------------------------------------------- /public/assets/vendors/switchery/meteor/export.js: -------------------------------------------------------------------------------- 1 | /*global Switchery:true*/ // Meteor creates a file-scope global for exporting. This comment prevents a potential JSHint warning. 2 | Switchery = window.Switchery; 3 | delete window.Switchery; -------------------------------------------------------------------------------- /public/assets/vendors/switchery/meteor/tests.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | Tinytest.add('Switchery integration', function (test) { 4 | 5 | var checkbox = document.createElement('input'); 6 | checkbox.className = 'js-switch'; 7 | var switchy = new Switchery(checkbox); 8 | 9 | test.instanceOf(switchy, Switchery, 'instantiation OK'); 10 | }); -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-integration-server/ddc09fe2fef9b70a1942e35b5fb3182cc2326348/public/favicon.ico -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- 1 | Visit project web site [http://connfa.com/](http://connfa.com/) 2 | 3 | Documentation is available on [http://connfa.com/documentation](http://connfa.com/documentation) 4 | 5 | API documentation is available on [http://connfa.com/api](http://connfa.com/api) 6 | 7 | Project is supported by [Lemberg Solutions](http://lemberg.co.uk) 8 | -------------------------------------------------------------------------------- /resources/assets/sass/app.scss: -------------------------------------------------------------------------------- 1 | // @import "node_modules/bootstrap-sass/assets/stylesheets/bootstrap"; 2 | 3 | -------------------------------------------------------------------------------- /resources/views/auth/emails/password.blade.php: -------------------------------------------------------------------------------- 1 | Click here to reset your password: {{ $link }} 2 | -------------------------------------------------------------------------------- /resources/views/partials/session-message.blade.php: -------------------------------------------------------------------------------- 1 |
2 |
3 |
4 |

You should set timezone on settings page

5 |
6 |
7 |
-------------------------------------------------------------------------------- /resources/views/upload/file.blade.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/views/vendor/.gitkeep: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /resources/views/vendor/datatables/print.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-integration-server/ddc09fe2fef9b70a1942e35b5fb3182cc2326348/resources/views/vendor/datatables/print.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/datatables/script.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-integration-server/ddc09fe2fef9b70a1942e35b5fb3182cc2326348/resources/views/vendor/datatables/script.blade.php -------------------------------------------------------------------------------- /storage/app/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !public/ 3 | !.gitignore 4 | -------------------------------------------------------------------------------- /storage/app/public/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/.gitignore: -------------------------------------------------------------------------------- 1 | config.php 2 | routes.php 3 | schedule-* 4 | compiled.php 5 | services.json 6 | events.scanned.php 7 | routes.scanned.php 8 | down 9 | -------------------------------------------------------------------------------- /storage/framework/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/sessions/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/views/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/logs/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /tests/_bootstrap.php: -------------------------------------------------------------------------------- 1 |