├── .github ├── dependabot.yml └── workflows │ ├── deb-build.yml │ ├── docker-build.yml │ └── docker-from-release.yml ├── .gitignore ├── .gitmodules ├── .kilocode ├── api.yaml ├── config.yaml ├── database.yaml ├── naming.yaml ├── preferences.yaml └── security.yaml ├── .vscode ├── mcp.json └── settings.json ├── BCMK.conf ├── LICENSE ├── Makefile ├── README.md ├── actions ├── Dockerfile ├── bc-database-create.sh ├── bc-database-upgrade.sh ├── bc-rsyslog.conf ├── depends │ ├── README.md │ └── onvif_tool ├── entrypoint.sh └── supervisord.conf ├── clear_rrd_data.sh ├── debian ├── apache.conf ├── bluecherry.apparmor ├── bluecherry.bluecherry.upstart ├── bluecherry.conf.in ├── bluecherry.config ├── bluecherry.cron ├── bluecherry.dirs ├── bluecherry.init ├── bluecherry.logrotate ├── bluecherry.monit ├── bluecherry.postinst ├── bluecherry.postrm ├── bluecherry.preinst.template ├── bluecherry.prerm ├── bluecherry.service ├── changelog ├── compat ├── control.in ├── copyright ├── rules └── templates ├── docs └── mysql-mariadb-optimization.md ├── experiments ├── README ├── build.sh └── rtsprequest.c ├── installer ├── install └── v3.sh ├── lib ├── BCMK ├── bc-core.cpp ├── bc-db-core.cpp ├── bc-db-mysql.cpp ├── bc-db.h ├── bc-media.cpp ├── bc-ptz.cpp ├── bc-stats.cpp ├── bc-stats.h ├── bc-syslog.c ├── bc-syslog.h ├── bc-utils.cpp ├── fnv.h ├── input_device.cpp ├── input_device.h ├── iov-macros.h ├── lavf_device.cpp ├── lavf_device.h ├── libbluecherry.h ├── logc.h ├── logging.cpp ├── logging.h ├── sliding_seq_window.cpp ├── sliding_seq_window.h ├── sliding_time_window.cpp ├── sliding_time_window.h ├── stream_elements.cpp ├── stream_elements.h ├── v4l2_device_solo6010-dkms.cpp ├── v4l2_device_solo6010-dkms.h ├── v4l2_device_solo6x10.cpp ├── v4l2_device_solo6x10.h ├── v4l2_device_tw5864.cpp └── v4l2_device_tw5864.h ├── misc ├── BCMK ├── CLEANUP_OPTIMIZATION_3.1.13.md ├── DATABASE_OPTIMIZATION_3.1.14.md ├── DATABASE_SYNC_SOLUTION.md ├── HISTORICAL_API_README.md ├── NETWORK_MONITORING_README.md ├── add_missing_recordings.sh ├── add_missing_recordings_optimized.sh ├── backup_db.sh ├── bc-health-check ├── bc_db_tool.sh ├── contrib │ └── focal │ │ └── amd64 │ │ └── libconfig │ │ └── v1.5-6-g4ac539a │ │ ├── libconfig.h │ │ ├── libconfig.so │ │ ├── libconfig.so.9 │ │ └── libconfig.so.9.2.0 ├── historical_dashboard_example.html ├── kernel_pkg │ └── etc │ │ ├── modprobe.d │ │ ├── blacklist-solo6x10_edge.conf │ │ └── blacklist-tw5864-bis.conf │ │ └── modules-load.d │ │ ├── solo6x10.conf │ │ └── tw5864.conf ├── list_ether.sh ├── onvif │ ├── discovery_json │ │ ├── node-onvif.js │ │ └── onvif_tool │ └── getRtspUrls.js ├── postinstall.sh ├── remove_all_data.sh ├── remove_untracked_media_files.sh ├── sql │ ├── camera_info_sqlite_data.sql │ ├── cameras_shipped.db │ ├── import-cambase-data.php │ ├── initial_data_mysql.sql │ ├── installed_db_version │ ├── load_db_creds.sh │ ├── mysql-upgrade │ │ ├── 2020300 │ │ │ ├── add_template_axis_m1034-w.sh │ │ │ └── drop_tcp_postfix.sh │ │ ├── 2020400 │ │ │ └── set_adequate_video_quality.sh │ │ ├── 2020500 │ │ │ └── create_table_rtsp_auth_tokens.sh │ │ ├── 2020600 │ │ │ └── drop_deprecated_camera_templates.sh │ │ ├── 2020700 │ │ │ └── add_protocol_to_ipPtzCommandPresets.sh │ │ ├── 2020800 │ │ │ └── fix_Devices_device_constraint.sh │ │ ├── 2020900 │ │ │ └── add_EventsCam_time_index.sh │ │ ├── 2050300 │ │ │ └── add_columns_to_Devices_new_motion_detection.sh │ │ ├── 2051800 │ │ │ └── add_columns_to_Devices_motion_analysis.sh │ │ ├── 2070200 │ │ │ └── add_column_to_Devices_table.sh │ │ ├── 2070700 │ │ │ └── modify_columns.sh │ │ ├── 2080600 │ │ │ └── extend_ip_column_for_ipv6.sh │ │ ├── 2080800 │ │ │ └── extend_frame_downscale_factor_precision.sh │ │ ├── 3000000 │ │ │ └── add_change_password_column_to_Users.sh │ │ ├── 3000001 │ │ │ └── add_reencode_column_to_Devices.sh │ │ ├── 3000002 │ │ │ └── make_device_id_fk_cascade.sh │ │ ├── 3000003 │ │ │ └── add_substream_columns_to_Devices.sh │ │ ├── 3000004 │ │ │ └── add_onvif_events_enabled_to_Devices.sh │ │ ├── 3000005 │ │ │ └── create_table_webhooks.sh │ │ ├── 3000006 │ │ │ └── create_table_onvif_events.sh │ │ ├── 3000007 │ │ │ └── add_additional_motion_parameters_to_devices.sh │ │ ├── 3000008 │ │ │ ├── add_additional_some_parameters_to_globalsettings.sh │ │ │ └── create_table_hls_auth_tokens.sh │ │ ├── 3000009 │ │ │ └── add_column_to_Devices_table.sh │ │ ├── 3000010 │ │ │ ├── enable_auto_transport.sh │ │ │ └── increase_media_size_max.sh │ │ ├── 3000011 │ │ │ └── ip_manufacturer_lookup.sh │ │ ├── 3000012 │ │ │ └── enlarge_devices_model_field.sh │ │ ├── 3010400 │ │ │ └── delete-device-cascade.sh │ │ └── 3010500 │ │ │ └── add-cleanup-indexes.sh │ └── schema_mysql.sql ├── sudoers.d │ └── www-data └── test_historical_api.sh ├── nginx-configs ├── bluecherry.conf ├── php │ ├── bionic.conf │ ├── bookworm.conf │ ├── bullseye.conf │ ├── buster.conf │ ├── focal.conf │ ├── groovy.conf │ ├── hirsute.conf │ ├── jammy.conf │ ├── noble.conf │ └── php-generic.conf └── snakeoil.conf ├── postinstall.sh ├── readthedocs.yml ├── rpm ├── bluecherry-rpm-repo.spec ├── bluecherry.logrotate ├── bluecherry.repo ├── bluecherry.service ├── bluecherry.spec.template └── rpm_build_howto.txt ├── scripts ├── build-scripts-docker │ ├── Dockerfile-debian-bullseye │ ├── Dockerfile-debian-buster │ ├── Dockerfile-debian-jessie │ ├── Dockerfile-debian-stretch │ ├── Dockerfile-ubuntu-18.04 │ ├── Dockerfile-ubuntu-18.04_i386 │ ├── Dockerfile-ubuntu-20.04 │ ├── Dockerfile-ubuntu-20.10 │ ├── Dockerfile-ubuntu-21.04 │ ├── README.md │ ├── build │ ├── build-helper.sh │ ├── buildall.sh │ └── get-docker.sh ├── build_all_dist_arch.sh ├── build_chroot.sh ├── build_debug_tools │ ├── build.sh │ ├── ffmpeg_clean.sh │ ├── ffmpeg_configure.sh │ ├── ffmpeg_fetch.sh │ ├── ffmpeg_make.sh │ ├── ffmpeg_publish.sh │ ├── gdb_clean.sh │ ├── gdb_configure.sh │ ├── gdb_fetch.sh │ ├── gdb_make.sh │ └── gdb_publish.sh ├── build_dist_arch.sh ├── build_helper │ ├── get_arch.sh │ ├── get_distro_release_name.sh │ └── post_make_install.sh ├── build_kernel_all_dist_arch.sh ├── build_kernel_dist_arch.sh ├── build_pkg_native.sh ├── build_tw5864_kernel.sh ├── buildreleases ├── check-db-version-consistency ├── check_dir_permission.sh ├── envcheck ├── exec_all_dist_arch.sh ├── exec_dist_arch.sh ├── fix_php_timezone.sh ├── git-pre-commit ├── install_prereqs.sh ├── install_prereqs_RPM.sh ├── install_prereqs_native.sh ├── repo-regen ├── update_cameras_db.sh ├── update_subdomain_certs.sh └── vercmp ├── server ├── .gitignore ├── BCMK ├── Makefile ├── bc-api.cpp ├── bc-api.h ├── bc-cleaner.cpp ├── bc-cleaner.h ├── bc-cleanup.h ├── bc-detect.cpp ├── bc-server.cpp ├── bc-server.h ├── bc-thread.cpp ├── bc-time.h ├── bt.c ├── bt.h ├── decoder.cpp ├── decoder.h ├── encoder.cpp ├── encoder.h ├── ffmpeg-init.c ├── g723-dec.c ├── g723-dec.h ├── hls.cpp ├── hls.h ├── media_writer.cpp ├── media_writer.h ├── motion_handler.cpp ├── motion_handler.h ├── motion_processor.cpp ├── motion_processor.h ├── onvif_events.cpp ├── onvif_events.h ├── recorder.cpp ├── recorder.h ├── reencoder.cpp ├── reencoder.h ├── rsyslog.conf ├── rtsp.cpp ├── rtsp.h ├── scaler.cpp ├── scaler.h ├── signals.c ├── status_server.cpp ├── status_server.h ├── streaming.cpp ├── substream-thread.cpp ├── substream-thread.h ├── trigger_processor.cpp ├── trigger_processor.h ├── trigger_server.cpp ├── trigger_server.h ├── vaapi.cpp ├── vaapi.h ├── watermarker.cpp ├── watermarker.h └── xml_string_writer.h ├── test_stats_api.php ├── test_storage.cpp ├── utils ├── .gitignore ├── BCMK ├── getaudio.c ├── pelcocmd.c ├── ptzcmd.cpp ├── rtsp-streaminfo.c └── utils.h └── www ├── .htaccess ├── ajax ├── activeusers.php ├── addip.php ├── backup.php ├── cameraaccess.php ├── cameraperms.php ├── changepwd.php ├── devices.php ├── deviceschedule.php ├── discoverCameras.php ├── downloadlogs.php ├── editip.php ├── events.php ├── events │ ├── eventsEvents.php │ └── eventsIndex.php ├── general.php ├── health.php ├── ipcameracheck.php ├── ipcamerasetup.php ├── layouts.php ├── licenses.php ├── liveview.php ├── log.php ├── login.php ├── loginapp.php ├── logout.php ├── media.php ├── media │ ├── mediaActive.php │ ├── mediaHls.php │ ├── mediaIndex.php │ ├── mediaMjpeg.php │ ├── mediaPtz.php │ ├── mediaRequest.php │ ├── mediaStreamMp4.php │ └── mediaTrigger.php ├── monitor.php ├── monitoring │ └── stats.php ├── motionmap.php ├── news.php ├── newversion.php ├── notifications.php ├── playback.php ├── profile.php ├── ptzpresetedit.php ├── ptzpresetlist.php ├── ptzsettings.php ├── redirect.php ├── reencode.php ├── statistics.php ├── stats.php ├── storage.php ├── storagecheck.php ├── subdomainprovider.php ├── subdomainproviderbase.php ├── subdomainprovidercron.php ├── subdomainproviderdestroy.php ├── subdomainprovidergetip.php ├── subdomainproviderquery.php ├── update.php ├── updateiplist.php ├── users.php ├── vars.php ├── videoadj.php └── webhook.php ├── composer.json ├── favicon.ico ├── img ├── datepicker │ ├── buttons.png │ ├── days.png │ ├── frame.png │ ├── months.png │ └── years.png ├── gradient.png ├── gradient_120.png ├── gradient_120_light.png ├── icons │ ├── activeusers.png │ ├── add_rule.png │ ├── backup.png │ ├── bnc.png │ ├── check.png │ ├── client.png │ ├── cross.png │ ├── cross_.png │ ├── device.png │ ├── device_.png │ ├── dvr_card.png │ ├── excl.png │ ├── general.png │ ├── help.png │ ├── knob.png │ ├── layouts │ │ ├── 1.png │ │ ├── 16.png │ │ ├── 4.png │ │ ├── 9.png │ │ ├── add-column.png │ │ ├── add-row.png │ │ ├── del-column.png │ │ ├── del-row.png │ │ ├── disabled.png │ │ ├── hls-not-support.png │ │ ├── loading.png │ │ ├── no-device-id.png │ │ ├── no-permission.png │ │ ├── none.png │ │ └── not-found.png │ ├── licensing.png │ ├── liveview.png │ ├── ln.png │ ├── log.png │ ├── mail_rule.png │ ├── menu │ │ ├── clear.png │ │ ├── config.png │ │ ├── delete.png │ │ ├── edit.png │ │ ├── motion.png │ │ ├── ptz.png │ │ ├── save.png │ │ └── schedule.png │ ├── news.png │ ├── notifications.png │ ├── plus.png │ ├── port.png │ ├── schedule.png │ ├── statistics.png │ ├── storage.png │ ├── user_check.png │ ├── users.png │ ├── users_new.png │ └── users_new_large.png ├── loading-progress.gif ├── loading.gif ├── loadingGif.gif ├── logo-large.png ├── logo.png ├── password_header.png ├── pbar-green.png ├── pbar-red.png ├── pbar-yellow.png ├── ptz │ ├── d.png │ ├── in.png │ ├── l.png │ ├── ld.png │ ├── lu.png │ ├── out.png │ ├── r.png │ ├── rd.png │ ├── ru.png │ └── u.png └── username_header.png ├── index.php ├── lib ├── Controller.php ├── Helpers.php ├── Inp.php ├── Ponvif.php ├── Reply.php ├── Route.php ├── Session.php ├── VarPub.php ├── View.php ├── bc_license_wrapper.php ├── db.php ├── ipcamlib.php ├── js │ ├── login.js │ ├── main.js │ └── viewer.js ├── lang.php ├── lib.php ├── mailer.php ├── mootools-more.js ├── mootools-plugins.js ├── mootools.js ├── upgrade.php ├── vaapi_autodetect.php └── var.php ├── mobile-app-config.json ├── template ├── ajax │ ├── activeusers.php │ ├── addip.php │ ├── backup.php │ ├── cameraperms.php │ ├── devices.php │ ├── deviceschedule.php │ ├── discoverCameras.php │ ├── editip.php │ ├── general.php │ ├── log.php │ ├── login.php │ ├── motionmap.php │ ├── news.php │ ├── newversion.php │ ├── notifications.php │ ├── playback │ │ ├── index.php │ │ └── listEvents.php │ ├── profile.php │ ├── ptzpresetedit.php │ ├── ptzpresetlist.php │ ├── ptzsettings.php │ ├── reencode.php │ ├── statistics.php │ ├── storage.php │ ├── subdomainprovider.php │ ├── updateiplist.php │ ├── users.php │ ├── videoadj.php │ └── webhook.php ├── bower_components │ ├── animate.css │ ├── bootstrap-notify.min.js │ ├── bootstrap-table │ │ ├── bootstrap-table.min.css │ │ └── bootstrap-table.min.js │ ├── bootstrap │ │ └── dist │ │ │ ├── css │ │ │ ├── bootstrap-theme.css │ │ │ ├── bootstrap-theme.css.map │ │ │ ├── bootstrap-theme.min.css │ │ │ ├── bootstrap.css │ │ │ ├── bootstrap.css.map │ │ │ └── bootstrap.min.css │ │ │ ├── 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 │ ├── bootstrapformhelpers │ │ ├── dist │ │ │ ├── css │ │ │ │ ├── bootstrap-formhelpers.css │ │ │ │ └── bootstrap-formhelpers.min.css │ │ │ ├── img │ │ │ │ ├── bootstrap-formhelpers-countries.flags-LICENSE.txt │ │ │ │ ├── bootstrap-formhelpers-countries.flags.png │ │ │ │ ├── bootstrap-formhelpers-currencies.flags.png │ │ │ │ └── bootstrap-formhelpers-googlefonts.png │ │ │ └── js │ │ │ │ ├── bootstrap-formhelpers.js │ │ │ │ └── bootstrap-formhelpers.min.js │ │ └── js │ │ │ └── bootstrap-formhelpers-slider.js │ ├── datetimepicker │ │ ├── css │ │ │ ├── bootstrap-datetimepicker.css │ │ │ └── bootstrap-datetimepicker.min.css │ │ └── js │ │ │ ├── bootstrap-datetimepicker.js │ │ │ ├── bootstrap-datetimepicker.min.js │ │ │ └── locales │ │ │ ├── bootstrap-datetimepicker.ar.js │ │ │ ├── bootstrap-datetimepicker.bg.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.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 │ ├── font-awesome │ │ ├── css │ │ │ ├── font-awesome.css │ │ │ └── font-awesome.min.css │ │ └── fonts │ │ │ ├── FontAwesome.otf │ │ │ ├── fontawesome-webfont.eot │ │ │ ├── fontawesome-webfont.svg │ │ │ ├── fontawesome-webfont.ttf │ │ │ └── fontawesome-webfont.woff │ ├── jquery │ │ └── dist │ │ │ └── jquery.min.js │ ├── mediaelement │ │ ├── background.png │ │ ├── bigplay.fw.png │ │ ├── bigplay.png │ │ ├── bigplay.svg │ │ ├── controls-ted.png │ │ ├── controls-wmp-bg.png │ │ ├── controls-wmp.png │ │ ├── controls.fw.png │ │ ├── controls.png │ │ ├── controls.svg │ │ ├── jumpforward.png │ │ ├── loading.gif │ │ ├── mediaelement-and-player.js │ │ ├── mediaelement-and-player.min.js │ │ ├── mediaelementplayer.css │ │ └── skipback.png │ ├── metisMenu │ │ └── dist │ │ │ ├── metisMenu.css │ │ │ ├── metisMenu.js │ │ │ ├── metisMenu.min.css │ │ │ └── metisMenu.min.js │ ├── morrisjs │ │ ├── .bower.json │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── Gruntfile.js │ │ ├── README.md │ │ ├── bower.json │ │ ├── bower.travis.json │ │ ├── examples │ │ │ ├── _template.html │ │ │ ├── area-as-line.html │ │ │ ├── area.html │ │ │ ├── bar-colors.html │ │ │ ├── bar-no-axes.html │ │ │ ├── bar.html │ │ │ ├── days.html │ │ │ ├── decimal-custom-hover.html │ │ │ ├── diagonal-xlabels-bar.html │ │ │ ├── diagonal-xlabels.html │ │ │ ├── donut-colors.html │ │ │ ├── donut-formatter.html │ │ │ ├── donut.html │ │ │ ├── dst.html │ │ │ ├── events.html │ │ │ ├── goals.html │ │ │ ├── lib │ │ │ │ ├── example.css │ │ │ │ └── example.js │ │ │ ├── months-no-smooth.html │ │ │ ├── negative.html │ │ │ ├── no-grid.html │ │ │ ├── non-continuous.html │ │ │ ├── non-date.html │ │ │ ├── quarters.html │ │ │ ├── resize.html │ │ │ ├── stacked_bars.html │ │ │ ├── timestamps.html │ │ │ ├── updating.html │ │ │ ├── weeks.html │ │ │ └── years.html │ │ ├── less │ │ │ └── morris.core.less │ │ ├── lib │ │ │ ├── morris.area.coffee │ │ │ ├── morris.bar.coffee │ │ │ ├── morris.coffee │ │ │ ├── morris.donut.coffee │ │ │ ├── morris.grid.coffee │ │ │ ├── morris.hover.coffee │ │ │ └── morris.line.coffee │ │ ├── morris.css │ │ ├── morris.js │ │ ├── morris.min.js │ │ ├── package.json │ │ └── spec │ │ │ ├── lib │ │ │ ├── area │ │ │ │ └── area_spec.coffee │ │ │ ├── bar │ │ │ │ ├── bar_spec.coffee │ │ │ │ └── colours.coffee │ │ │ ├── commas_spec.coffee │ │ │ ├── donut │ │ │ │ └── donut_spec.coffee │ │ │ ├── grid │ │ │ │ ├── auto_grid_lines_spec.coffee │ │ │ │ ├── set_data_spec.coffee │ │ │ │ └── y_label_format_spec.coffee │ │ │ ├── hover_spec.coffee │ │ │ ├── label_series_spec.coffee │ │ │ ├── line │ │ │ │ └── line_spec.coffee │ │ │ ├── pad_spec.coffee │ │ │ └── parse_time_spec.coffee │ │ │ ├── specs.html │ │ │ ├── support │ │ │ └── placeholder.coffee │ │ │ └── viz │ │ │ ├── examples.js │ │ │ ├── exemplary │ │ │ ├── area0.png │ │ │ ├── bar0.png │ │ │ ├── line0.png │ │ │ └── stacked_bar0.png │ │ │ ├── run.sh │ │ │ ├── test.html │ │ │ └── visual_specs.js │ └── raphael │ │ ├── raphael-min.js │ │ └── raphael.js ├── changepwd.php ├── datepicker.css ├── devices │ └── camera.php ├── dist │ ├── css │ │ ├── main.css │ │ ├── sb-admin-2.css │ │ └── timeline.css │ └── js │ │ ├── addip.js │ │ ├── backup.js │ │ ├── devices.js │ │ ├── discoverCameras.js │ │ ├── editip.js │ │ ├── general.js │ │ ├── licensing.js │ │ ├── log.js │ │ ├── main.js │ │ ├── main_load.js │ │ ├── notifications.js │ │ ├── playback.js │ │ ├── profile.js │ │ ├── ptz.js │ │ ├── ptzpresetlist.js │ │ ├── sb-admin-2.js │ │ ├── statistics.js │ │ ├── storage.js │ │ ├── subdomainprovider.js │ │ ├── users.js │ │ ├── videoadj.js │ │ └── webhook.js ├── login.php ├── main_admin.php ├── main_viewer.php ├── monitoring.php ├── notifications │ ├── form_rule.php │ └── info_rule.php ├── schedule.php ├── styles.css └── styles.viewer.css └── vendor ├── autoload.php ├── composer ├── ClassLoader.php ├── LICENSE ├── autoload_classmap.php ├── autoload_files.php ├── autoload_namespaces.php ├── autoload_psr4.php ├── autoload_real.php ├── autoload_static.php └── installed.json ├── doctrine └── lexer │ ├── LICENSE │ ├── README.md │ ├── composer.json │ └── lib │ └── Doctrine │ └── Common │ └── Lexer │ └── AbstractLexer.php ├── egulias └── email-validator │ ├── LICENSE │ ├── composer.json │ └── src │ ├── EmailLexer.php │ ├── EmailParser.php │ ├── EmailValidator.php │ ├── Exception │ ├── AtextAfterCFWS.php │ ├── CRLFAtTheEnd.php │ ├── CRLFX2.php │ ├── CRNoLF.php │ ├── CharNotAllowed.php │ ├── CommaInDomain.php │ ├── ConsecutiveAt.php │ ├── ConsecutiveDot.php │ ├── DomainAcceptsNoMail.php │ ├── DomainHyphened.php │ ├── DotAtEnd.php │ ├── DotAtStart.php │ ├── ExpectingAT.php │ ├── ExpectingATEXT.php │ ├── ExpectingCTEXT.php │ ├── ExpectingDTEXT.php │ ├── ExpectingDomainLiteralClose.php │ ├── ExpectingQPair.php │ ├── InvalidEmail.php │ ├── LocalOrReservedDomain.php │ ├── NoDNSRecord.php │ ├── NoDomainPart.php │ ├── NoLocalPart.php │ ├── UnclosedComment.php │ ├── UnclosedQuotedString.php │ └── UnopenedComment.php │ ├── Parser │ ├── DomainPart.php │ ├── LocalPart.php │ └── Parser.php │ ├── Validation │ ├── DNSCheckValidation.php │ ├── EmailValidation.php │ ├── Error │ │ ├── RFCWarnings.php │ │ └── SpoofEmail.php │ ├── Exception │ │ └── EmptyValidationList.php │ ├── MultipleErrors.php │ ├── MultipleValidationWithAnd.php │ ├── NoRFCWarningsValidation.php │ ├── RFCValidation.php │ └── SpoofCheckValidation.php │ └── Warning │ ├── AddressLiteral.php │ ├── CFWSNearAt.php │ ├── CFWSWithFWS.php │ ├── Comment.php │ ├── DeprecatedComment.php │ ├── DomainLiteral.php │ ├── DomainTooLong.php │ ├── EmailTooLong.php │ ├── IPV6BadChar.php │ ├── IPV6ColonEnd.php │ ├── IPV6ColonStart.php │ ├── IPV6Deprecated.php │ ├── IPV6DoubleColon.php │ ├── IPV6GroupCount.php │ ├── IPV6MaxGroups.php │ ├── LabelTooLong.php │ ├── LocalTooLong.php │ ├── NoDNSMXRecord.php │ ├── ObsoleteDTEXT.php │ ├── QuotedPart.php │ ├── QuotedString.php │ ├── TLD.php │ └── Warning.php ├── swiftmailer └── swiftmailer │ ├── .gitattributes │ ├── .github │ ├── ISSUE_TEMPLATE.md │ └── PULL_REQUEST_TEMPLATE.md │ ├── .gitignore │ ├── .php_cs.dist │ ├── .travis.yml │ ├── CHANGES │ ├── LICENSE │ ├── README.md │ ├── composer.json │ ├── doc │ ├── headers.rst │ ├── index.rst │ ├── introduction.rst │ ├── japanese.rst │ ├── messages.rst │ ├── plugins.rst │ └── sending.rst │ └── lib │ ├── classes │ ├── Swift.php │ └── Swift │ │ ├── AddressEncoder.php │ │ ├── AddressEncoder │ │ ├── IdnAddressEncoder.php │ │ └── Utf8AddressEncoder.php │ │ ├── AddressEncoderException.php │ │ ├── Attachment.php │ │ ├── ByteStream │ │ ├── AbstractFilterableInputStream.php │ │ ├── ArrayByteStream.php │ │ ├── FileByteStream.php │ │ └── TemporaryFileByteStream.php │ │ ├── CharacterReader.php │ │ ├── CharacterReader │ │ ├── GenericFixedWidthReader.php │ │ ├── UsAsciiReader.php │ │ └── Utf8Reader.php │ │ ├── CharacterReaderFactory.php │ │ ├── CharacterReaderFactory │ │ └── SimpleCharacterReaderFactory.php │ │ ├── CharacterStream.php │ │ ├── CharacterStream │ │ ├── ArrayCharacterStream.php │ │ └── NgCharacterStream.php │ │ ├── ConfigurableSpool.php │ │ ├── DependencyContainer.php │ │ ├── DependencyException.php │ │ ├── EmbeddedFile.php │ │ ├── Encoder.php │ │ ├── Encoder │ │ ├── Base64Encoder.php │ │ ├── QpEncoder.php │ │ └── Rfc2231Encoder.php │ │ ├── Events │ │ ├── CommandEvent.php │ │ ├── CommandListener.php │ │ ├── Event.php │ │ ├── EventDispatcher.php │ │ ├── EventListener.php │ │ ├── EventObject.php │ │ ├── ResponseEvent.php │ │ ├── ResponseListener.php │ │ ├── SendEvent.php │ │ ├── SendListener.php │ │ ├── SimpleEventDispatcher.php │ │ ├── TransportChangeEvent.php │ │ ├── TransportChangeListener.php │ │ ├── TransportExceptionEvent.php │ │ └── TransportExceptionListener.php │ │ ├── FailoverTransport.php │ │ ├── FileSpool.php │ │ ├── FileStream.php │ │ ├── Filterable.php │ │ ├── IdGenerator.php │ │ ├── Image.php │ │ ├── InputByteStream.php │ │ ├── IoException.php │ │ ├── KeyCache.php │ │ ├── KeyCache │ │ ├── ArrayKeyCache.php │ │ ├── DiskKeyCache.php │ │ ├── KeyCacheInputStream.php │ │ ├── NullKeyCache.php │ │ └── SimpleKeyCacheInputStream.php │ │ ├── LoadBalancedTransport.php │ │ ├── Mailer.php │ │ ├── Mailer │ │ ├── ArrayRecipientIterator.php │ │ └── RecipientIterator.php │ │ ├── MemorySpool.php │ │ ├── Message.php │ │ ├── Mime │ │ ├── Attachment.php │ │ ├── CharsetObserver.php │ │ ├── ContentEncoder.php │ │ ├── ContentEncoder │ │ │ ├── Base64ContentEncoder.php │ │ │ ├── NativeQpContentEncoder.php │ │ │ ├── NullContentEncoder.php │ │ │ ├── PlainContentEncoder.php │ │ │ ├── QpContentEncoder.php │ │ │ ├── QpContentEncoderProxy.php │ │ │ └── RawContentEncoder.php │ │ ├── EmbeddedFile.php │ │ ├── EncodingObserver.php │ │ ├── Header.php │ │ ├── HeaderEncoder.php │ │ ├── HeaderEncoder │ │ │ ├── Base64HeaderEncoder.php │ │ │ └── QpHeaderEncoder.php │ │ ├── Headers │ │ │ ├── AbstractHeader.php │ │ │ ├── DateHeader.php │ │ │ ├── IdentificationHeader.php │ │ │ ├── MailboxHeader.php │ │ │ ├── OpenDKIMHeader.php │ │ │ ├── ParameterizedHeader.php │ │ │ ├── PathHeader.php │ │ │ └── UnstructuredHeader.php │ │ ├── IdGenerator.php │ │ ├── MimePart.php │ │ ├── SimpleHeaderFactory.php │ │ ├── SimpleHeaderSet.php │ │ ├── SimpleMessage.php │ │ └── SimpleMimeEntity.php │ │ ├── MimePart.php │ │ ├── NullTransport.php │ │ ├── OutputByteStream.php │ │ ├── Plugins │ │ ├── AntiFloodPlugin.php │ │ ├── BandwidthMonitorPlugin.php │ │ ├── Decorator │ │ │ └── Replacements.php │ │ ├── DecoratorPlugin.php │ │ ├── ImpersonatePlugin.php │ │ ├── Logger.php │ │ ├── LoggerPlugin.php │ │ ├── Loggers │ │ │ ├── ArrayLogger.php │ │ │ └── EchoLogger.php │ │ ├── MessageLogger.php │ │ ├── Pop │ │ │ ├── Pop3Connection.php │ │ │ └── Pop3Exception.php │ │ ├── PopBeforeSmtpPlugin.php │ │ ├── RedirectingPlugin.php │ │ ├── Reporter.php │ │ ├── ReporterPlugin.php │ │ ├── Reporters │ │ │ ├── HitReporter.php │ │ │ └── HtmlReporter.php │ │ ├── Sleeper.php │ │ ├── ThrottlerPlugin.php │ │ └── Timer.php │ │ ├── Preferences.php │ │ ├── ReplacementFilterFactory.php │ │ ├── RfcComplianceException.php │ │ ├── SendmailTransport.php │ │ ├── Signer.php │ │ ├── Signers │ │ ├── BodySigner.php │ │ ├── DKIMSigner.php │ │ ├── DomainKeySigner.php │ │ ├── HeaderSigner.php │ │ ├── OpenDKIMSigner.php │ │ └── SMimeSigner.php │ │ ├── SmtpTransport.php │ │ ├── Spool.php │ │ ├── SpoolTransport.php │ │ ├── StreamFilter.php │ │ ├── StreamFilters │ │ ├── ByteArrayReplacementFilter.php │ │ ├── StringReplacementFilter.php │ │ └── StringReplacementFilterFactory.php │ │ ├── SwiftException.php │ │ ├── Transport.php │ │ ├── Transport │ │ ├── AbstractSmtpTransport.php │ │ ├── Esmtp │ │ │ ├── Auth │ │ │ │ ├── CramMd5Authenticator.php │ │ │ │ ├── LoginAuthenticator.php │ │ │ │ ├── NTLMAuthenticator.php │ │ │ │ ├── PlainAuthenticator.php │ │ │ │ └── XOAuth2Authenticator.php │ │ │ ├── AuthHandler.php │ │ │ ├── Authenticator.php │ │ │ ├── EightBitMimeHandler.php │ │ │ └── SmtpUtf8Handler.php │ │ ├── EsmtpHandler.php │ │ ├── EsmtpTransport.php │ │ ├── FailoverTransport.php │ │ ├── IoBuffer.php │ │ ├── LoadBalancedTransport.php │ │ ├── NullTransport.php │ │ ├── SendmailTransport.php │ │ ├── SmtpAgent.php │ │ ├── SpoolTransport.php │ │ └── StreamBuffer.php │ │ └── TransportException.php │ ├── dependency_maps │ ├── cache_deps.php │ ├── message_deps.php │ ├── mime_deps.php │ └── transport_deps.php │ ├── mime_types.php │ ├── preferences.php │ ├── swift_required.php │ └── swiftmailer_generate_mimes_config.php └── symfony ├── polyfill-iconv ├── Iconv.php ├── LICENSE ├── README.md ├── Resources │ └── charset │ │ ├── from.big5.php │ │ ├── from.cp037.php │ │ ├── from.cp1006.php │ │ ├── from.cp1026.php │ │ ├── from.cp424.php │ │ ├── from.cp437.php │ │ ├── from.cp500.php │ │ ├── from.cp737.php │ │ ├── from.cp775.php │ │ ├── from.cp850.php │ │ ├── from.cp852.php │ │ ├── from.cp855.php │ │ ├── from.cp856.php │ │ ├── from.cp857.php │ │ ├── from.cp860.php │ │ ├── from.cp861.php │ │ ├── from.cp862.php │ │ ├── from.cp863.php │ │ ├── from.cp864.php │ │ ├── from.cp865.php │ │ ├── from.cp866.php │ │ ├── from.cp869.php │ │ ├── from.cp874.php │ │ ├── from.cp875.php │ │ ├── from.cp932.php │ │ ├── from.cp936.php │ │ ├── from.cp949.php │ │ ├── from.cp950.php │ │ ├── from.iso-8859-1.php │ │ ├── from.iso-8859-10.php │ │ ├── from.iso-8859-11.php │ │ ├── from.iso-8859-13.php │ │ ├── from.iso-8859-14.php │ │ ├── from.iso-8859-15.php │ │ ├── from.iso-8859-16.php │ │ ├── from.iso-8859-2.php │ │ ├── from.iso-8859-3.php │ │ ├── from.iso-8859-4.php │ │ ├── from.iso-8859-5.php │ │ ├── from.iso-8859-6.php │ │ ├── from.iso-8859-7.php │ │ ├── from.iso-8859-8.php │ │ ├── from.iso-8859-9.php │ │ ├── from.koi8-r.php │ │ ├── from.koi8-u.php │ │ ├── from.us-ascii.php │ │ ├── from.windows-1250.php │ │ ├── from.windows-1251.php │ │ ├── from.windows-1252.php │ │ ├── from.windows-1253.php │ │ ├── from.windows-1254.php │ │ ├── from.windows-1255.php │ │ ├── from.windows-1256.php │ │ ├── from.windows-1257.php │ │ ├── from.windows-1258.php │ │ └── translit.php ├── bootstrap.php ├── bootstrap80.php └── composer.json ├── polyfill-intl-idn ├── Idn.php ├── Info.php ├── LICENSE ├── README.md ├── Resources │ └── unidata │ │ ├── DisallowedRanges.php │ │ ├── Regex.php │ │ ├── deviation.php │ │ ├── disallowed.php │ │ ├── disallowed_STD3_mapped.php │ │ ├── disallowed_STD3_valid.php │ │ ├── ignored.php │ │ ├── mapped.php │ │ └── virama.php ├── bootstrap.php ├── bootstrap80.php └── composer.json ├── polyfill-intl-normalizer ├── LICENSE ├── Normalizer.php ├── README.md ├── Resources │ ├── stubs │ │ └── Normalizer.php │ └── unidata │ │ ├── canonicalComposition.php │ │ ├── canonicalDecomposition.php │ │ ├── combiningClass.php │ │ └── compatibilityDecomposition.php ├── bootstrap.php ├── bootstrap80.php └── composer.json ├── polyfill-mbstring ├── LICENSE ├── Mbstring.php ├── README.md ├── Resources │ └── unidata │ │ ├── lowerCase.php │ │ ├── titleCaseRegexp.php │ │ └── upperCase.php ├── bootstrap.php ├── bootstrap80.php └── composer.json └── polyfill-php72 ├── LICENSE ├── Php72.php ├── README.md ├── bootstrap.php └── composer.json /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/deb-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/.github/workflows/deb-build.yml -------------------------------------------------------------------------------- /.github/workflows/docker-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/.github/workflows/docker-build.yml -------------------------------------------------------------------------------- /.github/workflows/docker-from-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/.github/workflows/docker-from-release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/.gitmodules -------------------------------------------------------------------------------- /.kilocode/api.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/.kilocode/api.yaml -------------------------------------------------------------------------------- /.kilocode/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/.kilocode/config.yaml -------------------------------------------------------------------------------- /.kilocode/database.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/.kilocode/database.yaml -------------------------------------------------------------------------------- /.kilocode/naming.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/.kilocode/naming.yaml -------------------------------------------------------------------------------- /.kilocode/preferences.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/.kilocode/preferences.yaml -------------------------------------------------------------------------------- /.kilocode/security.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/.kilocode/security.yaml -------------------------------------------------------------------------------- /.vscode/mcp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/.vscode/mcp.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /BCMK.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/BCMK.conf -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/README.md -------------------------------------------------------------------------------- /actions/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/actions/Dockerfile -------------------------------------------------------------------------------- /actions/bc-database-create.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/actions/bc-database-create.sh -------------------------------------------------------------------------------- /actions/bc-database-upgrade.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/actions/bc-database-upgrade.sh -------------------------------------------------------------------------------- /actions/bc-rsyslog.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/actions/bc-rsyslog.conf -------------------------------------------------------------------------------- /actions/depends/README.md: -------------------------------------------------------------------------------- 1 | ## This is a binary file built for Ubuntu 20.04. 2 | -------------------------------------------------------------------------------- /actions/depends/onvif_tool: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/actions/depends/onvif_tool -------------------------------------------------------------------------------- /actions/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/actions/entrypoint.sh -------------------------------------------------------------------------------- /actions/supervisord.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/actions/supervisord.conf -------------------------------------------------------------------------------- /clear_rrd_data.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/clear_rrd_data.sh -------------------------------------------------------------------------------- /debian/apache.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/debian/apache.conf -------------------------------------------------------------------------------- /debian/bluecherry.apparmor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/debian/bluecherry.apparmor -------------------------------------------------------------------------------- /debian/bluecherry.bluecherry.upstart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/debian/bluecherry.bluecherry.upstart -------------------------------------------------------------------------------- /debian/bluecherry.conf.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/debian/bluecherry.conf.in -------------------------------------------------------------------------------- /debian/bluecherry.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/debian/bluecherry.config -------------------------------------------------------------------------------- /debian/bluecherry.cron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/debian/bluecherry.cron -------------------------------------------------------------------------------- /debian/bluecherry.dirs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/debian/bluecherry.dirs -------------------------------------------------------------------------------- /debian/bluecherry.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/debian/bluecherry.init -------------------------------------------------------------------------------- /debian/bluecherry.logrotate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/debian/bluecherry.logrotate -------------------------------------------------------------------------------- /debian/bluecherry.monit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/debian/bluecherry.monit -------------------------------------------------------------------------------- /debian/bluecherry.postinst: -------------------------------------------------------------------------------- 1 | #!/bin/bash -e 2 | 3 | . /usr/share/bluecherry/postinstall.sh 4 | 5 | #DEBHELPER# 6 | db_stop 7 | -------------------------------------------------------------------------------- /debian/bluecherry.postrm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/debian/bluecherry.postrm -------------------------------------------------------------------------------- /debian/bluecherry.preinst.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/debian/bluecherry.preinst.template -------------------------------------------------------------------------------- /debian/bluecherry.prerm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/debian/bluecherry.prerm -------------------------------------------------------------------------------- /debian/bluecherry.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/debian/bluecherry.service -------------------------------------------------------------------------------- /debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/debian/changelog -------------------------------------------------------------------------------- /debian/compat: -------------------------------------------------------------------------------- 1 | 11 2 | -------------------------------------------------------------------------------- /debian/control.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/debian/control.in -------------------------------------------------------------------------------- /debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/debian/copyright -------------------------------------------------------------------------------- /debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/debian/rules -------------------------------------------------------------------------------- /debian/templates: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/debian/templates -------------------------------------------------------------------------------- /docs/mysql-mariadb-optimization.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/docs/mysql-mariadb-optimization.md -------------------------------------------------------------------------------- /experiments/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/experiments/README -------------------------------------------------------------------------------- /experiments/build.sh: -------------------------------------------------------------------------------- 1 | g++ -o test rtsprequest.c -lcurl 2 | -------------------------------------------------------------------------------- /experiments/rtsprequest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/experiments/rtsprequest.c -------------------------------------------------------------------------------- /installer/install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/installer/install -------------------------------------------------------------------------------- /installer/v3.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/installer/v3.sh -------------------------------------------------------------------------------- /lib/BCMK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/lib/BCMK -------------------------------------------------------------------------------- /lib/bc-core.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/lib/bc-core.cpp -------------------------------------------------------------------------------- /lib/bc-db-core.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/lib/bc-db-core.cpp -------------------------------------------------------------------------------- /lib/bc-db-mysql.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/lib/bc-db-mysql.cpp -------------------------------------------------------------------------------- /lib/bc-db.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/lib/bc-db.h -------------------------------------------------------------------------------- /lib/bc-media.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/lib/bc-media.cpp -------------------------------------------------------------------------------- /lib/bc-ptz.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/lib/bc-ptz.cpp -------------------------------------------------------------------------------- /lib/bc-stats.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/lib/bc-stats.cpp -------------------------------------------------------------------------------- /lib/bc-stats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/lib/bc-stats.h -------------------------------------------------------------------------------- /lib/bc-syslog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/lib/bc-syslog.c -------------------------------------------------------------------------------- /lib/bc-syslog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/lib/bc-syslog.h -------------------------------------------------------------------------------- /lib/bc-utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/lib/bc-utils.cpp -------------------------------------------------------------------------------- /lib/fnv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/lib/fnv.h -------------------------------------------------------------------------------- /lib/input_device.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/lib/input_device.cpp -------------------------------------------------------------------------------- /lib/input_device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/lib/input_device.h -------------------------------------------------------------------------------- /lib/iov-macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/lib/iov-macros.h -------------------------------------------------------------------------------- /lib/lavf_device.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/lib/lavf_device.cpp -------------------------------------------------------------------------------- /lib/lavf_device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/lib/lavf_device.h -------------------------------------------------------------------------------- /lib/libbluecherry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/lib/libbluecherry.h -------------------------------------------------------------------------------- /lib/logc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/lib/logc.h -------------------------------------------------------------------------------- /lib/logging.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/lib/logging.cpp -------------------------------------------------------------------------------- /lib/logging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/lib/logging.h -------------------------------------------------------------------------------- /lib/sliding_seq_window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/lib/sliding_seq_window.cpp -------------------------------------------------------------------------------- /lib/sliding_seq_window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/lib/sliding_seq_window.h -------------------------------------------------------------------------------- /lib/sliding_time_window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/lib/sliding_time_window.cpp -------------------------------------------------------------------------------- /lib/sliding_time_window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/lib/sliding_time_window.h -------------------------------------------------------------------------------- /lib/stream_elements.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/lib/stream_elements.cpp -------------------------------------------------------------------------------- /lib/stream_elements.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/lib/stream_elements.h -------------------------------------------------------------------------------- /lib/v4l2_device_solo6010-dkms.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/lib/v4l2_device_solo6010-dkms.cpp -------------------------------------------------------------------------------- /lib/v4l2_device_solo6010-dkms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/lib/v4l2_device_solo6010-dkms.h -------------------------------------------------------------------------------- /lib/v4l2_device_solo6x10.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/lib/v4l2_device_solo6x10.cpp -------------------------------------------------------------------------------- /lib/v4l2_device_solo6x10.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/lib/v4l2_device_solo6x10.h -------------------------------------------------------------------------------- /lib/v4l2_device_tw5864.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/lib/v4l2_device_tw5864.cpp -------------------------------------------------------------------------------- /lib/v4l2_device_tw5864.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/lib/v4l2_device_tw5864.h -------------------------------------------------------------------------------- /misc/BCMK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/misc/BCMK -------------------------------------------------------------------------------- /misc/CLEANUP_OPTIMIZATION_3.1.13.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/misc/CLEANUP_OPTIMIZATION_3.1.13.md -------------------------------------------------------------------------------- /misc/DATABASE_OPTIMIZATION_3.1.14.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/misc/DATABASE_OPTIMIZATION_3.1.14.md -------------------------------------------------------------------------------- /misc/DATABASE_SYNC_SOLUTION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/misc/DATABASE_SYNC_SOLUTION.md -------------------------------------------------------------------------------- /misc/HISTORICAL_API_README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/misc/HISTORICAL_API_README.md -------------------------------------------------------------------------------- /misc/NETWORK_MONITORING_README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/misc/NETWORK_MONITORING_README.md -------------------------------------------------------------------------------- /misc/add_missing_recordings.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/misc/add_missing_recordings.sh -------------------------------------------------------------------------------- /misc/add_missing_recordings_optimized.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/misc/add_missing_recordings_optimized.sh -------------------------------------------------------------------------------- /misc/backup_db.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/misc/backup_db.sh -------------------------------------------------------------------------------- /misc/bc-health-check: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/misc/bc-health-check -------------------------------------------------------------------------------- /misc/bc_db_tool.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/misc/bc_db_tool.sh -------------------------------------------------------------------------------- /misc/contrib/focal/amd64/libconfig/v1.5-6-g4ac539a/libconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/misc/contrib/focal/amd64/libconfig/v1.5-6-g4ac539a/libconfig.h -------------------------------------------------------------------------------- /misc/contrib/focal/amd64/libconfig/v1.5-6-g4ac539a/libconfig.so: -------------------------------------------------------------------------------- 1 | libconfig.so.9.2.0 -------------------------------------------------------------------------------- /misc/contrib/focal/amd64/libconfig/v1.5-6-g4ac539a/libconfig.so.9: -------------------------------------------------------------------------------- 1 | libconfig.so.9.2.0 -------------------------------------------------------------------------------- /misc/contrib/focal/amd64/libconfig/v1.5-6-g4ac539a/libconfig.so.9.2.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/misc/contrib/focal/amd64/libconfig/v1.5-6-g4ac539a/libconfig.so.9.2.0 -------------------------------------------------------------------------------- /misc/historical_dashboard_example.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/misc/historical_dashboard_example.html -------------------------------------------------------------------------------- /misc/kernel_pkg/etc/modprobe.d/blacklist-solo6x10_edge.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/misc/kernel_pkg/etc/modprobe.d/blacklist-solo6x10_edge.conf -------------------------------------------------------------------------------- /misc/kernel_pkg/etc/modprobe.d/blacklist-tw5864-bis.conf: -------------------------------------------------------------------------------- 1 | blacklist LXV4L2D 2 | -------------------------------------------------------------------------------- /misc/kernel_pkg/etc/modules-load.d/solo6x10.conf: -------------------------------------------------------------------------------- 1 | solo6x10 2 | -------------------------------------------------------------------------------- /misc/kernel_pkg/etc/modules-load.d/tw5864.conf: -------------------------------------------------------------------------------- 1 | tw5864 2 | -------------------------------------------------------------------------------- /misc/list_ether.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/misc/list_ether.sh -------------------------------------------------------------------------------- /misc/onvif/discovery_json/node-onvif.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/misc/onvif/discovery_json/node-onvif.js -------------------------------------------------------------------------------- /misc/onvif/discovery_json/onvif_tool: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/misc/onvif/discovery_json/onvif_tool -------------------------------------------------------------------------------- /misc/onvif/getRtspUrls.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/misc/onvif/getRtspUrls.js -------------------------------------------------------------------------------- /misc/postinstall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/misc/postinstall.sh -------------------------------------------------------------------------------- /misc/remove_all_data.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/misc/remove_all_data.sh -------------------------------------------------------------------------------- /misc/remove_untracked_media_files.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/misc/remove_untracked_media_files.sh -------------------------------------------------------------------------------- /misc/sql/camera_info_sqlite_data.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/misc/sql/camera_info_sqlite_data.sql -------------------------------------------------------------------------------- /misc/sql/cameras_shipped.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/misc/sql/cameras_shipped.db -------------------------------------------------------------------------------- /misc/sql/import-cambase-data.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/misc/sql/import-cambase-data.php -------------------------------------------------------------------------------- /misc/sql/initial_data_mysql.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/misc/sql/initial_data_mysql.sql -------------------------------------------------------------------------------- /misc/sql/installed_db_version: -------------------------------------------------------------------------------- 1 | 3010500 2 | -------------------------------------------------------------------------------- /misc/sql/load_db_creds.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/misc/sql/load_db_creds.sh -------------------------------------------------------------------------------- /misc/sql/mysql-upgrade/2020300/add_template_axis_m1034-w.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/misc/sql/mysql-upgrade/2020300/add_template_axis_m1034-w.sh -------------------------------------------------------------------------------- /misc/sql/mysql-upgrade/2020300/drop_tcp_postfix.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/misc/sql/mysql-upgrade/2020300/drop_tcp_postfix.sh -------------------------------------------------------------------------------- /misc/sql/mysql-upgrade/2020400/set_adequate_video_quality.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/misc/sql/mysql-upgrade/2020400/set_adequate_video_quality.sh -------------------------------------------------------------------------------- /misc/sql/mysql-upgrade/2020500/create_table_rtsp_auth_tokens.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/misc/sql/mysql-upgrade/2020500/create_table_rtsp_auth_tokens.sh -------------------------------------------------------------------------------- /misc/sql/mysql-upgrade/2020600/drop_deprecated_camera_templates.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/misc/sql/mysql-upgrade/2020600/drop_deprecated_camera_templates.sh -------------------------------------------------------------------------------- /misc/sql/mysql-upgrade/2020700/add_protocol_to_ipPtzCommandPresets.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/misc/sql/mysql-upgrade/2020700/add_protocol_to_ipPtzCommandPresets.sh -------------------------------------------------------------------------------- /misc/sql/mysql-upgrade/2020800/fix_Devices_device_constraint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/misc/sql/mysql-upgrade/2020800/fix_Devices_device_constraint.sh -------------------------------------------------------------------------------- /misc/sql/mysql-upgrade/2020900/add_EventsCam_time_index.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/misc/sql/mysql-upgrade/2020900/add_EventsCam_time_index.sh -------------------------------------------------------------------------------- /misc/sql/mysql-upgrade/2070200/add_column_to_Devices_table.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/misc/sql/mysql-upgrade/2070200/add_column_to_Devices_table.sh -------------------------------------------------------------------------------- /misc/sql/mysql-upgrade/2070700/modify_columns.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/misc/sql/mysql-upgrade/2070700/modify_columns.sh -------------------------------------------------------------------------------- /misc/sql/mysql-upgrade/2080600/extend_ip_column_for_ipv6.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/misc/sql/mysql-upgrade/2080600/extend_ip_column_for_ipv6.sh -------------------------------------------------------------------------------- /misc/sql/mysql-upgrade/3000000/add_change_password_column_to_Users.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/misc/sql/mysql-upgrade/3000000/add_change_password_column_to_Users.sh -------------------------------------------------------------------------------- /misc/sql/mysql-upgrade/3000001/add_reencode_column_to_Devices.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/misc/sql/mysql-upgrade/3000001/add_reencode_column_to_Devices.sh -------------------------------------------------------------------------------- /misc/sql/mysql-upgrade/3000002/make_device_id_fk_cascade.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/misc/sql/mysql-upgrade/3000002/make_device_id_fk_cascade.sh -------------------------------------------------------------------------------- /misc/sql/mysql-upgrade/3000003/add_substream_columns_to_Devices.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/misc/sql/mysql-upgrade/3000003/add_substream_columns_to_Devices.sh -------------------------------------------------------------------------------- /misc/sql/mysql-upgrade/3000004/add_onvif_events_enabled_to_Devices.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/misc/sql/mysql-upgrade/3000004/add_onvif_events_enabled_to_Devices.sh -------------------------------------------------------------------------------- /misc/sql/mysql-upgrade/3000005/create_table_webhooks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/misc/sql/mysql-upgrade/3000005/create_table_webhooks.sh -------------------------------------------------------------------------------- /misc/sql/mysql-upgrade/3000006/create_table_onvif_events.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/misc/sql/mysql-upgrade/3000006/create_table_onvif_events.sh -------------------------------------------------------------------------------- /misc/sql/mysql-upgrade/3000008/create_table_hls_auth_tokens.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/misc/sql/mysql-upgrade/3000008/create_table_hls_auth_tokens.sh -------------------------------------------------------------------------------- /misc/sql/mysql-upgrade/3000009/add_column_to_Devices_table.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/misc/sql/mysql-upgrade/3000009/add_column_to_Devices_table.sh -------------------------------------------------------------------------------- /misc/sql/mysql-upgrade/3000010/enable_auto_transport.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/misc/sql/mysql-upgrade/3000010/enable_auto_transport.sh -------------------------------------------------------------------------------- /misc/sql/mysql-upgrade/3000010/increase_media_size_max.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/misc/sql/mysql-upgrade/3000010/increase_media_size_max.sh -------------------------------------------------------------------------------- /misc/sql/mysql-upgrade/3000011/ip_manufacturer_lookup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/misc/sql/mysql-upgrade/3000011/ip_manufacturer_lookup.sh -------------------------------------------------------------------------------- /misc/sql/mysql-upgrade/3000012/enlarge_devices_model_field.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/misc/sql/mysql-upgrade/3000012/enlarge_devices_model_field.sh -------------------------------------------------------------------------------- /misc/sql/mysql-upgrade/3010400/delete-device-cascade.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/misc/sql/mysql-upgrade/3010400/delete-device-cascade.sh -------------------------------------------------------------------------------- /misc/sql/mysql-upgrade/3010500/add-cleanup-indexes.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/misc/sql/mysql-upgrade/3010500/add-cleanup-indexes.sh -------------------------------------------------------------------------------- /misc/sql/schema_mysql.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/misc/sql/schema_mysql.sql -------------------------------------------------------------------------------- /misc/sudoers.d/www-data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/misc/sudoers.d/www-data -------------------------------------------------------------------------------- /misc/test_historical_api.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/misc/test_historical_api.sh -------------------------------------------------------------------------------- /nginx-configs/bluecherry.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/nginx-configs/bluecherry.conf -------------------------------------------------------------------------------- /nginx-configs/php/bionic.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/nginx-configs/php/bionic.conf -------------------------------------------------------------------------------- /nginx-configs/php/bookworm.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/nginx-configs/php/bookworm.conf -------------------------------------------------------------------------------- /nginx-configs/php/bullseye.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/nginx-configs/php/bullseye.conf -------------------------------------------------------------------------------- /nginx-configs/php/buster.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/nginx-configs/php/buster.conf -------------------------------------------------------------------------------- /nginx-configs/php/focal.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/nginx-configs/php/focal.conf -------------------------------------------------------------------------------- /nginx-configs/php/groovy.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/nginx-configs/php/groovy.conf -------------------------------------------------------------------------------- /nginx-configs/php/hirsute.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/nginx-configs/php/hirsute.conf -------------------------------------------------------------------------------- /nginx-configs/php/jammy.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/nginx-configs/php/jammy.conf -------------------------------------------------------------------------------- /nginx-configs/php/noble.conf: -------------------------------------------------------------------------------- 1 | bookworm.conf -------------------------------------------------------------------------------- /nginx-configs/php/php-generic.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/nginx-configs/php/php-generic.conf -------------------------------------------------------------------------------- /nginx-configs/snakeoil.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/nginx-configs/snakeoil.conf -------------------------------------------------------------------------------- /postinstall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/postinstall.sh -------------------------------------------------------------------------------- /readthedocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/readthedocs.yml -------------------------------------------------------------------------------- /rpm/bluecherry-rpm-repo.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/rpm/bluecherry-rpm-repo.spec -------------------------------------------------------------------------------- /rpm/bluecherry.logrotate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/rpm/bluecherry.logrotate -------------------------------------------------------------------------------- /rpm/bluecherry.repo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/rpm/bluecherry.repo -------------------------------------------------------------------------------- /rpm/bluecherry.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/rpm/bluecherry.service -------------------------------------------------------------------------------- /rpm/bluecherry.spec.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/rpm/bluecherry.spec.template -------------------------------------------------------------------------------- /rpm/rpm_build_howto.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/rpm/rpm_build_howto.txt -------------------------------------------------------------------------------- /scripts/build-scripts-docker/Dockerfile-debian-bullseye: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/scripts/build-scripts-docker/Dockerfile-debian-bullseye -------------------------------------------------------------------------------- /scripts/build-scripts-docker/Dockerfile-debian-buster: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/scripts/build-scripts-docker/Dockerfile-debian-buster -------------------------------------------------------------------------------- /scripts/build-scripts-docker/Dockerfile-debian-jessie: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/scripts/build-scripts-docker/Dockerfile-debian-jessie -------------------------------------------------------------------------------- /scripts/build-scripts-docker/Dockerfile-debian-stretch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/scripts/build-scripts-docker/Dockerfile-debian-stretch -------------------------------------------------------------------------------- /scripts/build-scripts-docker/Dockerfile-ubuntu-18.04: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/scripts/build-scripts-docker/Dockerfile-ubuntu-18.04 -------------------------------------------------------------------------------- /scripts/build-scripts-docker/Dockerfile-ubuntu-18.04_i386: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/scripts/build-scripts-docker/Dockerfile-ubuntu-18.04_i386 -------------------------------------------------------------------------------- /scripts/build-scripts-docker/Dockerfile-ubuntu-20.04: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/scripts/build-scripts-docker/Dockerfile-ubuntu-20.04 -------------------------------------------------------------------------------- /scripts/build-scripts-docker/Dockerfile-ubuntu-20.10: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/scripts/build-scripts-docker/Dockerfile-ubuntu-20.10 -------------------------------------------------------------------------------- /scripts/build-scripts-docker/Dockerfile-ubuntu-21.04: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/scripts/build-scripts-docker/Dockerfile-ubuntu-21.04 -------------------------------------------------------------------------------- /scripts/build-scripts-docker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/scripts/build-scripts-docker/README.md -------------------------------------------------------------------------------- /scripts/build-scripts-docker/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/scripts/build-scripts-docker/build -------------------------------------------------------------------------------- /scripts/build-scripts-docker/build-helper.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/scripts/build-scripts-docker/build-helper.sh -------------------------------------------------------------------------------- /scripts/build-scripts-docker/buildall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/scripts/build-scripts-docker/buildall.sh -------------------------------------------------------------------------------- /scripts/build-scripts-docker/get-docker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/scripts/build-scripts-docker/get-docker.sh -------------------------------------------------------------------------------- /scripts/build_all_dist_arch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/scripts/build_all_dist_arch.sh -------------------------------------------------------------------------------- /scripts/build_chroot.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/scripts/build_chroot.sh -------------------------------------------------------------------------------- /scripts/build_debug_tools/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/scripts/build_debug_tools/build.sh -------------------------------------------------------------------------------- /scripts/build_debug_tools/ffmpeg_clean.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | git clean -dxf 3 | -------------------------------------------------------------------------------- /scripts/build_debug_tools/ffmpeg_configure.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/scripts/build_debug_tools/ffmpeg_configure.sh -------------------------------------------------------------------------------- /scripts/build_debug_tools/ffmpeg_fetch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/scripts/build_debug_tools/ffmpeg_fetch.sh -------------------------------------------------------------------------------- /scripts/build_debug_tools/ffmpeg_make.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/scripts/build_debug_tools/ffmpeg_make.sh -------------------------------------------------------------------------------- /scripts/build_debug_tools/ffmpeg_publish.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/scripts/build_debug_tools/ffmpeg_publish.sh -------------------------------------------------------------------------------- /scripts/build_debug_tools/gdb_clean.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | make distclean || true 3 | -------------------------------------------------------------------------------- /scripts/build_debug_tools/gdb_configure.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | ./configure 4 | -------------------------------------------------------------------------------- /scripts/build_debug_tools/gdb_fetch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/scripts/build_debug_tools/gdb_fetch.sh -------------------------------------------------------------------------------- /scripts/build_debug_tools/gdb_make.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/scripts/build_debug_tools/gdb_make.sh -------------------------------------------------------------------------------- /scripts/build_debug_tools/gdb_publish.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/scripts/build_debug_tools/gdb_publish.sh -------------------------------------------------------------------------------- /scripts/build_dist_arch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/scripts/build_dist_arch.sh -------------------------------------------------------------------------------- /scripts/build_helper/get_arch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/scripts/build_helper/get_arch.sh -------------------------------------------------------------------------------- /scripts/build_helper/get_distro_release_name.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/scripts/build_helper/get_distro_release_name.sh -------------------------------------------------------------------------------- /scripts/build_helper/post_make_install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/scripts/build_helper/post_make_install.sh -------------------------------------------------------------------------------- /scripts/build_kernel_all_dist_arch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/scripts/build_kernel_all_dist_arch.sh -------------------------------------------------------------------------------- /scripts/build_kernel_dist_arch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/scripts/build_kernel_dist_arch.sh -------------------------------------------------------------------------------- /scripts/build_pkg_native.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/scripts/build_pkg_native.sh -------------------------------------------------------------------------------- /scripts/build_tw5864_kernel.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/scripts/build_tw5864_kernel.sh -------------------------------------------------------------------------------- /scripts/buildreleases: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/scripts/buildreleases -------------------------------------------------------------------------------- /scripts/check-db-version-consistency: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/scripts/check-db-version-consistency -------------------------------------------------------------------------------- /scripts/check_dir_permission.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/scripts/check_dir_permission.sh -------------------------------------------------------------------------------- /scripts/envcheck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/scripts/envcheck -------------------------------------------------------------------------------- /scripts/exec_all_dist_arch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/scripts/exec_all_dist_arch.sh -------------------------------------------------------------------------------- /scripts/exec_dist_arch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/scripts/exec_dist_arch.sh -------------------------------------------------------------------------------- /scripts/fix_php_timezone.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/scripts/fix_php_timezone.sh -------------------------------------------------------------------------------- /scripts/git-pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/scripts/git-pre-commit -------------------------------------------------------------------------------- /scripts/install_prereqs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/scripts/install_prereqs.sh -------------------------------------------------------------------------------- /scripts/install_prereqs_RPM.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/scripts/install_prereqs_RPM.sh -------------------------------------------------------------------------------- /scripts/install_prereqs_native.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/scripts/install_prereqs_native.sh -------------------------------------------------------------------------------- /scripts/repo-regen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/scripts/repo-regen -------------------------------------------------------------------------------- /scripts/update_cameras_db.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/scripts/update_cameras_db.sh -------------------------------------------------------------------------------- /scripts/update_subdomain_certs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/scripts/update_subdomain_certs.sh -------------------------------------------------------------------------------- /scripts/vercmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/scripts/vercmp -------------------------------------------------------------------------------- /server/.gitignore: -------------------------------------------------------------------------------- 1 | bc-server 2 | bc-detect 3 | *.d 4 | -------------------------------------------------------------------------------- /server/BCMK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/server/BCMK -------------------------------------------------------------------------------- /server/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/server/Makefile -------------------------------------------------------------------------------- /server/bc-api.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/server/bc-api.cpp -------------------------------------------------------------------------------- /server/bc-api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/server/bc-api.h -------------------------------------------------------------------------------- /server/bc-cleaner.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/server/bc-cleaner.cpp -------------------------------------------------------------------------------- /server/bc-cleaner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/server/bc-cleaner.h -------------------------------------------------------------------------------- /server/bc-cleanup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/server/bc-cleanup.h -------------------------------------------------------------------------------- /server/bc-detect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/server/bc-detect.cpp -------------------------------------------------------------------------------- /server/bc-server.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/server/bc-server.cpp -------------------------------------------------------------------------------- /server/bc-server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/server/bc-server.h -------------------------------------------------------------------------------- /server/bc-thread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/server/bc-thread.cpp -------------------------------------------------------------------------------- /server/bc-time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/server/bc-time.h -------------------------------------------------------------------------------- /server/bt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/server/bt.c -------------------------------------------------------------------------------- /server/bt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/server/bt.h -------------------------------------------------------------------------------- /server/decoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/server/decoder.cpp -------------------------------------------------------------------------------- /server/decoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/server/decoder.h -------------------------------------------------------------------------------- /server/encoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/server/encoder.cpp -------------------------------------------------------------------------------- /server/encoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/server/encoder.h -------------------------------------------------------------------------------- /server/ffmpeg-init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/server/ffmpeg-init.c -------------------------------------------------------------------------------- /server/g723-dec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/server/g723-dec.c -------------------------------------------------------------------------------- /server/g723-dec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/server/g723-dec.h -------------------------------------------------------------------------------- /server/hls.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/server/hls.cpp -------------------------------------------------------------------------------- /server/hls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/server/hls.h -------------------------------------------------------------------------------- /server/media_writer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/server/media_writer.cpp -------------------------------------------------------------------------------- /server/media_writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/server/media_writer.h -------------------------------------------------------------------------------- /server/motion_handler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/server/motion_handler.cpp -------------------------------------------------------------------------------- /server/motion_handler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/server/motion_handler.h -------------------------------------------------------------------------------- /server/motion_processor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/server/motion_processor.cpp -------------------------------------------------------------------------------- /server/motion_processor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/server/motion_processor.h -------------------------------------------------------------------------------- /server/onvif_events.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/server/onvif_events.cpp -------------------------------------------------------------------------------- /server/onvif_events.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/server/onvif_events.h -------------------------------------------------------------------------------- /server/recorder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/server/recorder.cpp -------------------------------------------------------------------------------- /server/recorder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/server/recorder.h -------------------------------------------------------------------------------- /server/reencoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/server/reencoder.cpp -------------------------------------------------------------------------------- /server/reencoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/server/reencoder.h -------------------------------------------------------------------------------- /server/rsyslog.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/server/rsyslog.conf -------------------------------------------------------------------------------- /server/rtsp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/server/rtsp.cpp -------------------------------------------------------------------------------- /server/rtsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/server/rtsp.h -------------------------------------------------------------------------------- /server/scaler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/server/scaler.cpp -------------------------------------------------------------------------------- /server/scaler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/server/scaler.h -------------------------------------------------------------------------------- /server/signals.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/server/signals.c -------------------------------------------------------------------------------- /server/status_server.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/server/status_server.cpp -------------------------------------------------------------------------------- /server/status_server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/server/status_server.h -------------------------------------------------------------------------------- /server/streaming.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/server/streaming.cpp -------------------------------------------------------------------------------- /server/substream-thread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/server/substream-thread.cpp -------------------------------------------------------------------------------- /server/substream-thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/server/substream-thread.h -------------------------------------------------------------------------------- /server/trigger_processor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/server/trigger_processor.cpp -------------------------------------------------------------------------------- /server/trigger_processor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/server/trigger_processor.h -------------------------------------------------------------------------------- /server/trigger_server.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/server/trigger_server.cpp -------------------------------------------------------------------------------- /server/trigger_server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/server/trigger_server.h -------------------------------------------------------------------------------- /server/vaapi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/server/vaapi.cpp -------------------------------------------------------------------------------- /server/vaapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/server/vaapi.h -------------------------------------------------------------------------------- /server/watermarker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/server/watermarker.cpp -------------------------------------------------------------------------------- /server/watermarker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/server/watermarker.h -------------------------------------------------------------------------------- /server/xml_string_writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/server/xml_string_writer.h -------------------------------------------------------------------------------- /test_stats_api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/test_stats_api.php -------------------------------------------------------------------------------- /test_storage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/test_storage.cpp -------------------------------------------------------------------------------- /utils/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/utils/.gitignore -------------------------------------------------------------------------------- /utils/BCMK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/utils/BCMK -------------------------------------------------------------------------------- /utils/getaudio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/utils/getaudio.c -------------------------------------------------------------------------------- /utils/pelcocmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/utils/pelcocmd.c -------------------------------------------------------------------------------- /utils/ptzcmd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/utils/ptzcmd.cpp -------------------------------------------------------------------------------- /utils/rtsp-streaminfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/utils/rtsp-streaminfo.c -------------------------------------------------------------------------------- /utils/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/utils/utils.h -------------------------------------------------------------------------------- /www/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/.htaccess -------------------------------------------------------------------------------- /www/ajax/activeusers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/ajax/activeusers.php -------------------------------------------------------------------------------- /www/ajax/addip.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/ajax/addip.php -------------------------------------------------------------------------------- /www/ajax/backup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/ajax/backup.php -------------------------------------------------------------------------------- /www/ajax/cameraaccess.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/ajax/cameraaccess.php -------------------------------------------------------------------------------- /www/ajax/cameraperms.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/ajax/cameraperms.php -------------------------------------------------------------------------------- /www/ajax/changepwd.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/ajax/changepwd.php -------------------------------------------------------------------------------- /www/ajax/devices.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/ajax/devices.php -------------------------------------------------------------------------------- /www/ajax/deviceschedule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/ajax/deviceschedule.php -------------------------------------------------------------------------------- /www/ajax/discoverCameras.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/ajax/discoverCameras.php -------------------------------------------------------------------------------- /www/ajax/downloadlogs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/ajax/downloadlogs.php -------------------------------------------------------------------------------- /www/ajax/editip.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/ajax/editip.php -------------------------------------------------------------------------------- /www/ajax/events.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/ajax/events.php -------------------------------------------------------------------------------- /www/ajax/events/eventsEvents.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/ajax/events/eventsEvents.php -------------------------------------------------------------------------------- /www/ajax/events/eventsIndex.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/ajax/events/eventsIndex.php -------------------------------------------------------------------------------- /www/ajax/general.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/ajax/general.php -------------------------------------------------------------------------------- /www/ajax/health.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/ajax/health.php -------------------------------------------------------------------------------- /www/ajax/ipcameracheck.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/ajax/ipcameracheck.php -------------------------------------------------------------------------------- /www/ajax/ipcamerasetup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/ajax/ipcamerasetup.php -------------------------------------------------------------------------------- /www/ajax/layouts.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/ajax/layouts.php -------------------------------------------------------------------------------- /www/ajax/licenses.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/ajax/licenses.php -------------------------------------------------------------------------------- /www/ajax/liveview.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/ajax/liveview.php -------------------------------------------------------------------------------- /www/ajax/log.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/ajax/log.php -------------------------------------------------------------------------------- /www/ajax/login.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/ajax/login.php -------------------------------------------------------------------------------- /www/ajax/loginapp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/ajax/loginapp.php -------------------------------------------------------------------------------- /www/ajax/logout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/ajax/logout.php -------------------------------------------------------------------------------- /www/ajax/media.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/ajax/media.php -------------------------------------------------------------------------------- /www/ajax/media/mediaActive.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/ajax/media/mediaActive.php -------------------------------------------------------------------------------- /www/ajax/media/mediaHls.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/ajax/media/mediaHls.php -------------------------------------------------------------------------------- /www/ajax/media/mediaIndex.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/ajax/media/mediaIndex.php -------------------------------------------------------------------------------- /www/ajax/media/mediaMjpeg.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/ajax/media/mediaMjpeg.php -------------------------------------------------------------------------------- /www/ajax/media/mediaPtz.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/ajax/media/mediaPtz.php -------------------------------------------------------------------------------- /www/ajax/media/mediaRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/ajax/media/mediaRequest.php -------------------------------------------------------------------------------- /www/ajax/media/mediaStreamMp4.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/ajax/media/mediaStreamMp4.php -------------------------------------------------------------------------------- /www/ajax/media/mediaTrigger.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/ajax/media/mediaTrigger.php -------------------------------------------------------------------------------- /www/ajax/monitor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/ajax/monitor.php -------------------------------------------------------------------------------- /www/ajax/monitoring/stats.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/ajax/monitoring/stats.php -------------------------------------------------------------------------------- /www/ajax/motionmap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/ajax/motionmap.php -------------------------------------------------------------------------------- /www/ajax/news.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/ajax/news.php -------------------------------------------------------------------------------- /www/ajax/newversion.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/ajax/newversion.php -------------------------------------------------------------------------------- /www/ajax/notifications.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/ajax/notifications.php -------------------------------------------------------------------------------- /www/ajax/playback.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/ajax/playback.php -------------------------------------------------------------------------------- /www/ajax/profile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/ajax/profile.php -------------------------------------------------------------------------------- /www/ajax/ptzpresetedit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/ajax/ptzpresetedit.php -------------------------------------------------------------------------------- /www/ajax/ptzpresetlist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/ajax/ptzpresetlist.php -------------------------------------------------------------------------------- /www/ajax/ptzsettings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/ajax/ptzsettings.php -------------------------------------------------------------------------------- /www/ajax/redirect.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/ajax/redirect.php -------------------------------------------------------------------------------- /www/ajax/reencode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/ajax/reencode.php -------------------------------------------------------------------------------- /www/ajax/statistics.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/ajax/statistics.php -------------------------------------------------------------------------------- /www/ajax/stats.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/ajax/stats.php -------------------------------------------------------------------------------- /www/ajax/storage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/ajax/storage.php -------------------------------------------------------------------------------- /www/ajax/storagecheck.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/ajax/storagecheck.php -------------------------------------------------------------------------------- /www/ajax/subdomainprovider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/ajax/subdomainprovider.php -------------------------------------------------------------------------------- /www/ajax/subdomainproviderbase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/ajax/subdomainproviderbase.php -------------------------------------------------------------------------------- /www/ajax/subdomainprovidercron.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/ajax/subdomainprovidercron.php -------------------------------------------------------------------------------- /www/ajax/subdomainproviderdestroy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/ajax/subdomainproviderdestroy.php -------------------------------------------------------------------------------- /www/ajax/subdomainprovidergetip.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/ajax/subdomainprovidergetip.php -------------------------------------------------------------------------------- /www/ajax/subdomainproviderquery.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/ajax/subdomainproviderquery.php -------------------------------------------------------------------------------- /www/ajax/update.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/ajax/update.php -------------------------------------------------------------------------------- /www/ajax/updateiplist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/ajax/updateiplist.php -------------------------------------------------------------------------------- /www/ajax/users.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/ajax/users.php -------------------------------------------------------------------------------- /www/ajax/vars.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/ajax/vars.php -------------------------------------------------------------------------------- /www/ajax/videoadj.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/ajax/videoadj.php -------------------------------------------------------------------------------- /www/ajax/webhook.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/ajax/webhook.php -------------------------------------------------------------------------------- /www/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/composer.json -------------------------------------------------------------------------------- /www/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/favicon.ico -------------------------------------------------------------------------------- /www/img/datepicker/buttons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/img/datepicker/buttons.png -------------------------------------------------------------------------------- /www/img/datepicker/days.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/img/datepicker/days.png -------------------------------------------------------------------------------- /www/img/datepicker/frame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/img/datepicker/frame.png -------------------------------------------------------------------------------- /www/img/datepicker/months.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/img/datepicker/months.png -------------------------------------------------------------------------------- /www/img/datepicker/years.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/img/datepicker/years.png -------------------------------------------------------------------------------- /www/img/gradient.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/img/gradient.png -------------------------------------------------------------------------------- /www/img/gradient_120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/img/gradient_120.png -------------------------------------------------------------------------------- /www/img/gradient_120_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/img/gradient_120_light.png -------------------------------------------------------------------------------- /www/img/icons/activeusers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/img/icons/activeusers.png -------------------------------------------------------------------------------- /www/img/icons/add_rule.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/img/icons/add_rule.png -------------------------------------------------------------------------------- /www/img/icons/backup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/img/icons/backup.png -------------------------------------------------------------------------------- /www/img/icons/bnc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/img/icons/bnc.png -------------------------------------------------------------------------------- /www/img/icons/check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/img/icons/check.png -------------------------------------------------------------------------------- /www/img/icons/client.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/img/icons/client.png -------------------------------------------------------------------------------- /www/img/icons/cross.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/img/icons/cross.png -------------------------------------------------------------------------------- /www/img/icons/cross_.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/img/icons/cross_.png -------------------------------------------------------------------------------- /www/img/icons/device.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/img/icons/device.png -------------------------------------------------------------------------------- /www/img/icons/device_.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/img/icons/device_.png -------------------------------------------------------------------------------- /www/img/icons/dvr_card.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/img/icons/dvr_card.png -------------------------------------------------------------------------------- /www/img/icons/excl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/img/icons/excl.png -------------------------------------------------------------------------------- /www/img/icons/general.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/img/icons/general.png -------------------------------------------------------------------------------- /www/img/icons/help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/img/icons/help.png -------------------------------------------------------------------------------- /www/img/icons/knob.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/img/icons/knob.png -------------------------------------------------------------------------------- /www/img/icons/layouts/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/img/icons/layouts/1.png -------------------------------------------------------------------------------- /www/img/icons/layouts/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/img/icons/layouts/16.png -------------------------------------------------------------------------------- /www/img/icons/layouts/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/img/icons/layouts/4.png -------------------------------------------------------------------------------- /www/img/icons/layouts/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/img/icons/layouts/9.png -------------------------------------------------------------------------------- /www/img/icons/layouts/add-column.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/img/icons/layouts/add-column.png -------------------------------------------------------------------------------- /www/img/icons/layouts/add-row.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/img/icons/layouts/add-row.png -------------------------------------------------------------------------------- /www/img/icons/layouts/del-column.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/img/icons/layouts/del-column.png -------------------------------------------------------------------------------- /www/img/icons/layouts/del-row.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/img/icons/layouts/del-row.png -------------------------------------------------------------------------------- /www/img/icons/layouts/disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/img/icons/layouts/disabled.png -------------------------------------------------------------------------------- /www/img/icons/layouts/hls-not-support.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/img/icons/layouts/hls-not-support.png -------------------------------------------------------------------------------- /www/img/icons/layouts/loading.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/img/icons/layouts/loading.png -------------------------------------------------------------------------------- /www/img/icons/layouts/no-device-id.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/img/icons/layouts/no-device-id.png -------------------------------------------------------------------------------- /www/img/icons/layouts/no-permission.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/img/icons/layouts/no-permission.png -------------------------------------------------------------------------------- /www/img/icons/layouts/none.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/img/icons/layouts/none.png -------------------------------------------------------------------------------- /www/img/icons/layouts/not-found.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/img/icons/layouts/not-found.png -------------------------------------------------------------------------------- /www/img/icons/licensing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/img/icons/licensing.png -------------------------------------------------------------------------------- /www/img/icons/liveview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/img/icons/liveview.png -------------------------------------------------------------------------------- /www/img/icons/ln.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/img/icons/ln.png -------------------------------------------------------------------------------- /www/img/icons/log.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/img/icons/log.png -------------------------------------------------------------------------------- /www/img/icons/mail_rule.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/img/icons/mail_rule.png -------------------------------------------------------------------------------- /www/img/icons/menu/clear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/img/icons/menu/clear.png -------------------------------------------------------------------------------- /www/img/icons/menu/config.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/img/icons/menu/config.png -------------------------------------------------------------------------------- /www/img/icons/menu/delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/img/icons/menu/delete.png -------------------------------------------------------------------------------- /www/img/icons/menu/edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/img/icons/menu/edit.png -------------------------------------------------------------------------------- /www/img/icons/menu/motion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/img/icons/menu/motion.png -------------------------------------------------------------------------------- /www/img/icons/menu/ptz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/img/icons/menu/ptz.png -------------------------------------------------------------------------------- /www/img/icons/menu/save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/img/icons/menu/save.png -------------------------------------------------------------------------------- /www/img/icons/menu/schedule.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/img/icons/menu/schedule.png -------------------------------------------------------------------------------- /www/img/icons/news.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/img/icons/news.png -------------------------------------------------------------------------------- /www/img/icons/notifications.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/img/icons/notifications.png -------------------------------------------------------------------------------- /www/img/icons/plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/img/icons/plus.png -------------------------------------------------------------------------------- /www/img/icons/port.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/img/icons/port.png -------------------------------------------------------------------------------- /www/img/icons/schedule.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/img/icons/schedule.png -------------------------------------------------------------------------------- /www/img/icons/statistics.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/img/icons/statistics.png -------------------------------------------------------------------------------- /www/img/icons/storage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/img/icons/storage.png -------------------------------------------------------------------------------- /www/img/icons/user_check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/img/icons/user_check.png -------------------------------------------------------------------------------- /www/img/icons/users.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/img/icons/users.png -------------------------------------------------------------------------------- /www/img/icons/users_new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/img/icons/users_new.png -------------------------------------------------------------------------------- /www/img/icons/users_new_large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/img/icons/users_new_large.png -------------------------------------------------------------------------------- /www/img/loading-progress.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/img/loading-progress.gif -------------------------------------------------------------------------------- /www/img/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/img/loading.gif -------------------------------------------------------------------------------- /www/img/loadingGif.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/img/loadingGif.gif -------------------------------------------------------------------------------- /www/img/logo-large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/img/logo-large.png -------------------------------------------------------------------------------- /www/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/img/logo.png -------------------------------------------------------------------------------- /www/img/password_header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/img/password_header.png -------------------------------------------------------------------------------- /www/img/pbar-green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/img/pbar-green.png -------------------------------------------------------------------------------- /www/img/pbar-red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/img/pbar-red.png -------------------------------------------------------------------------------- /www/img/pbar-yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/img/pbar-yellow.png -------------------------------------------------------------------------------- /www/img/ptz/d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/img/ptz/d.png -------------------------------------------------------------------------------- /www/img/ptz/in.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/img/ptz/in.png -------------------------------------------------------------------------------- /www/img/ptz/l.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/img/ptz/l.png -------------------------------------------------------------------------------- /www/img/ptz/ld.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/img/ptz/ld.png -------------------------------------------------------------------------------- /www/img/ptz/lu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/img/ptz/lu.png -------------------------------------------------------------------------------- /www/img/ptz/out.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/img/ptz/out.png -------------------------------------------------------------------------------- /www/img/ptz/r.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/img/ptz/r.png -------------------------------------------------------------------------------- /www/img/ptz/rd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/img/ptz/rd.png -------------------------------------------------------------------------------- /www/img/ptz/ru.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/img/ptz/ru.png -------------------------------------------------------------------------------- /www/img/ptz/u.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/img/ptz/u.png -------------------------------------------------------------------------------- /www/img/username_header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/img/username_header.png -------------------------------------------------------------------------------- /www/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/index.php -------------------------------------------------------------------------------- /www/lib/Controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/lib/Controller.php -------------------------------------------------------------------------------- /www/lib/Helpers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/lib/Helpers.php -------------------------------------------------------------------------------- /www/lib/Inp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/lib/Inp.php -------------------------------------------------------------------------------- /www/lib/Ponvif.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/lib/Ponvif.php -------------------------------------------------------------------------------- /www/lib/Reply.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/lib/Reply.php -------------------------------------------------------------------------------- /www/lib/Route.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/lib/Route.php -------------------------------------------------------------------------------- /www/lib/Session.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/lib/Session.php -------------------------------------------------------------------------------- /www/lib/VarPub.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/lib/VarPub.php -------------------------------------------------------------------------------- /www/lib/View.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/lib/View.php -------------------------------------------------------------------------------- /www/lib/bc_license_wrapper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/lib/bc_license_wrapper.php -------------------------------------------------------------------------------- /www/lib/db.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/lib/db.php -------------------------------------------------------------------------------- /www/lib/ipcamlib.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/lib/ipcamlib.php -------------------------------------------------------------------------------- /www/lib/js/login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/lib/js/login.js -------------------------------------------------------------------------------- /www/lib/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/lib/js/main.js -------------------------------------------------------------------------------- /www/lib/js/viewer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/lib/js/viewer.js -------------------------------------------------------------------------------- /www/lib/lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/lib/lang.php -------------------------------------------------------------------------------- /www/lib/lib.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/lib/lib.php -------------------------------------------------------------------------------- /www/lib/mailer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/lib/mailer.php -------------------------------------------------------------------------------- /www/lib/mootools-more.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/lib/mootools-more.js -------------------------------------------------------------------------------- /www/lib/mootools-plugins.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/lib/mootools-plugins.js -------------------------------------------------------------------------------- /www/lib/mootools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/lib/mootools.js -------------------------------------------------------------------------------- /www/lib/upgrade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/lib/upgrade.php -------------------------------------------------------------------------------- /www/lib/vaapi_autodetect.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/lib/vaapi_autodetect.php -------------------------------------------------------------------------------- /www/lib/var.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/lib/var.php -------------------------------------------------------------------------------- /www/mobile-app-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/mobile-app-config.json -------------------------------------------------------------------------------- /www/template/ajax/activeusers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/template/ajax/activeusers.php -------------------------------------------------------------------------------- /www/template/ajax/addip.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/template/ajax/addip.php -------------------------------------------------------------------------------- /www/template/ajax/backup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/template/ajax/backup.php -------------------------------------------------------------------------------- /www/template/ajax/cameraperms.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/template/ajax/cameraperms.php -------------------------------------------------------------------------------- /www/template/ajax/devices.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/template/ajax/devices.php -------------------------------------------------------------------------------- /www/template/ajax/deviceschedule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/template/ajax/deviceschedule.php -------------------------------------------------------------------------------- /www/template/ajax/discoverCameras.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/template/ajax/discoverCameras.php -------------------------------------------------------------------------------- /www/template/ajax/editip.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/template/ajax/editip.php -------------------------------------------------------------------------------- /www/template/ajax/general.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/template/ajax/general.php -------------------------------------------------------------------------------- /www/template/ajax/log.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/template/ajax/log.php -------------------------------------------------------------------------------- /www/template/ajax/login.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /www/template/ajax/motionmap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/template/ajax/motionmap.php -------------------------------------------------------------------------------- /www/template/ajax/news.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/template/ajax/news.php -------------------------------------------------------------------------------- /www/template/ajax/newversion.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/template/ajax/newversion.php -------------------------------------------------------------------------------- /www/template/ajax/notifications.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/template/ajax/notifications.php -------------------------------------------------------------------------------- /www/template/ajax/playback/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/template/ajax/playback/index.php -------------------------------------------------------------------------------- /www/template/ajax/playback/listEvents.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/template/ajax/playback/listEvents.php -------------------------------------------------------------------------------- /www/template/ajax/profile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/template/ajax/profile.php -------------------------------------------------------------------------------- /www/template/ajax/ptzpresetedit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/template/ajax/ptzpresetedit.php -------------------------------------------------------------------------------- /www/template/ajax/ptzpresetlist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/template/ajax/ptzpresetlist.php -------------------------------------------------------------------------------- /www/template/ajax/ptzsettings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/template/ajax/ptzsettings.php -------------------------------------------------------------------------------- /www/template/ajax/reencode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/template/ajax/reencode.php -------------------------------------------------------------------------------- /www/template/ajax/statistics.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/template/ajax/statistics.php -------------------------------------------------------------------------------- /www/template/ajax/storage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/template/ajax/storage.php -------------------------------------------------------------------------------- /www/template/ajax/subdomainprovider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/template/ajax/subdomainprovider.php -------------------------------------------------------------------------------- /www/template/ajax/updateiplist.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /www/template/ajax/users.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/template/ajax/users.php -------------------------------------------------------------------------------- /www/template/ajax/videoadj.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/template/ajax/videoadj.php -------------------------------------------------------------------------------- /www/template/ajax/webhook.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/template/ajax/webhook.php -------------------------------------------------------------------------------- /www/template/bower_components/animate.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/template/bower_components/animate.css -------------------------------------------------------------------------------- /www/template/bower_components/bootstrap-notify.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/template/bower_components/bootstrap-notify.min.js -------------------------------------------------------------------------------- /www/template/bower_components/bootstrap-table/bootstrap-table.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/template/bower_components/bootstrap-table/bootstrap-table.min.css -------------------------------------------------------------------------------- /www/template/bower_components/bootstrap-table/bootstrap-table.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/template/bower_components/bootstrap-table/bootstrap-table.min.js -------------------------------------------------------------------------------- /www/template/bower_components/bootstrap/dist/css/bootstrap-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/template/bower_components/bootstrap/dist/css/bootstrap-theme.css -------------------------------------------------------------------------------- /www/template/bower_components/bootstrap/dist/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/template/bower_components/bootstrap/dist/css/bootstrap.css -------------------------------------------------------------------------------- /www/template/bower_components/bootstrap/dist/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/template/bower_components/bootstrap/dist/css/bootstrap.css.map -------------------------------------------------------------------------------- /www/template/bower_components/bootstrap/dist/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/template/bower_components/bootstrap/dist/css/bootstrap.min.css -------------------------------------------------------------------------------- /www/template/bower_components/bootstrap/dist/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/template/bower_components/bootstrap/dist/js/bootstrap.js -------------------------------------------------------------------------------- /www/template/bower_components/bootstrap/dist/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/template/bower_components/bootstrap/dist/js/bootstrap.min.js -------------------------------------------------------------------------------- /www/template/bower_components/bootstrap/dist/js/npm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/template/bower_components/bootstrap/dist/js/npm.js -------------------------------------------------------------------------------- /www/template/bower_components/font-awesome/css/font-awesome.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/template/bower_components/font-awesome/css/font-awesome.css -------------------------------------------------------------------------------- /www/template/bower_components/font-awesome/css/font-awesome.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/template/bower_components/font-awesome/css/font-awesome.min.css -------------------------------------------------------------------------------- /www/template/bower_components/font-awesome/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/template/bower_components/font-awesome/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /www/template/bower_components/jquery/dist/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/template/bower_components/jquery/dist/jquery.min.js -------------------------------------------------------------------------------- /www/template/bower_components/mediaelement/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/template/bower_components/mediaelement/background.png -------------------------------------------------------------------------------- /www/template/bower_components/mediaelement/bigplay.fw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/template/bower_components/mediaelement/bigplay.fw.png -------------------------------------------------------------------------------- /www/template/bower_components/mediaelement/bigplay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/template/bower_components/mediaelement/bigplay.png -------------------------------------------------------------------------------- /www/template/bower_components/mediaelement/bigplay.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/template/bower_components/mediaelement/bigplay.svg -------------------------------------------------------------------------------- /www/template/bower_components/mediaelement/controls-ted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/template/bower_components/mediaelement/controls-ted.png -------------------------------------------------------------------------------- /www/template/bower_components/mediaelement/controls-wmp-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/template/bower_components/mediaelement/controls-wmp-bg.png -------------------------------------------------------------------------------- /www/template/bower_components/mediaelement/controls-wmp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/template/bower_components/mediaelement/controls-wmp.png -------------------------------------------------------------------------------- /www/template/bower_components/mediaelement/controls.fw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/template/bower_components/mediaelement/controls.fw.png -------------------------------------------------------------------------------- /www/template/bower_components/mediaelement/controls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/template/bower_components/mediaelement/controls.png -------------------------------------------------------------------------------- /www/template/bower_components/mediaelement/controls.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/template/bower_components/mediaelement/controls.svg -------------------------------------------------------------------------------- /www/template/bower_components/mediaelement/jumpforward.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/template/bower_components/mediaelement/jumpforward.png -------------------------------------------------------------------------------- /www/template/bower_components/mediaelement/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/template/bower_components/mediaelement/loading.gif -------------------------------------------------------------------------------- /www/template/bower_components/mediaelement/mediaelement-and-player.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/template/bower_components/mediaelement/mediaelement-and-player.js -------------------------------------------------------------------------------- /www/template/bower_components/mediaelement/mediaelementplayer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/template/bower_components/mediaelement/mediaelementplayer.css -------------------------------------------------------------------------------- /www/template/bower_components/mediaelement/skipback.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/template/bower_components/mediaelement/skipback.png -------------------------------------------------------------------------------- /www/template/bower_components/metisMenu/dist/metisMenu.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/template/bower_components/metisMenu/dist/metisMenu.css -------------------------------------------------------------------------------- /www/template/bower_components/metisMenu/dist/metisMenu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/template/bower_components/metisMenu/dist/metisMenu.js -------------------------------------------------------------------------------- /www/template/bower_components/metisMenu/dist/metisMenu.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/template/bower_components/metisMenu/dist/metisMenu.min.css -------------------------------------------------------------------------------- /www/template/bower_components/metisMenu/dist/metisMenu.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/template/bower_components/metisMenu/dist/metisMenu.min.js -------------------------------------------------------------------------------- /www/template/bower_components/morrisjs/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/template/bower_components/morrisjs/.bower.json -------------------------------------------------------------------------------- /www/template/bower_components/morrisjs/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/template/bower_components/morrisjs/.gitignore -------------------------------------------------------------------------------- /www/template/bower_components/morrisjs/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/template/bower_components/morrisjs/.travis.yml -------------------------------------------------------------------------------- /www/template/bower_components/morrisjs/Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/template/bower_components/morrisjs/Gruntfile.js -------------------------------------------------------------------------------- /www/template/bower_components/morrisjs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/template/bower_components/morrisjs/README.md -------------------------------------------------------------------------------- /www/template/bower_components/morrisjs/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/template/bower_components/morrisjs/bower.json -------------------------------------------------------------------------------- /www/template/bower_components/morrisjs/bower.travis.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/template/bower_components/morrisjs/bower.travis.json -------------------------------------------------------------------------------- /www/template/bower_components/morrisjs/examples/_template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/template/bower_components/morrisjs/examples/_template.html -------------------------------------------------------------------------------- /www/template/bower_components/morrisjs/examples/area-as-line.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/template/bower_components/morrisjs/examples/area-as-line.html -------------------------------------------------------------------------------- /www/template/bower_components/morrisjs/examples/area.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/template/bower_components/morrisjs/examples/area.html -------------------------------------------------------------------------------- /www/template/bower_components/morrisjs/examples/bar-colors.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/template/bower_components/morrisjs/examples/bar-colors.html -------------------------------------------------------------------------------- /www/template/bower_components/morrisjs/examples/bar-no-axes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/template/bower_components/morrisjs/examples/bar-no-axes.html -------------------------------------------------------------------------------- /www/template/bower_components/morrisjs/examples/bar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/template/bower_components/morrisjs/examples/bar.html -------------------------------------------------------------------------------- /www/template/bower_components/morrisjs/examples/days.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/template/bower_components/morrisjs/examples/days.html -------------------------------------------------------------------------------- /www/template/bower_components/morrisjs/examples/diagonal-xlabels.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/template/bower_components/morrisjs/examples/diagonal-xlabels.html -------------------------------------------------------------------------------- /www/template/bower_components/morrisjs/examples/donut-colors.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/template/bower_components/morrisjs/examples/donut-colors.html -------------------------------------------------------------------------------- /www/template/bower_components/morrisjs/examples/donut-formatter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/template/bower_components/morrisjs/examples/donut-formatter.html -------------------------------------------------------------------------------- /www/template/bower_components/morrisjs/examples/donut.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/template/bower_components/morrisjs/examples/donut.html -------------------------------------------------------------------------------- /www/template/bower_components/morrisjs/examples/dst.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/template/bower_components/morrisjs/examples/dst.html -------------------------------------------------------------------------------- /www/template/bower_components/morrisjs/examples/events.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/template/bower_components/morrisjs/examples/events.html -------------------------------------------------------------------------------- /www/template/bower_components/morrisjs/examples/goals.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/template/bower_components/morrisjs/examples/goals.html -------------------------------------------------------------------------------- /www/template/bower_components/morrisjs/examples/lib/example.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/template/bower_components/morrisjs/examples/lib/example.css -------------------------------------------------------------------------------- /www/template/bower_components/morrisjs/examples/lib/example.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/template/bower_components/morrisjs/examples/lib/example.js -------------------------------------------------------------------------------- /www/template/bower_components/morrisjs/examples/months-no-smooth.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/template/bower_components/morrisjs/examples/months-no-smooth.html -------------------------------------------------------------------------------- /www/template/bower_components/morrisjs/examples/negative.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/template/bower_components/morrisjs/examples/negative.html -------------------------------------------------------------------------------- /www/template/bower_components/morrisjs/examples/no-grid.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/template/bower_components/morrisjs/examples/no-grid.html -------------------------------------------------------------------------------- /www/template/bower_components/morrisjs/examples/non-continuous.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/template/bower_components/morrisjs/examples/non-continuous.html -------------------------------------------------------------------------------- /www/template/bower_components/morrisjs/examples/non-date.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/template/bower_components/morrisjs/examples/non-date.html -------------------------------------------------------------------------------- /www/template/bower_components/morrisjs/examples/quarters.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/template/bower_components/morrisjs/examples/quarters.html -------------------------------------------------------------------------------- /www/template/bower_components/morrisjs/examples/resize.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/template/bower_components/morrisjs/examples/resize.html -------------------------------------------------------------------------------- /www/template/bower_components/morrisjs/examples/stacked_bars.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/template/bower_components/morrisjs/examples/stacked_bars.html -------------------------------------------------------------------------------- /www/template/bower_components/morrisjs/examples/timestamps.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/template/bower_components/morrisjs/examples/timestamps.html -------------------------------------------------------------------------------- /www/template/bower_components/morrisjs/examples/updating.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/template/bower_components/morrisjs/examples/updating.html -------------------------------------------------------------------------------- /www/template/bower_components/morrisjs/examples/weeks.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/template/bower_components/morrisjs/examples/weeks.html -------------------------------------------------------------------------------- /www/template/bower_components/morrisjs/examples/years.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/template/bower_components/morrisjs/examples/years.html -------------------------------------------------------------------------------- /www/template/bower_components/morrisjs/less/morris.core.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/template/bower_components/morrisjs/less/morris.core.less -------------------------------------------------------------------------------- /www/template/bower_components/morrisjs/lib/morris.area.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/template/bower_components/morrisjs/lib/morris.area.coffee -------------------------------------------------------------------------------- /www/template/bower_components/morrisjs/lib/morris.bar.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/template/bower_components/morrisjs/lib/morris.bar.coffee -------------------------------------------------------------------------------- /www/template/bower_components/morrisjs/lib/morris.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/template/bower_components/morrisjs/lib/morris.coffee -------------------------------------------------------------------------------- /www/template/bower_components/morrisjs/lib/morris.donut.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/template/bower_components/morrisjs/lib/morris.donut.coffee -------------------------------------------------------------------------------- /www/template/bower_components/morrisjs/lib/morris.grid.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/template/bower_components/morrisjs/lib/morris.grid.coffee -------------------------------------------------------------------------------- /www/template/bower_components/morrisjs/lib/morris.hover.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/template/bower_components/morrisjs/lib/morris.hover.coffee -------------------------------------------------------------------------------- /www/template/bower_components/morrisjs/lib/morris.line.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/template/bower_components/morrisjs/lib/morris.line.coffee -------------------------------------------------------------------------------- /www/template/bower_components/morrisjs/morris.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/template/bower_components/morrisjs/morris.css -------------------------------------------------------------------------------- /www/template/bower_components/morrisjs/morris.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/template/bower_components/morrisjs/morris.js -------------------------------------------------------------------------------- /www/template/bower_components/morrisjs/morris.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/template/bower_components/morrisjs/morris.min.js -------------------------------------------------------------------------------- /www/template/bower_components/morrisjs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/template/bower_components/morrisjs/package.json -------------------------------------------------------------------------------- /www/template/bower_components/morrisjs/spec/lib/area/area_spec.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/template/bower_components/morrisjs/spec/lib/area/area_spec.coffee -------------------------------------------------------------------------------- /www/template/bower_components/morrisjs/spec/lib/bar/bar_spec.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/template/bower_components/morrisjs/spec/lib/bar/bar_spec.coffee -------------------------------------------------------------------------------- /www/template/bower_components/morrisjs/spec/lib/bar/colours.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/template/bower_components/morrisjs/spec/lib/bar/colours.coffee -------------------------------------------------------------------------------- /www/template/bower_components/morrisjs/spec/lib/commas_spec.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/template/bower_components/morrisjs/spec/lib/commas_spec.coffee -------------------------------------------------------------------------------- /www/template/bower_components/morrisjs/spec/lib/hover_spec.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/template/bower_components/morrisjs/spec/lib/hover_spec.coffee -------------------------------------------------------------------------------- /www/template/bower_components/morrisjs/spec/lib/line/line_spec.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/template/bower_components/morrisjs/spec/lib/line/line_spec.coffee -------------------------------------------------------------------------------- /www/template/bower_components/morrisjs/spec/lib/pad_spec.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/template/bower_components/morrisjs/spec/lib/pad_spec.coffee -------------------------------------------------------------------------------- /www/template/bower_components/morrisjs/spec/specs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/template/bower_components/morrisjs/spec/specs.html -------------------------------------------------------------------------------- /www/template/bower_components/morrisjs/spec/viz/examples.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/template/bower_components/morrisjs/spec/viz/examples.js -------------------------------------------------------------------------------- /www/template/bower_components/morrisjs/spec/viz/exemplary/area0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/template/bower_components/morrisjs/spec/viz/exemplary/area0.png -------------------------------------------------------------------------------- /www/template/bower_components/morrisjs/spec/viz/exemplary/bar0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/template/bower_components/morrisjs/spec/viz/exemplary/bar0.png -------------------------------------------------------------------------------- /www/template/bower_components/morrisjs/spec/viz/exemplary/line0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/template/bower_components/morrisjs/spec/viz/exemplary/line0.png -------------------------------------------------------------------------------- /www/template/bower_components/morrisjs/spec/viz/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/template/bower_components/morrisjs/spec/viz/run.sh -------------------------------------------------------------------------------- /www/template/bower_components/morrisjs/spec/viz/test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/template/bower_components/morrisjs/spec/viz/test.html -------------------------------------------------------------------------------- /www/template/bower_components/morrisjs/spec/viz/visual_specs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/template/bower_components/morrisjs/spec/viz/visual_specs.js -------------------------------------------------------------------------------- /www/template/bower_components/raphael/raphael-min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/template/bower_components/raphael/raphael-min.js -------------------------------------------------------------------------------- /www/template/bower_components/raphael/raphael.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/template/bower_components/raphael/raphael.js -------------------------------------------------------------------------------- /www/template/changepwd.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/template/changepwd.php -------------------------------------------------------------------------------- /www/template/datepicker.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/template/datepicker.css -------------------------------------------------------------------------------- /www/template/devices/camera.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/template/devices/camera.php -------------------------------------------------------------------------------- /www/template/dist/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/template/dist/css/main.css -------------------------------------------------------------------------------- /www/template/dist/css/sb-admin-2.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/template/dist/css/sb-admin-2.css -------------------------------------------------------------------------------- /www/template/dist/css/timeline.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/template/dist/css/timeline.css -------------------------------------------------------------------------------- /www/template/dist/js/addip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/template/dist/js/addip.js -------------------------------------------------------------------------------- /www/template/dist/js/backup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/template/dist/js/backup.js -------------------------------------------------------------------------------- /www/template/dist/js/devices.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/template/dist/js/devices.js -------------------------------------------------------------------------------- /www/template/dist/js/discoverCameras.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/template/dist/js/discoverCameras.js -------------------------------------------------------------------------------- /www/template/dist/js/editip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/template/dist/js/editip.js -------------------------------------------------------------------------------- /www/template/dist/js/general.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/template/dist/js/general.js -------------------------------------------------------------------------------- /www/template/dist/js/licensing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/template/dist/js/licensing.js -------------------------------------------------------------------------------- /www/template/dist/js/log.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/template/dist/js/log.js -------------------------------------------------------------------------------- /www/template/dist/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/template/dist/js/main.js -------------------------------------------------------------------------------- /www/template/dist/js/main_load.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/template/dist/js/main_load.js -------------------------------------------------------------------------------- /www/template/dist/js/notifications.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/template/dist/js/notifications.js -------------------------------------------------------------------------------- /www/template/dist/js/playback.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/template/dist/js/playback.js -------------------------------------------------------------------------------- /www/template/dist/js/profile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/template/dist/js/profile.js -------------------------------------------------------------------------------- /www/template/dist/js/ptz.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/template/dist/js/ptz.js -------------------------------------------------------------------------------- /www/template/dist/js/ptzpresetlist.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/template/dist/js/ptzpresetlist.js -------------------------------------------------------------------------------- /www/template/dist/js/sb-admin-2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/template/dist/js/sb-admin-2.js -------------------------------------------------------------------------------- /www/template/dist/js/statistics.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/template/dist/js/statistics.js -------------------------------------------------------------------------------- /www/template/dist/js/storage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/template/dist/js/storage.js -------------------------------------------------------------------------------- /www/template/dist/js/subdomainprovider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/template/dist/js/subdomainprovider.js -------------------------------------------------------------------------------- /www/template/dist/js/users.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/template/dist/js/users.js -------------------------------------------------------------------------------- /www/template/dist/js/videoadj.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/template/dist/js/videoadj.js -------------------------------------------------------------------------------- /www/template/dist/js/webhook.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/template/dist/js/webhook.js -------------------------------------------------------------------------------- /www/template/login.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/template/login.php -------------------------------------------------------------------------------- /www/template/main_admin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/template/main_admin.php -------------------------------------------------------------------------------- /www/template/main_viewer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/template/main_viewer.php -------------------------------------------------------------------------------- /www/template/monitoring.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/template/monitoring.php -------------------------------------------------------------------------------- /www/template/notifications/form_rule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/template/notifications/form_rule.php -------------------------------------------------------------------------------- /www/template/notifications/info_rule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/template/notifications/info_rule.php -------------------------------------------------------------------------------- /www/template/schedule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/template/schedule.php -------------------------------------------------------------------------------- /www/template/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/template/styles.css -------------------------------------------------------------------------------- /www/template/styles.viewer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/template/styles.viewer.css -------------------------------------------------------------------------------- /www/vendor/autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/vendor/autoload.php -------------------------------------------------------------------------------- /www/vendor/composer/ClassLoader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/vendor/composer/ClassLoader.php -------------------------------------------------------------------------------- /www/vendor/composer/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/vendor/composer/LICENSE -------------------------------------------------------------------------------- /www/vendor/composer/autoload_classmap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/vendor/composer/autoload_classmap.php -------------------------------------------------------------------------------- /www/vendor/composer/autoload_files.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/vendor/composer/autoload_files.php -------------------------------------------------------------------------------- /www/vendor/composer/autoload_namespaces.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/vendor/composer/autoload_namespaces.php -------------------------------------------------------------------------------- /www/vendor/composer/autoload_psr4.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/vendor/composer/autoload_psr4.php -------------------------------------------------------------------------------- /www/vendor/composer/autoload_real.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/vendor/composer/autoload_real.php -------------------------------------------------------------------------------- /www/vendor/composer/autoload_static.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/vendor/composer/autoload_static.php -------------------------------------------------------------------------------- /www/vendor/composer/installed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/vendor/composer/installed.json -------------------------------------------------------------------------------- /www/vendor/doctrine/lexer/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/vendor/doctrine/lexer/LICENSE -------------------------------------------------------------------------------- /www/vendor/doctrine/lexer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/vendor/doctrine/lexer/README.md -------------------------------------------------------------------------------- /www/vendor/doctrine/lexer/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/vendor/doctrine/lexer/composer.json -------------------------------------------------------------------------------- /www/vendor/doctrine/lexer/lib/Doctrine/Common/Lexer/AbstractLexer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/vendor/doctrine/lexer/lib/Doctrine/Common/Lexer/AbstractLexer.php -------------------------------------------------------------------------------- /www/vendor/egulias/email-validator/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/vendor/egulias/email-validator/LICENSE -------------------------------------------------------------------------------- /www/vendor/egulias/email-validator/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/vendor/egulias/email-validator/composer.json -------------------------------------------------------------------------------- /www/vendor/egulias/email-validator/src/EmailLexer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/vendor/egulias/email-validator/src/EmailLexer.php -------------------------------------------------------------------------------- /www/vendor/egulias/email-validator/src/EmailParser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/vendor/egulias/email-validator/src/EmailParser.php -------------------------------------------------------------------------------- /www/vendor/egulias/email-validator/src/EmailValidator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/vendor/egulias/email-validator/src/EmailValidator.php -------------------------------------------------------------------------------- /www/vendor/egulias/email-validator/src/Exception/AtextAfterCFWS.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/vendor/egulias/email-validator/src/Exception/AtextAfterCFWS.php -------------------------------------------------------------------------------- /www/vendor/egulias/email-validator/src/Exception/CRLFAtTheEnd.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/vendor/egulias/email-validator/src/Exception/CRLFAtTheEnd.php -------------------------------------------------------------------------------- /www/vendor/egulias/email-validator/src/Exception/CRLFX2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/vendor/egulias/email-validator/src/Exception/CRLFX2.php -------------------------------------------------------------------------------- /www/vendor/egulias/email-validator/src/Exception/CRNoLF.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/vendor/egulias/email-validator/src/Exception/CRNoLF.php -------------------------------------------------------------------------------- /www/vendor/egulias/email-validator/src/Exception/CharNotAllowed.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/vendor/egulias/email-validator/src/Exception/CharNotAllowed.php -------------------------------------------------------------------------------- /www/vendor/egulias/email-validator/src/Exception/CommaInDomain.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/vendor/egulias/email-validator/src/Exception/CommaInDomain.php -------------------------------------------------------------------------------- /www/vendor/egulias/email-validator/src/Exception/ConsecutiveAt.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/vendor/egulias/email-validator/src/Exception/ConsecutiveAt.php -------------------------------------------------------------------------------- /www/vendor/egulias/email-validator/src/Exception/ConsecutiveDot.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/vendor/egulias/email-validator/src/Exception/ConsecutiveDot.php -------------------------------------------------------------------------------- /www/vendor/egulias/email-validator/src/Exception/DomainHyphened.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/vendor/egulias/email-validator/src/Exception/DomainHyphened.php -------------------------------------------------------------------------------- /www/vendor/egulias/email-validator/src/Exception/DotAtEnd.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/vendor/egulias/email-validator/src/Exception/DotAtEnd.php -------------------------------------------------------------------------------- /www/vendor/egulias/email-validator/src/Exception/DotAtStart.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/vendor/egulias/email-validator/src/Exception/DotAtStart.php -------------------------------------------------------------------------------- /www/vendor/egulias/email-validator/src/Exception/ExpectingAT.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/vendor/egulias/email-validator/src/Exception/ExpectingAT.php -------------------------------------------------------------------------------- /www/vendor/egulias/email-validator/src/Exception/ExpectingATEXT.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/vendor/egulias/email-validator/src/Exception/ExpectingATEXT.php -------------------------------------------------------------------------------- /www/vendor/egulias/email-validator/src/Exception/ExpectingCTEXT.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/vendor/egulias/email-validator/src/Exception/ExpectingCTEXT.php -------------------------------------------------------------------------------- /www/vendor/egulias/email-validator/src/Exception/ExpectingDTEXT.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/vendor/egulias/email-validator/src/Exception/ExpectingDTEXT.php -------------------------------------------------------------------------------- /www/vendor/egulias/email-validator/src/Exception/ExpectingQPair.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/vendor/egulias/email-validator/src/Exception/ExpectingQPair.php -------------------------------------------------------------------------------- /www/vendor/egulias/email-validator/src/Exception/InvalidEmail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/vendor/egulias/email-validator/src/Exception/InvalidEmail.php -------------------------------------------------------------------------------- /www/vendor/egulias/email-validator/src/Exception/NoDNSRecord.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/vendor/egulias/email-validator/src/Exception/NoDNSRecord.php -------------------------------------------------------------------------------- /www/vendor/egulias/email-validator/src/Exception/NoDomainPart.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/vendor/egulias/email-validator/src/Exception/NoDomainPart.php -------------------------------------------------------------------------------- /www/vendor/egulias/email-validator/src/Exception/NoLocalPart.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/vendor/egulias/email-validator/src/Exception/NoLocalPart.php -------------------------------------------------------------------------------- /www/vendor/egulias/email-validator/src/Exception/UnclosedComment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/vendor/egulias/email-validator/src/Exception/UnclosedComment.php -------------------------------------------------------------------------------- /www/vendor/egulias/email-validator/src/Exception/UnopenedComment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/vendor/egulias/email-validator/src/Exception/UnopenedComment.php -------------------------------------------------------------------------------- /www/vendor/egulias/email-validator/src/Parser/DomainPart.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/vendor/egulias/email-validator/src/Parser/DomainPart.php -------------------------------------------------------------------------------- /www/vendor/egulias/email-validator/src/Parser/LocalPart.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/vendor/egulias/email-validator/src/Parser/LocalPart.php -------------------------------------------------------------------------------- /www/vendor/egulias/email-validator/src/Parser/Parser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/vendor/egulias/email-validator/src/Parser/Parser.php -------------------------------------------------------------------------------- /www/vendor/egulias/email-validator/src/Validation/EmailValidation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/vendor/egulias/email-validator/src/Validation/EmailValidation.php -------------------------------------------------------------------------------- /www/vendor/egulias/email-validator/src/Validation/MultipleErrors.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/vendor/egulias/email-validator/src/Validation/MultipleErrors.php -------------------------------------------------------------------------------- /www/vendor/egulias/email-validator/src/Validation/RFCValidation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/vendor/egulias/email-validator/src/Validation/RFCValidation.php -------------------------------------------------------------------------------- /www/vendor/egulias/email-validator/src/Warning/AddressLiteral.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/vendor/egulias/email-validator/src/Warning/AddressLiteral.php -------------------------------------------------------------------------------- /www/vendor/egulias/email-validator/src/Warning/CFWSNearAt.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/vendor/egulias/email-validator/src/Warning/CFWSNearAt.php -------------------------------------------------------------------------------- /www/vendor/egulias/email-validator/src/Warning/CFWSWithFWS.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/vendor/egulias/email-validator/src/Warning/CFWSWithFWS.php -------------------------------------------------------------------------------- /www/vendor/egulias/email-validator/src/Warning/Comment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/vendor/egulias/email-validator/src/Warning/Comment.php -------------------------------------------------------------------------------- /www/vendor/egulias/email-validator/src/Warning/DeprecatedComment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/vendor/egulias/email-validator/src/Warning/DeprecatedComment.php -------------------------------------------------------------------------------- /www/vendor/egulias/email-validator/src/Warning/DomainLiteral.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/vendor/egulias/email-validator/src/Warning/DomainLiteral.php -------------------------------------------------------------------------------- /www/vendor/egulias/email-validator/src/Warning/DomainTooLong.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/vendor/egulias/email-validator/src/Warning/DomainTooLong.php -------------------------------------------------------------------------------- /www/vendor/egulias/email-validator/src/Warning/EmailTooLong.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/vendor/egulias/email-validator/src/Warning/EmailTooLong.php -------------------------------------------------------------------------------- /www/vendor/egulias/email-validator/src/Warning/IPV6BadChar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/vendor/egulias/email-validator/src/Warning/IPV6BadChar.php -------------------------------------------------------------------------------- /www/vendor/egulias/email-validator/src/Warning/IPV6ColonEnd.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/vendor/egulias/email-validator/src/Warning/IPV6ColonEnd.php -------------------------------------------------------------------------------- /www/vendor/egulias/email-validator/src/Warning/IPV6ColonStart.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/vendor/egulias/email-validator/src/Warning/IPV6ColonStart.php -------------------------------------------------------------------------------- /www/vendor/egulias/email-validator/src/Warning/IPV6Deprecated.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/vendor/egulias/email-validator/src/Warning/IPV6Deprecated.php -------------------------------------------------------------------------------- /www/vendor/egulias/email-validator/src/Warning/IPV6DoubleColon.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/vendor/egulias/email-validator/src/Warning/IPV6DoubleColon.php -------------------------------------------------------------------------------- /www/vendor/egulias/email-validator/src/Warning/IPV6GroupCount.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/vendor/egulias/email-validator/src/Warning/IPV6GroupCount.php -------------------------------------------------------------------------------- /www/vendor/egulias/email-validator/src/Warning/IPV6MaxGroups.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/vendor/egulias/email-validator/src/Warning/IPV6MaxGroups.php -------------------------------------------------------------------------------- /www/vendor/egulias/email-validator/src/Warning/LabelTooLong.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/vendor/egulias/email-validator/src/Warning/LabelTooLong.php -------------------------------------------------------------------------------- /www/vendor/egulias/email-validator/src/Warning/LocalTooLong.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/vendor/egulias/email-validator/src/Warning/LocalTooLong.php -------------------------------------------------------------------------------- /www/vendor/egulias/email-validator/src/Warning/NoDNSMXRecord.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/vendor/egulias/email-validator/src/Warning/NoDNSMXRecord.php -------------------------------------------------------------------------------- /www/vendor/egulias/email-validator/src/Warning/ObsoleteDTEXT.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/vendor/egulias/email-validator/src/Warning/ObsoleteDTEXT.php -------------------------------------------------------------------------------- /www/vendor/egulias/email-validator/src/Warning/QuotedPart.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/vendor/egulias/email-validator/src/Warning/QuotedPart.php -------------------------------------------------------------------------------- /www/vendor/egulias/email-validator/src/Warning/QuotedString.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/vendor/egulias/email-validator/src/Warning/QuotedString.php -------------------------------------------------------------------------------- /www/vendor/egulias/email-validator/src/Warning/TLD.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/vendor/egulias/email-validator/src/Warning/TLD.php -------------------------------------------------------------------------------- /www/vendor/egulias/email-validator/src/Warning/Warning.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/vendor/egulias/email-validator/src/Warning/Warning.php -------------------------------------------------------------------------------- /www/vendor/swiftmailer/swiftmailer/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/vendor/swiftmailer/swiftmailer/.gitattributes -------------------------------------------------------------------------------- /www/vendor/swiftmailer/swiftmailer/.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/vendor/swiftmailer/swiftmailer/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /www/vendor/swiftmailer/swiftmailer/.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/vendor/swiftmailer/swiftmailer/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /www/vendor/swiftmailer/swiftmailer/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/vendor/swiftmailer/swiftmailer/.gitignore -------------------------------------------------------------------------------- /www/vendor/swiftmailer/swiftmailer/.php_cs.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/vendor/swiftmailer/swiftmailer/.php_cs.dist -------------------------------------------------------------------------------- /www/vendor/swiftmailer/swiftmailer/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/vendor/swiftmailer/swiftmailer/.travis.yml -------------------------------------------------------------------------------- /www/vendor/swiftmailer/swiftmailer/CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/vendor/swiftmailer/swiftmailer/CHANGES -------------------------------------------------------------------------------- /www/vendor/swiftmailer/swiftmailer/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/vendor/swiftmailer/swiftmailer/LICENSE -------------------------------------------------------------------------------- /www/vendor/swiftmailer/swiftmailer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/vendor/swiftmailer/swiftmailer/README.md -------------------------------------------------------------------------------- /www/vendor/swiftmailer/swiftmailer/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/vendor/swiftmailer/swiftmailer/composer.json -------------------------------------------------------------------------------- /www/vendor/swiftmailer/swiftmailer/doc/headers.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/vendor/swiftmailer/swiftmailer/doc/headers.rst -------------------------------------------------------------------------------- /www/vendor/swiftmailer/swiftmailer/doc/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/vendor/swiftmailer/swiftmailer/doc/index.rst -------------------------------------------------------------------------------- /www/vendor/swiftmailer/swiftmailer/doc/introduction.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/vendor/swiftmailer/swiftmailer/doc/introduction.rst -------------------------------------------------------------------------------- /www/vendor/swiftmailer/swiftmailer/doc/japanese.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/vendor/swiftmailer/swiftmailer/doc/japanese.rst -------------------------------------------------------------------------------- /www/vendor/swiftmailer/swiftmailer/doc/messages.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/vendor/swiftmailer/swiftmailer/doc/messages.rst -------------------------------------------------------------------------------- /www/vendor/swiftmailer/swiftmailer/doc/plugins.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/vendor/swiftmailer/swiftmailer/doc/plugins.rst -------------------------------------------------------------------------------- /www/vendor/swiftmailer/swiftmailer/doc/sending.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/vendor/swiftmailer/swiftmailer/doc/sending.rst -------------------------------------------------------------------------------- /www/vendor/swiftmailer/swiftmailer/lib/classes/Swift.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/vendor/swiftmailer/swiftmailer/lib/classes/Swift.php -------------------------------------------------------------------------------- /www/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Attachment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Attachment.php -------------------------------------------------------------------------------- /www/vendor/swiftmailer/swiftmailer/lib/classes/Swift/EmbeddedFile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/vendor/swiftmailer/swiftmailer/lib/classes/Swift/EmbeddedFile.php -------------------------------------------------------------------------------- /www/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Encoder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Encoder.php -------------------------------------------------------------------------------- /www/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Events/Event.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Events/Event.php -------------------------------------------------------------------------------- /www/vendor/swiftmailer/swiftmailer/lib/classes/Swift/FileSpool.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/vendor/swiftmailer/swiftmailer/lib/classes/Swift/FileSpool.php -------------------------------------------------------------------------------- /www/vendor/swiftmailer/swiftmailer/lib/classes/Swift/FileStream.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/vendor/swiftmailer/swiftmailer/lib/classes/Swift/FileStream.php -------------------------------------------------------------------------------- /www/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Filterable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Filterable.php -------------------------------------------------------------------------------- /www/vendor/swiftmailer/swiftmailer/lib/classes/Swift/IdGenerator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/vendor/swiftmailer/swiftmailer/lib/classes/Swift/IdGenerator.php -------------------------------------------------------------------------------- /www/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Image.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Image.php -------------------------------------------------------------------------------- /www/vendor/swiftmailer/swiftmailer/lib/classes/Swift/IoException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/vendor/swiftmailer/swiftmailer/lib/classes/Swift/IoException.php -------------------------------------------------------------------------------- /www/vendor/swiftmailer/swiftmailer/lib/classes/Swift/KeyCache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/vendor/swiftmailer/swiftmailer/lib/classes/Swift/KeyCache.php -------------------------------------------------------------------------------- /www/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Mailer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Mailer.php -------------------------------------------------------------------------------- /www/vendor/swiftmailer/swiftmailer/lib/classes/Swift/MemorySpool.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/vendor/swiftmailer/swiftmailer/lib/classes/Swift/MemorySpool.php -------------------------------------------------------------------------------- /www/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Message.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Message.php -------------------------------------------------------------------------------- /www/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Mime/Header.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Mime/Header.php -------------------------------------------------------------------------------- /www/vendor/swiftmailer/swiftmailer/lib/classes/Swift/MimePart.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/vendor/swiftmailer/swiftmailer/lib/classes/Swift/MimePart.php -------------------------------------------------------------------------------- /www/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Preferences.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Preferences.php -------------------------------------------------------------------------------- /www/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Signer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Signer.php -------------------------------------------------------------------------------- /www/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Spool.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Spool.php -------------------------------------------------------------------------------- /www/vendor/swiftmailer/swiftmailer/lib/classes/Swift/StreamFilter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/vendor/swiftmailer/swiftmailer/lib/classes/Swift/StreamFilter.php -------------------------------------------------------------------------------- /www/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Transport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Transport.php -------------------------------------------------------------------------------- /www/vendor/swiftmailer/swiftmailer/lib/dependency_maps/cache_deps.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/vendor/swiftmailer/swiftmailer/lib/dependency_maps/cache_deps.php -------------------------------------------------------------------------------- /www/vendor/swiftmailer/swiftmailer/lib/mime_types.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/vendor/swiftmailer/swiftmailer/lib/mime_types.php -------------------------------------------------------------------------------- /www/vendor/swiftmailer/swiftmailer/lib/preferences.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/vendor/swiftmailer/swiftmailer/lib/preferences.php -------------------------------------------------------------------------------- /www/vendor/swiftmailer/swiftmailer/lib/swift_required.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/vendor/swiftmailer/swiftmailer/lib/swift_required.php -------------------------------------------------------------------------------- /www/vendor/symfony/polyfill-iconv/Iconv.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/vendor/symfony/polyfill-iconv/Iconv.php -------------------------------------------------------------------------------- /www/vendor/symfony/polyfill-iconv/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/vendor/symfony/polyfill-iconv/LICENSE -------------------------------------------------------------------------------- /www/vendor/symfony/polyfill-iconv/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/vendor/symfony/polyfill-iconv/README.md -------------------------------------------------------------------------------- /www/vendor/symfony/polyfill-iconv/Resources/charset/from.big5.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/vendor/symfony/polyfill-iconv/Resources/charset/from.big5.php -------------------------------------------------------------------------------- /www/vendor/symfony/polyfill-iconv/Resources/charset/from.cp037.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/vendor/symfony/polyfill-iconv/Resources/charset/from.cp037.php -------------------------------------------------------------------------------- /www/vendor/symfony/polyfill-iconv/Resources/charset/from.cp424.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/vendor/symfony/polyfill-iconv/Resources/charset/from.cp424.php -------------------------------------------------------------------------------- /www/vendor/symfony/polyfill-iconv/Resources/charset/from.cp437.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/vendor/symfony/polyfill-iconv/Resources/charset/from.cp437.php -------------------------------------------------------------------------------- /www/vendor/symfony/polyfill-iconv/Resources/charset/from.cp500.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/vendor/symfony/polyfill-iconv/Resources/charset/from.cp500.php -------------------------------------------------------------------------------- /www/vendor/symfony/polyfill-iconv/Resources/charset/from.cp737.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/vendor/symfony/polyfill-iconv/Resources/charset/from.cp737.php -------------------------------------------------------------------------------- /www/vendor/symfony/polyfill-iconv/Resources/charset/from.cp775.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/vendor/symfony/polyfill-iconv/Resources/charset/from.cp775.php -------------------------------------------------------------------------------- /www/vendor/symfony/polyfill-iconv/Resources/charset/from.cp850.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/vendor/symfony/polyfill-iconv/Resources/charset/from.cp850.php -------------------------------------------------------------------------------- /www/vendor/symfony/polyfill-iconv/Resources/charset/from.cp852.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/vendor/symfony/polyfill-iconv/Resources/charset/from.cp852.php -------------------------------------------------------------------------------- /www/vendor/symfony/polyfill-iconv/Resources/charset/from.cp855.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/vendor/symfony/polyfill-iconv/Resources/charset/from.cp855.php -------------------------------------------------------------------------------- /www/vendor/symfony/polyfill-iconv/Resources/charset/from.cp856.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/vendor/symfony/polyfill-iconv/Resources/charset/from.cp856.php -------------------------------------------------------------------------------- /www/vendor/symfony/polyfill-iconv/Resources/charset/from.cp857.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/vendor/symfony/polyfill-iconv/Resources/charset/from.cp857.php -------------------------------------------------------------------------------- /www/vendor/symfony/polyfill-iconv/Resources/charset/from.cp860.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/vendor/symfony/polyfill-iconv/Resources/charset/from.cp860.php -------------------------------------------------------------------------------- /www/vendor/symfony/polyfill-iconv/Resources/charset/from.cp861.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/vendor/symfony/polyfill-iconv/Resources/charset/from.cp861.php -------------------------------------------------------------------------------- /www/vendor/symfony/polyfill-iconv/Resources/charset/from.cp862.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/vendor/symfony/polyfill-iconv/Resources/charset/from.cp862.php -------------------------------------------------------------------------------- /www/vendor/symfony/polyfill-iconv/Resources/charset/from.cp863.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/vendor/symfony/polyfill-iconv/Resources/charset/from.cp863.php -------------------------------------------------------------------------------- /www/vendor/symfony/polyfill-iconv/Resources/charset/from.cp864.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/vendor/symfony/polyfill-iconv/Resources/charset/from.cp864.php -------------------------------------------------------------------------------- /www/vendor/symfony/polyfill-iconv/Resources/charset/from.cp865.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/vendor/symfony/polyfill-iconv/Resources/charset/from.cp865.php -------------------------------------------------------------------------------- /www/vendor/symfony/polyfill-iconv/Resources/charset/from.cp866.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/vendor/symfony/polyfill-iconv/Resources/charset/from.cp866.php -------------------------------------------------------------------------------- /www/vendor/symfony/polyfill-iconv/Resources/charset/from.cp869.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/vendor/symfony/polyfill-iconv/Resources/charset/from.cp869.php -------------------------------------------------------------------------------- /www/vendor/symfony/polyfill-iconv/Resources/charset/from.cp874.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/vendor/symfony/polyfill-iconv/Resources/charset/from.cp874.php -------------------------------------------------------------------------------- /www/vendor/symfony/polyfill-iconv/Resources/charset/from.cp875.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/vendor/symfony/polyfill-iconv/Resources/charset/from.cp875.php -------------------------------------------------------------------------------- /www/vendor/symfony/polyfill-iconv/Resources/charset/from.cp932.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/vendor/symfony/polyfill-iconv/Resources/charset/from.cp932.php -------------------------------------------------------------------------------- /www/vendor/symfony/polyfill-iconv/Resources/charset/from.cp936.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/vendor/symfony/polyfill-iconv/Resources/charset/from.cp936.php -------------------------------------------------------------------------------- /www/vendor/symfony/polyfill-iconv/Resources/charset/from.cp949.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/vendor/symfony/polyfill-iconv/Resources/charset/from.cp949.php -------------------------------------------------------------------------------- /www/vendor/symfony/polyfill-iconv/Resources/charset/from.cp950.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/vendor/symfony/polyfill-iconv/Resources/charset/from.cp950.php -------------------------------------------------------------------------------- /www/vendor/symfony/polyfill-iconv/Resources/charset/translit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/vendor/symfony/polyfill-iconv/Resources/charset/translit.php -------------------------------------------------------------------------------- /www/vendor/symfony/polyfill-iconv/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/vendor/symfony/polyfill-iconv/bootstrap.php -------------------------------------------------------------------------------- /www/vendor/symfony/polyfill-iconv/bootstrap80.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/vendor/symfony/polyfill-iconv/bootstrap80.php -------------------------------------------------------------------------------- /www/vendor/symfony/polyfill-iconv/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/vendor/symfony/polyfill-iconv/composer.json -------------------------------------------------------------------------------- /www/vendor/symfony/polyfill-intl-idn/Idn.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/vendor/symfony/polyfill-intl-idn/Idn.php -------------------------------------------------------------------------------- /www/vendor/symfony/polyfill-intl-idn/Info.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/vendor/symfony/polyfill-intl-idn/Info.php -------------------------------------------------------------------------------- /www/vendor/symfony/polyfill-intl-idn/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/vendor/symfony/polyfill-intl-idn/LICENSE -------------------------------------------------------------------------------- /www/vendor/symfony/polyfill-intl-idn/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/vendor/symfony/polyfill-intl-idn/README.md -------------------------------------------------------------------------------- /www/vendor/symfony/polyfill-intl-idn/Resources/unidata/Regex.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/vendor/symfony/polyfill-intl-idn/Resources/unidata/Regex.php -------------------------------------------------------------------------------- /www/vendor/symfony/polyfill-intl-idn/Resources/unidata/ignored.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/vendor/symfony/polyfill-intl-idn/Resources/unidata/ignored.php -------------------------------------------------------------------------------- /www/vendor/symfony/polyfill-intl-idn/Resources/unidata/mapped.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/vendor/symfony/polyfill-intl-idn/Resources/unidata/mapped.php -------------------------------------------------------------------------------- /www/vendor/symfony/polyfill-intl-idn/Resources/unidata/virama.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/vendor/symfony/polyfill-intl-idn/Resources/unidata/virama.php -------------------------------------------------------------------------------- /www/vendor/symfony/polyfill-intl-idn/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/vendor/symfony/polyfill-intl-idn/bootstrap.php -------------------------------------------------------------------------------- /www/vendor/symfony/polyfill-intl-idn/bootstrap80.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/vendor/symfony/polyfill-intl-idn/bootstrap80.php -------------------------------------------------------------------------------- /www/vendor/symfony/polyfill-intl-idn/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/vendor/symfony/polyfill-intl-idn/composer.json -------------------------------------------------------------------------------- /www/vendor/symfony/polyfill-intl-normalizer/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/vendor/symfony/polyfill-intl-normalizer/LICENSE -------------------------------------------------------------------------------- /www/vendor/symfony/polyfill-intl-normalizer/Normalizer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/vendor/symfony/polyfill-intl-normalizer/Normalizer.php -------------------------------------------------------------------------------- /www/vendor/symfony/polyfill-intl-normalizer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/vendor/symfony/polyfill-intl-normalizer/README.md -------------------------------------------------------------------------------- /www/vendor/symfony/polyfill-intl-normalizer/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/vendor/symfony/polyfill-intl-normalizer/bootstrap.php -------------------------------------------------------------------------------- /www/vendor/symfony/polyfill-intl-normalizer/bootstrap80.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/vendor/symfony/polyfill-intl-normalizer/bootstrap80.php -------------------------------------------------------------------------------- /www/vendor/symfony/polyfill-intl-normalizer/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/vendor/symfony/polyfill-intl-normalizer/composer.json -------------------------------------------------------------------------------- /www/vendor/symfony/polyfill-mbstring/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/vendor/symfony/polyfill-mbstring/LICENSE -------------------------------------------------------------------------------- /www/vendor/symfony/polyfill-mbstring/Mbstring.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/vendor/symfony/polyfill-mbstring/Mbstring.php -------------------------------------------------------------------------------- /www/vendor/symfony/polyfill-mbstring/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/vendor/symfony/polyfill-mbstring/README.md -------------------------------------------------------------------------------- /www/vendor/symfony/polyfill-mbstring/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/vendor/symfony/polyfill-mbstring/bootstrap.php -------------------------------------------------------------------------------- /www/vendor/symfony/polyfill-mbstring/bootstrap80.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/vendor/symfony/polyfill-mbstring/bootstrap80.php -------------------------------------------------------------------------------- /www/vendor/symfony/polyfill-mbstring/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/vendor/symfony/polyfill-mbstring/composer.json -------------------------------------------------------------------------------- /www/vendor/symfony/polyfill-php72/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/vendor/symfony/polyfill-php72/LICENSE -------------------------------------------------------------------------------- /www/vendor/symfony/polyfill-php72/Php72.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/vendor/symfony/polyfill-php72/Php72.php -------------------------------------------------------------------------------- /www/vendor/symfony/polyfill-php72/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/vendor/symfony/polyfill-php72/README.md -------------------------------------------------------------------------------- /www/vendor/symfony/polyfill-php72/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/vendor/symfony/polyfill-php72/bootstrap.php -------------------------------------------------------------------------------- /www/vendor/symfony/polyfill-php72/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecherrydvr/bluecherry-apps/HEAD/www/vendor/symfony/polyfill-php72/composer.json --------------------------------------------------------------------------------