├── .cirrus.yml ├── .dockerignore ├── .eslintignore ├── .eslintrc.js ├── .git-blame-ignore-revs ├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE.md ├── ISSUE_TEMPLATE │ └── bug_report.md ├── codeql │ └── codeql-config.yml ├── config.yml ├── dependabot.yml ├── docker │ └── centos7-gcc8-zm │ │ └── Dockerfile ├── issue-close-app.yml ├── no-response.yml ├── stale.yml ├── support.yml └── workflows │ ├── build-native-packages-aarch64.yml │ ├── build-native-packages.yml │ ├── ci-bookworm.yml │ ├── ci-bullseye.yml │ ├── ci-centos-8.yml │ ├── ci-eslint.yml │ ├── ci-focal.yml │ ├── codeql-analysis.yml │ ├── create-packages.yml │ ├── depsreview.yaml │ └── release-packages.yml ├── .gitignore ├── .gitlab-ci.yml ├── .gitmodules ├── .readthedocs.yaml ├── .well-known └── funding-manifest-urls ├── CHANGELOG.md ├── CMakeLists.txt ├── CONTRIBUTING.md ├── COPYING ├── LICENSE ├── README.md ├── SECURITY.md ├── cmake ├── Modules │ ├── CheckPlatform.cmake │ ├── CheckSendfile.cmake │ ├── ConfigureBaseTargets.cmake │ ├── FindFFMPEG.cmake │ ├── FindFmt.cmake │ ├── FindGLIB2.cmake │ ├── FindGSOAP.cmake │ ├── FindLibJWT.cmake │ ├── FindMOSQUITTO.cmake │ ├── FindMOSQUITTOPP.cmake │ ├── FindPerlModules.cmake │ ├── FindPolkit.cmake │ ├── FindV4L2.cmake │ ├── GNUInstallDirs.cmake │ └── Pod2Man.cmake ├── cmake_uninstall.cmake.in └── compiler │ ├── clang │ └── settings.cmake │ └── gcc │ └── settings.cmake ├── cmakecacheimport.sh ├── code_of_conduct.md ├── conf.d ├── 01-system-paths.conf.in ├── 02-multiserver.conf └── README ├── db ├── CMakeLists.txt ├── Object_Types.sql ├── User_Preferences.sql ├── manufacturers.sql ├── models.sql ├── monitors_dbupdate.sql ├── test.monitor.sql ├── triggers.sql ├── zm_create.sql.in ├── zm_update-0.0.1.sql ├── zm_update-0.9.10.sql ├── zm_update-0.9.11.sql ├── zm_update-0.9.12.sql ├── zm_update-0.9.13.sql ├── zm_update-0.9.15.sql ├── zm_update-0.9.16.sql ├── zm_update-0.9.7.sql ├── zm_update-0.9.8.sql ├── zm_update-0.9.9.sql ├── zm_update-1.17.1.sql ├── zm_update-1.17.2.sql ├── zm_update-1.18.0.sql ├── zm_update-1.18.1.sql ├── zm_update-1.19.0.sql ├── zm_update-1.19.1.sql ├── zm_update-1.19.2.sql ├── zm_update-1.19.3.sql ├── zm_update-1.19.4.sql ├── zm_update-1.19.5.sql ├── zm_update-1.20.0.sql ├── zm_update-1.20.1.sql ├── zm_update-1.21.0.sql ├── zm_update-1.21.1.sql ├── zm_update-1.21.2.sql ├── zm_update-1.21.3.sql ├── zm_update-1.21.4.sql ├── zm_update-1.22.0.sql ├── zm_update-1.22.1.sql ├── zm_update-1.22.2.sql ├── zm_update-1.22.3.sql ├── zm_update-1.23.0.sql ├── zm_update-1.23.1.sql ├── zm_update-1.23.2.sql ├── zm_update-1.23.3.sql ├── zm_update-1.24.0.sql ├── zm_update-1.24.1.sql ├── zm_update-1.24.2.sql ├── zm_update-1.24.3.sql ├── zm_update-1.24.4.sql ├── zm_update-1.26.0.sql ├── zm_update-1.26.1.sql ├── zm_update-1.26.2.sql ├── zm_update-1.26.3.sql ├── zm_update-1.26.5.sql ├── zm_update-1.27.0.sql ├── zm_update-1.28.0.sql ├── zm_update-1.28.1.sql ├── zm_update-1.28.100.sql ├── zm_update-1.28.101.sql ├── zm_update-1.28.102.sql ├── zm_update-1.28.103.sql ├── zm_update-1.28.104.sql ├── zm_update-1.28.105.sql ├── zm_update-1.28.106.sql ├── zm_update-1.28.107.sql ├── zm_update-1.28.108.sql ├── zm_update-1.28.109.sql ├── zm_update-1.28.110.sql ├── zm_update-1.28.99.sql ├── zm_update-1.29.0.sql ├── zm_update-1.30.0.sql ├── zm_update-1.30.1.sql ├── zm_update-1.30.2.sql ├── zm_update-1.30.3.sql ├── zm_update-1.30.4.sql ├── zm_update-1.31.0.sql ├── zm_update-1.31.1.sql ├── zm_update-1.31.10.sql ├── zm_update-1.31.11.sql ├── zm_update-1.31.12.sql ├── zm_update-1.31.13.sql ├── zm_update-1.31.14.sql ├── zm_update-1.31.15.sql ├── zm_update-1.31.16.sql ├── zm_update-1.31.17.sql ├── zm_update-1.31.18.sql ├── zm_update-1.31.19.sql ├── zm_update-1.31.2.sql ├── zm_update-1.31.20.sql ├── zm_update-1.31.21.sql ├── zm_update-1.31.22.sql ├── zm_update-1.31.23.sql ├── zm_update-1.31.24.sql ├── zm_update-1.31.25.sql ├── zm_update-1.31.26.sql ├── zm_update-1.31.27.sql ├── zm_update-1.31.28.sql ├── zm_update-1.31.29.sql ├── zm_update-1.31.3.sql ├── zm_update-1.31.30.sql.in ├── zm_update-1.31.31.sql ├── zm_update-1.31.32.sql ├── zm_update-1.31.33.sql ├── zm_update-1.31.34.sql ├── zm_update-1.31.35.sql ├── zm_update-1.31.36.sql ├── zm_update-1.31.37.sql ├── zm_update-1.31.38.sql ├── zm_update-1.31.39.sql ├── zm_update-1.31.4.sql ├── zm_update-1.31.40.sql ├── zm_update-1.31.41.sql ├── zm_update-1.31.42.sql ├── zm_update-1.31.43.sql ├── zm_update-1.31.44.sql ├── zm_update-1.31.45.sql ├── zm_update-1.31.46.sql ├── zm_update-1.31.47.sql ├── zm_update-1.31.5.sql ├── zm_update-1.31.6.sql ├── zm_update-1.31.7.sql ├── zm_update-1.31.8.sql ├── zm_update-1.31.9.sql ├── zm_update-1.32.0.sql ├── zm_update-1.32.1.sql ├── zm_update-1.32.2.sql ├── zm_update-1.32.3.sql ├── zm_update-1.33.0.sql ├── zm_update-1.33.1.sql ├── zm_update-1.33.10.sql ├── zm_update-1.33.11.sql ├── zm_update-1.33.12.sql ├── zm_update-1.33.13.sql ├── zm_update-1.33.14.sql ├── zm_update-1.33.15.sql ├── zm_update-1.33.16.sql ├── zm_update-1.33.2.sql ├── zm_update-1.33.3.sql ├── zm_update-1.33.4.sql ├── zm_update-1.33.5.sql ├── zm_update-1.33.6.sql ├── zm_update-1.33.7.sql ├── zm_update-1.33.8.sql ├── zm_update-1.33.9.sql ├── zm_update-1.34.0.sql ├── zm_update-1.34.1.sql ├── zm_update-1.34.2.sql ├── zm_update-1.34.20.sql ├── zm_update-1.34.3.sql ├── zm_update-1.34.4.sql ├── zm_update-1.34.5.sql ├── zm_update-1.34.6.sql ├── zm_update-1.34.7.sql ├── zm_update-1.35.0.sql ├── zm_update-1.35.1.sql ├── zm_update-1.35.10.sql ├── zm_update-1.35.11.sql ├── zm_update-1.35.12.sql ├── zm_update-1.35.13.sql ├── zm_update-1.35.14.sql ├── zm_update-1.35.15.sql ├── zm_update-1.35.16.sql ├── zm_update-1.35.17.sql ├── zm_update-1.35.18.sql ├── zm_update-1.35.19.sql ├── zm_update-1.35.2.sql ├── zm_update-1.35.20.sql ├── zm_update-1.35.21.sql ├── zm_update-1.35.22.sql ├── zm_update-1.35.23.sql ├── zm_update-1.35.24.sql.in ├── zm_update-1.35.25.sql ├── zm_update-1.35.26.sql ├── zm_update-1.35.27.sql ├── zm_update-1.35.28.sql ├── zm_update-1.35.29.sql ├── zm_update-1.35.3.sql ├── zm_update-1.35.4.sql ├── zm_update-1.35.5.sql ├── zm_update-1.35.6.sql ├── zm_update-1.35.7.sql ├── zm_update-1.35.8.sql ├── zm_update-1.35.9.sql ├── zm_update-1.36.20.sql ├── zm_update-1.36.6.sql ├── zm_update-1.37.1.sql ├── zm_update-1.37.10.sql ├── zm_update-1.37.11.sql ├── zm_update-1.37.12.sql ├── zm_update-1.37.13.sql ├── zm_update-1.37.14.sql ├── zm_update-1.37.15.sql ├── zm_update-1.37.16.sql ├── zm_update-1.37.17.sql ├── zm_update-1.37.18.sql ├── zm_update-1.37.19.sql ├── zm_update-1.37.2.sql ├── zm_update-1.37.20.sql ├── zm_update-1.37.21.sql ├── zm_update-1.37.22.sql ├── zm_update-1.37.23.sql ├── zm_update-1.37.25.sql ├── zm_update-1.37.26.sql ├── zm_update-1.37.27.sql ├── zm_update-1.37.28.sql ├── zm_update-1.37.29.sql ├── zm_update-1.37.3.sql ├── zm_update-1.37.30.sql ├── zm_update-1.37.31.sql ├── zm_update-1.37.32.sql ├── zm_update-1.37.34.sql ├── zm_update-1.37.35.sql ├── zm_update-1.37.36.sql ├── zm_update-1.37.37.sql ├── zm_update-1.37.38.sql ├── zm_update-1.37.39.sql ├── zm_update-1.37.4.sql.in ├── zm_update-1.37.40.sql ├── zm_update-1.37.41.sql ├── zm_update-1.37.42.sql ├── zm_update-1.37.43.sql ├── zm_update-1.37.44.sql ├── zm_update-1.37.45.sql ├── zm_update-1.37.46.sql ├── zm_update-1.37.47.sql ├── zm_update-1.37.48.sql ├── zm_update-1.37.49.sql ├── zm_update-1.37.5.sql ├── zm_update-1.37.50.sql ├── zm_update-1.37.51.sql ├── zm_update-1.37.52.sql ├── zm_update-1.37.53.sql ├── zm_update-1.37.54.sql ├── zm_update-1.37.55.sql ├── zm_update-1.37.56.sql ├── zm_update-1.37.57.sql ├── zm_update-1.37.58.sql ├── zm_update-1.37.59.sql ├── zm_update-1.37.6.sql ├── zm_update-1.37.60.sql ├── zm_update-1.37.62.sql ├── zm_update-1.37.63.sql ├── zm_update-1.37.66.sql ├── zm_update-1.37.67.sql ├── zm_update-1.37.68.sql ├── zm_update-1.37.69.sql.in ├── zm_update-1.37.7.sql ├── zm_update-1.37.70.sql ├── zm_update-1.37.71.sql ├── zm_update-1.37.72.sql ├── zm_update-1.37.73.sql ├── zm_update-1.37.8.sql └── zm_update-1.37.9.sql ├── dep ├── CMakeLists.txt ├── jwt-cpp │ ├── .clang-format │ ├── .clang-tidy │ ├── .cmake-format │ ├── .editorconfig │ ├── .gitattributes │ ├── .github │ │ ├── FUNDING.yml │ │ ├── ISSUE_TEMPLATE │ │ │ ├── bug-report.yml │ │ │ ├── feature-request.yml │ │ │ └── support-question.yml │ │ ├── actions │ │ │ ├── badge │ │ │ │ ├── action.yml │ │ │ │ └── write │ │ │ │ │ └── action.yml │ │ │ ├── install │ │ │ │ ├── boost-json │ │ │ │ │ └── action.yml │ │ │ │ ├── cmake │ │ │ │ │ └── action.yml │ │ │ │ ├── danielaparker-jsoncons │ │ │ │ │ └── action.yml │ │ │ │ ├── gtest │ │ │ │ │ └── action.yml │ │ │ │ ├── kazuho-picojson │ │ │ │ │ └── action.yml │ │ │ │ ├── libressl │ │ │ │ │ └── action.yml │ │ │ │ ├── nlohmann-json │ │ │ │ │ └── action.yml │ │ │ │ ├── openssl │ │ │ │ │ └── action.yml │ │ │ │ └── wolfssl │ │ │ │ │ └── action.yml │ │ │ ├── process-linting-results │ │ │ │ └── action.yml │ │ │ └── render │ │ │ │ ├── defaults │ │ │ │ └── action.yml │ │ │ │ └── tests │ │ │ │ └── action.yml │ │ ├── logo.svg │ │ ├── overrides.css │ │ ├── security.md │ │ └── workflows │ │ │ ├── cmake.yml │ │ │ ├── cross-platform.yml │ │ │ ├── documentation.yml │ │ │ ├── jwt.yml │ │ │ ├── lint.yml │ │ │ ├── nuget.yml │ │ │ ├── ssl.yml │ │ │ ├── targets.yml │ │ │ └── traits.yml │ ├── .gitignore │ ├── CMakeLists.txt │ ├── Doxyfile │ ├── LICENSE │ ├── README.md │ ├── cmake │ │ ├── HunterGate.cmake │ │ ├── code-coverage.cmake │ │ ├── jwt-cpp-config.cmake.in │ │ ├── private-find-boost-json.cmake │ │ └── private-find-kazuho-picojson.cmake │ ├── docs │ │ ├── faqs.md │ │ ├── signing.md │ │ ├── ssl.md │ │ └── traits.md │ ├── example │ │ ├── CMakeLists.txt │ │ ├── conan │ │ │ ├── CMakeLists.txt │ │ │ ├── README.md │ │ │ ├── conanfile.txt │ │ │ └── main.cpp │ │ ├── es256k.cpp │ │ ├── jwks-verify.cpp │ │ ├── partial-claim-verifier.cpp │ │ ├── print-claims.cpp │ │ ├── private-claims.cpp │ │ ├── rsa-create.cpp │ │ ├── rsa-verify.cpp │ │ └── traits │ │ │ ├── CMakeLists.txt │ │ │ ├── README.md │ │ │ ├── boost-json.cpp │ │ │ ├── danielaparker-jsoncons.cpp │ │ │ ├── kazuho-picojson.cpp │ │ │ └── nlohmann-json.cpp │ ├── include │ │ ├── jwt-cpp │ │ │ ├── base.h │ │ │ ├── jwt.h │ │ │ └── traits │ │ │ │ ├── boost-json │ │ │ │ ├── defaults.h │ │ │ │ └── traits.h │ │ │ │ ├── danielaparker-jsoncons │ │ │ │ ├── defaults.h │ │ │ │ └── traits.h │ │ │ │ ├── defaults.h.mustache │ │ │ │ ├── kazuho-picojson │ │ │ │ ├── defaults.h │ │ │ │ └── traits.h │ │ │ │ └── nlohmann-json │ │ │ │ ├── defaults.h │ │ │ │ └── traits.h │ │ └── picojson │ │ │ └── picojson.h │ ├── nuget │ │ ├── jwt-cpp.nuspec │ │ └── jwt-cpp.targets │ └── tests │ │ ├── BaseTest.cpp │ │ ├── CMakeLists.txt │ │ ├── ClaimTest.cpp │ │ ├── HelperTest.cpp │ │ ├── JwksTest.cpp │ │ ├── Keys.cpp │ │ ├── OpenSSLErrorTest.cpp │ │ ├── TestMain.cpp │ │ ├── TokenFormatTest.cpp │ │ ├── TokenTest.cpp │ │ ├── cmake │ │ ├── CMakeLists.txt │ │ ├── base64-is-disabled.cpp │ │ ├── defaults-enabled.cpp │ │ ├── libressl-is-used.cpp │ │ ├── picojson-is-disabled.cpp │ │ └── wolfssl-is-used.cpp │ │ ├── fuzz │ │ ├── BaseDecodeFuzz.cpp │ │ ├── BaseEncodeFuzz.cpp │ │ ├── CMakeLists.txt │ │ ├── TokenDecodeFuzz.cpp │ │ ├── decode-corpus │ │ │ ├── 086a3aa337038cac8a75a05131444f222e48aee8 │ │ │ ├── 8ebaef2304e91465585c8d7fcf4d9f939e08d6b4 │ │ │ ├── ba528234d9f6949ed9c9626c08a782f6e7c15b8b │ │ │ ├── de1028a3fe87471f027522c3ed9ec02b8364a006 │ │ │ └── e8f531caaa67cecb1c7b162f3e1d4e320d79befd │ │ └── token-corpus │ │ │ ├── 9d891e731f75deae56884d79e9816736b7488080 │ │ │ ├── ff384e2421a333cd52f259cec14c7f790d595db9 │ │ │ └── valid-sample │ │ └── traits │ │ ├── BoostJsonTest.cpp │ │ ├── JsonconsTest.cpp │ │ ├── NlohmannTest.cpp │ │ └── TraitsTest.cpp.mustache ├── libbcrypt │ ├── CMakeLists.txt │ ├── LICENSE │ ├── README.md │ ├── include │ │ └── bcrypt │ │ │ ├── BCrypt.hpp │ │ │ ├── bcrypt.h │ │ │ ├── crypt.h │ │ │ ├── crypt_blowfish.h │ │ │ ├── crypt_gensalt.h │ │ │ ├── ow-crypt.h │ │ │ └── winbcrypt.h │ ├── src │ │ ├── bcrypt.c │ │ ├── crypt_blowfish.c │ │ ├── crypt_gensalt.c │ │ ├── main.cpp │ │ ├── wrapper.c │ │ └── x86.S │ └── vs2017 │ │ ├── libbcrypt │ │ ├── libbcrypt.sln │ │ ├── libbcrypt.vcxproj │ │ └── libbcrypt.vcxproj.filters │ │ └── test │ │ ├── main.cpp │ │ ├── test.vcxproj │ │ └── test.vcxproj.filters └── span-lite │ ├── CMakeLists.txt │ ├── LICENSE.txt │ ├── README.md │ └── include │ └── span.hpp ├── distros ├── beowulf │ ├── NEWS │ ├── README.Debian │ ├── TODO.Debian │ ├── changelog │ ├── clean │ ├── compat │ ├── conf │ │ └── apache2 │ │ │ └── zoneminder.conf │ ├── control │ ├── copyright │ ├── examples │ │ └── nginx.conf │ ├── gbp.conf │ ├── libzoneminder-perl.install │ ├── patches │ │ └── series │ ├── rules │ ├── source │ │ ├── format │ │ └── lintian-overrides │ ├── zoneminder-doc.doc-base │ ├── zoneminder-doc.install │ ├── zoneminder-doc.links │ ├── zoneminder.apache2 │ ├── zoneminder.bug-presubj │ ├── zoneminder.dirs │ ├── zoneminder.docs │ ├── zoneminder.examples │ ├── zoneminder.init │ ├── zoneminder.install │ ├── zoneminder.links │ ├── zoneminder.linktrees │ ├── zoneminder.lintian-overrides │ ├── zoneminder.logrotate │ ├── zoneminder.maintscript │ ├── zoneminder.manpages │ ├── zoneminder.postinst │ ├── zoneminder.postrm │ ├── zoneminder.preinst │ └── zoneminder.tmpfile ├── debian │ ├── README.Debian │ ├── apache.conf │ ├── changelog │ ├── compat │ ├── control │ ├── copyright │ ├── dirs │ ├── docs │ ├── init.d │ ├── install │ ├── links │ ├── postinst │ ├── postrm │ ├── preinst │ ├── rules │ └── watch ├── fedora ├── opensuse │ ├── CMakeLists.txt │ ├── README.OpenSuse │ ├── redalert.wav │ ├── zoneminder-1.26.5-opensuse.patch │ ├── zoneminder.cmake.OS13.spec │ ├── zoneminder.conf │ ├── zoneminder.logrotate │ ├── zoneminder.service │ └── zoneminder.tmpfiles ├── podman │ └── Containerfile ├── redhat │ ├── CMakeLists.txt │ ├── common │ │ ├── redalert.wav │ │ ├── zoneminder.logrotate.in │ │ └── zoneminder.service.in │ ├── httpd │ │ ├── com.zoneminder.systemctl.rules.httpd.in │ │ ├── zm-httpd.conf.in │ │ ├── zoneminder.httpd.conf.in │ │ └── zoneminder.httpd.tmpfiles.in │ ├── nginx │ │ ├── com.zoneminder.systemctl.rules.nginx │ │ ├── redirect.nginx.conf │ │ ├── zm-nginx.conf │ │ ├── zm-web-user.conf │ │ ├── zoneminder.nginx.conf.in │ │ ├── zoneminder.nginx.tmpfiles.in │ │ └── zoneminder.php-fpm.conf │ ├── readme │ │ ├── README │ │ ├── README.httpd │ │ ├── README.https │ │ └── README.nginx │ └── zoneminder.spec ├── ubuntu1504_cmake_split_packages │ ├── README.Debian │ ├── apache.conf │ ├── changelog │ ├── compat │ ├── control │ ├── copyright │ ├── docs │ ├── libzoneminder-perl.install │ ├── patches │ │ └── series │ ├── po │ │ ├── POTFILES.in │ │ ├── fr.po │ │ └── templates.pot │ ├── rules │ ├── source │ │ ├── format │ │ ├── local-options │ │ └── options │ ├── zoneminder-core.config │ ├── zoneminder-core.dirs │ ├── zoneminder-core.install │ ├── zoneminder-core.postinst │ ├── zoneminder-core.postrm │ ├── zoneminder-core.preinst │ ├── zoneminder-core.templates │ ├── zoneminder-core.zoneminder.init │ ├── zoneminder-core.zoneminder.service │ ├── zoneminder-core.zoneminder.tmpfile │ ├── zoneminder-database.config │ ├── zoneminder-database.dirs │ ├── zoneminder-database.install │ ├── zoneminder-database.postinst │ ├── zoneminder-database.postrm │ ├── zoneminder-database.prerm │ ├── zoneminder-database.templates │ ├── zoneminder-ui-api.install │ ├── zoneminder-ui-api.links │ ├── zoneminder-ui-base.config │ ├── zoneminder-ui-base.install │ ├── zoneminder-ui-base.postinst │ ├── zoneminder-ui-base.postrm │ ├── zoneminder-ui-base.templates │ └── zoneminder-ui-classic.install └── ubuntu2004 │ ├── NEWS │ ├── README.Debian │ ├── TODO │ ├── changelog │ ├── clean │ ├── compat │ ├── conf │ └── apache2 │ │ └── zoneminder.conf │ ├── control │ ├── copyright │ ├── examples │ └── nginx.conf │ ├── gbp.conf │ ├── libzoneminder-perl.install │ ├── patches │ └── series │ ├── rules │ ├── source │ ├── format │ └── lintian-overrides │ ├── zoneminder-doc.doc-base │ ├── zoneminder-doc.install │ ├── zoneminder-doc.links │ ├── zoneminder.apache2 │ ├── zoneminder.bug-presubj │ ├── zoneminder.dirs │ ├── zoneminder.docs │ ├── zoneminder.examples │ ├── zoneminder.init │ ├── zoneminder.install │ ├── zoneminder.links │ ├── zoneminder.lintian-overrides │ ├── zoneminder.logrotate │ ├── zoneminder.maintscript │ ├── zoneminder.manpages │ ├── zoneminder.postinst │ ├── zoneminder.postrm │ ├── zoneminder.preinst │ ├── zoneminder.service │ └── zoneminder.tmpfile ├── docs ├── Makefile ├── README.md ├── _static │ ├── Icon_External_Link.png │ ├── README.txt │ └── zmstyle.css ├── _templates │ └── hiddenglobaltoc.html ├── api.rst ├── conf.py ├── contributing.rst ├── faq.rst ├── index.rst ├── installationguide │ ├── debian.rst │ ├── dedicateddrive.rst │ ├── images │ │ ├── zm-multiserver.png │ │ ├── zm-multiserver.xml │ │ └── zm_first_screen_post_install.png │ ├── index.rst │ ├── multiserver.rst │ ├── packpack.rst │ ├── redhat.rst │ ├── ubuntu.rst │ └── windows_wsl.rst ├── requirements.txt ├── userguide │ ├── cameracontrol.rst │ ├── components.rst │ ├── configfiles.rst │ ├── definemonitor.rst │ ├── definemonitor │ │ ├── definemonitor_add.rst │ │ ├── definemonitor_analysis.rst │ │ ├── definemonitor_buffers.rst │ │ ├── definemonitor_control.rst │ │ ├── definemonitor_general.rst │ │ ├── definemonitor_misc.rst │ │ ├── definemonitor_mqtt.rst │ │ ├── definemonitor_onvif.rst │ │ ├── definemonitor_recording.rst │ │ ├── definemonitor_source.rst │ │ ├── definemonitor_timestamp.rst │ │ ├── definemonitor_viewing.rst │ │ ├── definemonitor_x10.rst │ │ └── images │ │ │ ├── define-monitor-analysis.png │ │ │ ├── define-monitor-buffers.png │ │ │ ├── define-monitor-control.png │ │ │ ├── define-monitor-general.png │ │ │ ├── define-monitor-misc.png │ │ │ ├── define-monitor-mqtt.png │ │ │ ├── define-monitor-onvif.png │ │ │ ├── define-monitor-recording.png │ │ │ ├── define-monitor-source-ffmpeg.png │ │ │ ├── define-monitor-source-file.png │ │ │ ├── define-monitor-source-local.png │ │ │ ├── define-monitor-source-remote.png │ │ │ ├── define-monitor-source-vnc.png │ │ │ ├── define-monitor-source-website.png │ │ │ ├── define-monitor-source.png │ │ │ ├── define-monitor-timestamp.png │ │ │ ├── define-monitor-viewing.png │ │ │ └── define-monitor-x10.png │ ├── definezone.rst │ ├── definezone │ │ └── images │ │ │ ├── define-zone-alarm-check.png │ │ │ ├── define-zone-list.png │ │ │ ├── define-zone-parameters.png │ │ │ └── define-zone-region.png │ ├── filterevents.rst │ ├── gettingstarted.rst │ ├── images │ │ ├── Console.png │ │ ├── README.TXT │ │ ├── define-zone-blob.jpg │ │ ├── define-zone-region-sample.jpg │ │ ├── definemonitor-monitor.png │ │ ├── definemonitor-preset.png │ │ ├── filter-choosefilter.png │ │ ├── filter-filterview.png │ │ ├── getting-started-add-monitor-general-1.png │ │ ├── getting-started-add-monitor-general.png │ │ ├── getting-started-add-monitor-modect-ready.png │ │ ├── getting-started-add-monitor-ready.png │ │ ├── getting-started-add-monitor-recording.png │ │ ├── getting-started-add-monitor-source-1.png │ │ ├── getting-started-add-monitor-source.png │ │ ├── getting-started-add-monitor.png │ │ ├── getting-started-audit-event.png │ │ ├── getting-started-change-password.png │ │ ├── getting-started-enable-auth-1.png │ │ ├── getting-started-enable-auth.png │ │ ├── getting-started-first-screen.png │ │ ├── getting-started-flat-css-2.png │ │ ├── getting-started-flat-css.png │ │ ├── getting-started-login.png │ │ ├── getting-started-modern-look.png │ │ ├── getting-started-options-display.png │ │ ├── getting-started-options-system.png │ │ ├── getting-started-runstates.png │ │ ├── getting-started-theme-base.png │ │ ├── getting-started-theme-classic.png │ │ ├── getting-started-theme-dark.png │ │ ├── getting-started-timezone.png │ │ ├── getting-started-understand-console.png │ │ ├── getting-started-zones-delete.png │ │ ├── getting-started-zones-final.png │ │ ├── getting-started-zones-new.png │ │ ├── getting-started-zones.png │ │ ├── runstates.png │ │ ├── viewevents-main.png │ │ ├── viewevents-stream.png │ │ ├── viewmonitor-main.png │ │ ├── viewmonitor-stream.png │ │ ├── zm-system-overview.jpg │ │ └── zm-system-overview.xml │ ├── index.rst │ ├── introduction.rst │ ├── logging.rst │ ├── mobile.rst │ ├── monitor │ │ └── images │ │ │ ├── Monitor_Misc.png │ │ │ ├── Monitor_Source_ffmpeg.png │ │ │ ├── Monitor_Source_local.png │ │ │ ├── Monitor_buffers.png │ │ │ ├── Monitor_general.png │ │ │ ├── Monitor_preset.png │ │ │ ├── Monitor_source_curl.png │ │ │ ├── Monitor_source_file.png │ │ │ ├── Monitor_source_libvlc.png │ │ │ ├── Monitor_source_remote.png │ │ │ └── Monitor_timestamp.png │ ├── options.rst │ ├── options │ │ ├── images │ │ │ ├── Options_API.png │ │ │ ├── Options_BW.png │ │ │ ├── Options_Config.png │ │ │ ├── Options_Display.png │ │ │ ├── Options_FIFO.gif │ │ │ ├── Options_Logging_A.png │ │ │ ├── Options_Logging_B.png │ │ │ ├── Options_Network.png │ │ │ ├── Options_Servers.png │ │ │ ├── Options_Storage.png │ │ │ ├── Options_System.png │ │ │ ├── Options_Users.png │ │ │ ├── Options_Users_Example.png │ │ │ ├── Options_X10.png │ │ │ ├── Options_email.png │ │ │ ├── Options_images.png │ │ │ ├── Options_upload.png │ │ │ └── Options_web.png │ │ ├── options_api.rst │ │ ├── options_bw.rst │ │ ├── options_config.rst │ │ ├── options_display.rst │ │ ├── options_email.rst │ │ ├── options_images.rst │ │ ├── options_logging.rst │ │ ├── options_network.rst │ │ ├── options_servers.rst │ │ ├── options_storage.rst │ │ ├── options_system.rst │ │ ├── options_upload.rst │ │ ├── options_users.rst │ │ ├── options_web.rst │ │ └── options_x10.rst │ ├── tags.rst │ ├── viewevents.rst │ ├── viewmonitors.rst │ └── viewmonitors │ │ └── images │ │ ├── view-monitor-console.png │ │ ├── view-monitor-cycle.png │ │ ├── view-monitor-datetime.png │ │ ├── view-monitor-events.png │ │ ├── view-monitor-main.png │ │ ├── view-monitor-montage-review.png │ │ └── view-monitor-montage.png └── web_ui_api.rst ├── email_content ├── forgotten_password.php └── template.php ├── eslint.config.js ├── fonts ├── CMakeLists.txt └── default.zmfnt ├── funding.json ├── icons └── 16x16 │ └── icon.xpm ├── misc ├── CMakeLists.txt ├── MacVendors.json ├── apache-cors.conf ├── apache.conf.in ├── com.zoneminder.arp-scan.policy.in ├── com.zoneminder.arp-scan.rules.in ├── com.zoneminder.dnsmasq.policy.in ├── com.zoneminder.dnsmasq.rules.in ├── com.zoneminder.systemctl.policy.in ├── com.zoneminder.systemctl.rules.in ├── fail2ban.rules ├── janus.jcfg ├── janus.plugin.streaming.jcfg ├── janus.transport.http.jcfg ├── logcheck ├── logrotate.conf.in ├── nginx.conf.in ├── syslog.conf.in ├── zm-sudo.in ├── zoneminder-tmpfiles.conf.in ├── zoneminder.desktop.in ├── zoneminder.gortc.service ├── zoneminder.monit.conf └── zoneminder.service.in ├── onvif ├── .gitignore ├── CMakeLists.txt ├── README ├── doc │ ├── monitor.jpg │ ├── monitor2a.jpg │ ├── monitor2b.jpg │ ├── onvifprobe1a.jpg │ ├── onvifprobe1b.jpg │ ├── onvifprobe2a.jpg │ └── onvifprobe2b.jpg ├── modules │ ├── CMakeLists.txt │ ├── Makefile.PL │ └── lib │ │ ├── ONVIF │ │ ├── Client.pm │ │ ├── Deserializer │ │ │ ├── MessageParser.pm │ │ │ └── XSD.pm │ │ └── Serializer │ │ │ ├── Base.pm │ │ │ ├── SOAP11.pm │ │ │ └── SOAP12.pm │ │ ├── WSDiscovery │ │ └── TransportUDP.pm │ │ └── WSSecurity │ │ └── SecuritySerializer.pm ├── proxy │ ├── CMakeLists.txt │ ├── Makefile.PL │ └── lib │ │ ├── ONVIF │ │ ├── Analytics │ │ │ ├── Attributes │ │ │ │ ├── actor.pm │ │ │ │ ├── contentType.pm │ │ │ │ ├── encodingStyle.pm │ │ │ │ ├── expectedContentTypes.pm │ │ │ │ └── mustUnderstand.pm │ │ │ ├── Elements │ │ │ │ ├── AudioDecoderConfiguration.pm │ │ │ │ ├── AudioEncoderConfiguration.pm │ │ │ │ ├── AudioOutputConfiguration.pm │ │ │ │ ├── AudioSourceConfiguration.pm │ │ │ │ ├── Body.pm │ │ │ │ ├── Capabilities.pm │ │ │ │ ├── CreateAnalyticsModules.pm │ │ │ │ ├── CreateAnalyticsModulesResponse.pm │ │ │ │ ├── CreateRules.pm │ │ │ │ ├── CreateRulesResponse.pm │ │ │ │ ├── DeleteAnalyticsModules.pm │ │ │ │ ├── DeleteAnalyticsModulesResponse.pm │ │ │ │ ├── DeleteRules.pm │ │ │ │ ├── DeleteRulesResponse.pm │ │ │ │ ├── Envelope.pm │ │ │ │ ├── Fault.pm │ │ │ │ ├── GetAnalyticsModules.pm │ │ │ │ ├── GetAnalyticsModulesResponse.pm │ │ │ │ ├── GetRules.pm │ │ │ │ ├── GetRulesResponse.pm │ │ │ │ ├── GetServiceCapabilities.pm │ │ │ │ ├── GetServiceCapabilitiesResponse.pm │ │ │ │ ├── GetSupportedAnalyticsModules.pm │ │ │ │ ├── GetSupportedAnalyticsModulesResponse.pm │ │ │ │ ├── GetSupportedRules.pm │ │ │ │ ├── GetSupportedRulesResponse.pm │ │ │ │ ├── Header.pm │ │ │ │ ├── Include.pm │ │ │ │ ├── Message.pm │ │ │ │ ├── MetadataConfiguration.pm │ │ │ │ ├── MetadataStream.pm │ │ │ │ ├── ModifyAnalyticsModules.pm │ │ │ │ ├── ModifyAnalyticsModulesResponse.pm │ │ │ │ ├── ModifyRules.pm │ │ │ │ ├── ModifyRulesResponse.pm │ │ │ │ ├── PTZConfiguration.pm │ │ │ │ ├── Polygon.pm │ │ │ │ ├── Polyline.pm │ │ │ │ ├── VideoAnalyticsConfiguration.pm │ │ │ │ ├── VideoEncoderConfiguration.pm │ │ │ │ └── VideoSourceConfiguration.pm │ │ │ ├── Interfaces │ │ │ │ └── Analytics │ │ │ │ │ ├── AnalyticsEnginePort.pm │ │ │ │ │ └── RuleEnginePort.pm │ │ │ ├── Typemaps │ │ │ │ └── Analytics.pm │ │ │ └── Types │ │ │ │ ├── AACDecOptions.pm │ │ │ │ ├── AbsoluteFocus.pm │ │ │ │ ├── AbsoluteFocusOptions.pm │ │ │ │ ├── ActionEngineEventPayload.pm │ │ │ │ ├── ActionEngineEventPayloadExtension.pm │ │ │ │ ├── AnalyticsCapabilities.pm │ │ │ │ ├── AnalyticsDeviceCapabilities.pm │ │ │ │ ├── AnalyticsDeviceEngineConfiguration.pm │ │ │ │ ├── AnalyticsDeviceEngineConfigurationExtension.pm │ │ │ │ ├── AnalyticsDeviceExtension.pm │ │ │ │ ├── AnalyticsEngine.pm │ │ │ │ ├── AnalyticsEngineConfiguration.pm │ │ │ │ ├── AnalyticsEngineConfigurationExtension.pm │ │ │ │ ├── AnalyticsEngineControl.pm │ │ │ │ ├── AnalyticsEngineInput.pm │ │ │ │ ├── AnalyticsEngineInputInfo.pm │ │ │ │ ├── AnalyticsEngineInputInfoExtension.pm │ │ │ │ ├── AnalyticsState.pm │ │ │ │ ├── AnalyticsStateInformation.pm │ │ │ │ ├── AnyHolder.pm │ │ │ │ ├── Appearance.pm │ │ │ │ ├── AppearanceExtension.pm │ │ │ │ ├── AttachmentData.pm │ │ │ │ ├── AudioAnalyticsStream.pm │ │ │ │ ├── AudioAnalyticsStreamExtension.pm │ │ │ │ ├── AudioAttributes.pm │ │ │ │ ├── AudioClassCandidate.pm │ │ │ │ ├── AudioClassDescriptor.pm │ │ │ │ ├── AudioClassDescriptorExtension.pm │ │ │ │ ├── AudioClassType.pm │ │ │ │ ├── AudioDecoderConfiguration.pm │ │ │ │ ├── AudioDecoderConfigurationOptions.pm │ │ │ │ ├── AudioDecoderConfigurationOptionsExtension.pm │ │ │ │ ├── AudioDescriptor.pm │ │ │ │ ├── AudioEncoderConfiguration.pm │ │ │ │ ├── AudioEncoderConfigurationOption.pm │ │ │ │ ├── AudioEncoderConfigurationOptions.pm │ │ │ │ ├── AudioEncoding.pm │ │ │ │ ├── AudioOutput.pm │ │ │ │ ├── AudioOutputConfiguration.pm │ │ │ │ ├── AudioOutputConfigurationOptions.pm │ │ │ │ ├── AudioSource.pm │ │ │ │ ├── AudioSourceConfiguration.pm │ │ │ │ ├── AudioSourceConfigurationOptions.pm │ │ │ │ ├── AudioSourceOptionsExtension.pm │ │ │ │ ├── AutoFocusMode.pm │ │ │ │ ├── AuxiliaryData.pm │ │ │ │ ├── BacklightCompensation.pm │ │ │ │ ├── BacklightCompensation20.pm │ │ │ │ ├── BacklightCompensationMode.pm │ │ │ │ ├── BacklightCompensationOptions.pm │ │ │ │ ├── BacklightCompensationOptions20.pm │ │ │ │ ├── BackupFile.pm │ │ │ │ ├── Behaviour.pm │ │ │ │ ├── BehaviourExtension.pm │ │ │ │ ├── BinaryData.pm │ │ │ │ ├── Body.pm │ │ │ │ ├── Capabilities.pm │ │ │ │ ├── CapabilitiesExtension.pm │ │ │ │ ├── CapabilitiesExtension2.pm │ │ │ │ ├── CapabilityCategory.pm │ │ │ │ ├── CellLayout.pm │ │ │ │ ├── Certificate.pm │ │ │ │ ├── CertificateGenerationParameters.pm │ │ │ │ ├── CertificateGenerationParametersExtension.pm │ │ │ │ ├── CertificateInformation.pm │ │ │ │ ├── CertificateInformationExtension.pm │ │ │ │ ├── CertificateStatus.pm │ │ │ │ ├── CertificateUsage.pm │ │ │ │ ├── CertificateWithPrivateKey.pm │ │ │ │ ├── ClassDescriptor.pm │ │ │ │ ├── ClassDescriptorExtension.pm │ │ │ │ ├── ClassDescriptorExtension2.pm │ │ │ │ ├── ClassType.pm │ │ │ │ ├── CodingCapabilities.pm │ │ │ │ ├── Color.pm │ │ │ │ ├── ColorCovariance.pm │ │ │ │ ├── ColorDescriptor.pm │ │ │ │ ├── ColorDescriptorExtension.pm │ │ │ │ ├── ColorOptions.pm │ │ │ │ ├── ColorspaceRange.pm │ │ │ │ ├── Config.pm │ │ │ │ ├── ConfigDescription.pm │ │ │ │ ├── ConfigDescriptionExtension.pm │ │ │ │ ├── ConfigurationEntity.pm │ │ │ │ ├── ContinuousFocus.pm │ │ │ │ ├── ContinuousFocusOptions.pm │ │ │ │ ├── DNSInformation.pm │ │ │ │ ├── DNSInformationExtension.pm │ │ │ │ ├── DNSName.pm │ │ │ │ ├── Date.pm │ │ │ │ ├── DateTime.pm │ │ │ │ ├── DateTimeRange.pm │ │ │ │ ├── Description.pm │ │ │ │ ├── DeviceCapabilities.pm │ │ │ │ ├── DeviceCapabilitiesExtension.pm │ │ │ │ ├── DeviceEntity.pm │ │ │ │ ├── DeviceIOCapabilities.pm │ │ │ │ ├── DigitalInput.pm │ │ │ │ ├── Direction.pm │ │ │ │ ├── DiscoveryMode.pm │ │ │ │ ├── DisplayCapabilities.pm │ │ │ │ ├── Domain.pm │ │ │ │ ├── Dot11AuthAndMangementSuite.pm │ │ │ │ ├── Dot11AvailableNetworks.pm │ │ │ │ ├── Dot11AvailableNetworksExtension.pm │ │ │ │ ├── Dot11Capabilities.pm │ │ │ │ ├── Dot11Cipher.pm │ │ │ │ ├── Dot11Configuration.pm │ │ │ │ ├── Dot11PSK.pm │ │ │ │ ├── Dot11PSKPassphrase.pm │ │ │ │ ├── Dot11PSKSet.pm │ │ │ │ ├── Dot11PSKSetExtension.pm │ │ │ │ ├── Dot11SSIDType.pm │ │ │ │ ├── Dot11SecurityConfiguration.pm │ │ │ │ ├── Dot11SecurityConfigurationExtension.pm │ │ │ │ ├── Dot11SecurityMode.pm │ │ │ │ ├── Dot11SignalStrength.pm │ │ │ │ ├── Dot11StationMode.pm │ │ │ │ ├── Dot11Status.pm │ │ │ │ ├── Dot1XConfiguration.pm │ │ │ │ ├── Dot1XConfigurationExtension.pm │ │ │ │ ├── Dot3Configuration.pm │ │ │ │ ├── Duplex.pm │ │ │ │ ├── DurationRange.pm │ │ │ │ ├── DynamicDNSInformation.pm │ │ │ │ ├── DynamicDNSInformationExtension.pm │ │ │ │ ├── DynamicDNSType.pm │ │ │ │ ├── EAPMethodConfiguration.pm │ │ │ │ ├── EFlip.pm │ │ │ │ ├── EFlipMode.pm │ │ │ │ ├── EFlipOptions.pm │ │ │ │ ├── EFlipOptionsExtension.pm │ │ │ │ ├── EapMethodExtension.pm │ │ │ │ ├── Enabled.pm │ │ │ │ ├── EngineConfiguration.pm │ │ │ │ ├── Envelope.pm │ │ │ │ ├── EventCapabilities.pm │ │ │ │ ├── EventStreamExtension.pm │ │ │ │ ├── EventSubscription.pm │ │ │ │ ├── Exposure.pm │ │ │ │ ├── Exposure20.pm │ │ │ │ ├── ExposureMode.pm │ │ │ │ ├── ExposureOptions.pm │ │ │ │ ├── ExposureOptions20.pm │ │ │ │ ├── ExposurePriority.pm │ │ │ │ ├── FactoryDefaultType.pm │ │ │ │ ├── Fault.pm │ │ │ │ ├── FindEventResult.pm │ │ │ │ ├── FindEventResultList.pm │ │ │ │ ├── FindMetadataResult.pm │ │ │ │ ├── FindMetadataResultList.pm │ │ │ │ ├── FindPTZPositionResult.pm │ │ │ │ ├── FindPTZPositionResultList.pm │ │ │ │ ├── FindRecordingResultList.pm │ │ │ │ ├── FloatAttrList.pm │ │ │ │ ├── FloatList.pm │ │ │ │ ├── FloatRange.pm │ │ │ │ ├── FocusConfiguration.pm │ │ │ │ ├── FocusConfiguration20.pm │ │ │ │ ├── FocusConfiguration20Extension.pm │ │ │ │ ├── FocusMove.pm │ │ │ │ ├── FocusOptions.pm │ │ │ │ ├── FocusOptions20.pm │ │ │ │ ├── FocusOptions20Extension.pm │ │ │ │ ├── FocusStatus.pm │ │ │ │ ├── FocusStatus20.pm │ │ │ │ ├── FocusStatus20Extension.pm │ │ │ │ ├── Frame.pm │ │ │ │ ├── FrameExtension.pm │ │ │ │ ├── FrameExtension2.pm │ │ │ │ ├── G711DecOptions.pm │ │ │ │ ├── G726DecOptions.pm │ │ │ │ ├── GenericEapPwdConfigurationExtension.pm │ │ │ │ ├── GetRecordingJobsResponseItem.pm │ │ │ │ ├── GetRecordingsResponseItem.pm │ │ │ │ ├── GetTracksResponseItem.pm │ │ │ │ ├── GetTracksResponseList.pm │ │ │ │ ├── H264Configuration.pm │ │ │ │ ├── H264DecOptions.pm │ │ │ │ ├── H264Options.pm │ │ │ │ ├── H264Options2.pm │ │ │ │ ├── H264Profile.pm │ │ │ │ ├── Header.pm │ │ │ │ ├── HostnameInformation.pm │ │ │ │ ├── HostnameInformationExtension.pm │ │ │ │ ├── HwAddress.pm │ │ │ │ ├── IANA_IfTypes.pm │ │ │ │ ├── IOCapabilities.pm │ │ │ │ ├── IOCapabilitiesExtension.pm │ │ │ │ ├── IOCapabilitiesExtension2.pm │ │ │ │ ├── IPAddress.pm │ │ │ │ ├── IPAddressFilter.pm │ │ │ │ ├── IPAddressFilterExtension.pm │ │ │ │ ├── IPAddressFilterType.pm │ │ │ │ ├── IPType.pm │ │ │ │ ├── IPv4Address.pm │ │ │ │ ├── IPv4Configuration.pm │ │ │ │ ├── IPv4NetworkInterface.pm │ │ │ │ ├── IPv4NetworkInterfaceSetConfiguration.pm │ │ │ │ ├── IPv6Address.pm │ │ │ │ ├── IPv6Configuration.pm │ │ │ │ ├── IPv6ConfigurationExtension.pm │ │ │ │ ├── IPv6DHCPConfiguration.pm │ │ │ │ ├── IPv6NetworkInterface.pm │ │ │ │ ├── IPv6NetworkInterfaceSetConfiguration.pm │ │ │ │ ├── ImageStabilization.pm │ │ │ │ ├── ImageStabilizationExtension.pm │ │ │ │ ├── ImageStabilizationMode.pm │ │ │ │ ├── ImageStabilizationOptions.pm │ │ │ │ ├── ImageStabilizationOptionsExtension.pm │ │ │ │ ├── ImagingCapabilities.pm │ │ │ │ ├── ImagingOptions.pm │ │ │ │ ├── ImagingOptions20.pm │ │ │ │ ├── ImagingOptions20Extension.pm │ │ │ │ ├── ImagingOptions20Extension2.pm │ │ │ │ ├── ImagingOptions20Extension3.pm │ │ │ │ ├── ImagingSettings.pm │ │ │ │ ├── ImagingSettings20.pm │ │ │ │ ├── ImagingSettingsExtension.pm │ │ │ │ ├── ImagingSettingsExtension20.pm │ │ │ │ ├── ImagingSettingsExtension202.pm │ │ │ │ ├── ImagingSettingsExtension203.pm │ │ │ │ ├── ImagingStatus.pm │ │ │ │ ├── ImagingStatus20.pm │ │ │ │ ├── ImagingStatus20Extension.pm │ │ │ │ ├── Include.pm │ │ │ │ ├── IntAttrList.pm │ │ │ │ ├── IntList.pm │ │ │ │ ├── IntRange.pm │ │ │ │ ├── IntRectangle.pm │ │ │ │ ├── IntRectangleRange.pm │ │ │ │ ├── IrCutFilterAutoAdjustment.pm │ │ │ │ ├── IrCutFilterAutoAdjustmentExtension.pm │ │ │ │ ├── IrCutFilterAutoAdjustmentOptions.pm │ │ │ │ ├── IrCutFilterAutoAdjustmentOptionsExtension.pm │ │ │ │ ├── IrCutFilterAutoBoundaryType.pm │ │ │ │ ├── IrCutFilterMode.pm │ │ │ │ ├── ItemList.pm │ │ │ │ ├── ItemListDescription.pm │ │ │ │ ├── ItemListDescriptionExtension.pm │ │ │ │ ├── ItemListExtension.pm │ │ │ │ ├── JobToken.pm │ │ │ │ ├── JpegDecOptions.pm │ │ │ │ ├── JpegOptions.pm │ │ │ │ ├── JpegOptions2.pm │ │ │ │ ├── Layout.pm │ │ │ │ ├── LayoutExtension.pm │ │ │ │ ├── LayoutOptions.pm │ │ │ │ ├── LayoutOptionsExtension.pm │ │ │ │ ├── MaximumNumberOfOSDs.pm │ │ │ │ ├── MediaAttributes.pm │ │ │ │ ├── MediaCapabilities.pm │ │ │ │ ├── MediaCapabilitiesExtension.pm │ │ │ │ ├── MediaUri.pm │ │ │ │ ├── Merge.pm │ │ │ │ ├── MessageDescription.pm │ │ │ │ ├── MessageDescriptionExtension.pm │ │ │ │ ├── MessageExtension.pm │ │ │ │ ├── MetadataAttributes.pm │ │ │ │ ├── MetadataConfiguration.pm │ │ │ │ ├── MetadataConfigurationExtension.pm │ │ │ │ ├── MetadataConfigurationOptions.pm │ │ │ │ ├── MetadataFilter.pm │ │ │ │ ├── MetadataInput.pm │ │ │ │ ├── MetadataInputExtension.pm │ │ │ │ ├── MetadataStream.pm │ │ │ │ ├── MetadataStreamExtension.pm │ │ │ │ ├── MetadataStreamExtension2.pm │ │ │ │ ├── ModeOfOperation.pm │ │ │ │ ├── MotionExpression.pm │ │ │ │ ├── MotionExpressionConfiguration.pm │ │ │ │ ├── MotionInCells.pm │ │ │ │ ├── MoveOptions.pm │ │ │ │ ├── MoveOptions20.pm │ │ │ │ ├── MoveStatus.pm │ │ │ │ ├── Mpeg4Configuration.pm │ │ │ │ ├── Mpeg4DecOptions.pm │ │ │ │ ├── Mpeg4Options.pm │ │ │ │ ├── Mpeg4Options2.pm │ │ │ │ ├── Mpeg4Profile.pm │ │ │ │ ├── MulticastConfiguration.pm │ │ │ │ ├── NTPInformation.pm │ │ │ │ ├── NTPInformationExtension.pm │ │ │ │ ├── Name.pm │ │ │ │ ├── NetworkCapabilities.pm │ │ │ │ ├── NetworkCapabilitiesExtension.pm │ │ │ │ ├── NetworkCapabilitiesExtension2.pm │ │ │ │ ├── NetworkGateway.pm │ │ │ │ ├── NetworkHost.pm │ │ │ │ ├── NetworkHostExtension.pm │ │ │ │ ├── NetworkHostType.pm │ │ │ │ ├── NetworkInterface.pm │ │ │ │ ├── NetworkInterfaceConfigPriority.pm │ │ │ │ ├── NetworkInterfaceConnectionSetting.pm │ │ │ │ ├── NetworkInterfaceExtension.pm │ │ │ │ ├── NetworkInterfaceExtension2.pm │ │ │ │ ├── NetworkInterfaceInfo.pm │ │ │ │ ├── NetworkInterfaceLink.pm │ │ │ │ ├── NetworkInterfaceSetConfiguration.pm │ │ │ │ ├── NetworkInterfaceSetConfigurationExtension.pm │ │ │ │ ├── NetworkInterfaceSetConfigurationExtension2.pm │ │ │ │ ├── NetworkProtocol.pm │ │ │ │ ├── NetworkProtocolExtension.pm │ │ │ │ ├── NetworkProtocolType.pm │ │ │ │ ├── NetworkZeroConfiguration.pm │ │ │ │ ├── NetworkZeroConfigurationExtension.pm │ │ │ │ ├── NetworkZeroConfigurationExtension2.pm │ │ │ │ ├── OSDColor.pm │ │ │ │ ├── OSDColorOptions.pm │ │ │ │ ├── OSDColorOptionsExtension.pm │ │ │ │ ├── OSDConfiguration.pm │ │ │ │ ├── OSDConfigurationExtension.pm │ │ │ │ ├── OSDConfigurationOptions.pm │ │ │ │ ├── OSDConfigurationOptionsExtension.pm │ │ │ │ ├── OSDImgConfiguration.pm │ │ │ │ ├── OSDImgConfigurationExtension.pm │ │ │ │ ├── OSDImgOptions.pm │ │ │ │ ├── OSDImgOptionsExtension.pm │ │ │ │ ├── OSDPosConfiguration.pm │ │ │ │ ├── OSDPosConfigurationExtension.pm │ │ │ │ ├── OSDReference.pm │ │ │ │ ├── OSDTextConfiguration.pm │ │ │ │ ├── OSDTextConfigurationExtension.pm │ │ │ │ ├── OSDTextOptions.pm │ │ │ │ ├── OSDTextOptionsExtension.pm │ │ │ │ ├── OSDType.pm │ │ │ │ ├── Object.pm │ │ │ │ ├── ObjectExtension.pm │ │ │ │ ├── ObjectId.pm │ │ │ │ ├── ObjectTree.pm │ │ │ │ ├── ObjectTreeExtension.pm │ │ │ │ ├── OnvifVersion.pm │ │ │ │ ├── OtherType.pm │ │ │ │ ├── PTControlDirection.pm │ │ │ │ ├── PTControlDirectionExtension.pm │ │ │ │ ├── PTControlDirectionOptions.pm │ │ │ │ ├── PTControlDirectionOptionsExtension.pm │ │ │ │ ├── PTZCapabilities.pm │ │ │ │ ├── PTZConfiguration.pm │ │ │ │ ├── PTZConfigurationExtension.pm │ │ │ │ ├── PTZConfigurationExtension2.pm │ │ │ │ ├── PTZConfigurationOptions.pm │ │ │ │ ├── PTZConfigurationOptions2.pm │ │ │ │ ├── PTZFilter.pm │ │ │ │ ├── PTZMoveStatus.pm │ │ │ │ ├── PTZNode.pm │ │ │ │ ├── PTZNodeExtension.pm │ │ │ │ ├── PTZNodeExtension2.pm │ │ │ │ ├── PTZPositionFilter.pm │ │ │ │ ├── PTZPreset.pm │ │ │ │ ├── PTZPresetTourDirection.pm │ │ │ │ ├── PTZPresetTourExtension.pm │ │ │ │ ├── PTZPresetTourOperation.pm │ │ │ │ ├── PTZPresetTourOptions.pm │ │ │ │ ├── PTZPresetTourPresetDetail.pm │ │ │ │ ├── PTZPresetTourPresetDetailOptions.pm │ │ │ │ ├── PTZPresetTourPresetDetailOptionsExtension.pm │ │ │ │ ├── PTZPresetTourSpot.pm │ │ │ │ ├── PTZPresetTourSpotExtension.pm │ │ │ │ ├── PTZPresetTourSpotOptions.pm │ │ │ │ ├── PTZPresetTourStartingCondition.pm │ │ │ │ ├── PTZPresetTourStartingConditionExtension.pm │ │ │ │ ├── PTZPresetTourStartingConditionOptions.pm │ │ │ │ ├── PTZPresetTourStartingConditionOptionsExtension.pm │ │ │ │ ├── PTZPresetTourState.pm │ │ │ │ ├── PTZPresetTourStatus.pm │ │ │ │ ├── PTZPresetTourStatusExtension.pm │ │ │ │ ├── PTZPresetTourSupported.pm │ │ │ │ ├── PTZPresetTourSupportedExtension.pm │ │ │ │ ├── PTZPresetTourTypeExtension.pm │ │ │ │ ├── PTZSpaces.pm │ │ │ │ ├── PTZSpacesExtension.pm │ │ │ │ ├── PTZSpeed.pm │ │ │ │ ├── PTZStatus.pm │ │ │ │ ├── PTZStatusFilterOptions.pm │ │ │ │ ├── PTZStatusFilterOptionsExtension.pm │ │ │ │ ├── PTZStream.pm │ │ │ │ ├── PTZStreamExtension.pm │ │ │ │ ├── PTZVector.pm │ │ │ │ ├── PanTiltLimits.pm │ │ │ │ ├── PaneConfiguration.pm │ │ │ │ ├── PaneLayout.pm │ │ │ │ ├── PaneLayoutOptions.pm │ │ │ │ ├── PaneOptionExtension.pm │ │ │ │ ├── Polygon.pm │ │ │ │ ├── PolygonConfiguration.pm │ │ │ │ ├── Polyline.pm │ │ │ │ ├── PolylineArray.pm │ │ │ │ ├── PolylineArrayConfiguration.pm │ │ │ │ ├── PolylineArrayExtension.pm │ │ │ │ ├── PrefixedIPv4Address.pm │ │ │ │ ├── PrefixedIPv6Address.pm │ │ │ │ ├── PresetTour.pm │ │ │ │ ├── Profile.pm │ │ │ │ ├── ProfileCapabilities.pm │ │ │ │ ├── ProfileExtension.pm │ │ │ │ ├── ProfileExtension2.pm │ │ │ │ ├── PropertyOperation.pm │ │ │ │ ├── RealTimeStreamingCapabilities.pm │ │ │ │ ├── RealTimeStreamingCapabilitiesExtension.pm │ │ │ │ ├── Receiver.pm │ │ │ │ ├── ReceiverCapabilities.pm │ │ │ │ ├── ReceiverConfiguration.pm │ │ │ │ ├── ReceiverMode.pm │ │ │ │ ├── ReceiverReference.pm │ │ │ │ ├── ReceiverState.pm │ │ │ │ ├── ReceiverStateInformation.pm │ │ │ │ ├── RecordingCapabilities.pm │ │ │ │ ├── RecordingConfiguration.pm │ │ │ │ ├── RecordingInformation.pm │ │ │ │ ├── RecordingJobConfiguration.pm │ │ │ │ ├── RecordingJobConfigurationExtension.pm │ │ │ │ ├── RecordingJobMode.pm │ │ │ │ ├── RecordingJobReference.pm │ │ │ │ ├── RecordingJobSource.pm │ │ │ │ ├── RecordingJobSourceExtension.pm │ │ │ │ ├── RecordingJobState.pm │ │ │ │ ├── RecordingJobStateInformation.pm │ │ │ │ ├── RecordingJobStateInformationExtension.pm │ │ │ │ ├── RecordingJobStateSource.pm │ │ │ │ ├── RecordingJobStateTrack.pm │ │ │ │ ├── RecordingJobStateTracks.pm │ │ │ │ ├── RecordingJobTrack.pm │ │ │ │ ├── RecordingReference.pm │ │ │ │ ├── RecordingSourceInformation.pm │ │ │ │ ├── RecordingStatus.pm │ │ │ │ ├── RecordingSummary.pm │ │ │ │ ├── Rectangle.pm │ │ │ │ ├── ReferenceToken.pm │ │ │ │ ├── RelativeFocus.pm │ │ │ │ ├── RelativeFocusOptions.pm │ │ │ │ ├── RelativeFocusOptions20.pm │ │ │ │ ├── RelayIdleState.pm │ │ │ │ ├── RelayLogicalState.pm │ │ │ │ ├── RelayMode.pm │ │ │ │ ├── RelayOutput.pm │ │ │ │ ├── RelayOutputSettings.pm │ │ │ │ ├── RemoteUser.pm │ │ │ │ ├── Rename.pm │ │ │ │ ├── ReplayCapabilities.pm │ │ │ │ ├── ReplayConfiguration.pm │ │ │ │ ├── Reverse.pm │ │ │ │ ├── ReverseMode.pm │ │ │ │ ├── ReverseOptions.pm │ │ │ │ ├── ReverseOptionsExtension.pm │ │ │ │ ├── Rotate.pm │ │ │ │ ├── RotateExtension.pm │ │ │ │ ├── RotateMode.pm │ │ │ │ ├── RotateOptions.pm │ │ │ │ ├── RotateOptionsExtension.pm │ │ │ │ ├── RuleEngineConfiguration.pm │ │ │ │ ├── RuleEngineConfigurationExtension.pm │ │ │ │ ├── Scope.pm │ │ │ │ ├── ScopeDefinition.pm │ │ │ │ ├── SearchCapabilities.pm │ │ │ │ ├── SearchScope.pm │ │ │ │ ├── SearchScopeExtension.pm │ │ │ │ ├── SearchState.pm │ │ │ │ ├── SecurityCapabilities.pm │ │ │ │ ├── SecurityCapabilitiesExtension.pm │ │ │ │ ├── SecurityCapabilitiesExtension2.pm │ │ │ │ ├── SetDateTimeType.pm │ │ │ │ ├── ShapeDescriptor.pm │ │ │ │ ├── ShapeDescriptorExtension.pm │ │ │ │ ├── SourceIdentification.pm │ │ │ │ ├── SourceIdentificationExtension.pm │ │ │ │ ├── SourceReference.pm │ │ │ │ ├── Space1DDescription.pm │ │ │ │ ├── Space2DDescription.pm │ │ │ │ ├── Split.pm │ │ │ │ ├── StreamSetup.pm │ │ │ │ ├── StreamType.pm │ │ │ │ ├── StringAttrList.pm │ │ │ │ ├── SupportInformation.pm │ │ │ │ ├── SupportedAnalyticsModules.pm │ │ │ │ ├── SupportedAnalyticsModulesExtension.pm │ │ │ │ ├── SupportedRules.pm │ │ │ │ ├── SupportedRulesExtension.pm │ │ │ │ ├── SystemCapabilities.pm │ │ │ │ ├── SystemCapabilitiesExtension.pm │ │ │ │ ├── SystemCapabilitiesExtension2.pm │ │ │ │ ├── SystemDateTime.pm │ │ │ │ ├── SystemDateTimeExtension.pm │ │ │ │ ├── SystemLog.pm │ │ │ │ ├── SystemLogType.pm │ │ │ │ ├── SystemLogUri.pm │ │ │ │ ├── SystemLogUriList.pm │ │ │ │ ├── TLSConfiguration.pm │ │ │ │ ├── Time.pm │ │ │ │ ├── TimeZone.pm │ │ │ │ ├── TopicNamespaceLocation.pm │ │ │ │ ├── TrackAttributes.pm │ │ │ │ ├── TrackAttributesExtension.pm │ │ │ │ ├── TrackConfiguration.pm │ │ │ │ ├── TrackInformation.pm │ │ │ │ ├── TrackReference.pm │ │ │ │ ├── TrackType.pm │ │ │ │ ├── Transformation.pm │ │ │ │ ├── TransformationExtension.pm │ │ │ │ ├── Transport.pm │ │ │ │ ├── TransportProtocol.pm │ │ │ │ ├── User.pm │ │ │ │ ├── UserExtension.pm │ │ │ │ ├── UserLevel.pm │ │ │ │ ├── Vector.pm │ │ │ │ ├── Vector1D.pm │ │ │ │ ├── Vector2D.pm │ │ │ │ ├── VideoAnalyticsConfiguration.pm │ │ │ │ ├── VideoAnalyticsStream.pm │ │ │ │ ├── VideoAnalyticsStreamExtension.pm │ │ │ │ ├── VideoAttributes.pm │ │ │ │ ├── VideoDecoderConfigurationOptions.pm │ │ │ │ ├── VideoDecoderConfigurationOptionsExtension.pm │ │ │ │ ├── VideoEncoderConfiguration.pm │ │ │ │ ├── VideoEncoderConfigurationOptions.pm │ │ │ │ ├── VideoEncoderOptionsExtension.pm │ │ │ │ ├── VideoEncoderOptionsExtension2.pm │ │ │ │ ├── VideoEncoding.pm │ │ │ │ ├── VideoOutput.pm │ │ │ │ ├── VideoOutputConfiguration.pm │ │ │ │ ├── VideoOutputConfigurationOptions.pm │ │ │ │ ├── VideoOutputExtension.pm │ │ │ │ ├── VideoRateControl.pm │ │ │ │ ├── VideoResolution.pm │ │ │ │ ├── VideoSource.pm │ │ │ │ ├── VideoSourceConfiguration.pm │ │ │ │ ├── VideoSourceConfigurationExtension.pm │ │ │ │ ├── VideoSourceConfigurationExtension2.pm │ │ │ │ ├── VideoSourceConfigurationOptions.pm │ │ │ │ ├── VideoSourceConfigurationOptionsExtension.pm │ │ │ │ ├── VideoSourceConfigurationOptionsExtension2.pm │ │ │ │ ├── VideoSourceExtension.pm │ │ │ │ ├── VideoSourceExtension2.pm │ │ │ │ ├── WhiteBalance.pm │ │ │ │ ├── WhiteBalance20.pm │ │ │ │ ├── WhiteBalance20Extension.pm │ │ │ │ ├── WhiteBalanceMode.pm │ │ │ │ ├── WhiteBalanceOptions.pm │ │ │ │ ├── WhiteBalanceOptions20.pm │ │ │ │ ├── WhiteBalanceOptions20Extension.pm │ │ │ │ ├── WideDynamicMode.pm │ │ │ │ ├── WideDynamicRange.pm │ │ │ │ ├── WideDynamicRange20.pm │ │ │ │ ├── WideDynamicRangeOptions.pm │ │ │ │ ├── WideDynamicRangeOptions20.pm │ │ │ │ ├── XPathExpression.pm │ │ │ │ ├── ZoomLimits.pm │ │ │ │ ├── base64Binary.pm │ │ │ │ ├── detail.pm │ │ │ │ ├── encodingStyle.pm │ │ │ │ └── hexBinary.pm │ │ ├── Device │ │ │ ├── Attributes │ │ │ │ ├── actor.pm │ │ │ │ ├── contentType.pm │ │ │ │ ├── encodingStyle.pm │ │ │ │ ├── expectedContentTypes.pm │ │ │ │ └── mustUnderstand.pm │ │ │ ├── Elements │ │ │ │ ├── AddIPAddressFilter.pm │ │ │ │ ├── AddIPAddressFilterResponse.pm │ │ │ │ ├── AddScopes.pm │ │ │ │ ├── AddScopesResponse.pm │ │ │ │ ├── AudioDecoderConfiguration.pm │ │ │ │ ├── AudioEncoderConfiguration.pm │ │ │ │ ├── AudioOutputConfiguration.pm │ │ │ │ ├── AudioSourceConfiguration.pm │ │ │ │ ├── Body.pm │ │ │ │ ├── Capabilities.pm │ │ │ │ ├── CreateCertificate.pm │ │ │ │ ├── CreateCertificateResponse.pm │ │ │ │ ├── CreateDot1XConfiguration.pm │ │ │ │ ├── CreateDot1XConfigurationResponse.pm │ │ │ │ ├── CreateUsers.pm │ │ │ │ ├── CreateUsersResponse.pm │ │ │ │ ├── DeleteCertificates.pm │ │ │ │ ├── DeleteCertificatesResponse.pm │ │ │ │ ├── DeleteDot1XConfiguration.pm │ │ │ │ ├── DeleteDot1XConfigurationResponse.pm │ │ │ │ ├── DeleteUsers.pm │ │ │ │ ├── DeleteUsersResponse.pm │ │ │ │ ├── Envelope.pm │ │ │ │ ├── Fault.pm │ │ │ │ ├── GetAccessPolicy.pm │ │ │ │ ├── GetAccessPolicyResponse.pm │ │ │ │ ├── GetCACertificates.pm │ │ │ │ ├── GetCACertificatesResponse.pm │ │ │ │ ├── GetCapabilities.pm │ │ │ │ ├── GetCapabilitiesResponse.pm │ │ │ │ ├── GetCertificateInformation.pm │ │ │ │ ├── GetCertificateInformationResponse.pm │ │ │ │ ├── GetCertificates.pm │ │ │ │ ├── GetCertificatesResponse.pm │ │ │ │ ├── GetCertificatesStatus.pm │ │ │ │ ├── GetCertificatesStatusResponse.pm │ │ │ │ ├── GetClientCertificateMode.pm │ │ │ │ ├── GetClientCertificateModeResponse.pm │ │ │ │ ├── GetDNS.pm │ │ │ │ ├── GetDNSResponse.pm │ │ │ │ ├── GetDPAddresses.pm │ │ │ │ ├── GetDPAddressesResponse.pm │ │ │ │ ├── GetDeviceInformation.pm │ │ │ │ ├── GetDeviceInformationResponse.pm │ │ │ │ ├── GetDiscoveryMode.pm │ │ │ │ ├── GetDiscoveryModeResponse.pm │ │ │ │ ├── GetDot11Capabilities.pm │ │ │ │ ├── GetDot11CapabilitiesResponse.pm │ │ │ │ ├── GetDot11Status.pm │ │ │ │ ├── GetDot11StatusResponse.pm │ │ │ │ ├── GetDot1XConfiguration.pm │ │ │ │ ├── GetDot1XConfigurationResponse.pm │ │ │ │ ├── GetDot1XConfigurations.pm │ │ │ │ ├── GetDot1XConfigurationsResponse.pm │ │ │ │ ├── GetDynamicDNS.pm │ │ │ │ ├── GetDynamicDNSResponse.pm │ │ │ │ ├── GetEndpointReference.pm │ │ │ │ ├── GetEndpointReferenceResponse.pm │ │ │ │ ├── GetHostname.pm │ │ │ │ ├── GetHostnameResponse.pm │ │ │ │ ├── GetIPAddressFilter.pm │ │ │ │ ├── GetIPAddressFilterResponse.pm │ │ │ │ ├── GetNTP.pm │ │ │ │ ├── GetNTPResponse.pm │ │ │ │ ├── GetNetworkDefaultGateway.pm │ │ │ │ ├── GetNetworkDefaultGatewayResponse.pm │ │ │ │ ├── GetNetworkInterfaces.pm │ │ │ │ ├── GetNetworkInterfacesResponse.pm │ │ │ │ ├── GetNetworkProtocols.pm │ │ │ │ ├── GetNetworkProtocolsResponse.pm │ │ │ │ ├── GetPkcs10Request.pm │ │ │ │ ├── GetPkcs10RequestResponse.pm │ │ │ │ ├── GetRelayOutputs.pm │ │ │ │ ├── GetRelayOutputsResponse.pm │ │ │ │ ├── GetRemoteDiscoveryMode.pm │ │ │ │ ├── GetRemoteDiscoveryModeResponse.pm │ │ │ │ ├── GetRemoteUser.pm │ │ │ │ ├── GetRemoteUserResponse.pm │ │ │ │ ├── GetScopes.pm │ │ │ │ ├── GetScopesResponse.pm │ │ │ │ ├── GetServiceCapabilities.pm │ │ │ │ ├── GetServiceCapabilitiesResponse.pm │ │ │ │ ├── GetServices.pm │ │ │ │ ├── GetServicesResponse.pm │ │ │ │ ├── GetSystemBackup.pm │ │ │ │ ├── GetSystemBackupResponse.pm │ │ │ │ ├── GetSystemDateAndTime.pm │ │ │ │ ├── GetSystemDateAndTimeResponse.pm │ │ │ │ ├── GetSystemLog.pm │ │ │ │ ├── GetSystemLogResponse.pm │ │ │ │ ├── GetSystemSupportInformation.pm │ │ │ │ ├── GetSystemSupportInformationResponse.pm │ │ │ │ ├── GetSystemUris.pm │ │ │ │ ├── GetSystemUrisResponse.pm │ │ │ │ ├── GetUsers.pm │ │ │ │ ├── GetUsersResponse.pm │ │ │ │ ├── GetWsdlUrl.pm │ │ │ │ ├── GetWsdlUrlResponse.pm │ │ │ │ ├── GetZeroConfiguration.pm │ │ │ │ ├── GetZeroConfigurationResponse.pm │ │ │ │ ├── Header.pm │ │ │ │ ├── Include.pm │ │ │ │ ├── LoadCACertificates.pm │ │ │ │ ├── LoadCACertificatesResponse.pm │ │ │ │ ├── LoadCertificateWithPrivateKey.pm │ │ │ │ ├── LoadCertificateWithPrivateKeyResponse.pm │ │ │ │ ├── LoadCertificates.pm │ │ │ │ ├── LoadCertificatesResponse.pm │ │ │ │ ├── Message.pm │ │ │ │ ├── MetadataConfiguration.pm │ │ │ │ ├── MetadataStream.pm │ │ │ │ ├── PTZConfiguration.pm │ │ │ │ ├── Polygon.pm │ │ │ │ ├── Polyline.pm │ │ │ │ ├── RemoveIPAddressFilter.pm │ │ │ │ ├── RemoveIPAddressFilterResponse.pm │ │ │ │ ├── RemoveScopes.pm │ │ │ │ ├── RemoveScopesResponse.pm │ │ │ │ ├── RestoreSystem.pm │ │ │ │ ├── RestoreSystemResponse.pm │ │ │ │ ├── ScanAvailableDot11Networks.pm │ │ │ │ ├── ScanAvailableDot11NetworksResponse.pm │ │ │ │ ├── SendAuxiliaryCommand.pm │ │ │ │ ├── SendAuxiliaryCommandResponse.pm │ │ │ │ ├── SetAccessPolicy.pm │ │ │ │ ├── SetAccessPolicyResponse.pm │ │ │ │ ├── SetCertificatesStatus.pm │ │ │ │ ├── SetCertificatesStatusResponse.pm │ │ │ │ ├── SetClientCertificateMode.pm │ │ │ │ ├── SetClientCertificateModeResponse.pm │ │ │ │ ├── SetDNS.pm │ │ │ │ ├── SetDNSResponse.pm │ │ │ │ ├── SetDPAddresses.pm │ │ │ │ ├── SetDPAddressesResponse.pm │ │ │ │ ├── SetDiscoveryMode.pm │ │ │ │ ├── SetDiscoveryModeResponse.pm │ │ │ │ ├── SetDot1XConfiguration.pm │ │ │ │ ├── SetDot1XConfigurationResponse.pm │ │ │ │ ├── SetDynamicDNS.pm │ │ │ │ ├── SetDynamicDNSResponse.pm │ │ │ │ ├── SetHostname.pm │ │ │ │ ├── SetHostnameFromDHCP.pm │ │ │ │ ├── SetHostnameFromDHCPResponse.pm │ │ │ │ ├── SetHostnameResponse.pm │ │ │ │ ├── SetIPAddressFilter.pm │ │ │ │ ├── SetIPAddressFilterResponse.pm │ │ │ │ ├── SetNTP.pm │ │ │ │ ├── SetNTPResponse.pm │ │ │ │ ├── SetNetworkDefaultGateway.pm │ │ │ │ ├── SetNetworkDefaultGatewayResponse.pm │ │ │ │ ├── SetNetworkInterfaces.pm │ │ │ │ ├── SetNetworkInterfacesResponse.pm │ │ │ │ ├── SetNetworkProtocols.pm │ │ │ │ ├── SetNetworkProtocolsResponse.pm │ │ │ │ ├── SetRelayOutputSettings.pm │ │ │ │ ├── SetRelayOutputSettingsResponse.pm │ │ │ │ ├── SetRelayOutputState.pm │ │ │ │ ├── SetRelayOutputStateResponse.pm │ │ │ │ ├── SetRemoteDiscoveryMode.pm │ │ │ │ ├── SetRemoteDiscoveryModeResponse.pm │ │ │ │ ├── SetRemoteUser.pm │ │ │ │ ├── SetRemoteUserResponse.pm │ │ │ │ ├── SetScopes.pm │ │ │ │ ├── SetScopesResponse.pm │ │ │ │ ├── SetSystemDateAndTime.pm │ │ │ │ ├── SetSystemDateAndTimeResponse.pm │ │ │ │ ├── SetSystemFactoryDefault.pm │ │ │ │ ├── SetSystemFactoryDefaultResponse.pm │ │ │ │ ├── SetUser.pm │ │ │ │ ├── SetUserResponse.pm │ │ │ │ ├── SetZeroConfiguration.pm │ │ │ │ ├── SetZeroConfigurationResponse.pm │ │ │ │ ├── StartFirmwareUpgrade.pm │ │ │ │ ├── StartFirmwareUpgradeResponse.pm │ │ │ │ ├── StartSystemRestore.pm │ │ │ │ ├── StartSystemRestoreResponse.pm │ │ │ │ ├── SystemReboot.pm │ │ │ │ ├── SystemRebootResponse.pm │ │ │ │ ├── UpgradeSystemFirmware.pm │ │ │ │ ├── UpgradeSystemFirmwareResponse.pm │ │ │ │ ├── VideoAnalyticsConfiguration.pm │ │ │ │ ├── VideoEncoderConfiguration.pm │ │ │ │ └── VideoSourceConfiguration.pm │ │ │ ├── Interfaces │ │ │ │ └── Device │ │ │ │ │ └── DevicePort.pm │ │ │ ├── Typemaps │ │ │ │ └── Device.pm │ │ │ └── Types │ │ │ │ ├── AACDecOptions.pm │ │ │ │ ├── AbsoluteFocus.pm │ │ │ │ ├── AbsoluteFocusOptions.pm │ │ │ │ ├── ActionEngineEventPayload.pm │ │ │ │ ├── ActionEngineEventPayloadExtension.pm │ │ │ │ ├── AnalyticsCapabilities.pm │ │ │ │ ├── AnalyticsDeviceCapabilities.pm │ │ │ │ ├── AnalyticsDeviceEngineConfiguration.pm │ │ │ │ ├── AnalyticsDeviceEngineConfigurationExtension.pm │ │ │ │ ├── AnalyticsDeviceExtension.pm │ │ │ │ ├── AnalyticsEngine.pm │ │ │ │ ├── AnalyticsEngineConfiguration.pm │ │ │ │ ├── AnalyticsEngineConfigurationExtension.pm │ │ │ │ ├── AnalyticsEngineControl.pm │ │ │ │ ├── AnalyticsEngineInput.pm │ │ │ │ ├── AnalyticsEngineInputInfo.pm │ │ │ │ ├── AnalyticsEngineInputInfoExtension.pm │ │ │ │ ├── AnalyticsState.pm │ │ │ │ ├── AnalyticsStateInformation.pm │ │ │ │ ├── AnyHolder.pm │ │ │ │ ├── Appearance.pm │ │ │ │ ├── AppearanceExtension.pm │ │ │ │ ├── AttachmentData.pm │ │ │ │ ├── AudioAnalyticsStream.pm │ │ │ │ ├── AudioAnalyticsStreamExtension.pm │ │ │ │ ├── AudioAttributes.pm │ │ │ │ ├── AudioClassCandidate.pm │ │ │ │ ├── AudioClassDescriptor.pm │ │ │ │ ├── AudioClassDescriptorExtension.pm │ │ │ │ ├── AudioClassType.pm │ │ │ │ ├── AudioDecoderConfiguration.pm │ │ │ │ ├── AudioDecoderConfigurationOptions.pm │ │ │ │ ├── AudioDecoderConfigurationOptionsExtension.pm │ │ │ │ ├── AudioDescriptor.pm │ │ │ │ ├── AudioEncoderConfiguration.pm │ │ │ │ ├── AudioEncoderConfigurationOption.pm │ │ │ │ ├── AudioEncoderConfigurationOptions.pm │ │ │ │ ├── AudioEncoding.pm │ │ │ │ ├── AudioOutput.pm │ │ │ │ ├── AudioOutputConfiguration.pm │ │ │ │ ├── AudioOutputConfigurationOptions.pm │ │ │ │ ├── AudioSource.pm │ │ │ │ ├── AudioSourceConfiguration.pm │ │ │ │ ├── AudioSourceConfigurationOptions.pm │ │ │ │ ├── AudioSourceOptionsExtension.pm │ │ │ │ ├── AutoFocusMode.pm │ │ │ │ ├── AuxiliaryData.pm │ │ │ │ ├── BacklightCompensation.pm │ │ │ │ ├── BacklightCompensation20.pm │ │ │ │ ├── BacklightCompensationMode.pm │ │ │ │ ├── BacklightCompensationOptions.pm │ │ │ │ ├── BacklightCompensationOptions20.pm │ │ │ │ ├── BackupFile.pm │ │ │ │ ├── Behaviour.pm │ │ │ │ ├── BehaviourExtension.pm │ │ │ │ ├── BinaryData.pm │ │ │ │ ├── Body.pm │ │ │ │ ├── Capabilities.pm │ │ │ │ ├── CapabilitiesExtension.pm │ │ │ │ ├── CapabilitiesExtension2.pm │ │ │ │ ├── CapabilityCategory.pm │ │ │ │ ├── CellLayout.pm │ │ │ │ ├── Certificate.pm │ │ │ │ ├── CertificateGenerationParameters.pm │ │ │ │ ├── CertificateGenerationParametersExtension.pm │ │ │ │ ├── CertificateInformation.pm │ │ │ │ ├── CertificateInformationExtension.pm │ │ │ │ ├── CertificateStatus.pm │ │ │ │ ├── CertificateUsage.pm │ │ │ │ ├── CertificateWithPrivateKey.pm │ │ │ │ ├── ClassDescriptor.pm │ │ │ │ ├── ClassDescriptorExtension.pm │ │ │ │ ├── ClassDescriptorExtension2.pm │ │ │ │ ├── ClassType.pm │ │ │ │ ├── CodingCapabilities.pm │ │ │ │ ├── Color.pm │ │ │ │ ├── ColorCovariance.pm │ │ │ │ ├── ColorDescriptor.pm │ │ │ │ ├── ColorDescriptorExtension.pm │ │ │ │ ├── ColorOptions.pm │ │ │ │ ├── ColorspaceRange.pm │ │ │ │ ├── Config.pm │ │ │ │ ├── ConfigDescription.pm │ │ │ │ ├── ConfigDescriptionExtension.pm │ │ │ │ ├── ConfigurationEntity.pm │ │ │ │ ├── ContinuousFocus.pm │ │ │ │ ├── ContinuousFocusOptions.pm │ │ │ │ ├── DNSInformation.pm │ │ │ │ ├── DNSInformationExtension.pm │ │ │ │ ├── DNSName.pm │ │ │ │ ├── Date.pm │ │ │ │ ├── DateTime.pm │ │ │ │ ├── DateTimeRange.pm │ │ │ │ ├── Description.pm │ │ │ │ ├── DeviceCapabilities.pm │ │ │ │ ├── DeviceCapabilitiesExtension.pm │ │ │ │ ├── DeviceEntity.pm │ │ │ │ ├── DeviceIOCapabilities.pm │ │ │ │ ├── DeviceServiceCapabilities.pm │ │ │ │ ├── DigitalInput.pm │ │ │ │ ├── Direction.pm │ │ │ │ ├── DiscoveryMode.pm │ │ │ │ ├── DisplayCapabilities.pm │ │ │ │ ├── Domain.pm │ │ │ │ ├── Dot11AuthAndMangementSuite.pm │ │ │ │ ├── Dot11AvailableNetworks.pm │ │ │ │ ├── Dot11AvailableNetworksExtension.pm │ │ │ │ ├── Dot11Capabilities.pm │ │ │ │ ├── Dot11Cipher.pm │ │ │ │ ├── Dot11Configuration.pm │ │ │ │ ├── Dot11PSK.pm │ │ │ │ ├── Dot11PSKPassphrase.pm │ │ │ │ ├── Dot11PSKSet.pm │ │ │ │ ├── Dot11PSKSetExtension.pm │ │ │ │ ├── Dot11SSIDType.pm │ │ │ │ ├── Dot11SecurityConfiguration.pm │ │ │ │ ├── Dot11SecurityConfigurationExtension.pm │ │ │ │ ├── Dot11SecurityMode.pm │ │ │ │ ├── Dot11SignalStrength.pm │ │ │ │ ├── Dot11StationMode.pm │ │ │ │ ├── Dot11Status.pm │ │ │ │ ├── Dot1XConfiguration.pm │ │ │ │ ├── Dot1XConfigurationExtension.pm │ │ │ │ ├── Dot3Configuration.pm │ │ │ │ ├── Duplex.pm │ │ │ │ ├── DurationRange.pm │ │ │ │ ├── DynamicDNSInformation.pm │ │ │ │ ├── DynamicDNSInformationExtension.pm │ │ │ │ ├── DynamicDNSType.pm │ │ │ │ ├── EAPMethodConfiguration.pm │ │ │ │ ├── EAPMethodTypes.pm │ │ │ │ ├── EFlip.pm │ │ │ │ ├── EFlipMode.pm │ │ │ │ ├── EFlipOptions.pm │ │ │ │ ├── EFlipOptionsExtension.pm │ │ │ │ ├── EapMethodExtension.pm │ │ │ │ ├── Enabled.pm │ │ │ │ ├── EngineConfiguration.pm │ │ │ │ ├── Envelope.pm │ │ │ │ ├── EventCapabilities.pm │ │ │ │ ├── EventStreamExtension.pm │ │ │ │ ├── EventSubscription.pm │ │ │ │ ├── Exposure.pm │ │ │ │ ├── Exposure20.pm │ │ │ │ ├── ExposureMode.pm │ │ │ │ ├── ExposureOptions.pm │ │ │ │ ├── ExposureOptions20.pm │ │ │ │ ├── ExposurePriority.pm │ │ │ │ ├── FactoryDefaultType.pm │ │ │ │ ├── Fault.pm │ │ │ │ ├── FindEventResult.pm │ │ │ │ ├── FindEventResultList.pm │ │ │ │ ├── FindMetadataResult.pm │ │ │ │ ├── FindMetadataResultList.pm │ │ │ │ ├── FindPTZPositionResult.pm │ │ │ │ ├── FindPTZPositionResultList.pm │ │ │ │ ├── FindRecordingResultList.pm │ │ │ │ ├── FloatAttrList.pm │ │ │ │ ├── FloatList.pm │ │ │ │ ├── FloatRange.pm │ │ │ │ ├── FocusConfiguration.pm │ │ │ │ ├── FocusConfiguration20.pm │ │ │ │ ├── FocusConfiguration20Extension.pm │ │ │ │ ├── FocusMove.pm │ │ │ │ ├── FocusOptions.pm │ │ │ │ ├── FocusOptions20.pm │ │ │ │ ├── FocusOptions20Extension.pm │ │ │ │ ├── FocusStatus.pm │ │ │ │ ├── FocusStatus20.pm │ │ │ │ ├── FocusStatus20Extension.pm │ │ │ │ ├── Frame.pm │ │ │ │ ├── FrameExtension.pm │ │ │ │ ├── FrameExtension2.pm │ │ │ │ ├── G711DecOptions.pm │ │ │ │ ├── G726DecOptions.pm │ │ │ │ ├── GenericEapPwdConfigurationExtension.pm │ │ │ │ ├── GetRecordingJobsResponseItem.pm │ │ │ │ ├── GetRecordingsResponseItem.pm │ │ │ │ ├── GetTracksResponseItem.pm │ │ │ │ ├── GetTracksResponseList.pm │ │ │ │ ├── H264Configuration.pm │ │ │ │ ├── H264DecOptions.pm │ │ │ │ ├── H264Options.pm │ │ │ │ ├── H264Options2.pm │ │ │ │ ├── H264Profile.pm │ │ │ │ ├── Header.pm │ │ │ │ ├── HostnameInformation.pm │ │ │ │ ├── HostnameInformationExtension.pm │ │ │ │ ├── HwAddress.pm │ │ │ │ ├── IANA_IfTypes.pm │ │ │ │ ├── IOCapabilities.pm │ │ │ │ ├── IOCapabilitiesExtension.pm │ │ │ │ ├── IOCapabilitiesExtension2.pm │ │ │ │ ├── IPAddress.pm │ │ │ │ ├── IPAddressFilter.pm │ │ │ │ ├── IPAddressFilterExtension.pm │ │ │ │ ├── IPAddressFilterType.pm │ │ │ │ ├── IPType.pm │ │ │ │ ├── IPv4Address.pm │ │ │ │ ├── IPv4Configuration.pm │ │ │ │ ├── IPv4NetworkInterface.pm │ │ │ │ ├── IPv4NetworkInterfaceSetConfiguration.pm │ │ │ │ ├── IPv6Address.pm │ │ │ │ ├── IPv6Configuration.pm │ │ │ │ ├── IPv6ConfigurationExtension.pm │ │ │ │ ├── IPv6DHCPConfiguration.pm │ │ │ │ ├── IPv6NetworkInterface.pm │ │ │ │ ├── IPv6NetworkInterfaceSetConfiguration.pm │ │ │ │ ├── ImageStabilization.pm │ │ │ │ ├── ImageStabilizationExtension.pm │ │ │ │ ├── ImageStabilizationMode.pm │ │ │ │ ├── ImageStabilizationOptions.pm │ │ │ │ ├── ImageStabilizationOptionsExtension.pm │ │ │ │ ├── ImagingCapabilities.pm │ │ │ │ ├── ImagingOptions.pm │ │ │ │ ├── ImagingOptions20.pm │ │ │ │ ├── ImagingOptions20Extension.pm │ │ │ │ ├── ImagingOptions20Extension2.pm │ │ │ │ ├── ImagingOptions20Extension3.pm │ │ │ │ ├── ImagingSettings.pm │ │ │ │ ├── ImagingSettings20.pm │ │ │ │ ├── ImagingSettingsExtension.pm │ │ │ │ ├── ImagingSettingsExtension20.pm │ │ │ │ ├── ImagingSettingsExtension202.pm │ │ │ │ ├── ImagingSettingsExtension203.pm │ │ │ │ ├── ImagingStatus.pm │ │ │ │ ├── ImagingStatus20.pm │ │ │ │ ├── ImagingStatus20Extension.pm │ │ │ │ ├── Include.pm │ │ │ │ ├── IntAttrList.pm │ │ │ │ ├── IntList.pm │ │ │ │ ├── IntRange.pm │ │ │ │ ├── IntRectangle.pm │ │ │ │ ├── IntRectangleRange.pm │ │ │ │ ├── IrCutFilterAutoAdjustment.pm │ │ │ │ ├── IrCutFilterAutoAdjustmentExtension.pm │ │ │ │ ├── IrCutFilterAutoAdjustmentOptions.pm │ │ │ │ ├── IrCutFilterAutoAdjustmentOptionsExtension.pm │ │ │ │ ├── IrCutFilterAutoBoundaryType.pm │ │ │ │ ├── IrCutFilterMode.pm │ │ │ │ ├── ItemList.pm │ │ │ │ ├── ItemListDescription.pm │ │ │ │ ├── ItemListDescriptionExtension.pm │ │ │ │ ├── ItemListExtension.pm │ │ │ │ ├── JobToken.pm │ │ │ │ ├── JpegDecOptions.pm │ │ │ │ ├── JpegOptions.pm │ │ │ │ ├── JpegOptions2.pm │ │ │ │ ├── Layout.pm │ │ │ │ ├── LayoutExtension.pm │ │ │ │ ├── LayoutOptions.pm │ │ │ │ ├── LayoutOptionsExtension.pm │ │ │ │ ├── MaximumNumberOfOSDs.pm │ │ │ │ ├── MediaAttributes.pm │ │ │ │ ├── MediaCapabilities.pm │ │ │ │ ├── MediaCapabilitiesExtension.pm │ │ │ │ ├── MediaUri.pm │ │ │ │ ├── Merge.pm │ │ │ │ ├── MessageDescription.pm │ │ │ │ ├── MessageDescriptionExtension.pm │ │ │ │ ├── MessageExtension.pm │ │ │ │ ├── MetadataAttributes.pm │ │ │ │ ├── MetadataConfiguration.pm │ │ │ │ ├── MetadataConfigurationExtension.pm │ │ │ │ ├── MetadataConfigurationOptions.pm │ │ │ │ ├── MetadataFilter.pm │ │ │ │ ├── MetadataInput.pm │ │ │ │ ├── MetadataInputExtension.pm │ │ │ │ ├── MetadataStream.pm │ │ │ │ ├── MetadataStreamExtension.pm │ │ │ │ ├── MetadataStreamExtension2.pm │ │ │ │ ├── MiscCapabilities.pm │ │ │ │ ├── ModeOfOperation.pm │ │ │ │ ├── MotionExpression.pm │ │ │ │ ├── MotionExpressionConfiguration.pm │ │ │ │ ├── MotionInCells.pm │ │ │ │ ├── MoveOptions.pm │ │ │ │ ├── MoveOptions20.pm │ │ │ │ ├── MoveStatus.pm │ │ │ │ ├── Mpeg4Configuration.pm │ │ │ │ ├── Mpeg4DecOptions.pm │ │ │ │ ├── Mpeg4Options.pm │ │ │ │ ├── Mpeg4Options2.pm │ │ │ │ ├── Mpeg4Profile.pm │ │ │ │ ├── MulticastConfiguration.pm │ │ │ │ ├── NTPInformation.pm │ │ │ │ ├── NTPInformationExtension.pm │ │ │ │ ├── Name.pm │ │ │ │ ├── NetworkCapabilities.pm │ │ │ │ ├── NetworkCapabilitiesExtension.pm │ │ │ │ ├── NetworkCapabilitiesExtension2.pm │ │ │ │ ├── NetworkGateway.pm │ │ │ │ ├── NetworkHost.pm │ │ │ │ ├── NetworkHostExtension.pm │ │ │ │ ├── NetworkHostType.pm │ │ │ │ ├── NetworkInterface.pm │ │ │ │ ├── NetworkInterfaceConfigPriority.pm │ │ │ │ ├── NetworkInterfaceConnectionSetting.pm │ │ │ │ ├── NetworkInterfaceExtension.pm │ │ │ │ ├── NetworkInterfaceExtension2.pm │ │ │ │ ├── NetworkInterfaceInfo.pm │ │ │ │ ├── NetworkInterfaceLink.pm │ │ │ │ ├── NetworkInterfaceSetConfiguration.pm │ │ │ │ ├── NetworkInterfaceSetConfigurationExtension.pm │ │ │ │ ├── NetworkInterfaceSetConfigurationExtension2.pm │ │ │ │ ├── NetworkProtocol.pm │ │ │ │ ├── NetworkProtocolExtension.pm │ │ │ │ ├── NetworkProtocolType.pm │ │ │ │ ├── NetworkZeroConfiguration.pm │ │ │ │ ├── NetworkZeroConfigurationExtension.pm │ │ │ │ ├── NetworkZeroConfigurationExtension2.pm │ │ │ │ ├── OSDColor.pm │ │ │ │ ├── OSDColorOptions.pm │ │ │ │ ├── OSDColorOptionsExtension.pm │ │ │ │ ├── OSDConfiguration.pm │ │ │ │ ├── OSDConfigurationExtension.pm │ │ │ │ ├── OSDConfigurationOptions.pm │ │ │ │ ├── OSDConfigurationOptionsExtension.pm │ │ │ │ ├── OSDImgConfiguration.pm │ │ │ │ ├── OSDImgConfigurationExtension.pm │ │ │ │ ├── OSDImgOptions.pm │ │ │ │ ├── OSDImgOptionsExtension.pm │ │ │ │ ├── OSDPosConfiguration.pm │ │ │ │ ├── OSDPosConfigurationExtension.pm │ │ │ │ ├── OSDReference.pm │ │ │ │ ├── OSDTextConfiguration.pm │ │ │ │ ├── OSDTextConfigurationExtension.pm │ │ │ │ ├── OSDTextOptions.pm │ │ │ │ ├── OSDTextOptionsExtension.pm │ │ │ │ ├── OSDType.pm │ │ │ │ ├── Object.pm │ │ │ │ ├── ObjectExtension.pm │ │ │ │ ├── ObjectId.pm │ │ │ │ ├── ObjectTree.pm │ │ │ │ ├── ObjectTreeExtension.pm │ │ │ │ ├── OnvifVersion.pm │ │ │ │ ├── OtherType.pm │ │ │ │ ├── PTControlDirection.pm │ │ │ │ ├── PTControlDirectionExtension.pm │ │ │ │ ├── PTControlDirectionOptions.pm │ │ │ │ ├── PTControlDirectionOptionsExtension.pm │ │ │ │ ├── PTZCapabilities.pm │ │ │ │ ├── PTZConfiguration.pm │ │ │ │ ├── PTZConfigurationExtension.pm │ │ │ │ ├── PTZConfigurationExtension2.pm │ │ │ │ ├── PTZConfigurationOptions.pm │ │ │ │ ├── PTZConfigurationOptions2.pm │ │ │ │ ├── PTZFilter.pm │ │ │ │ ├── PTZMoveStatus.pm │ │ │ │ ├── PTZNode.pm │ │ │ │ ├── PTZNodeExtension.pm │ │ │ │ ├── PTZNodeExtension2.pm │ │ │ │ ├── PTZPositionFilter.pm │ │ │ │ ├── PTZPreset.pm │ │ │ │ ├── PTZPresetTourDirection.pm │ │ │ │ ├── PTZPresetTourExtension.pm │ │ │ │ ├── PTZPresetTourOperation.pm │ │ │ │ ├── PTZPresetTourOptions.pm │ │ │ │ ├── PTZPresetTourPresetDetail.pm │ │ │ │ ├── PTZPresetTourPresetDetailOptions.pm │ │ │ │ ├── PTZPresetTourPresetDetailOptionsExtension.pm │ │ │ │ ├── PTZPresetTourSpot.pm │ │ │ │ ├── PTZPresetTourSpotExtension.pm │ │ │ │ ├── PTZPresetTourSpotOptions.pm │ │ │ │ ├── PTZPresetTourStartingCondition.pm │ │ │ │ ├── PTZPresetTourStartingConditionExtension.pm │ │ │ │ ├── PTZPresetTourStartingConditionOptions.pm │ │ │ │ ├── PTZPresetTourStartingConditionOptionsExtension.pm │ │ │ │ ├── PTZPresetTourState.pm │ │ │ │ ├── PTZPresetTourStatus.pm │ │ │ │ ├── PTZPresetTourStatusExtension.pm │ │ │ │ ├── PTZPresetTourSupported.pm │ │ │ │ ├── PTZPresetTourSupportedExtension.pm │ │ │ │ ├── PTZPresetTourTypeExtension.pm │ │ │ │ ├── PTZSpaces.pm │ │ │ │ ├── PTZSpacesExtension.pm │ │ │ │ ├── PTZSpeed.pm │ │ │ │ ├── PTZStatus.pm │ │ │ │ ├── PTZStatusFilterOptions.pm │ │ │ │ ├── PTZStatusFilterOptionsExtension.pm │ │ │ │ ├── PTZStream.pm │ │ │ │ ├── PTZStreamExtension.pm │ │ │ │ ├── PTZVector.pm │ │ │ │ ├── PanTiltLimits.pm │ │ │ │ ├── PaneConfiguration.pm │ │ │ │ ├── PaneLayout.pm │ │ │ │ ├── PaneLayoutOptions.pm │ │ │ │ ├── PaneOptionExtension.pm │ │ │ │ ├── Polygon.pm │ │ │ │ ├── PolygonConfiguration.pm │ │ │ │ ├── Polyline.pm │ │ │ │ ├── PolylineArray.pm │ │ │ │ ├── PolylineArrayConfiguration.pm │ │ │ │ ├── PolylineArrayExtension.pm │ │ │ │ ├── PrefixedIPv4Address.pm │ │ │ │ ├── PrefixedIPv6Address.pm │ │ │ │ ├── PresetTour.pm │ │ │ │ ├── Profile.pm │ │ │ │ ├── ProfileCapabilities.pm │ │ │ │ ├── ProfileExtension.pm │ │ │ │ ├── ProfileExtension2.pm │ │ │ │ ├── PropertyOperation.pm │ │ │ │ ├── RealTimeStreamingCapabilities.pm │ │ │ │ ├── RealTimeStreamingCapabilitiesExtension.pm │ │ │ │ ├── Receiver.pm │ │ │ │ ├── ReceiverCapabilities.pm │ │ │ │ ├── ReceiverConfiguration.pm │ │ │ │ ├── ReceiverMode.pm │ │ │ │ ├── ReceiverReference.pm │ │ │ │ ├── ReceiverState.pm │ │ │ │ ├── ReceiverStateInformation.pm │ │ │ │ ├── RecordingCapabilities.pm │ │ │ │ ├── RecordingConfiguration.pm │ │ │ │ ├── RecordingInformation.pm │ │ │ │ ├── RecordingJobConfiguration.pm │ │ │ │ ├── RecordingJobConfigurationExtension.pm │ │ │ │ ├── RecordingJobMode.pm │ │ │ │ ├── RecordingJobReference.pm │ │ │ │ ├── RecordingJobSource.pm │ │ │ │ ├── RecordingJobSourceExtension.pm │ │ │ │ ├── RecordingJobState.pm │ │ │ │ ├── RecordingJobStateInformation.pm │ │ │ │ ├── RecordingJobStateInformationExtension.pm │ │ │ │ ├── RecordingJobStateSource.pm │ │ │ │ ├── RecordingJobStateTrack.pm │ │ │ │ ├── RecordingJobStateTracks.pm │ │ │ │ ├── RecordingJobTrack.pm │ │ │ │ ├── RecordingReference.pm │ │ │ │ ├── RecordingSourceInformation.pm │ │ │ │ ├── RecordingStatus.pm │ │ │ │ ├── RecordingSummary.pm │ │ │ │ ├── Rectangle.pm │ │ │ │ ├── ReferenceToken.pm │ │ │ │ ├── RelativeFocus.pm │ │ │ │ ├── RelativeFocusOptions.pm │ │ │ │ ├── RelativeFocusOptions20.pm │ │ │ │ ├── RelayIdleState.pm │ │ │ │ ├── RelayLogicalState.pm │ │ │ │ ├── RelayMode.pm │ │ │ │ ├── RelayOutput.pm │ │ │ │ ├── RelayOutputSettings.pm │ │ │ │ ├── RemoteUser.pm │ │ │ │ ├── Rename.pm │ │ │ │ ├── ReplayCapabilities.pm │ │ │ │ ├── ReplayConfiguration.pm │ │ │ │ ├── Reverse.pm │ │ │ │ ├── ReverseMode.pm │ │ │ │ ├── ReverseOptions.pm │ │ │ │ ├── ReverseOptionsExtension.pm │ │ │ │ ├── Rotate.pm │ │ │ │ ├── RotateExtension.pm │ │ │ │ ├── RotateMode.pm │ │ │ │ ├── RotateOptions.pm │ │ │ │ ├── RotateOptionsExtension.pm │ │ │ │ ├── RuleEngineConfiguration.pm │ │ │ │ ├── RuleEngineConfigurationExtension.pm │ │ │ │ ├── Scope.pm │ │ │ │ ├── ScopeDefinition.pm │ │ │ │ ├── SearchCapabilities.pm │ │ │ │ ├── SearchScope.pm │ │ │ │ ├── SearchScopeExtension.pm │ │ │ │ ├── SearchState.pm │ │ │ │ ├── SecurityCapabilities.pm │ │ │ │ ├── SecurityCapabilitiesExtension.pm │ │ │ │ ├── SecurityCapabilitiesExtension2.pm │ │ │ │ ├── Service.pm │ │ │ │ ├── SetDateTimeType.pm │ │ │ │ ├── ShapeDescriptor.pm │ │ │ │ ├── ShapeDescriptorExtension.pm │ │ │ │ ├── SourceIdentification.pm │ │ │ │ ├── SourceIdentificationExtension.pm │ │ │ │ ├── SourceReference.pm │ │ │ │ ├── Space1DDescription.pm │ │ │ │ ├── Space2DDescription.pm │ │ │ │ ├── Split.pm │ │ │ │ ├── StreamSetup.pm │ │ │ │ ├── StreamType.pm │ │ │ │ ├── StringAttrList.pm │ │ │ │ ├── SupportInformation.pm │ │ │ │ ├── SupportedAnalyticsModules.pm │ │ │ │ ├── SupportedAnalyticsModulesExtension.pm │ │ │ │ ├── SupportedRules.pm │ │ │ │ ├── SupportedRulesExtension.pm │ │ │ │ ├── SystemCapabilities.pm │ │ │ │ ├── SystemCapabilitiesExtension.pm │ │ │ │ ├── SystemCapabilitiesExtension2.pm │ │ │ │ ├── SystemDateTime.pm │ │ │ │ ├── SystemDateTimeExtension.pm │ │ │ │ ├── SystemLog.pm │ │ │ │ ├── SystemLogType.pm │ │ │ │ ├── SystemLogUri.pm │ │ │ │ ├── SystemLogUriList.pm │ │ │ │ ├── TLSConfiguration.pm │ │ │ │ ├── Time.pm │ │ │ │ ├── TimeZone.pm │ │ │ │ ├── TopicNamespaceLocation.pm │ │ │ │ ├── TrackAttributes.pm │ │ │ │ ├── TrackAttributesExtension.pm │ │ │ │ ├── TrackConfiguration.pm │ │ │ │ ├── TrackInformation.pm │ │ │ │ ├── TrackReference.pm │ │ │ │ ├── TrackType.pm │ │ │ │ ├── Transformation.pm │ │ │ │ ├── TransformationExtension.pm │ │ │ │ ├── Transport.pm │ │ │ │ ├── TransportProtocol.pm │ │ │ │ ├── User.pm │ │ │ │ ├── UserExtension.pm │ │ │ │ ├── UserLevel.pm │ │ │ │ ├── Vector.pm │ │ │ │ ├── Vector1D.pm │ │ │ │ ├── Vector2D.pm │ │ │ │ ├── VideoAnalyticsConfiguration.pm │ │ │ │ ├── VideoAnalyticsStream.pm │ │ │ │ ├── VideoAnalyticsStreamExtension.pm │ │ │ │ ├── VideoAttributes.pm │ │ │ │ ├── VideoDecoderConfigurationOptions.pm │ │ │ │ ├── VideoDecoderConfigurationOptionsExtension.pm │ │ │ │ ├── VideoEncoderConfiguration.pm │ │ │ │ ├── VideoEncoderConfigurationOptions.pm │ │ │ │ ├── VideoEncoderOptionsExtension.pm │ │ │ │ ├── VideoEncoderOptionsExtension2.pm │ │ │ │ ├── VideoEncoding.pm │ │ │ │ ├── VideoOutput.pm │ │ │ │ ├── VideoOutputConfiguration.pm │ │ │ │ ├── VideoOutputConfigurationOptions.pm │ │ │ │ ├── VideoOutputExtension.pm │ │ │ │ ├── VideoRateControl.pm │ │ │ │ ├── VideoResolution.pm │ │ │ │ ├── VideoSource.pm │ │ │ │ ├── VideoSourceConfiguration.pm │ │ │ │ ├── VideoSourceConfigurationExtension.pm │ │ │ │ ├── VideoSourceConfigurationExtension2.pm │ │ │ │ ├── VideoSourceConfigurationOptions.pm │ │ │ │ ├── VideoSourceConfigurationOptionsExtension.pm │ │ │ │ ├── VideoSourceConfigurationOptionsExtension2.pm │ │ │ │ ├── VideoSourceExtension.pm │ │ │ │ ├── VideoSourceExtension2.pm │ │ │ │ ├── WhiteBalance.pm │ │ │ │ ├── WhiteBalance20.pm │ │ │ │ ├── WhiteBalance20Extension.pm │ │ │ │ ├── WhiteBalanceMode.pm │ │ │ │ ├── WhiteBalanceOptions.pm │ │ │ │ ├── WhiteBalanceOptions20.pm │ │ │ │ ├── WhiteBalanceOptions20Extension.pm │ │ │ │ ├── WideDynamicMode.pm │ │ │ │ ├── WideDynamicRange.pm │ │ │ │ ├── WideDynamicRange20.pm │ │ │ │ ├── WideDynamicRangeOptions.pm │ │ │ │ ├── WideDynamicRangeOptions20.pm │ │ │ │ ├── XPathExpression.pm │ │ │ │ ├── ZoomLimits.pm │ │ │ │ ├── base64Binary.pm │ │ │ │ ├── detail.pm │ │ │ │ ├── encodingStyle.pm │ │ │ │ └── hexBinary.pm │ │ ├── Media │ │ │ ├── Attributes │ │ │ │ ├── actor.pm │ │ │ │ ├── contentType.pm │ │ │ │ ├── encodingStyle.pm │ │ │ │ ├── expectedContentTypes.pm │ │ │ │ └── mustUnderstand.pm │ │ │ ├── Elements │ │ │ │ ├── AddAudioDecoderConfiguration.pm │ │ │ │ ├── AddAudioDecoderConfigurationResponse.pm │ │ │ │ ├── AddAudioEncoderConfiguration.pm │ │ │ │ ├── AddAudioEncoderConfigurationResponse.pm │ │ │ │ ├── AddAudioOutputConfiguration.pm │ │ │ │ ├── AddAudioOutputConfigurationResponse.pm │ │ │ │ ├── AddAudioSourceConfiguration.pm │ │ │ │ ├── AddAudioSourceConfigurationResponse.pm │ │ │ │ ├── AddMetadataConfiguration.pm │ │ │ │ ├── AddMetadataConfigurationResponse.pm │ │ │ │ ├── AddPTZConfiguration.pm │ │ │ │ ├── AddPTZConfigurationResponse.pm │ │ │ │ ├── AddVideoAnalyticsConfiguration.pm │ │ │ │ ├── AddVideoAnalyticsConfigurationResponse.pm │ │ │ │ ├── AddVideoEncoderConfiguration.pm │ │ │ │ ├── AddVideoEncoderConfigurationResponse.pm │ │ │ │ ├── AddVideoSourceConfiguration.pm │ │ │ │ ├── AddVideoSourceConfigurationResponse.pm │ │ │ │ ├── AudioDecoderConfiguration.pm │ │ │ │ ├── AudioEncoderConfiguration.pm │ │ │ │ ├── AudioOutputConfiguration.pm │ │ │ │ ├── AudioSourceConfiguration.pm │ │ │ │ ├── Body.pm │ │ │ │ ├── Capabilities.pm │ │ │ │ ├── CreateOSD.pm │ │ │ │ ├── CreateOSDResponse.pm │ │ │ │ ├── CreateProfile.pm │ │ │ │ ├── CreateProfileResponse.pm │ │ │ │ ├── DeleteOSD.pm │ │ │ │ ├── DeleteOSDResponse.pm │ │ │ │ ├── DeleteProfile.pm │ │ │ │ ├── DeleteProfileResponse.pm │ │ │ │ ├── Envelope.pm │ │ │ │ ├── Fault.pm │ │ │ │ ├── GetAudioDecoderConfiguration.pm │ │ │ │ ├── GetAudioDecoderConfigurationOptions.pm │ │ │ │ ├── GetAudioDecoderConfigurationOptionsResponse.pm │ │ │ │ ├── GetAudioDecoderConfigurationResponse.pm │ │ │ │ ├── GetAudioDecoderConfigurations.pm │ │ │ │ ├── GetAudioDecoderConfigurationsResponse.pm │ │ │ │ ├── GetAudioEncoderConfiguration.pm │ │ │ │ ├── GetAudioEncoderConfigurationOptions.pm │ │ │ │ ├── GetAudioEncoderConfigurationOptionsResponse.pm │ │ │ │ ├── GetAudioEncoderConfigurationResponse.pm │ │ │ │ ├── GetAudioEncoderConfigurations.pm │ │ │ │ ├── GetAudioEncoderConfigurationsResponse.pm │ │ │ │ ├── GetAudioOutputConfiguration.pm │ │ │ │ ├── GetAudioOutputConfigurationOptions.pm │ │ │ │ ├── GetAudioOutputConfigurationOptionsResponse.pm │ │ │ │ ├── GetAudioOutputConfigurationResponse.pm │ │ │ │ ├── GetAudioOutputConfigurations.pm │ │ │ │ ├── GetAudioOutputConfigurationsResponse.pm │ │ │ │ ├── GetAudioOutputs.pm │ │ │ │ ├── GetAudioOutputsResponse.pm │ │ │ │ ├── GetAudioSourceConfiguration.pm │ │ │ │ ├── GetAudioSourceConfigurationOptions.pm │ │ │ │ ├── GetAudioSourceConfigurationOptionsResponse.pm │ │ │ │ ├── GetAudioSourceConfigurationResponse.pm │ │ │ │ ├── GetAudioSourceConfigurations.pm │ │ │ │ ├── GetAudioSourceConfigurationsResponse.pm │ │ │ │ ├── GetAudioSources.pm │ │ │ │ ├── GetAudioSourcesResponse.pm │ │ │ │ ├── GetCompatibleAudioDecoderConfigurations.pm │ │ │ │ ├── GetCompatibleAudioDecoderConfigurationsResponse.pm │ │ │ │ ├── GetCompatibleAudioEncoderConfigurations.pm │ │ │ │ ├── GetCompatibleAudioEncoderConfigurationsResponse.pm │ │ │ │ ├── GetCompatibleAudioOutputConfigurations.pm │ │ │ │ ├── GetCompatibleAudioOutputConfigurationsResponse.pm │ │ │ │ ├── GetCompatibleAudioSourceConfigurations.pm │ │ │ │ ├── GetCompatibleAudioSourceConfigurationsResponse.pm │ │ │ │ ├── GetCompatibleMetadataConfigurations.pm │ │ │ │ ├── GetCompatibleMetadataConfigurationsResponse.pm │ │ │ │ ├── GetCompatibleVideoAnalyticsConfigurations.pm │ │ │ │ ├── GetCompatibleVideoAnalyticsConfigurationsResponse.pm │ │ │ │ ├── GetCompatibleVideoEncoderConfigurations.pm │ │ │ │ ├── GetCompatibleVideoEncoderConfigurationsResponse.pm │ │ │ │ ├── GetCompatibleVideoSourceConfigurations.pm │ │ │ │ ├── GetCompatibleVideoSourceConfigurationsResponse.pm │ │ │ │ ├── GetGuaranteedNumberOfVideoEncoderInstances.pm │ │ │ │ ├── GetGuaranteedNumberOfVideoEncoderInstancesResponse.pm │ │ │ │ ├── GetMetadataConfiguration.pm │ │ │ │ ├── GetMetadataConfigurationOptions.pm │ │ │ │ ├── GetMetadataConfigurationOptionsResponse.pm │ │ │ │ ├── GetMetadataConfigurationResponse.pm │ │ │ │ ├── GetMetadataConfigurations.pm │ │ │ │ ├── GetMetadataConfigurationsResponse.pm │ │ │ │ ├── GetOSD.pm │ │ │ │ ├── GetOSDOptions.pm │ │ │ │ ├── GetOSDOptionsResponse.pm │ │ │ │ ├── GetOSDResponse.pm │ │ │ │ ├── GetOSDs.pm │ │ │ │ ├── GetOSDsResponse.pm │ │ │ │ ├── GetProfile.pm │ │ │ │ ├── GetProfileResponse.pm │ │ │ │ ├── GetProfiles.pm │ │ │ │ ├── GetProfilesResponse.pm │ │ │ │ ├── GetServiceCapabilities.pm │ │ │ │ ├── GetServiceCapabilitiesResponse.pm │ │ │ │ ├── GetSnapshotUri.pm │ │ │ │ ├── GetSnapshotUriResponse.pm │ │ │ │ ├── GetStreamUri.pm │ │ │ │ ├── GetStreamUriResponse.pm │ │ │ │ ├── GetVideoAnalyticsConfiguration.pm │ │ │ │ ├── GetVideoAnalyticsConfigurationResponse.pm │ │ │ │ ├── GetVideoAnalyticsConfigurations.pm │ │ │ │ ├── GetVideoAnalyticsConfigurationsResponse.pm │ │ │ │ ├── GetVideoEncoderConfiguration.pm │ │ │ │ ├── GetVideoEncoderConfigurationOptions.pm │ │ │ │ ├── GetVideoEncoderConfigurationOptionsResponse.pm │ │ │ │ ├── GetVideoEncoderConfigurationResponse.pm │ │ │ │ ├── GetVideoEncoderConfigurations.pm │ │ │ │ ├── GetVideoEncoderConfigurationsResponse.pm │ │ │ │ ├── GetVideoSourceConfiguration.pm │ │ │ │ ├── GetVideoSourceConfigurationOptions.pm │ │ │ │ ├── GetVideoSourceConfigurationOptionsResponse.pm │ │ │ │ ├── GetVideoSourceConfigurationResponse.pm │ │ │ │ ├── GetVideoSourceConfigurations.pm │ │ │ │ ├── GetVideoSourceConfigurationsResponse.pm │ │ │ │ ├── GetVideoSourceModes.pm │ │ │ │ ├── GetVideoSourceModesResponse.pm │ │ │ │ ├── GetVideoSources.pm │ │ │ │ ├── GetVideoSourcesResponse.pm │ │ │ │ ├── Header.pm │ │ │ │ ├── Include.pm │ │ │ │ ├── Message.pm │ │ │ │ ├── MetadataConfiguration.pm │ │ │ │ ├── MetadataStream.pm │ │ │ │ ├── PTZConfiguration.pm │ │ │ │ ├── Polygon.pm │ │ │ │ ├── Polyline.pm │ │ │ │ ├── RemoveAudioDecoderConfiguration.pm │ │ │ │ ├── RemoveAudioDecoderConfigurationResponse.pm │ │ │ │ ├── RemoveAudioEncoderConfiguration.pm │ │ │ │ ├── RemoveAudioEncoderConfigurationResponse.pm │ │ │ │ ├── RemoveAudioOutputConfiguration.pm │ │ │ │ ├── RemoveAudioOutputConfigurationResponse.pm │ │ │ │ ├── RemoveAudioSourceConfiguration.pm │ │ │ │ ├── RemoveAudioSourceConfigurationResponse.pm │ │ │ │ ├── RemoveMetadataConfiguration.pm │ │ │ │ ├── RemoveMetadataConfigurationResponse.pm │ │ │ │ ├── RemovePTZConfiguration.pm │ │ │ │ ├── RemovePTZConfigurationResponse.pm │ │ │ │ ├── RemoveVideoAnalyticsConfiguration.pm │ │ │ │ ├── RemoveVideoAnalyticsConfigurationResponse.pm │ │ │ │ ├── RemoveVideoEncoderConfiguration.pm │ │ │ │ ├── RemoveVideoEncoderConfigurationResponse.pm │ │ │ │ ├── RemoveVideoSourceConfiguration.pm │ │ │ │ ├── RemoveVideoSourceConfigurationResponse.pm │ │ │ │ ├── SetAudioDecoderConfiguration.pm │ │ │ │ ├── SetAudioDecoderConfigurationResponse.pm │ │ │ │ ├── SetAudioEncoderConfiguration.pm │ │ │ │ ├── SetAudioEncoderConfigurationResponse.pm │ │ │ │ ├── SetAudioOutputConfiguration.pm │ │ │ │ ├── SetAudioOutputConfigurationResponse.pm │ │ │ │ ├── SetAudioSourceConfiguration.pm │ │ │ │ ├── SetAudioSourceConfigurationResponse.pm │ │ │ │ ├── SetMetadataConfiguration.pm │ │ │ │ ├── SetMetadataConfigurationResponse.pm │ │ │ │ ├── SetOSD.pm │ │ │ │ ├── SetOSDResponse.pm │ │ │ │ ├── SetSynchronizationPoint.pm │ │ │ │ ├── SetSynchronizationPointResponse.pm │ │ │ │ ├── SetVideoAnalyticsConfiguration.pm │ │ │ │ ├── SetVideoAnalyticsConfigurationResponse.pm │ │ │ │ ├── SetVideoEncoderConfiguration.pm │ │ │ │ ├── SetVideoEncoderConfigurationResponse.pm │ │ │ │ ├── SetVideoSourceConfiguration.pm │ │ │ │ ├── SetVideoSourceConfigurationResponse.pm │ │ │ │ ├── SetVideoSourceMode.pm │ │ │ │ ├── SetVideoSourceModeResponse.pm │ │ │ │ ├── StartMulticastStreaming.pm │ │ │ │ ├── StartMulticastStreamingResponse.pm │ │ │ │ ├── StopMulticastStreaming.pm │ │ │ │ ├── StopMulticastStreamingResponse.pm │ │ │ │ ├── VideoAnalyticsConfiguration.pm │ │ │ │ ├── VideoEncoderConfiguration.pm │ │ │ │ └── VideoSourceConfiguration.pm │ │ │ ├── Interfaces │ │ │ │ └── Media │ │ │ │ │ └── MediaPort.pm │ │ │ ├── Typemaps │ │ │ │ └── Media.pm │ │ │ └── Types │ │ │ │ ├── AACDecOptions.pm │ │ │ │ ├── AbsoluteFocus.pm │ │ │ │ ├── AbsoluteFocusOptions.pm │ │ │ │ ├── ActionEngineEventPayload.pm │ │ │ │ ├── ActionEngineEventPayloadExtension.pm │ │ │ │ ├── AnalyticsCapabilities.pm │ │ │ │ ├── AnalyticsDeviceCapabilities.pm │ │ │ │ ├── AnalyticsDeviceEngineConfiguration.pm │ │ │ │ ├── AnalyticsDeviceEngineConfigurationExtension.pm │ │ │ │ ├── AnalyticsDeviceExtension.pm │ │ │ │ ├── AnalyticsEngine.pm │ │ │ │ ├── AnalyticsEngineConfiguration.pm │ │ │ │ ├── AnalyticsEngineConfigurationExtension.pm │ │ │ │ ├── AnalyticsEngineControl.pm │ │ │ │ ├── AnalyticsEngineInput.pm │ │ │ │ ├── AnalyticsEngineInputInfo.pm │ │ │ │ ├── AnalyticsEngineInputInfoExtension.pm │ │ │ │ ├── AnalyticsState.pm │ │ │ │ ├── AnalyticsStateInformation.pm │ │ │ │ ├── AnyHolder.pm │ │ │ │ ├── Appearance.pm │ │ │ │ ├── AppearanceExtension.pm │ │ │ │ ├── AttachmentData.pm │ │ │ │ ├── AttributedAnyType.pm │ │ │ │ ├── AttributedQNameType.pm │ │ │ │ ├── AttributedURIType.pm │ │ │ │ ├── AttributedUnsignedLongType.pm │ │ │ │ ├── AudioAnalyticsStream.pm │ │ │ │ ├── AudioAnalyticsStreamExtension.pm │ │ │ │ ├── AudioAttributes.pm │ │ │ │ ├── AudioClassCandidate.pm │ │ │ │ ├── AudioClassDescriptor.pm │ │ │ │ ├── AudioClassDescriptorExtension.pm │ │ │ │ ├── AudioClassType.pm │ │ │ │ ├── AudioDecoderConfiguration.pm │ │ │ │ ├── AudioDecoderConfigurationOptions.pm │ │ │ │ ├── AudioDecoderConfigurationOptionsExtension.pm │ │ │ │ ├── AudioDescriptor.pm │ │ │ │ ├── AudioEncoderConfiguration.pm │ │ │ │ ├── AudioEncoderConfigurationOption.pm │ │ │ │ ├── AudioEncoderConfigurationOptions.pm │ │ │ │ ├── AudioEncoding.pm │ │ │ │ ├── AudioOutput.pm │ │ │ │ ├── AudioOutputConfiguration.pm │ │ │ │ ├── AudioOutputConfigurationOptions.pm │ │ │ │ ├── AudioSource.pm │ │ │ │ ├── AudioSourceConfiguration.pm │ │ │ │ ├── AudioSourceConfigurationOptions.pm │ │ │ │ ├── AudioSourceOptionsExtension.pm │ │ │ │ ├── AutoFocusMode.pm │ │ │ │ ├── AuxiliaryData.pm │ │ │ │ ├── BacklightCompensation.pm │ │ │ │ ├── BacklightCompensation20.pm │ │ │ │ ├── BacklightCompensationMode.pm │ │ │ │ ├── BacklightCompensationOptions.pm │ │ │ │ ├── BacklightCompensationOptions20.pm │ │ │ │ ├── BackupFile.pm │ │ │ │ ├── BaseFaultType.pm │ │ │ │ ├── Behaviour.pm │ │ │ │ ├── BehaviourExtension.pm │ │ │ │ ├── BinaryData.pm │ │ │ │ ├── Body.pm │ │ │ │ ├── Capabilities.pm │ │ │ │ ├── CapabilitiesExtension.pm │ │ │ │ ├── CapabilitiesExtension2.pm │ │ │ │ ├── CapabilityCategory.pm │ │ │ │ ├── CellLayout.pm │ │ │ │ ├── Certificate.pm │ │ │ │ ├── CertificateGenerationParameters.pm │ │ │ │ ├── CertificateGenerationParametersExtension.pm │ │ │ │ ├── CertificateInformation.pm │ │ │ │ ├── CertificateInformationExtension.pm │ │ │ │ ├── CertificateStatus.pm │ │ │ │ ├── CertificateUsage.pm │ │ │ │ ├── CertificateWithPrivateKey.pm │ │ │ │ ├── ClassDescriptor.pm │ │ │ │ ├── ClassDescriptorExtension.pm │ │ │ │ ├── ClassDescriptorExtension2.pm │ │ │ │ ├── ClassType.pm │ │ │ │ ├── CodingCapabilities.pm │ │ │ │ ├── Color.pm │ │ │ │ ├── ColorCovariance.pm │ │ │ │ ├── ColorDescriptor.pm │ │ │ │ ├── ColorDescriptorExtension.pm │ │ │ │ ├── ColorOptions.pm │ │ │ │ ├── ColorspaceRange.pm │ │ │ │ ├── Config.pm │ │ │ │ ├── ConfigDescription.pm │ │ │ │ ├── ConfigDescriptionExtension.pm │ │ │ │ ├── ConfigurationEntity.pm │ │ │ │ ├── ContinuousFocus.pm │ │ │ │ ├── ContinuousFocusOptions.pm │ │ │ │ ├── DNSInformation.pm │ │ │ │ ├── DNSInformationExtension.pm │ │ │ │ ├── DNSName.pm │ │ │ │ ├── Date.pm │ │ │ │ ├── DateTime.pm │ │ │ │ ├── DateTimeRange.pm │ │ │ │ ├── Description.pm │ │ │ │ ├── DeviceCapabilities.pm │ │ │ │ ├── DeviceCapabilitiesExtension.pm │ │ │ │ ├── DeviceEntity.pm │ │ │ │ ├── DeviceIOCapabilities.pm │ │ │ │ ├── DigitalInput.pm │ │ │ │ ├── Direction.pm │ │ │ │ ├── DiscoveryMode.pm │ │ │ │ ├── DisplayCapabilities.pm │ │ │ │ ├── Documentation.pm │ │ │ │ ├── Domain.pm │ │ │ │ ├── Dot11AuthAndMangementSuite.pm │ │ │ │ ├── Dot11AvailableNetworks.pm │ │ │ │ ├── Dot11AvailableNetworksExtension.pm │ │ │ │ ├── Dot11Capabilities.pm │ │ │ │ ├── Dot11Cipher.pm │ │ │ │ ├── Dot11Configuration.pm │ │ │ │ ├── Dot11PSK.pm │ │ │ │ ├── Dot11PSKPassphrase.pm │ │ │ │ ├── Dot11PSKSet.pm │ │ │ │ ├── Dot11PSKSetExtension.pm │ │ │ │ ├── Dot11SSIDType.pm │ │ │ │ ├── Dot11SecurityConfiguration.pm │ │ │ │ ├── Dot11SecurityConfigurationExtension.pm │ │ │ │ ├── Dot11SecurityMode.pm │ │ │ │ ├── Dot11SignalStrength.pm │ │ │ │ ├── Dot11StationMode.pm │ │ │ │ ├── Dot11Status.pm │ │ │ │ ├── Dot1XConfiguration.pm │ │ │ │ ├── Dot1XConfigurationExtension.pm │ │ │ │ ├── Dot3Configuration.pm │ │ │ │ ├── Duplex.pm │ │ │ │ ├── DurationRange.pm │ │ │ │ ├── DynamicDNSInformation.pm │ │ │ │ ├── DynamicDNSInformationExtension.pm │ │ │ │ ├── DynamicDNSType.pm │ │ │ │ ├── EAPMethodConfiguration.pm │ │ │ │ ├── EFlip.pm │ │ │ │ ├── EFlipMode.pm │ │ │ │ ├── EFlipOptions.pm │ │ │ │ ├── EFlipOptionsExtension.pm │ │ │ │ ├── EapMethodExtension.pm │ │ │ │ ├── Enabled.pm │ │ │ │ ├── EncodingTypes.pm │ │ │ │ ├── EndpointReferenceType.pm │ │ │ │ ├── EngineConfiguration.pm │ │ │ │ ├── Envelope.pm │ │ │ │ ├── EventCapabilities.pm │ │ │ │ ├── EventStreamExtension.pm │ │ │ │ ├── EventSubscription.pm │ │ │ │ ├── Exposure.pm │ │ │ │ ├── Exposure20.pm │ │ │ │ ├── ExposureMode.pm │ │ │ │ ├── ExposureOptions.pm │ │ │ │ ├── ExposureOptions20.pm │ │ │ │ ├── ExposurePriority.pm │ │ │ │ ├── ExtensibleDocumented.pm │ │ │ │ ├── FactoryDefaultType.pm │ │ │ │ ├── Fault.pm │ │ │ │ ├── FaultCodesOpenEnumType.pm │ │ │ │ ├── FaultCodesType.pm │ │ │ │ ├── FindEventResult.pm │ │ │ │ ├── FindEventResultList.pm │ │ │ │ ├── FindMetadataResult.pm │ │ │ │ ├── FindMetadataResultList.pm │ │ │ │ ├── FindPTZPositionResult.pm │ │ │ │ ├── FindPTZPositionResultList.pm │ │ │ │ ├── FindRecordingResultList.pm │ │ │ │ ├── FloatAttrList.pm │ │ │ │ ├── FloatList.pm │ │ │ │ ├── FloatRange.pm │ │ │ │ ├── FocusConfiguration.pm │ │ │ │ ├── FocusConfiguration20.pm │ │ │ │ ├── FocusConfiguration20Extension.pm │ │ │ │ ├── FocusMove.pm │ │ │ │ ├── FocusOptions.pm │ │ │ │ ├── FocusOptions20.pm │ │ │ │ ├── FocusOptions20Extension.pm │ │ │ │ ├── FocusStatus.pm │ │ │ │ ├── FocusStatus20.pm │ │ │ │ ├── FocusStatus20Extension.pm │ │ │ │ ├── Frame.pm │ │ │ │ ├── FrameExtension.pm │ │ │ │ ├── FrameExtension2.pm │ │ │ │ ├── G711DecOptions.pm │ │ │ │ ├── G726DecOptions.pm │ │ │ │ ├── GenericEapPwdConfigurationExtension.pm │ │ │ │ ├── GetRecordingJobsResponseItem.pm │ │ │ │ ├── GetRecordingsResponseItem.pm │ │ │ │ ├── GetTracksResponseItem.pm │ │ │ │ ├── GetTracksResponseList.pm │ │ │ │ ├── H264Configuration.pm │ │ │ │ ├── H264DecOptions.pm │ │ │ │ ├── H264Options.pm │ │ │ │ ├── H264Options2.pm │ │ │ │ ├── H264Profile.pm │ │ │ │ ├── Header.pm │ │ │ │ ├── HostnameInformation.pm │ │ │ │ ├── HostnameInformationExtension.pm │ │ │ │ ├── HwAddress.pm │ │ │ │ ├── IANA_IfTypes.pm │ │ │ │ ├── IOCapabilities.pm │ │ │ │ ├── IOCapabilitiesExtension.pm │ │ │ │ ├── IOCapabilitiesExtension2.pm │ │ │ │ ├── IPAddress.pm │ │ │ │ ├── IPAddressFilter.pm │ │ │ │ ├── IPAddressFilterExtension.pm │ │ │ │ ├── IPAddressFilterType.pm │ │ │ │ ├── IPType.pm │ │ │ │ ├── IPv4Address.pm │ │ │ │ ├── IPv4Configuration.pm │ │ │ │ ├── IPv4NetworkInterface.pm │ │ │ │ ├── IPv4NetworkInterfaceSetConfiguration.pm │ │ │ │ ├── IPv6Address.pm │ │ │ │ ├── IPv6Configuration.pm │ │ │ │ ├── IPv6ConfigurationExtension.pm │ │ │ │ ├── IPv6DHCPConfiguration.pm │ │ │ │ ├── IPv6NetworkInterface.pm │ │ │ │ ├── IPv6NetworkInterfaceSetConfiguration.pm │ │ │ │ ├── ImageStabilization.pm │ │ │ │ ├── ImageStabilizationExtension.pm │ │ │ │ ├── ImageStabilizationMode.pm │ │ │ │ ├── ImageStabilizationOptions.pm │ │ │ │ ├── ImageStabilizationOptionsExtension.pm │ │ │ │ ├── ImagingCapabilities.pm │ │ │ │ ├── ImagingOptions.pm │ │ │ │ ├── ImagingOptions20.pm │ │ │ │ ├── ImagingOptions20Extension.pm │ │ │ │ ├── ImagingOptions20Extension2.pm │ │ │ │ ├── ImagingOptions20Extension3.pm │ │ │ │ ├── ImagingSettings.pm │ │ │ │ ├── ImagingSettings20.pm │ │ │ │ ├── ImagingSettingsExtension.pm │ │ │ │ ├── ImagingSettingsExtension20.pm │ │ │ │ ├── ImagingSettingsExtension202.pm │ │ │ │ ├── ImagingSettingsExtension203.pm │ │ │ │ ├── ImagingStatus.pm │ │ │ │ ├── ImagingStatus20.pm │ │ │ │ ├── ImagingStatus20Extension.pm │ │ │ │ ├── Include.pm │ │ │ │ ├── IntAttrList.pm │ │ │ │ ├── IntList.pm │ │ │ │ ├── IntRange.pm │ │ │ │ ├── IntRectangle.pm │ │ │ │ ├── IntRectangleRange.pm │ │ │ │ ├── IrCutFilterAutoAdjustment.pm │ │ │ │ ├── IrCutFilterAutoAdjustmentExtension.pm │ │ │ │ ├── IrCutFilterAutoAdjustmentOptions.pm │ │ │ │ ├── IrCutFilterAutoAdjustmentOptionsExtension.pm │ │ │ │ ├── IrCutFilterAutoBoundaryType.pm │ │ │ │ ├── IrCutFilterMode.pm │ │ │ │ ├── ItemList.pm │ │ │ │ ├── ItemListDescription.pm │ │ │ │ ├── ItemListDescriptionExtension.pm │ │ │ │ ├── ItemListExtension.pm │ │ │ │ ├── JobToken.pm │ │ │ │ ├── JpegDecOptions.pm │ │ │ │ ├── JpegOptions.pm │ │ │ │ ├── JpegOptions2.pm │ │ │ │ ├── Layout.pm │ │ │ │ ├── LayoutExtension.pm │ │ │ │ ├── LayoutOptions.pm │ │ │ │ ├── LayoutOptionsExtension.pm │ │ │ │ ├── MaximumNumberOfOSDs.pm │ │ │ │ ├── MediaAttributes.pm │ │ │ │ ├── MediaCapabilities.pm │ │ │ │ ├── MediaCapabilitiesExtension.pm │ │ │ │ ├── MediaUri.pm │ │ │ │ ├── Merge.pm │ │ │ │ ├── MessageDescription.pm │ │ │ │ ├── MessageDescriptionExtension.pm │ │ │ │ ├── MessageExtension.pm │ │ │ │ ├── MetadataAttributes.pm │ │ │ │ ├── MetadataConfiguration.pm │ │ │ │ ├── MetadataConfigurationExtension.pm │ │ │ │ ├── MetadataConfigurationOptions.pm │ │ │ │ ├── MetadataFilter.pm │ │ │ │ ├── MetadataInput.pm │ │ │ │ ├── MetadataInputExtension.pm │ │ │ │ ├── MetadataStream.pm │ │ │ │ ├── MetadataStreamExtension.pm │ │ │ │ ├── MetadataStreamExtension2.pm │ │ │ │ ├── MetadataType.pm │ │ │ │ ├── ModeOfOperation.pm │ │ │ │ ├── MotionExpression.pm │ │ │ │ ├── MotionExpressionConfiguration.pm │ │ │ │ ├── MotionInCells.pm │ │ │ │ ├── MoveOptions.pm │ │ │ │ ├── MoveOptions20.pm │ │ │ │ ├── MoveStatus.pm │ │ │ │ ├── Mpeg4Configuration.pm │ │ │ │ ├── Mpeg4DecOptions.pm │ │ │ │ ├── Mpeg4Options.pm │ │ │ │ ├── Mpeg4Options2.pm │ │ │ │ ├── Mpeg4Profile.pm │ │ │ │ ├── MulticastConfiguration.pm │ │ │ │ ├── NTPInformation.pm │ │ │ │ ├── NTPInformationExtension.pm │ │ │ │ ├── Name.pm │ │ │ │ ├── NetworkCapabilities.pm │ │ │ │ ├── NetworkCapabilitiesExtension.pm │ │ │ │ ├── NetworkCapabilitiesExtension2.pm │ │ │ │ ├── NetworkGateway.pm │ │ │ │ ├── NetworkHost.pm │ │ │ │ ├── NetworkHostExtension.pm │ │ │ │ ├── NetworkHostType.pm │ │ │ │ ├── NetworkInterface.pm │ │ │ │ ├── NetworkInterfaceConfigPriority.pm │ │ │ │ ├── NetworkInterfaceConnectionSetting.pm │ │ │ │ ├── NetworkInterfaceExtension.pm │ │ │ │ ├── NetworkInterfaceExtension2.pm │ │ │ │ ├── NetworkInterfaceInfo.pm │ │ │ │ ├── NetworkInterfaceLink.pm │ │ │ │ ├── NetworkInterfaceSetConfiguration.pm │ │ │ │ ├── NetworkInterfaceSetConfigurationExtension.pm │ │ │ │ ├── NetworkInterfaceSetConfigurationExtension2.pm │ │ │ │ ├── NetworkProtocol.pm │ │ │ │ ├── NetworkProtocolExtension.pm │ │ │ │ ├── NetworkProtocolType.pm │ │ │ │ ├── NetworkZeroConfiguration.pm │ │ │ │ ├── NetworkZeroConfigurationExtension.pm │ │ │ │ ├── NetworkZeroConfigurationExtension2.pm │ │ │ │ ├── OSDColor.pm │ │ │ │ ├── OSDColorOptions.pm │ │ │ │ ├── OSDColorOptionsExtension.pm │ │ │ │ ├── OSDConfiguration.pm │ │ │ │ ├── OSDConfigurationExtension.pm │ │ │ │ ├── OSDConfigurationOptions.pm │ │ │ │ ├── OSDConfigurationOptionsExtension.pm │ │ │ │ ├── OSDImgConfiguration.pm │ │ │ │ ├── OSDImgConfigurationExtension.pm │ │ │ │ ├── OSDImgOptions.pm │ │ │ │ ├── OSDImgOptionsExtension.pm │ │ │ │ ├── OSDPosConfiguration.pm │ │ │ │ ├── OSDPosConfigurationExtension.pm │ │ │ │ ├── OSDReference.pm │ │ │ │ ├── OSDTextConfiguration.pm │ │ │ │ ├── OSDTextConfigurationExtension.pm │ │ │ │ ├── OSDTextOptions.pm │ │ │ │ ├── OSDTextOptionsExtension.pm │ │ │ │ ├── OSDType.pm │ │ │ │ ├── Object.pm │ │ │ │ ├── ObjectExtension.pm │ │ │ │ ├── ObjectId.pm │ │ │ │ ├── ObjectTree.pm │ │ │ │ ├── ObjectTreeExtension.pm │ │ │ │ ├── OnvifVersion.pm │ │ │ │ ├── OtherType.pm │ │ │ │ ├── PTControlDirection.pm │ │ │ │ ├── PTControlDirectionExtension.pm │ │ │ │ ├── PTControlDirectionOptions.pm │ │ │ │ ├── PTControlDirectionOptionsExtension.pm │ │ │ │ ├── PTZCapabilities.pm │ │ │ │ ├── PTZConfiguration.pm │ │ │ │ ├── PTZConfigurationExtension.pm │ │ │ │ ├── PTZConfigurationExtension2.pm │ │ │ │ ├── PTZConfigurationOptions.pm │ │ │ │ ├── PTZConfigurationOptions2.pm │ │ │ │ ├── PTZFilter.pm │ │ │ │ ├── PTZMoveStatus.pm │ │ │ │ ├── PTZNode.pm │ │ │ │ ├── PTZNodeExtension.pm │ │ │ │ ├── PTZNodeExtension2.pm │ │ │ │ ├── PTZPositionFilter.pm │ │ │ │ ├── PTZPreset.pm │ │ │ │ ├── PTZPresetTourDirection.pm │ │ │ │ ├── PTZPresetTourExtension.pm │ │ │ │ ├── PTZPresetTourOperation.pm │ │ │ │ ├── PTZPresetTourOptions.pm │ │ │ │ ├── PTZPresetTourPresetDetail.pm │ │ │ │ ├── PTZPresetTourPresetDetailOptions.pm │ │ │ │ ├── PTZPresetTourPresetDetailOptionsExtension.pm │ │ │ │ ├── PTZPresetTourSpot.pm │ │ │ │ ├── PTZPresetTourSpotExtension.pm │ │ │ │ ├── PTZPresetTourSpotOptions.pm │ │ │ │ ├── PTZPresetTourStartingCondition.pm │ │ │ │ ├── PTZPresetTourStartingConditionExtension.pm │ │ │ │ ├── PTZPresetTourStartingConditionOptions.pm │ │ │ │ ├── PTZPresetTourStartingConditionOptionsExtension.pm │ │ │ │ ├── PTZPresetTourState.pm │ │ │ │ ├── PTZPresetTourStatus.pm │ │ │ │ ├── PTZPresetTourStatusExtension.pm │ │ │ │ ├── PTZPresetTourSupported.pm │ │ │ │ ├── PTZPresetTourSupportedExtension.pm │ │ │ │ ├── PTZPresetTourTypeExtension.pm │ │ │ │ ├── PTZSpaces.pm │ │ │ │ ├── PTZSpacesExtension.pm │ │ │ │ ├── PTZSpeed.pm │ │ │ │ ├── PTZStatus.pm │ │ │ │ ├── PTZStatusFilterOptions.pm │ │ │ │ ├── PTZStatusFilterOptionsExtension.pm │ │ │ │ ├── PTZStream.pm │ │ │ │ ├── PTZStreamExtension.pm │ │ │ │ ├── PTZVector.pm │ │ │ │ ├── PanTiltLimits.pm │ │ │ │ ├── PaneConfiguration.pm │ │ │ │ ├── PaneLayout.pm │ │ │ │ ├── PaneLayoutOptions.pm │ │ │ │ ├── PaneOptionExtension.pm │ │ │ │ ├── Polygon.pm │ │ │ │ ├── PolygonConfiguration.pm │ │ │ │ ├── Polyline.pm │ │ │ │ ├── PolylineArray.pm │ │ │ │ ├── PolylineArrayConfiguration.pm │ │ │ │ ├── PolylineArrayExtension.pm │ │ │ │ ├── PrefixedIPv4Address.pm │ │ │ │ ├── PrefixedIPv6Address.pm │ │ │ │ ├── PresetTour.pm │ │ │ │ ├── ProblemActionType.pm │ │ │ │ ├── Profile.pm │ │ │ │ ├── ProfileCapabilities.pm │ │ │ │ ├── ProfileExtension.pm │ │ │ │ ├── ProfileExtension2.pm │ │ │ │ ├── PropertyOperation.pm │ │ │ │ ├── QueryExpressionType.pm │ │ │ │ ├── RealTimeStreamingCapabilities.pm │ │ │ │ ├── RealTimeStreamingCapabilitiesExtension.pm │ │ │ │ ├── Receiver.pm │ │ │ │ ├── ReceiverCapabilities.pm │ │ │ │ ├── ReceiverConfiguration.pm │ │ │ │ ├── ReceiverMode.pm │ │ │ │ ├── ReceiverReference.pm │ │ │ │ ├── ReceiverState.pm │ │ │ │ ├── ReceiverStateInformation.pm │ │ │ │ ├── RecordingCapabilities.pm │ │ │ │ ├── RecordingConfiguration.pm │ │ │ │ ├── RecordingInformation.pm │ │ │ │ ├── RecordingJobConfiguration.pm │ │ │ │ ├── RecordingJobConfigurationExtension.pm │ │ │ │ ├── RecordingJobMode.pm │ │ │ │ ├── RecordingJobReference.pm │ │ │ │ ├── RecordingJobSource.pm │ │ │ │ ├── RecordingJobSourceExtension.pm │ │ │ │ ├── RecordingJobState.pm │ │ │ │ ├── RecordingJobStateInformation.pm │ │ │ │ ├── RecordingJobStateInformationExtension.pm │ │ │ │ ├── RecordingJobStateSource.pm │ │ │ │ ├── RecordingJobStateTrack.pm │ │ │ │ ├── RecordingJobStateTracks.pm │ │ │ │ ├── RecordingJobTrack.pm │ │ │ │ ├── RecordingReference.pm │ │ │ │ ├── RecordingSourceInformation.pm │ │ │ │ ├── RecordingStatus.pm │ │ │ │ ├── RecordingSummary.pm │ │ │ │ ├── Rectangle.pm │ │ │ │ ├── ReferenceParametersType.pm │ │ │ │ ├── ReferenceToken.pm │ │ │ │ ├── RelatesToType.pm │ │ │ │ ├── RelationshipType.pm │ │ │ │ ├── RelationshipTypeOpenEnum.pm │ │ │ │ ├── RelativeFocus.pm │ │ │ │ ├── RelativeFocusOptions.pm │ │ │ │ ├── RelativeFocusOptions20.pm │ │ │ │ ├── RelayIdleState.pm │ │ │ │ ├── RelayLogicalState.pm │ │ │ │ ├── RelayMode.pm │ │ │ │ ├── RelayOutput.pm │ │ │ │ ├── RelayOutputSettings.pm │ │ │ │ ├── RemoteUser.pm │ │ │ │ ├── Rename.pm │ │ │ │ ├── ReplayCapabilities.pm │ │ │ │ ├── ReplayConfiguration.pm │ │ │ │ ├── Reverse.pm │ │ │ │ ├── ReverseMode.pm │ │ │ │ ├── ReverseOptions.pm │ │ │ │ ├── ReverseOptionsExtension.pm │ │ │ │ ├── Rotate.pm │ │ │ │ ├── RotateExtension.pm │ │ │ │ ├── RotateMode.pm │ │ │ │ ├── RotateOptions.pm │ │ │ │ ├── RotateOptionsExtension.pm │ │ │ │ ├── RuleEngineConfiguration.pm │ │ │ │ ├── RuleEngineConfigurationExtension.pm │ │ │ │ ├── Scope.pm │ │ │ │ ├── ScopeDefinition.pm │ │ │ │ ├── SearchCapabilities.pm │ │ │ │ ├── SearchScope.pm │ │ │ │ ├── SearchScopeExtension.pm │ │ │ │ ├── SearchState.pm │ │ │ │ ├── SecurityCapabilities.pm │ │ │ │ ├── SecurityCapabilitiesExtension.pm │ │ │ │ ├── SecurityCapabilitiesExtension2.pm │ │ │ │ ├── SetDateTimeType.pm │ │ │ │ ├── ShapeDescriptor.pm │ │ │ │ ├── ShapeDescriptorExtension.pm │ │ │ │ ├── SourceIdentification.pm │ │ │ │ ├── SourceIdentificationExtension.pm │ │ │ │ ├── SourceReference.pm │ │ │ │ ├── Space1DDescription.pm │ │ │ │ ├── Space2DDescription.pm │ │ │ │ ├── Split.pm │ │ │ │ ├── StreamSetup.pm │ │ │ │ ├── StreamType.pm │ │ │ │ ├── StreamingCapabilities.pm │ │ │ │ ├── StringAttrList.pm │ │ │ │ ├── SupportInformation.pm │ │ │ │ ├── SupportedAnalyticsModules.pm │ │ │ │ ├── SupportedAnalyticsModulesExtension.pm │ │ │ │ ├── SupportedRules.pm │ │ │ │ ├── SupportedRulesExtension.pm │ │ │ │ ├── SystemCapabilities.pm │ │ │ │ ├── SystemCapabilitiesExtension.pm │ │ │ │ ├── SystemCapabilitiesExtension2.pm │ │ │ │ ├── SystemDateTime.pm │ │ │ │ ├── SystemDateTimeExtension.pm │ │ │ │ ├── SystemLog.pm │ │ │ │ ├── SystemLogType.pm │ │ │ │ ├── SystemLogUri.pm │ │ │ │ ├── SystemLogUriList.pm │ │ │ │ ├── TLSConfiguration.pm │ │ │ │ ├── Time.pm │ │ │ │ ├── TimeZone.pm │ │ │ │ ├── TopicNamespaceLocation.pm │ │ │ │ ├── TopicNamespaceType.pm │ │ │ │ ├── TrackAttributes.pm │ │ │ │ ├── TrackAttributesExtension.pm │ │ │ │ ├── TrackConfiguration.pm │ │ │ │ ├── TrackInformation.pm │ │ │ │ ├── TrackReference.pm │ │ │ │ ├── TrackType.pm │ │ │ │ ├── Transformation.pm │ │ │ │ ├── TransformationExtension.pm │ │ │ │ ├── Transport.pm │ │ │ │ ├── TransportProtocol.pm │ │ │ │ ├── User.pm │ │ │ │ ├── UserExtension.pm │ │ │ │ ├── UserLevel.pm │ │ │ │ ├── Vector.pm │ │ │ │ ├── Vector1D.pm │ │ │ │ ├── Vector2D.pm │ │ │ │ ├── VideoAnalyticsConfiguration.pm │ │ │ │ ├── VideoAnalyticsStream.pm │ │ │ │ ├── VideoAnalyticsStreamExtension.pm │ │ │ │ ├── VideoAttributes.pm │ │ │ │ ├── VideoDecoderConfigurationOptions.pm │ │ │ │ ├── VideoDecoderConfigurationOptionsExtension.pm │ │ │ │ ├── VideoEncoderConfiguration.pm │ │ │ │ ├── VideoEncoderConfigurationOptions.pm │ │ │ │ ├── VideoEncoderOptionsExtension.pm │ │ │ │ ├── VideoEncoderOptionsExtension2.pm │ │ │ │ ├── VideoEncoding.pm │ │ │ │ ├── VideoOutput.pm │ │ │ │ ├── VideoOutputConfiguration.pm │ │ │ │ ├── VideoOutputConfigurationOptions.pm │ │ │ │ ├── VideoOutputExtension.pm │ │ │ │ ├── VideoRateControl.pm │ │ │ │ ├── VideoResolution.pm │ │ │ │ ├── VideoSource.pm │ │ │ │ ├── VideoSourceConfiguration.pm │ │ │ │ ├── VideoSourceConfigurationExtension.pm │ │ │ │ ├── VideoSourceConfigurationExtension2.pm │ │ │ │ ├── VideoSourceConfigurationOptions.pm │ │ │ │ ├── VideoSourceConfigurationOptionsExtension.pm │ │ │ │ ├── VideoSourceConfigurationOptionsExtension2.pm │ │ │ │ ├── VideoSourceExtension.pm │ │ │ │ ├── VideoSourceExtension2.pm │ │ │ │ ├── VideoSourceMode.pm │ │ │ │ ├── VideoSourceModeExtension.pm │ │ │ │ ├── WhiteBalance.pm │ │ │ │ ├── WhiteBalance20.pm │ │ │ │ ├── WhiteBalance20Extension.pm │ │ │ │ ├── WhiteBalanceMode.pm │ │ │ │ ├── WhiteBalanceOptions.pm │ │ │ │ ├── WhiteBalanceOptions20.pm │ │ │ │ ├── WhiteBalanceOptions20Extension.pm │ │ │ │ ├── WideDynamicMode.pm │ │ │ │ ├── WideDynamicRange.pm │ │ │ │ ├── WideDynamicRange20.pm │ │ │ │ ├── WideDynamicRangeOptions.pm │ │ │ │ ├── WideDynamicRangeOptions20.pm │ │ │ │ ├── XPathExpression.pm │ │ │ │ ├── ZoomLimits.pm │ │ │ │ ├── base64Binary.pm │ │ │ │ ├── detail.pm │ │ │ │ ├── encodingStyle.pm │ │ │ │ └── hexBinary.pm │ │ └── PTZ │ │ │ ├── Attributes │ │ │ ├── actor.pm │ │ │ ├── contentType.pm │ │ │ ├── encodingStyle.pm │ │ │ ├── expectedContentTypes.pm │ │ │ └── mustUnderstand.pm │ │ │ ├── Elements │ │ │ ├── AbsoluteMove.pm │ │ │ ├── AbsoluteMoveResponse.pm │ │ │ ├── AudioDecoderConfiguration.pm │ │ │ ├── AudioEncoderConfiguration.pm │ │ │ ├── AudioOutputConfiguration.pm │ │ │ ├── AudioSourceConfiguration.pm │ │ │ ├── Body.pm │ │ │ ├── Capabilities.pm │ │ │ ├── ContinuousMove.pm │ │ │ ├── ContinuousMoveResponse.pm │ │ │ ├── CreatePresetTour.pm │ │ │ ├── CreatePresetTourResponse.pm │ │ │ ├── Envelope.pm │ │ │ ├── Fault.pm │ │ │ ├── GetCompatibleConfigurations.pm │ │ │ ├── GetCompatibleConfigurationsResponse.pm │ │ │ ├── GetConfiguration.pm │ │ │ ├── GetConfigurationOptions.pm │ │ │ ├── GetConfigurationOptionsResponse.pm │ │ │ ├── GetConfigurationResponse.pm │ │ │ ├── GetConfigurations.pm │ │ │ ├── GetConfigurationsResponse.pm │ │ │ ├── GetNode.pm │ │ │ ├── GetNodeResponse.pm │ │ │ ├── GetNodes.pm │ │ │ ├── GetNodesResponse.pm │ │ │ ├── GetPresetTour.pm │ │ │ ├── GetPresetTourOptions.pm │ │ │ ├── GetPresetTourOptionsResponse.pm │ │ │ ├── GetPresetTourResponse.pm │ │ │ ├── GetPresetTours.pm │ │ │ ├── GetPresetToursResponse.pm │ │ │ ├── GetPresets.pm │ │ │ ├── GetPresetsResponse.pm │ │ │ ├── GetServiceCapabilities.pm │ │ │ ├── GetServiceCapabilitiesResponse.pm │ │ │ ├── GetStatus.pm │ │ │ ├── GetStatusResponse.pm │ │ │ ├── GotoHomePosition.pm │ │ │ ├── GotoHomePositionResponse.pm │ │ │ ├── GotoPreset.pm │ │ │ ├── GotoPresetResponse.pm │ │ │ ├── Header.pm │ │ │ ├── Include.pm │ │ │ ├── Message.pm │ │ │ ├── MetadataConfiguration.pm │ │ │ ├── MetadataStream.pm │ │ │ ├── ModifyPresetTour.pm │ │ │ ├── ModifyPresetTourResponse.pm │ │ │ ├── OperatePresetTour.pm │ │ │ ├── OperatePresetTourResponse.pm │ │ │ ├── PTZConfiguration.pm │ │ │ ├── Polygon.pm │ │ │ ├── Polyline.pm │ │ │ ├── RelativeMove.pm │ │ │ ├── RelativeMoveResponse.pm │ │ │ ├── RemovePreset.pm │ │ │ ├── RemovePresetResponse.pm │ │ │ ├── RemovePresetTour.pm │ │ │ ├── RemovePresetTourResponse.pm │ │ │ ├── SendAuxiliaryCommand.pm │ │ │ ├── SendAuxiliaryCommandResponse.pm │ │ │ ├── SetConfiguration.pm │ │ │ ├── SetConfigurationResponse.pm │ │ │ ├── SetHomePosition.pm │ │ │ ├── SetHomePositionResponse.pm │ │ │ ├── SetPreset.pm │ │ │ ├── SetPresetResponse.pm │ │ │ ├── Stop.pm │ │ │ ├── StopResponse.pm │ │ │ ├── VideoAnalyticsConfiguration.pm │ │ │ ├── VideoEncoderConfiguration.pm │ │ │ └── VideoSourceConfiguration.pm │ │ │ ├── Interfaces │ │ │ └── PTZ │ │ │ │ └── PTZPort.pm │ │ │ ├── PTZ.pm │ │ │ ├── Typemaps │ │ │ └── PTZ.pm │ │ │ └── Types │ │ │ ├── AACDecOptions.pm │ │ │ ├── AbsoluteFocus.pm │ │ │ ├── AbsoluteFocusOptions.pm │ │ │ ├── ActionEngineEventPayload.pm │ │ │ ├── ActionEngineEventPayloadExtension.pm │ │ │ ├── AnalyticsCapabilities.pm │ │ │ ├── AnalyticsDeviceCapabilities.pm │ │ │ ├── AnalyticsDeviceEngineConfiguration.pm │ │ │ ├── AnalyticsDeviceEngineConfigurationExtension.pm │ │ │ ├── AnalyticsDeviceExtension.pm │ │ │ ├── AnalyticsEngine.pm │ │ │ ├── AnalyticsEngineConfiguration.pm │ │ │ ├── AnalyticsEngineConfigurationExtension.pm │ │ │ ├── AnalyticsEngineControl.pm │ │ │ ├── AnalyticsEngineInput.pm │ │ │ ├── AnalyticsEngineInputInfo.pm │ │ │ ├── AnalyticsEngineInputInfoExtension.pm │ │ │ ├── AnalyticsState.pm │ │ │ ├── AnalyticsStateInformation.pm │ │ │ ├── AnyHolder.pm │ │ │ ├── Appearance.pm │ │ │ ├── AppearanceExtension.pm │ │ │ ├── AttachmentData.pm │ │ │ ├── AttributedAnyType.pm │ │ │ ├── AttributedQNameType.pm │ │ │ ├── AttributedURIType.pm │ │ │ ├── AttributedUnsignedLongType.pm │ │ │ ├── AudioAnalyticsStream.pm │ │ │ ├── AudioAnalyticsStreamExtension.pm │ │ │ ├── AudioAttributes.pm │ │ │ ├── AudioClassCandidate.pm │ │ │ ├── AudioClassDescriptor.pm │ │ │ ├── AudioClassDescriptorExtension.pm │ │ │ ├── AudioClassType.pm │ │ │ ├── AudioDecoderConfiguration.pm │ │ │ ├── AudioDecoderConfigurationOptions.pm │ │ │ ├── AudioDecoderConfigurationOptionsExtension.pm │ │ │ ├── AudioDescriptor.pm │ │ │ ├── AudioEncoderConfiguration.pm │ │ │ ├── AudioEncoderConfigurationOption.pm │ │ │ ├── AudioEncoderConfigurationOptions.pm │ │ │ ├── AudioEncoding.pm │ │ │ ├── AudioOutput.pm │ │ │ ├── AudioOutputConfiguration.pm │ │ │ ├── AudioOutputConfigurationOptions.pm │ │ │ ├── AudioSource.pm │ │ │ ├── AudioSourceConfiguration.pm │ │ │ ├── AudioSourceConfigurationOptions.pm │ │ │ ├── AudioSourceOptionsExtension.pm │ │ │ ├── AutoFocusMode.pm │ │ │ ├── AuxiliaryData.pm │ │ │ ├── BacklightCompensation.pm │ │ │ ├── BacklightCompensation20.pm │ │ │ ├── BacklightCompensationMode.pm │ │ │ ├── BacklightCompensationOptions.pm │ │ │ ├── BacklightCompensationOptions20.pm │ │ │ ├── BackupFile.pm │ │ │ ├── BaseFaultType.pm │ │ │ ├── Behaviour.pm │ │ │ ├── BehaviourExtension.pm │ │ │ ├── BinaryData.pm │ │ │ ├── Body.pm │ │ │ ├── Capabilities.pm │ │ │ ├── CapabilitiesExtension.pm │ │ │ ├── CapabilitiesExtension2.pm │ │ │ ├── CapabilityCategory.pm │ │ │ ├── CellLayout.pm │ │ │ ├── Certificate.pm │ │ │ ├── CertificateGenerationParameters.pm │ │ │ ├── CertificateGenerationParametersExtension.pm │ │ │ ├── CertificateInformation.pm │ │ │ ├── CertificateInformationExtension.pm │ │ │ ├── CertificateStatus.pm │ │ │ ├── CertificateUsage.pm │ │ │ ├── CertificateWithPrivateKey.pm │ │ │ ├── ClassDescriptor.pm │ │ │ ├── ClassDescriptorExtension.pm │ │ │ ├── ClassDescriptorExtension2.pm │ │ │ ├── ClassType.pm │ │ │ ├── CodingCapabilities.pm │ │ │ ├── Color.pm │ │ │ ├── ColorCovariance.pm │ │ │ ├── ColorDescriptor.pm │ │ │ ├── ColorDescriptorExtension.pm │ │ │ ├── ColorOptions.pm │ │ │ ├── ColorspaceRange.pm │ │ │ ├── Config.pm │ │ │ ├── ConfigDescription.pm │ │ │ ├── ConfigDescriptionExtension.pm │ │ │ ├── ConfigurationEntity.pm │ │ │ ├── ContinuousFocus.pm │ │ │ ├── ContinuousFocusOptions.pm │ │ │ ├── DNSInformation.pm │ │ │ ├── DNSInformationExtension.pm │ │ │ ├── DNSName.pm │ │ │ ├── Date.pm │ │ │ ├── DateTime.pm │ │ │ ├── DateTimeRange.pm │ │ │ ├── Description.pm │ │ │ ├── DeviceCapabilities.pm │ │ │ ├── DeviceCapabilitiesExtension.pm │ │ │ ├── DeviceEntity.pm │ │ │ ├── DeviceIOCapabilities.pm │ │ │ ├── DigitalInput.pm │ │ │ ├── Direction.pm │ │ │ ├── DiscoveryMode.pm │ │ │ ├── DisplayCapabilities.pm │ │ │ ├── Documentation.pm │ │ │ ├── Domain.pm │ │ │ ├── Dot11AuthAndMangementSuite.pm │ │ │ ├── Dot11AvailableNetworks.pm │ │ │ ├── Dot11AvailableNetworksExtension.pm │ │ │ ├── Dot11Capabilities.pm │ │ │ ├── Dot11Cipher.pm │ │ │ ├── Dot11Configuration.pm │ │ │ ├── Dot11PSK.pm │ │ │ ├── Dot11PSKPassphrase.pm │ │ │ ├── Dot11PSKSet.pm │ │ │ ├── Dot11PSKSetExtension.pm │ │ │ ├── Dot11SSIDType.pm │ │ │ ├── Dot11SecurityConfiguration.pm │ │ │ ├── Dot11SecurityConfigurationExtension.pm │ │ │ ├── Dot11SecurityMode.pm │ │ │ ├── Dot11SignalStrength.pm │ │ │ ├── Dot11StationMode.pm │ │ │ ├── Dot11Status.pm │ │ │ ├── Dot1XConfiguration.pm │ │ │ ├── Dot1XConfigurationExtension.pm │ │ │ ├── Dot3Configuration.pm │ │ │ ├── Duplex.pm │ │ │ ├── DurationRange.pm │ │ │ ├── DynamicDNSInformation.pm │ │ │ ├── DynamicDNSInformationExtension.pm │ │ │ ├── DynamicDNSType.pm │ │ │ ├── EAPMethodConfiguration.pm │ │ │ ├── EFlip.pm │ │ │ ├── EFlipMode.pm │ │ │ ├── EFlipOptions.pm │ │ │ ├── EFlipOptionsExtension.pm │ │ │ ├── EapMethodExtension.pm │ │ │ ├── Enabled.pm │ │ │ ├── EndpointReferenceType.pm │ │ │ ├── EngineConfiguration.pm │ │ │ ├── Envelope.pm │ │ │ ├── EventCapabilities.pm │ │ │ ├── EventStreamExtension.pm │ │ │ ├── EventSubscription.pm │ │ │ ├── Exposure.pm │ │ │ ├── Exposure20.pm │ │ │ ├── ExposureMode.pm │ │ │ ├── ExposureOptions.pm │ │ │ ├── ExposureOptions20.pm │ │ │ ├── ExposurePriority.pm │ │ │ ├── ExtensibleDocumented.pm │ │ │ ├── FactoryDefaultType.pm │ │ │ ├── Fault.pm │ │ │ ├── FaultCodesOpenEnumType.pm │ │ │ ├── FaultCodesType.pm │ │ │ ├── FindEventResult.pm │ │ │ ├── FindEventResultList.pm │ │ │ ├── FindMetadataResult.pm │ │ │ ├── FindMetadataResultList.pm │ │ │ ├── FindPTZPositionResult.pm │ │ │ ├── FindPTZPositionResultList.pm │ │ │ ├── FindRecordingResultList.pm │ │ │ ├── FloatAttrList.pm │ │ │ ├── FloatList.pm │ │ │ ├── FloatRange.pm │ │ │ ├── FocusConfiguration.pm │ │ │ ├── FocusConfiguration20.pm │ │ │ ├── FocusConfiguration20Extension.pm │ │ │ ├── FocusMove.pm │ │ │ ├── FocusOptions.pm │ │ │ ├── FocusOptions20.pm │ │ │ ├── FocusOptions20Extension.pm │ │ │ ├── FocusStatus.pm │ │ │ ├── FocusStatus20.pm │ │ │ ├── FocusStatus20Extension.pm │ │ │ ├── Frame.pm │ │ │ ├── FrameExtension.pm │ │ │ ├── FrameExtension2.pm │ │ │ ├── G711DecOptions.pm │ │ │ ├── G726DecOptions.pm │ │ │ ├── GenericEapPwdConfigurationExtension.pm │ │ │ ├── GetRecordingJobsResponseItem.pm │ │ │ ├── GetRecordingsResponseItem.pm │ │ │ ├── GetTracksResponseItem.pm │ │ │ ├── GetTracksResponseList.pm │ │ │ ├── H264Configuration.pm │ │ │ ├── H264DecOptions.pm │ │ │ ├── H264Options.pm │ │ │ ├── H264Options2.pm │ │ │ ├── H264Profile.pm │ │ │ ├── Header.pm │ │ │ ├── HostnameInformation.pm │ │ │ ├── HostnameInformationExtension.pm │ │ │ ├── HwAddress.pm │ │ │ ├── IANA_IfTypes.pm │ │ │ ├── IOCapabilities.pm │ │ │ ├── IOCapabilitiesExtension.pm │ │ │ ├── IOCapabilitiesExtension2.pm │ │ │ ├── IPAddress.pm │ │ │ ├── IPAddressFilter.pm │ │ │ ├── IPAddressFilterExtension.pm │ │ │ ├── IPAddressFilterType.pm │ │ │ ├── IPType.pm │ │ │ ├── IPv4Address.pm │ │ │ ├── IPv4Configuration.pm │ │ │ ├── IPv4NetworkInterface.pm │ │ │ ├── IPv4NetworkInterfaceSetConfiguration.pm │ │ │ ├── IPv6Address.pm │ │ │ ├── IPv6Configuration.pm │ │ │ ├── IPv6ConfigurationExtension.pm │ │ │ ├── IPv6DHCPConfiguration.pm │ │ │ ├── IPv6NetworkInterface.pm │ │ │ ├── IPv6NetworkInterfaceSetConfiguration.pm │ │ │ ├── ImageStabilization.pm │ │ │ ├── ImageStabilizationExtension.pm │ │ │ ├── ImageStabilizationMode.pm │ │ │ ├── ImageStabilizationOptions.pm │ │ │ ├── ImageStabilizationOptionsExtension.pm │ │ │ ├── ImagingCapabilities.pm │ │ │ ├── ImagingOptions.pm │ │ │ ├── ImagingOptions20.pm │ │ │ ├── ImagingOptions20Extension.pm │ │ │ ├── ImagingOptions20Extension2.pm │ │ │ ├── ImagingOptions20Extension3.pm │ │ │ ├── ImagingSettings.pm │ │ │ ├── ImagingSettings20.pm │ │ │ ├── ImagingSettingsExtension.pm │ │ │ ├── ImagingSettingsExtension20.pm │ │ │ ├── ImagingSettingsExtension202.pm │ │ │ ├── ImagingSettingsExtension203.pm │ │ │ ├── ImagingStatus.pm │ │ │ ├── ImagingStatus20.pm │ │ │ ├── ImagingStatus20Extension.pm │ │ │ ├── Include.pm │ │ │ ├── IntAttrList.pm │ │ │ ├── IntList.pm │ │ │ ├── IntRange.pm │ │ │ ├── IntRectangle.pm │ │ │ ├── IntRectangleRange.pm │ │ │ ├── IrCutFilterAutoAdjustment.pm │ │ │ ├── IrCutFilterAutoAdjustmentExtension.pm │ │ │ ├── IrCutFilterAutoAdjustmentOptions.pm │ │ │ ├── IrCutFilterAutoAdjustmentOptionsExtension.pm │ │ │ ├── IrCutFilterAutoBoundaryType.pm │ │ │ ├── IrCutFilterMode.pm │ │ │ ├── ItemList.pm │ │ │ ├── ItemListDescription.pm │ │ │ ├── ItemListDescriptionExtension.pm │ │ │ ├── ItemListExtension.pm │ │ │ ├── JobToken.pm │ │ │ ├── JpegDecOptions.pm │ │ │ ├── JpegOptions.pm │ │ │ ├── JpegOptions2.pm │ │ │ ├── Layout.pm │ │ │ ├── LayoutExtension.pm │ │ │ ├── LayoutOptions.pm │ │ │ ├── LayoutOptionsExtension.pm │ │ │ ├── MaximumNumberOfOSDs.pm │ │ │ ├── MediaAttributes.pm │ │ │ ├── MediaCapabilities.pm │ │ │ ├── MediaCapabilitiesExtension.pm │ │ │ ├── MediaUri.pm │ │ │ ├── Merge.pm │ │ │ ├── MessageDescription.pm │ │ │ ├── MessageDescriptionExtension.pm │ │ │ ├── MessageExtension.pm │ │ │ ├── MetadataAttributes.pm │ │ │ ├── MetadataConfiguration.pm │ │ │ ├── MetadataConfigurationExtension.pm │ │ │ ├── MetadataConfigurationOptions.pm │ │ │ ├── MetadataFilter.pm │ │ │ ├── MetadataInput.pm │ │ │ ├── MetadataInputExtension.pm │ │ │ ├── MetadataStream.pm │ │ │ ├── MetadataStreamExtension.pm │ │ │ ├── MetadataStreamExtension2.pm │ │ │ ├── MetadataType.pm │ │ │ ├── ModeOfOperation.pm │ │ │ ├── MotionExpression.pm │ │ │ ├── MotionExpressionConfiguration.pm │ │ │ ├── MotionInCells.pm │ │ │ ├── MoveOptions.pm │ │ │ ├── MoveOptions20.pm │ │ │ ├── MoveStatus.pm │ │ │ ├── Mpeg4Configuration.pm │ │ │ ├── Mpeg4DecOptions.pm │ │ │ ├── Mpeg4Options.pm │ │ │ ├── Mpeg4Options2.pm │ │ │ ├── Mpeg4Profile.pm │ │ │ ├── MulticastConfiguration.pm │ │ │ ├── NTPInformation.pm │ │ │ ├── NTPInformationExtension.pm │ │ │ ├── Name.pm │ │ │ ├── NetworkCapabilities.pm │ │ │ ├── NetworkCapabilitiesExtension.pm │ │ │ ├── NetworkCapabilitiesExtension2.pm │ │ │ ├── NetworkGateway.pm │ │ │ ├── NetworkHost.pm │ │ │ ├── NetworkHostExtension.pm │ │ │ ├── NetworkHostType.pm │ │ │ ├── NetworkInterface.pm │ │ │ ├── NetworkInterfaceConfigPriority.pm │ │ │ ├── NetworkInterfaceConnectionSetting.pm │ │ │ ├── NetworkInterfaceExtension.pm │ │ │ ├── NetworkInterfaceExtension2.pm │ │ │ ├── NetworkInterfaceInfo.pm │ │ │ ├── NetworkInterfaceLink.pm │ │ │ ├── NetworkInterfaceSetConfiguration.pm │ │ │ ├── NetworkInterfaceSetConfigurationExtension.pm │ │ │ ├── NetworkInterfaceSetConfigurationExtension2.pm │ │ │ ├── NetworkProtocol.pm │ │ │ ├── NetworkProtocolExtension.pm │ │ │ ├── NetworkProtocolType.pm │ │ │ ├── NetworkZeroConfiguration.pm │ │ │ ├── NetworkZeroConfigurationExtension.pm │ │ │ ├── NetworkZeroConfigurationExtension2.pm │ │ │ ├── OSDColor.pm │ │ │ ├── OSDColorOptions.pm │ │ │ ├── OSDColorOptionsExtension.pm │ │ │ ├── OSDConfiguration.pm │ │ │ ├── OSDConfigurationExtension.pm │ │ │ ├── OSDConfigurationOptions.pm │ │ │ ├── OSDConfigurationOptionsExtension.pm │ │ │ ├── OSDImgConfiguration.pm │ │ │ ├── OSDImgConfigurationExtension.pm │ │ │ ├── OSDImgOptions.pm │ │ │ ├── OSDImgOptionsExtension.pm │ │ │ ├── OSDPosConfiguration.pm │ │ │ ├── OSDPosConfigurationExtension.pm │ │ │ ├── OSDReference.pm │ │ │ ├── OSDTextConfiguration.pm │ │ │ ├── OSDTextConfigurationExtension.pm │ │ │ ├── OSDTextOptions.pm │ │ │ ├── OSDTextOptionsExtension.pm │ │ │ ├── OSDType.pm │ │ │ ├── Object.pm │ │ │ ├── ObjectExtension.pm │ │ │ ├── ObjectId.pm │ │ │ ├── ObjectTree.pm │ │ │ ├── ObjectTreeExtension.pm │ │ │ ├── OnvifVersion.pm │ │ │ ├── OtherType.pm │ │ │ ├── PTControlDirection.pm │ │ │ ├── PTControlDirectionExtension.pm │ │ │ ├── PTControlDirectionOptions.pm │ │ │ ├── PTControlDirectionOptionsExtension.pm │ │ │ ├── PTZCapabilities.pm │ │ │ ├── PTZConfiguration.pm │ │ │ ├── PTZConfigurationExtension.pm │ │ │ ├── PTZConfigurationExtension2.pm │ │ │ ├── PTZConfigurationOptions.pm │ │ │ ├── PTZConfigurationOptions2.pm │ │ │ ├── PTZFilter.pm │ │ │ ├── PTZMoveStatus.pm │ │ │ ├── PTZNode.pm │ │ │ ├── PTZNodeExtension.pm │ │ │ ├── PTZNodeExtension2.pm │ │ │ ├── PTZPositionFilter.pm │ │ │ ├── PTZPreset.pm │ │ │ ├── PTZPresetTourDirection.pm │ │ │ ├── PTZPresetTourExtension.pm │ │ │ ├── PTZPresetTourOperation.pm │ │ │ ├── PTZPresetTourOptions.pm │ │ │ ├── PTZPresetTourPresetDetail.pm │ │ │ ├── PTZPresetTourPresetDetailOptions.pm │ │ │ ├── PTZPresetTourPresetDetailOptionsExtension.pm │ │ │ ├── PTZPresetTourSpot.pm │ │ │ ├── PTZPresetTourSpotExtension.pm │ │ │ ├── PTZPresetTourSpotOptions.pm │ │ │ ├── PTZPresetTourStartingCondition.pm │ │ │ ├── PTZPresetTourStartingConditionExtension.pm │ │ │ ├── PTZPresetTourStartingConditionOptions.pm │ │ │ ├── PTZPresetTourStartingConditionOptionsExtension.pm │ │ │ ├── PTZPresetTourState.pm │ │ │ ├── PTZPresetTourStatus.pm │ │ │ ├── PTZPresetTourStatusExtension.pm │ │ │ ├── PTZPresetTourSupported.pm │ │ │ ├── PTZPresetTourSupportedExtension.pm │ │ │ ├── PTZPresetTourTypeExtension.pm │ │ │ ├── PTZSpaces.pm │ │ │ ├── PTZSpacesExtension.pm │ │ │ ├── PTZSpeed.pm │ │ │ ├── PTZStatus.pm │ │ │ ├── PTZStatusFilterOptions.pm │ │ │ ├── PTZStatusFilterOptionsExtension.pm │ │ │ ├── PTZStream.pm │ │ │ ├── PTZStreamExtension.pm │ │ │ ├── PTZVector.pm │ │ │ ├── PanTiltLimits.pm │ │ │ ├── PaneConfiguration.pm │ │ │ ├── PaneLayout.pm │ │ │ ├── PaneLayoutOptions.pm │ │ │ ├── PaneOptionExtension.pm │ │ │ ├── Polygon.pm │ │ │ ├── PolygonConfiguration.pm │ │ │ ├── Polyline.pm │ │ │ ├── PolylineArray.pm │ │ │ ├── PolylineArrayConfiguration.pm │ │ │ ├── PolylineArrayExtension.pm │ │ │ ├── PrefixedIPv4Address.pm │ │ │ ├── PrefixedIPv6Address.pm │ │ │ ├── PresetTour.pm │ │ │ ├── ProblemActionType.pm │ │ │ ├── Profile.pm │ │ │ ├── ProfileCapabilities.pm │ │ │ ├── ProfileExtension.pm │ │ │ ├── ProfileExtension2.pm │ │ │ ├── PropertyOperation.pm │ │ │ ├── QueryExpressionType.pm │ │ │ ├── RealTimeStreamingCapabilities.pm │ │ │ ├── RealTimeStreamingCapabilitiesExtension.pm │ │ │ ├── Receiver.pm │ │ │ ├── ReceiverCapabilities.pm │ │ │ ├── ReceiverConfiguration.pm │ │ │ ├── ReceiverMode.pm │ │ │ ├── ReceiverReference.pm │ │ │ ├── ReceiverState.pm │ │ │ ├── ReceiverStateInformation.pm │ │ │ ├── RecordingCapabilities.pm │ │ │ ├── RecordingConfiguration.pm │ │ │ ├── RecordingInformation.pm │ │ │ ├── RecordingJobConfiguration.pm │ │ │ ├── RecordingJobConfigurationExtension.pm │ │ │ ├── RecordingJobMode.pm │ │ │ ├── RecordingJobReference.pm │ │ │ ├── RecordingJobSource.pm │ │ │ ├── RecordingJobSourceExtension.pm │ │ │ ├── RecordingJobState.pm │ │ │ ├── RecordingJobStateInformation.pm │ │ │ ├── RecordingJobStateInformationExtension.pm │ │ │ ├── RecordingJobStateSource.pm │ │ │ ├── RecordingJobStateTrack.pm │ │ │ ├── RecordingJobStateTracks.pm │ │ │ ├── RecordingJobTrack.pm │ │ │ ├── RecordingReference.pm │ │ │ ├── RecordingSourceInformation.pm │ │ │ ├── RecordingStatus.pm │ │ │ ├── RecordingSummary.pm │ │ │ ├── Rectangle.pm │ │ │ ├── ReferenceParametersType.pm │ │ │ ├── ReferenceToken.pm │ │ │ ├── RelatesToType.pm │ │ │ ├── RelationshipType.pm │ │ │ ├── RelationshipTypeOpenEnum.pm │ │ │ ├── RelativeFocus.pm │ │ │ ├── RelativeFocusOptions.pm │ │ │ ├── RelativeFocusOptions20.pm │ │ │ ├── RelayIdleState.pm │ │ │ ├── RelayLogicalState.pm │ │ │ ├── RelayMode.pm │ │ │ ├── RelayOutput.pm │ │ │ ├── RelayOutputSettings.pm │ │ │ ├── RemoteUser.pm │ │ │ ├── Rename.pm │ │ │ ├── ReplayCapabilities.pm │ │ │ ├── ReplayConfiguration.pm │ │ │ ├── Reverse.pm │ │ │ ├── ReverseMode.pm │ │ │ ├── ReverseOptions.pm │ │ │ ├── ReverseOptionsExtension.pm │ │ │ ├── Rotate.pm │ │ │ ├── RotateExtension.pm │ │ │ ├── RotateMode.pm │ │ │ ├── RotateOptions.pm │ │ │ ├── RotateOptionsExtension.pm │ │ │ ├── RuleEngineConfiguration.pm │ │ │ ├── RuleEngineConfigurationExtension.pm │ │ │ ├── Scope.pm │ │ │ ├── ScopeDefinition.pm │ │ │ ├── SearchCapabilities.pm │ │ │ ├── SearchScope.pm │ │ │ ├── SearchScopeExtension.pm │ │ │ ├── SearchState.pm │ │ │ ├── SecurityCapabilities.pm │ │ │ ├── SecurityCapabilitiesExtension.pm │ │ │ ├── SecurityCapabilitiesExtension2.pm │ │ │ ├── SetDateTimeType.pm │ │ │ ├── ShapeDescriptor.pm │ │ │ ├── ShapeDescriptorExtension.pm │ │ │ ├── SourceIdentification.pm │ │ │ ├── SourceIdentificationExtension.pm │ │ │ ├── SourceReference.pm │ │ │ ├── Space1DDescription.pm │ │ │ ├── Space2DDescription.pm │ │ │ ├── Split.pm │ │ │ ├── StreamSetup.pm │ │ │ ├── StreamType.pm │ │ │ ├── StringAttrList.pm │ │ │ ├── SupportInformation.pm │ │ │ ├── SupportedAnalyticsModules.pm │ │ │ ├── SupportedAnalyticsModulesExtension.pm │ │ │ ├── SupportedRules.pm │ │ │ ├── SupportedRulesExtension.pm │ │ │ ├── SystemCapabilities.pm │ │ │ ├── SystemCapabilitiesExtension.pm │ │ │ ├── SystemCapabilitiesExtension2.pm │ │ │ ├── SystemDateTime.pm │ │ │ ├── SystemDateTimeExtension.pm │ │ │ ├── SystemLog.pm │ │ │ ├── SystemLogType.pm │ │ │ ├── SystemLogUri.pm │ │ │ ├── SystemLogUriList.pm │ │ │ ├── TLSConfiguration.pm │ │ │ ├── Time.pm │ │ │ ├── TimeZone.pm │ │ │ ├── TopicNamespaceLocation.pm │ │ │ ├── TopicNamespaceType.pm │ │ │ ├── TrackAttributes.pm │ │ │ ├── TrackAttributesExtension.pm │ │ │ ├── TrackConfiguration.pm │ │ │ ├── TrackInformation.pm │ │ │ ├── TrackReference.pm │ │ │ ├── TrackType.pm │ │ │ ├── Transformation.pm │ │ │ ├── TransformationExtension.pm │ │ │ ├── Transport.pm │ │ │ ├── TransportProtocol.pm │ │ │ ├── User.pm │ │ │ ├── UserExtension.pm │ │ │ ├── UserLevel.pm │ │ │ ├── Vector.pm │ │ │ ├── Vector1D.pm │ │ │ ├── Vector2D.pm │ │ │ ├── VideoAnalyticsConfiguration.pm │ │ │ ├── VideoAnalyticsStream.pm │ │ │ ├── VideoAnalyticsStreamExtension.pm │ │ │ ├── VideoAttributes.pm │ │ │ ├── VideoDecoderConfigurationOptions.pm │ │ │ ├── VideoDecoderConfigurationOptionsExtension.pm │ │ │ ├── VideoEncoderConfiguration.pm │ │ │ ├── VideoEncoderConfigurationOptions.pm │ │ │ ├── VideoEncoderOptionsExtension.pm │ │ │ ├── VideoEncoderOptionsExtension2.pm │ │ │ ├── VideoEncoding.pm │ │ │ ├── VideoOutput.pm │ │ │ ├── VideoOutputConfiguration.pm │ │ │ ├── VideoOutputConfigurationOptions.pm │ │ │ ├── VideoOutputExtension.pm │ │ │ ├── VideoRateControl.pm │ │ │ ├── VideoResolution.pm │ │ │ ├── VideoSource.pm │ │ │ ├── VideoSourceConfiguration.pm │ │ │ ├── VideoSourceConfigurationExtension.pm │ │ │ ├── VideoSourceConfigurationExtension2.pm │ │ │ ├── VideoSourceConfigurationOptions.pm │ │ │ ├── VideoSourceConfigurationOptionsExtension.pm │ │ │ ├── VideoSourceConfigurationOptionsExtension2.pm │ │ │ ├── VideoSourceExtension.pm │ │ │ ├── VideoSourceExtension2.pm │ │ │ ├── WhiteBalance.pm │ │ │ ├── WhiteBalance20.pm │ │ │ ├── WhiteBalance20Extension.pm │ │ │ ├── WhiteBalanceMode.pm │ │ │ ├── WhiteBalanceOptions.pm │ │ │ ├── WhiteBalanceOptions20.pm │ │ │ ├── WhiteBalanceOptions20Extension.pm │ │ │ ├── WideDynamicMode.pm │ │ │ ├── WideDynamicRange.pm │ │ │ ├── WideDynamicRange20.pm │ │ │ ├── WideDynamicRangeOptions.pm │ │ │ ├── WideDynamicRangeOptions20.pm │ │ │ ├── XPathExpression.pm │ │ │ ├── ZoomLimits.pm │ │ │ ├── base64Binary.pm │ │ │ ├── detail.pm │ │ │ ├── encodingStyle.pm │ │ │ └── hexBinary.pm │ │ ├── WSDiscovery10 │ │ ├── Attributes │ │ │ ├── Action.pm │ │ │ └── Id.pm │ │ ├── Elements │ │ │ ├── Action.pm │ │ │ ├── AppSequence.pm │ │ │ ├── Bye.pm │ │ │ ├── EndpointReference.pm │ │ │ ├── FaultTo.pm │ │ │ ├── From.pm │ │ │ ├── Header.pm │ │ │ ├── Hello.pm │ │ │ ├── MessageID.pm │ │ │ ├── MetadataVersion.pm │ │ │ ├── Probe.pm │ │ │ ├── ProbeMatches.pm │ │ │ ├── RelatesTo.pm │ │ │ ├── ReplyAfter.pm │ │ │ ├── ReplyTo.pm │ │ │ ├── Resolve.pm │ │ │ ├── ResolveMatches.pm │ │ │ ├── RetryAfter.pm │ │ │ ├── Scopes.pm │ │ │ ├── Security.pm │ │ │ ├── Sig.pm │ │ │ ├── SupportedMatchingRules.pm │ │ │ ├── To.pm │ │ │ ├── Types.pm │ │ │ └── XAddrs.pm │ │ ├── Interfaces │ │ │ └── WSDiscovery │ │ │ │ └── WSDiscoveryPort.pm │ │ ├── Typemaps │ │ │ └── WSDiscovery.pm │ │ └── Types │ │ │ ├── AppSequenceType.pm │ │ │ ├── AttributedQName.pm │ │ │ ├── AttributedURI.pm │ │ │ ├── ByeType.pm │ │ │ ├── EndpointReferenceType.pm │ │ │ ├── FaultCodeOpenType.pm │ │ │ ├── FaultCodeType.pm │ │ │ ├── FaultSubcodeValues.pm │ │ │ ├── HelloType.pm │ │ │ ├── OpenRelationshipType.pm │ │ │ ├── ProbeMatchType.pm │ │ │ ├── ProbeMatchesType.pm │ │ │ ├── ProbeType.pm │ │ │ ├── QNameListType.pm │ │ │ ├── ReferenceParametersType.pm │ │ │ ├── ReferencePropertiesType.pm │ │ │ ├── Relationship.pm │ │ │ ├── RelationshipType.pm │ │ │ ├── RelationshipTypeValues.pm │ │ │ ├── ReplyAfterType.pm │ │ │ ├── ResolveMatchType.pm │ │ │ ├── ResolveMatchesType.pm │ │ │ ├── ResolveType.pm │ │ │ ├── RetryAfterType.pm │ │ │ ├── ScopesType.pm │ │ │ ├── SecurityType.pm │ │ │ ├── ServiceNameType.pm │ │ │ ├── SigType.pm │ │ │ └── UriListType.pm │ │ ├── WSDiscovery11 │ │ ├── Attributes │ │ │ ├── Id.pm │ │ │ └── IsReferenceParameter.pm │ │ ├── Elements │ │ │ ├── Action.pm │ │ │ ├── AppSequence.pm │ │ │ ├── Bye.pm │ │ │ ├── EndpointReference.pm │ │ │ ├── FaultTo.pm │ │ │ ├── From.pm │ │ │ ├── Hello.pm │ │ │ ├── MessageID.pm │ │ │ ├── Metadata.pm │ │ │ ├── MetadataVersion.pm │ │ │ ├── Probe.pm │ │ │ ├── ProbeMatches.pm │ │ │ ├── ProblemAction.pm │ │ │ ├── ProblemHeaderQName.pm │ │ │ ├── ProblemIRI.pm │ │ │ ├── ReferenceParameters.pm │ │ │ ├── RelatesTo.pm │ │ │ ├── ReplyTo.pm │ │ │ ├── Resolve.pm │ │ │ ├── ResolveMatches.pm │ │ │ ├── RetryAfter.pm │ │ │ ├── Scopes.pm │ │ │ ├── Security.pm │ │ │ ├── Sig.pm │ │ │ ├── SupportedMatchingRules.pm │ │ │ ├── To.pm │ │ │ ├── Types.pm │ │ │ └── XAddrs.pm │ │ ├── Interfaces │ │ │ └── WSDiscovery │ │ │ │ └── WSDiscoveryPort.pm │ │ ├── Typemaps │ │ │ └── WSDiscovery.pm │ │ └── Types │ │ │ ├── AppSequenceType.pm │ │ │ ├── AttributedQNameType.pm │ │ │ ├── AttributedURIType.pm │ │ │ ├── AttributedUnsignedLongType.pm │ │ │ ├── ByeType.pm │ │ │ ├── EndpointReferenceType.pm │ │ │ ├── FaultCodeOpenType.pm │ │ │ ├── FaultCodeType.pm │ │ │ ├── FaultCodesOpenEnumType.pm │ │ │ ├── FaultCodesType.pm │ │ │ ├── HelloType.pm │ │ │ ├── MetadataType.pm │ │ │ ├── ProbeMatchType.pm │ │ │ ├── ProbeMatchesType.pm │ │ │ ├── ProbeType.pm │ │ │ ├── ProblemActionType.pm │ │ │ ├── QNameListType.pm │ │ │ ├── ReferenceParametersType.pm │ │ │ ├── RelatesToType.pm │ │ │ ├── RelationshipType.pm │ │ │ ├── RelationshipTypeOpenEnum.pm │ │ │ ├── ResolveMatchType.pm │ │ │ ├── ResolveMatchesType.pm │ │ │ ├── ResolveType.pm │ │ │ ├── ScopesType.pm │ │ │ ├── SecurityType.pm │ │ │ ├── SigType.pm │ │ │ └── UriListType.pm │ │ └── WSNotification │ │ ├── Attributes │ │ ├── IsReferenceParameter.pm │ │ ├── base.pm │ │ ├── id.pm │ │ ├── lang.pm │ │ ├── space.pm │ │ ├── topic.pm │ │ └── topicNamespaceLocation.pm │ │ ├── Elements │ │ ├── Action.pm │ │ ├── BaseFault.pm │ │ ├── ConsumerReference.pm │ │ ├── CreatePullPoint.pm │ │ ├── CreatePullPointResponse.pm │ │ ├── CreationTime.pm │ │ ├── CurrentTime.pm │ │ ├── DestroyPullPoint.pm │ │ ├── DestroyPullPointResponse.pm │ │ ├── EndpointReference.pm │ │ ├── FaultTo.pm │ │ ├── Filter.pm │ │ ├── FixedTopicSet.pm │ │ ├── From.pm │ │ ├── GetCurrentMessage.pm │ │ ├── GetCurrentMessageResponse.pm │ │ ├── GetMessages.pm │ │ ├── GetMessagesResponse.pm │ │ ├── Header.pm │ │ ├── InvalidFilterFault.pm │ │ ├── InvalidMessageContentExpressionFault.pm │ │ ├── InvalidProducerPropertiesExpressionFault.pm │ │ ├── InvalidTopicExpressionFault.pm │ │ ├── MessageContent.pm │ │ ├── MessageID.pm │ │ ├── Metadata.pm │ │ ├── MultipleTopicsSpecifiedFault.pm │ │ ├── NoCurrentMessageOnTopicFault.pm │ │ ├── NotificationMessage.pm │ │ ├── NotificationProducerRP.pm │ │ ├── Notify.pm │ │ ├── NotifyMessageNotSupportedFault.pm │ │ ├── PauseFailedFault.pm │ │ ├── PauseSubscription.pm │ │ ├── PauseSubscriptionResponse.pm │ │ ├── ProblemAction.pm │ │ ├── ProblemHeader.pm │ │ ├── ProblemHeaderQName.pm │ │ ├── ProblemIRI.pm │ │ ├── ProducerProperties.pm │ │ ├── ProducerReference.pm │ │ ├── RelatesTo.pm │ │ ├── Renew.pm │ │ ├── RenewResponse.pm │ │ ├── ReplyTo.pm │ │ ├── ResumeFailedFault.pm │ │ ├── ResumeSubscription.pm │ │ ├── ResumeSubscriptionResponse.pm │ │ ├── RetryAfter.pm │ │ ├── Subscribe.pm │ │ ├── SubscribeCreationFailedFault.pm │ │ ├── SubscribeResponse.pm │ │ ├── SubscriptionManagerRP.pm │ │ ├── SubscriptionPolicy.pm │ │ ├── SubscriptionReference.pm │ │ ├── TerminationTime.pm │ │ ├── To.pm │ │ ├── Topic.pm │ │ ├── TopicExpression.pm │ │ ├── TopicExpressionDialect.pm │ │ ├── TopicExpressionDialectUnknownFault.pm │ │ ├── TopicNamespace.pm │ │ ├── TopicNotSupportedFault.pm │ │ ├── TopicSet.pm │ │ ├── UnableToCreatePullPointFault.pm │ │ ├── UnableToDestroyPullPointFault.pm │ │ ├── UnableToDestroySubscriptionFault.pm │ │ ├── UnableToGetMessagesFault.pm │ │ ├── UnacceptableInitialTerminationTimeFault.pm │ │ ├── UnacceptableTerminationTimeFault.pm │ │ ├── UnrecognizedPolicyRequestFault.pm │ │ ├── Unsubscribe.pm │ │ ├── UnsubscribeResponse.pm │ │ ├── UnsupportedPolicyRequestFault.pm │ │ └── UseRaw.pm │ │ ├── Interfaces │ │ └── WSBaseNotificationSender │ │ │ ├── NotificationProducerPort.pm │ │ │ └── SubscriptionManagerPort.pm │ │ ├── Typemaps │ │ └── WSBaseNotificationSender.pm │ │ └── Types │ │ ├── AbsoluteOrRelativeTimeType.pm │ │ ├── AttributedAnyType.pm │ │ ├── AttributedQNameType.pm │ │ ├── AttributedURIType.pm │ │ ├── AttributedUnsignedLongType.pm │ │ ├── BaseFaultType.pm │ │ ├── ConcreteTopicExpression.pm │ │ ├── Documentation.pm │ │ ├── EndpointReferenceType.pm │ │ ├── ExtensibleDocumented.pm │ │ ├── FaultCodesOpenEnumType.pm │ │ ├── FaultCodesType.pm │ │ ├── FilterType.pm │ │ ├── FullTopicExpression.pm │ │ ├── InvalidFilterFaultType.pm │ │ ├── InvalidMessageContentExpressionFaultType.pm │ │ ├── InvalidProducerPropertiesExpressionFaultType.pm │ │ ├── InvalidTopicExpressionFaultType.pm │ │ ├── MetadataType.pm │ │ ├── MultipleTopicsSpecifiedFaultType.pm │ │ ├── NoCurrentMessageOnTopicFaultType.pm │ │ ├── NotificationMessageHolderType.pm │ │ ├── NotifyMessageNotSupportedFaultType.pm │ │ ├── PauseFailedFaultType.pm │ │ ├── ProblemActionType.pm │ │ ├── QueryExpressionType.pm │ │ ├── ReferenceParametersType.pm │ │ ├── RelatesToType.pm │ │ ├── RelationshipType.pm │ │ ├── RelationshipTypeOpenEnum.pm │ │ ├── ResumeFailedFaultType.pm │ │ ├── SimpleTopicExpression.pm │ │ ├── SubscribeCreationFailedFaultType.pm │ │ ├── SubscriptionPolicyType.pm │ │ ├── TopicExpressionDialectUnknownFaultType.pm │ │ ├── TopicExpressionType.pm │ │ ├── TopicNamespaceType.pm │ │ ├── TopicNotSupportedFaultType.pm │ │ ├── TopicSetType.pm │ │ ├── TopicType.pm │ │ ├── UnableToCreatePullPointFaultType.pm │ │ ├── UnableToDestroyPullPointFaultType.pm │ │ ├── UnableToDestroySubscriptionFaultType.pm │ │ ├── UnableToGetMessagesFaultType.pm │ │ ├── UnacceptableInitialTerminationTimeFaultType.pm │ │ ├── UnacceptableTerminationTimeFaultType.pm │ │ ├── UnrecognizedPolicyRequestFaultType.pm │ │ └── UnsupportedPolicyRequestFaultType.pm └── wsdl │ ├── analytics.wsdl │ ├── b-2.xsd │ ├── bf-2.xsd │ ├── br-2.xsd │ ├── brw-2.wsdl │ ├── bw-2.wsdl │ ├── devicemgmt.wsdl │ ├── media.wsdl │ ├── onvif-local.xsd │ ├── onvif.xsd │ ├── ptz.wsdl │ ├── r-2.xsd │ ├── rw-2.wsdl │ ├── soap-envelop.xsd │ ├── t-1.xsd │ ├── ws-addressing-2004-08.xsd │ ├── ws-discovery-1.0.wsdl │ ├── ws-discovery-1.0.xsd │ ├── wsdd-discovery-1.1-schema-os.xsd │ ├── wsdd-discovery-1.1-wsdl-os.wsdl │ ├── wsdiscovery-udp.wsdl │ ├── wsdiscovery10-udp.wsdl │ ├── wsdl.xsd │ ├── wsdl11soap12.xsd │ ├── wsnotification.wsdl │ ├── xmlmime.xsd │ └── xop-include.xsd ├── scripts ├── CMakeLists.txt ├── ZoneMinder │ ├── CMakeLists.txt │ ├── Changes │ ├── INSTALL.SKIP │ ├── MANIFEST │ ├── MANIFEST.SKIP │ ├── META.yml │ ├── Makefile.PL │ ├── README │ ├── lib │ │ ├── ZoneMinder.pm │ │ └── ZoneMinder │ │ │ ├── Base.pm.in │ │ │ ├── Config.pm.in │ │ │ ├── ConfigData.pm.in │ │ │ ├── Control.pm │ │ │ ├── Control │ │ │ ├── 3S.pm │ │ │ ├── Amcrest_HTTP.pm │ │ │ ├── AxisV2.pm │ │ │ ├── DCS3415.pm │ │ │ ├── DCS5020L.pm │ │ │ ├── Dahua.pm │ │ │ ├── DericamP2.pm │ │ │ ├── FI8608W_Y2k.pm │ │ │ ├── FI8620_Y2k.pm │ │ │ ├── FI8908W.pm │ │ │ ├── FI8918W.pm │ │ │ ├── FI9821W_Y2k.pm │ │ │ ├── FI9831W.pm │ │ │ ├── FOSCAMR2C.pm │ │ │ ├── Floureon.pm │ │ │ ├── FoscamCGI.pm │ │ │ ├── Grandstream.pm │ │ │ ├── HikVision.pm │ │ │ ├── IPCAMIOS.pm │ │ │ ├── IPCC7210W.pm │ │ │ ├── Instar720p.pm │ │ │ ├── Keekoon.pm │ │ │ ├── LoftekSentinel.pm │ │ │ ├── M8640.pm │ │ │ ├── MaginonIPC.pm │ │ │ ├── Ncs370.pm │ │ │ ├── Netcat.pm │ │ │ ├── PSIA.pm │ │ │ ├── PanasonicIP.pm │ │ │ ├── PelcoD.pm │ │ │ ├── PelcoP.pm │ │ │ ├── Reolink.pm │ │ │ ├── SPP1802SWPTZ.pm │ │ │ ├── Serial_HEX_PelcoD.pm │ │ │ ├── SkyIPCam7xx.pm │ │ │ ├── Sony.pm │ │ │ ├── TapoC520WS_ONVIF.pm │ │ │ ├── Toshiba_IK_WB11A.pm │ │ │ ├── Trendnet.pm │ │ │ ├── Uniview.pm │ │ │ ├── Visca.pm │ │ │ ├── Vivotek_ePTZ.pm │ │ │ ├── Wanscam.pm │ │ │ ├── WanscamHW0025.pm │ │ │ ├── mjpgStreamer.pm │ │ │ └── onvif.pm │ │ │ ├── Database.pm │ │ │ ├── Event.pm │ │ │ ├── Event_Summary.pm │ │ │ ├── Event_Tag.pm │ │ │ ├── Filter.pm │ │ │ ├── Frame.pm │ │ │ ├── General.pm │ │ │ ├── Logger.pm │ │ │ ├── Manufacturer.pm │ │ │ ├── Memory.pm.in │ │ │ ├── Memory │ │ │ ├── Mapped.pm │ │ │ └── Shared.pm │ │ │ ├── Model.pm │ │ │ ├── Monitor.pm │ │ │ ├── Monitor_Status.pm │ │ │ ├── Network.pm │ │ │ ├── ONVIF.pm.in │ │ │ ├── Object.pm │ │ │ ├── Object_Type.pm │ │ │ ├── Server.pm │ │ │ ├── State.pm │ │ │ ├── Storage.pm │ │ │ ├── Tag.pm │ │ │ ├── Trigger │ │ │ ├── Channel.pm │ │ │ ├── Channel │ │ │ │ ├── File.pm │ │ │ │ ├── Handle.pm │ │ │ │ ├── Inet.pm │ │ │ │ ├── Serial.pm │ │ │ │ ├── Spawning.pm │ │ │ │ └── Unix.pm │ │ │ ├── Connection.pm │ │ │ └── Connection │ │ │ │ └── Example.pm │ │ │ ├── User.pm │ │ │ └── Zone.pm │ └── t │ │ └── ZoneMinder.t ├── zm.in ├── zmalarm-server.py ├── zmaudit.pl.in ├── zmcamtool.pl.in ├── zmcontrol.pl.in ├── zmdbbackup.in ├── zmdbrestore.in ├── zmdc.pl.in ├── zmeventdump.in ├── zmeventtool.pl.in ├── zmfilter.pl.in ├── zmlogrotate.conf.in ├── zmonvif-probe.pl.in ├── zmonvif-trigger.pl.in ├── zmpkg.pl.in ├── zmrecover.pl.in ├── zmstats.pl.in ├── zmsystemctl.pl.in ├── zmtelemetry.pl.in ├── zmtrack.pl.in ├── zmtrigger.pl.in ├── zmupdate.pl.in ├── zmvideo.pl.in ├── zmwatch.pl.in └── zmx10.pl.in ├── src ├── CMakeLists.txt ├── bindings.h ├── jinclude.h ├── zm.cpp ├── zm.h ├── zm_analysis_thread.cpp ├── zm_analysis_thread.h ├── zm_box.h ├── zm_buffer.cpp ├── zm_buffer.h ├── zm_camera.cpp ├── zm_camera.h ├── zm_comms.cpp ├── zm_comms.h ├── zm_config.cpp ├── zm_config.h ├── zm_config_data.h.in ├── zm_crypt.cpp ├── zm_crypt.h ├── zm_crypto_generics.h ├── zm_crypto_gnutls.h ├── zm_crypto_openssl.h ├── zm_db.cpp ├── zm_db.h ├── zm_decoder_thread.cpp ├── zm_decoder_thread.h ├── zm_define.h ├── zm_event.cpp ├── zm_event.h ├── zm_event_tag.cpp ├── zm_event_tag.h ├── zm_eventstream.cpp ├── zm_eventstream.h ├── zm_exception.cpp ├── zm_exception.h ├── zm_ffmpeg.cpp ├── zm_ffmpeg.h ├── zm_ffmpeg_camera.cpp ├── zm_ffmpeg_camera.h ├── zm_ffmpeg_input.cpp ├── zm_ffmpeg_input.h ├── zm_ffmpeg_output.cpp ├── zm_ffmpeg_output.h ├── zm_fifo.cpp ├── zm_fifo.h ├── zm_fifo_debug.cpp ├── zm_fifo_debug.h ├── zm_fifo_stream.cpp ├── zm_fifo_stream.h ├── zm_file_camera.cpp ├── zm_file_camera.h ├── zm_font.cpp ├── zm_font.h ├── zm_frame.cpp ├── zm_frame.h ├── zm_group.cpp ├── zm_group.h ├── zm_group_permission.cpp ├── zm_group_permission.h ├── zm_image.cpp ├── zm_image.h ├── zm_image_analyser.cpp ├── zm_image_analyser.h ├── zm_jpeg.cpp ├── zm_jpeg.h ├── zm_libvlc_camera.cpp ├── zm_libvlc_camera.h ├── zm_libvnc_camera.cpp ├── zm_libvnc_camera.h ├── zm_line.h ├── zm_local_camera.cpp ├── zm_local_camera.h ├── zm_logger.cpp ├── zm_logger.h ├── zm_mem_utils.h ├── zm_monitor.cpp ├── zm_monitor.h ├── zm_monitor_amcrest.cpp ├── zm_monitor_go2rtc.cpp ├── zm_monitor_janus.cpp ├── zm_monitor_monitorlink.cpp ├── zm_monitor_onvif.cpp ├── zm_monitor_permission.cpp ├── zm_monitor_permission.h ├── zm_monitor_rtsp2web.cpp ├── zm_monitorlink_expression.cpp ├── zm_monitorlink_expression.h ├── zm_monitorlink_token.h ├── zm_monitorstream.cpp ├── zm_monitorstream.h ├── zm_mpeg.cpp ├── zm_mpeg.h ├── zm_mqtt.cpp ├── zm_mqtt.h ├── zm_packet.cpp ├── zm_packet.h ├── zm_packetqueue.cpp ├── zm_packetqueue.h ├── zm_poll_thread.cpp ├── zm_poll_thread.h ├── zm_poly.cpp ├── zm_poly.h ├── zm_regexp.cpp ├── zm_regexp.h ├── zm_remote_camera.cpp ├── zm_remote_camera.h ├── zm_remote_camera_http.cpp ├── zm_remote_camera_http.h ├── zm_remote_camera_nvsocket.cpp ├── zm_remote_camera_nvsocket.h ├── zm_remote_camera_rtsp.cpp ├── zm_remote_camera_rtsp.h ├── zm_rgb.h ├── zm_rtp.cpp ├── zm_rtp.h ├── zm_rtp_ctrl.cpp ├── zm_rtp_ctrl.h ├── zm_rtp_data.cpp ├── zm_rtp_data.h ├── zm_rtp_source.cpp ├── zm_rtp_source.h ├── zm_rtsp.cpp ├── zm_rtsp.h ├── zm_rtsp_auth.cpp ├── zm_rtsp_auth.h ├── zm_rtsp_server.cpp ├── zm_rtsp_server_adts_source.cpp ├── zm_rtsp_server_adts_source.h ├── zm_rtsp_server_authenticator.h ├── zm_rtsp_server_device_source.cpp ├── zm_rtsp_server_device_source.h ├── zm_rtsp_server_fifo_adts_source.cpp ├── zm_rtsp_server_fifo_adts_source.h ├── zm_rtsp_server_fifo_audio_source.cpp ├── zm_rtsp_server_fifo_audio_source.h ├── zm_rtsp_server_fifo_h264_source.cpp ├── zm_rtsp_server_fifo_h264_source.h ├── zm_rtsp_server_fifo_source.cpp ├── zm_rtsp_server_fifo_source.h ├── zm_rtsp_server_fifo_video_source.cpp ├── zm_rtsp_server_fifo_video_source.h ├── zm_rtsp_server_frame.h ├── zm_rtsp_server_server_media_subsession.cpp ├── zm_rtsp_server_server_media_subsession.h ├── zm_rtsp_server_unicast_server_media_subsession.cpp ├── zm_rtsp_server_unicast_server_media_subsession.h ├── zm_sdp.cpp ├── zm_sdp.h ├── zm_sendfile.h ├── zm_server.cpp ├── zm_server.h ├── zm_signal.cpp ├── zm_signal.h ├── zm_storage.cpp ├── zm_storage.h ├── zm_stream.cpp ├── zm_stream.h ├── zm_swscale.cpp ├── zm_swscale.h ├── zm_tag.cpp ├── zm_tag.h ├── zm_time.cpp ├── zm_time.h ├── zm_uri.cpp ├── zm_uri.h ├── zm_user.cpp ├── zm_user.h ├── zm_utils.cpp ├── zm_utils.h ├── zm_vector2.h ├── zm_videostore.cpp ├── zm_videostore.h ├── zm_zone.cpp ├── zm_zone.h ├── zm_zone_stats.h ├── zmbenchmark.cpp ├── zmc.cpp ├── zms.cpp └── zmu.cpp ├── tests ├── CMakeLists.txt ├── data │ └── fonts │ │ ├── 01_bad_magic.zmfnt │ │ ├── 02_variant_invalid.zmfnt │ │ ├── 03_missing_cps.zmfnt │ │ ├── 04_valid.zmfnt │ │ └── generate_fonts.py ├── main.cpp ├── zm_box.cpp ├── zm_catch2.h ├── zm_comms.cpp ├── zm_crypt.cpp ├── zm_font.cpp ├── zm_poly.cpp ├── zm_utils.cpp └── zm_vector2.cpp ├── utils ├── bump-version.pl ├── do_debian_package.sh ├── docker │ └── README.md ├── generate_apache_config.pl ├── mk_bigfont.pl ├── packpack │ ├── deploy_rsa │ ├── deploy_rsa.enc │ ├── heartbeat.sh │ ├── installzm.sh │ ├── nolintian.patch │ ├── packpack-rpm.patch │ ├── redhat_package.mk │ ├── rsync_xfer.sh │ ├── setarch.patch │ └── startpackpack.sh ├── resample_event_video.sh ├── travis.pl ├── zm-alarm.pl └── zmeditconfigdata.sh ├── version.txt ├── web ├── .editorconfig ├── .gitignore ├── .travis.yml ├── CMakeLists.txt ├── README.md ├── ajax │ ├── add_monitors.php │ ├── alarm.php │ ├── console.php │ ├── control.php │ ├── controlcaps.php │ ├── device.php │ ├── devices.php │ ├── event.php │ ├── events.php │ ├── frames.php │ ├── log.php │ ├── modal.php │ ├── modals │ │ ├── add_monitors_import.php │ │ ├── areyoustillwatching.php │ │ ├── controlpreset.php │ │ ├── delconfirm.php │ │ ├── device.php │ │ ├── donate.php │ │ ├── download.php │ │ ├── enoperm.php │ │ ├── eventdetail.php │ │ ├── eventrename.php │ │ ├── eventunarchive.php │ │ ├── filterdebug.php │ │ ├── function.php │ │ ├── group.php │ │ ├── log_export.php │ │ ├── logout.php │ │ ├── objdetect.php │ │ ├── optionhelp.php │ │ ├── saveconfirm.php │ │ ├── server.php │ │ ├── settings.php │ │ ├── shutdown.php │ │ ├── state.php │ │ └── storage.php │ ├── models.php │ ├── reports.php │ ├── shutdown.php │ ├── snapshots.php │ ├── stats.php │ ├── status.php │ ├── stream.php │ ├── tags.php │ ├── trigger.php │ ├── v4l2_settings.php │ ├── watch.php │ └── zone.php ├── api │ ├── .editorconfig │ ├── CMakeLists.txt │ ├── CONTRIBUTING.md │ ├── README.md │ ├── app │ │ ├── Config │ │ │ ├── Schema │ │ │ │ ├── db_acl.php │ │ │ │ ├── db_acl.sql │ │ │ │ ├── i18n.php │ │ │ │ ├── i18n.sql │ │ │ │ ├── sessions.php │ │ │ │ └── sessions.sql │ │ │ ├── acl.ini.php │ │ │ ├── acl.php │ │ │ ├── bootstrap.php.in │ │ │ ├── core.php.default │ │ │ ├── database.php.default │ │ │ ├── email.php.default │ │ │ └── routes.php │ │ ├── Console │ │ │ ├── Command │ │ │ │ └── AppShell.php │ │ │ ├── cake │ │ │ ├── cake.bat │ │ │ └── cake.php │ │ ├── Controller │ │ │ ├── AppController.php │ │ │ ├── CameraModelsController.php │ │ │ ├── Component │ │ │ │ ├── ConfigParserComponent.php │ │ │ │ ├── FilterComponent.php │ │ │ │ ├── ImageComponent.php │ │ │ │ └── ScalerComponent.php │ │ │ ├── ConfigsController.php │ │ │ ├── ControlsController.php │ │ │ ├── EventDataController.php │ │ │ ├── EventsController.php │ │ │ ├── FramesController.php │ │ │ ├── GroupsController.php │ │ │ ├── HostController.php │ │ │ ├── LogsController.php │ │ │ ├── ManufacturersController.php │ │ │ ├── MonitorsController.php │ │ │ ├── PagesController.php │ │ │ ├── ServerStatsController.php │ │ │ ├── ServersController.php │ │ │ ├── SnapshotsController.php │ │ │ ├── StatesController.php │ │ │ ├── StorageController.php │ │ │ ├── TagsController.php │ │ │ ├── UserPreferenceController.php │ │ │ ├── UsersController.php │ │ │ ├── ZonePresetsController.php │ │ │ └── ZonesController.php │ │ ├── Model │ │ │ ├── AppModel.php │ │ │ ├── CameraModel.php │ │ │ ├── Config.php │ │ │ ├── Control.php │ │ │ ├── Event.php │ │ │ ├── EventData.php │ │ │ ├── Event_Summary.php │ │ │ ├── Frame.php │ │ │ ├── Group.php │ │ │ ├── Host.php │ │ │ ├── Log.php │ │ │ ├── Manufacturer.php │ │ │ ├── Monitor.php │ │ │ ├── Monitor_Status.php │ │ │ ├── Server.php │ │ │ ├── ServerStat.php │ │ │ ├── Snapshot.php │ │ │ ├── State.php │ │ │ ├── Storage.php │ │ │ ├── Tag.php │ │ │ ├── User.php │ │ │ ├── UserPreference.php │ │ │ ├── Zone.php │ │ │ └── ZonePreset.php │ │ ├── View │ │ │ ├── Configs │ │ │ │ ├── json │ │ │ │ │ ├── edit.ctp │ │ │ │ │ ├── index.ctp │ │ │ │ │ └── view.ctp │ │ │ │ └── xml │ │ │ │ │ ├── index.ctp │ │ │ │ │ └── view.ctp │ │ │ ├── Emails │ │ │ │ ├── html │ │ │ │ │ └── default.ctp │ │ │ │ └── text │ │ │ │ │ └── default.ctp │ │ │ ├── Errors │ │ │ │ ├── error400.ctp │ │ │ │ └── error500.ctp │ │ │ ├── EventData │ │ │ │ ├── json │ │ │ │ │ ├── add.ctp │ │ │ │ │ ├── edit.ctp │ │ │ │ │ ├── index.ctp │ │ │ │ │ └── view.ctp │ │ │ │ └── xml │ │ │ │ │ ├── add.ctp │ │ │ │ │ ├── edit.ctp │ │ │ │ │ ├── index.ctp │ │ │ │ │ └── view.ctp │ │ │ ├── Events │ │ │ │ ├── json │ │ │ │ │ ├── index.ctp │ │ │ │ │ └── view.ctp │ │ │ │ └── xml │ │ │ │ │ ├── index.ctp │ │ │ │ │ └── view.ctp │ │ │ ├── Groups │ │ │ │ ├── json │ │ │ │ │ ├── edit.ctp │ │ │ │ │ ├── index.ctp │ │ │ │ │ └── view.ctp │ │ │ │ └── xml │ │ │ │ │ ├── edit.ctp │ │ │ │ │ ├── index.ctp │ │ │ │ │ └── view.ctp │ │ │ ├── Helper │ │ │ │ └── AppHelper.php │ │ │ ├── Layouts │ │ │ │ ├── Emails │ │ │ │ │ ├── html │ │ │ │ │ │ └── default.ctp │ │ │ │ │ └── text │ │ │ │ │ │ └── default.ctp │ │ │ │ ├── ajax.ctp │ │ │ │ ├── default.ctp │ │ │ │ ├── error.ctp │ │ │ │ ├── flash.ctp │ │ │ │ ├── js │ │ │ │ │ └── default.ctp │ │ │ │ ├── rss │ │ │ │ │ └── default.ctp │ │ │ │ └── xml │ │ │ │ │ └── default.ctp │ │ │ ├── Logs │ │ │ │ ├── add.ctp │ │ │ │ ├── edit.ctp │ │ │ │ ├── index.ctp │ │ │ │ ├── json │ │ │ │ │ └── index.ctp │ │ │ │ └── view.ctp │ │ │ ├── Manufacturers │ │ │ │ ├── json │ │ │ │ │ ├── edit.ctp │ │ │ │ │ ├── index.ctp │ │ │ │ │ └── view.ctp │ │ │ │ └── xml │ │ │ │ │ ├── edit.ctp │ │ │ │ │ ├── index.ctp │ │ │ │ │ └── view.ctp │ │ │ ├── Monitors │ │ │ │ ├── json │ │ │ │ │ ├── add.ctp │ │ │ │ │ ├── daemon_control.ctp │ │ │ │ │ ├── edit.ctp │ │ │ │ │ ├── index.ctp │ │ │ │ │ └── view.ctp │ │ │ │ └── xml │ │ │ │ │ ├── add.ctp │ │ │ │ │ ├── daemon_control.ctp │ │ │ │ │ ├── edit.ctp │ │ │ │ │ ├── index.ctp │ │ │ │ │ └── view.ctp │ │ │ ├── Pages │ │ │ │ └── home.ctp │ │ │ ├── ServerStats │ │ │ │ ├── json │ │ │ │ │ ├── edit.ctp │ │ │ │ │ ├── index.ctp │ │ │ │ │ └── view.ctp │ │ │ │ └── xml │ │ │ │ │ ├── edit.ctp │ │ │ │ │ ├── index.ctp │ │ │ │ │ └── view.ctp │ │ │ ├── Servers │ │ │ │ ├── json │ │ │ │ │ ├── edit.ctp │ │ │ │ │ ├── index.ctp │ │ │ │ │ └── view.ctp │ │ │ │ └── xml │ │ │ │ │ ├── edit.ctp │ │ │ │ │ ├── index.ctp │ │ │ │ │ └── view.ctp │ │ │ ├── Snapshots │ │ │ │ ├── json │ │ │ │ │ ├── add.ctp │ │ │ │ │ ├── edit.ctp │ │ │ │ │ ├── index.ctp │ │ │ │ │ └── view.ctp │ │ │ │ └── xml │ │ │ │ │ ├── edit.ctp │ │ │ │ │ ├── index.ctp │ │ │ │ │ └── view.ctp │ │ │ ├── Tags │ │ │ │ ├── json │ │ │ │ │ ├── edit.ctp │ │ │ │ │ ├── index.ctp │ │ │ │ │ └── view.ctp │ │ │ │ └── xml │ │ │ │ │ ├── edit.ctp │ │ │ │ │ ├── index.ctp │ │ │ │ │ └── view.ctp │ │ │ ├── UserPreference │ │ │ │ ├── json │ │ │ │ │ ├── add.ctp │ │ │ │ │ ├── edit.ctp │ │ │ │ │ ├── index.ctp │ │ │ │ │ └── view.ctp │ │ │ │ └── xml │ │ │ │ │ ├── add.ctp │ │ │ │ │ ├── edit.ctp │ │ │ │ │ ├── index.ctp │ │ │ │ │ └── view.ctp │ │ │ ├── Users │ │ │ │ ├── json │ │ │ │ │ ├── add.ctp │ │ │ │ │ ├── edit.ctp │ │ │ │ │ ├── index.ctp │ │ │ │ │ └── view.ctp │ │ │ │ └── xml │ │ │ │ │ ├── add.ctp │ │ │ │ │ ├── edit.ctp │ │ │ │ │ ├── index.ctp │ │ │ │ │ └── view.ctp │ │ │ └── Zones │ │ │ │ ├── json │ │ │ │ ├── add.ctp │ │ │ │ ├── edit.ctp │ │ │ │ ├── index.ctp │ │ │ │ └── view.ctp │ │ │ │ └── xml │ │ │ │ ├── add.ctp │ │ │ │ ├── edit.ctp │ │ │ │ ├── index.ctp │ │ │ │ └── view.ctp │ │ ├── index.php │ │ ├── vendor │ │ │ ├── autoload.php │ │ │ └── composer │ │ │ │ ├── ClassLoader.php │ │ │ │ ├── autoload_classmap.php │ │ │ │ ├── autoload_namespaces.php │ │ │ │ ├── autoload_psr4.php │ │ │ │ ├── autoload_real.php │ │ │ │ ├── installed.json │ │ │ │ └── installers │ │ │ │ ├── .editorconfig │ │ │ │ ├── .gitignore │ │ │ │ ├── .travis.yml │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── composer.json │ │ │ │ ├── phpunit.xml.dist │ │ │ │ ├── src │ │ │ │ ├── Composer │ │ │ │ │ └── Installers │ │ │ │ │ │ ├── AglInstaller.php │ │ │ │ │ │ ├── AimeosInstaller.php │ │ │ │ │ │ ├── AnnotateCmsInstaller.php │ │ │ │ │ │ ├── AsgardInstaller.php │ │ │ │ │ │ ├── BaseInstaller.php │ │ │ │ │ │ ├── BitrixInstaller.php │ │ │ │ │ │ ├── CakePHPInstaller.php │ │ │ │ │ │ ├── ChefInstaller.php │ │ │ │ │ │ ├── ClanCatsFrameworkInstaller.php │ │ │ │ │ │ ├── CodeIgniterInstaller.php │ │ │ │ │ │ ├── Concrete5Installer.php │ │ │ │ │ │ ├── CraftInstaller.php │ │ │ │ │ │ ├── CroogoInstaller.php │ │ │ │ │ │ ├── DokuWikiInstaller.php │ │ │ │ │ │ ├── DolibarrInstaller.php │ │ │ │ │ │ ├── DrupalInstaller.php │ │ │ │ │ │ ├── ElggInstaller.php │ │ │ │ │ │ ├── FuelInstaller.php │ │ │ │ │ │ ├── FuelphpInstaller.php │ │ │ │ │ │ ├── GravInstaller.php │ │ │ │ │ │ ├── HuradInstaller.php │ │ │ │ │ │ ├── Installer.php │ │ │ │ │ │ ├── JoomlaInstaller.php │ │ │ │ │ │ ├── KirbyInstaller.php │ │ │ │ │ │ ├── KohanaInstaller.php │ │ │ │ │ │ ├── LaravelInstaller.php │ │ │ │ │ │ ├── LithiumInstaller.php │ │ │ │ │ │ ├── MODULEWorkInstaller.php │ │ │ │ │ │ ├── MODXEvoInstaller.php │ │ │ │ │ │ ├── MagentoInstaller.php │ │ │ │ │ │ ├── MakoInstaller.php │ │ │ │ │ │ ├── MediaWikiInstaller.php │ │ │ │ │ │ ├── MicroweberInstaller.php │ │ │ │ │ │ ├── MoodleInstaller.php │ │ │ │ │ │ ├── OctoberInstaller.php │ │ │ │ │ │ ├── OxidInstaller.php │ │ │ │ │ │ ├── PPIInstaller.php │ │ │ │ │ │ ├── PhpBBInstaller.php │ │ │ │ │ │ ├── PimcoreInstaller.php │ │ │ │ │ │ ├── PiwikInstaller.php │ │ │ │ │ │ ├── PrestashopInstaller.php │ │ │ │ │ │ ├── PuppetInstaller.php │ │ │ │ │ │ ├── RedaxoInstaller.php │ │ │ │ │ │ ├── RoundcubeInstaller.php │ │ │ │ │ │ ├── SMFInstaller.php │ │ │ │ │ │ ├── ShopwareInstaller.php │ │ │ │ │ │ ├── SilverStripeInstaller.php │ │ │ │ │ │ ├── Symfony1Installer.php │ │ │ │ │ │ ├── TYPO3CmsInstaller.php │ │ │ │ │ │ ├── TYPO3FlowInstaller.php │ │ │ │ │ │ ├── TheliaInstaller.php │ │ │ │ │ │ ├── TuskInstaller.php │ │ │ │ │ │ ├── WHMCSInstaller.php │ │ │ │ │ │ ├── WolfCMSInstaller.php │ │ │ │ │ │ ├── WordPressInstaller.php │ │ │ │ │ │ ├── ZendInstaller.php │ │ │ │ │ │ └── ZikulaInstaller.php │ │ │ │ └── bootstrap.php │ │ │ │ └── tests │ │ │ │ ├── Composer │ │ │ │ └── Installers │ │ │ │ │ └── Test │ │ │ │ │ ├── AsgardInstallerTest.php │ │ │ │ │ ├── CakePHPInstallerTest.php │ │ │ │ │ ├── DokuWikiInstallerTest.php │ │ │ │ │ ├── GravInstallerTest.php │ │ │ │ │ ├── InstallerTest.php │ │ │ │ │ ├── MediaWikiInstallerTest.php │ │ │ │ │ ├── OctoberInstallerTest.php │ │ │ │ │ ├── PimcoreInstallerTest.php │ │ │ │ │ ├── PiwikInstallerTest.php │ │ │ │ │ └── TestCase.php │ │ │ │ └── bootstrap.php │ │ └── webroot │ │ │ ├── css │ │ │ └── cake.generic.css │ │ │ ├── favicon.ico │ │ │ ├── img │ │ │ ├── cake.icon.png │ │ │ ├── cake.power.gif │ │ │ ├── test-error-icon.png │ │ │ ├── test-fail-icon.png │ │ │ ├── test-pass-icon.png │ │ │ └── test-skip-icon.png │ │ │ ├── index.php │ │ │ └── test.php │ ├── build.properties │ ├── build.xml │ ├── composer.json │ ├── index.php │ └── lib │ │ └── Cake │ │ ├── Cache │ │ ├── Cache.php │ │ ├── CacheEngine.php │ │ └── Engine │ │ │ ├── ApcEngine.php │ │ │ ├── FileEngine.php │ │ │ ├── MemcacheEngine.php │ │ │ ├── MemcachedEngine.php │ │ │ ├── RedisEngine.php │ │ │ ├── WincacheEngine.php │ │ │ └── XcacheEngine.php │ │ ├── Config │ │ ├── cacert.pem │ │ ├── config.php │ │ ├── routes.php │ │ └── unicode │ │ │ └── casefolding │ │ │ ├── 0080_00ff.php │ │ │ ├── 0100_017f.php │ │ │ ├── 0180_024F.php │ │ │ ├── 0250_02af.php │ │ │ ├── 0370_03ff.php │ │ │ ├── 0400_04ff.php │ │ │ ├── 0500_052f.php │ │ │ ├── 0530_058f.php │ │ │ ├── 1e00_1eff.php │ │ │ ├── 1f00_1fff.php │ │ │ ├── 2100_214f.php │ │ │ ├── 2150_218f.php │ │ │ ├── 2460_24ff.php │ │ │ ├── 2c00_2c5f.php │ │ │ ├── 2c60_2c7f.php │ │ │ ├── 2c80_2cff.php │ │ │ └── ff00_ffef.php │ │ ├── Configure │ │ ├── ConfigReaderInterface.php │ │ ├── IniReader.php │ │ └── PhpReader.php │ │ ├── Console │ │ ├── Command │ │ │ ├── AclShell.php │ │ │ ├── ApiShell.php │ │ │ ├── AppShell.php │ │ │ ├── BakeShell.php │ │ │ ├── CommandListShell.php │ │ │ ├── CompletionShell.php │ │ │ ├── ConsoleShell.php │ │ │ ├── I18nShell.php │ │ │ ├── SchemaShell.php │ │ │ ├── ServerShell.php │ │ │ ├── Task │ │ │ │ ├── BakeTask.php │ │ │ │ ├── CommandTask.php │ │ │ │ ├── ControllerTask.php │ │ │ │ ├── DbConfigTask.php │ │ │ │ ├── ExtractTask.php │ │ │ │ ├── FixtureTask.php │ │ │ │ ├── ModelTask.php │ │ │ │ ├── PluginTask.php │ │ │ │ ├── ProjectTask.php │ │ │ │ ├── TemplateTask.php │ │ │ │ ├── TestTask.php │ │ │ │ └── ViewTask.php │ │ │ ├── TestShell.php │ │ │ ├── TestsuiteShell.php │ │ │ └── UpgradeShell.php │ │ ├── ConsoleErrorHandler.php │ │ ├── ConsoleInput.php │ │ ├── ConsoleInputArgument.php │ │ ├── ConsoleInputOption.php │ │ ├── ConsoleInputSubcommand.php │ │ ├── ConsoleOptionParser.php │ │ ├── ConsoleOutput.php │ │ ├── HelpFormatter.php │ │ ├── Helper │ │ │ ├── BaseShellHelper.php │ │ │ ├── ProgressShellHelper.php │ │ │ └── TableShellHelper.php │ │ ├── Shell.php │ │ ├── ShellDispatcher.php │ │ ├── TaskCollection.php │ │ ├── Templates │ │ │ ├── default │ │ │ │ ├── actions │ │ │ │ │ └── controller_actions.ctp │ │ │ │ ├── classes │ │ │ │ │ ├── controller.ctp │ │ │ │ │ ├── fixture.ctp │ │ │ │ │ ├── model.ctp │ │ │ │ │ └── test.ctp │ │ │ │ └── views │ │ │ │ │ ├── form.ctp │ │ │ │ │ ├── index.ctp │ │ │ │ │ └── view.ctp │ │ │ └── skel │ │ │ │ ├── .htaccess │ │ │ │ ├── Config │ │ │ │ ├── Schema │ │ │ │ │ ├── db_acl.php │ │ │ │ │ ├── db_acl.sql │ │ │ │ │ ├── i18n.php │ │ │ │ │ ├── i18n.sql │ │ │ │ │ ├── sessions.php │ │ │ │ │ └── sessions.sql │ │ │ │ ├── acl.ini.php │ │ │ │ ├── acl.php │ │ │ │ ├── bootstrap.php │ │ │ │ ├── core.php │ │ │ │ ├── database.php.default │ │ │ │ ├── email.php.default │ │ │ │ └── routes.php │ │ │ │ ├── Console │ │ │ │ ├── Command │ │ │ │ │ ├── AppShell.php │ │ │ │ │ └── Task │ │ │ │ │ │ └── empty │ │ │ │ ├── Templates │ │ │ │ │ └── empty │ │ │ │ ├── cake │ │ │ │ ├── cake.bat │ │ │ │ └── cake.php │ │ │ │ ├── Controller │ │ │ │ ├── AppController.php │ │ │ │ ├── Component │ │ │ │ │ └── empty │ │ │ │ └── PagesController.php │ │ │ │ ├── Lib │ │ │ │ └── empty │ │ │ │ ├── Locale │ │ │ │ └── eng │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ └── empty │ │ │ │ ├── Model │ │ │ │ ├── AppModel.php │ │ │ │ ├── Behavior │ │ │ │ │ └── empty │ │ │ │ └── Datasource │ │ │ │ │ └── empty │ │ │ │ ├── Plugin │ │ │ │ └── empty │ │ │ │ ├── Test │ │ │ │ ├── Case │ │ │ │ │ ├── AllTestsTest.php │ │ │ │ │ ├── Controller │ │ │ │ │ │ └── Component │ │ │ │ │ │ │ └── empty │ │ │ │ │ ├── Model │ │ │ │ │ │ └── Behavior │ │ │ │ │ │ │ └── empty │ │ │ │ │ └── View │ │ │ │ │ │ └── Helper │ │ │ │ │ │ └── empty │ │ │ │ └── Fixture │ │ │ │ │ └── empty │ │ │ │ ├── Vendor │ │ │ │ └── empty │ │ │ │ ├── View │ │ │ │ ├── Elements │ │ │ │ │ └── Flash │ │ │ │ │ │ └── default.ctp │ │ │ │ ├── Emails │ │ │ │ │ ├── html │ │ │ │ │ │ └── default.ctp │ │ │ │ │ └── text │ │ │ │ │ │ └── default.ctp │ │ │ │ ├── Errors │ │ │ │ │ ├── error400.ctp │ │ │ │ │ └── error500.ctp │ │ │ │ ├── Helper │ │ │ │ │ └── AppHelper.php │ │ │ │ ├── Layouts │ │ │ │ │ ├── Emails │ │ │ │ │ │ ├── html │ │ │ │ │ │ │ └── default.ctp │ │ │ │ │ │ └── text │ │ │ │ │ │ │ └── default.ctp │ │ │ │ │ ├── ajax.ctp │ │ │ │ │ ├── default.ctp │ │ │ │ │ ├── error.ctp │ │ │ │ │ ├── flash.ctp │ │ │ │ │ ├── js │ │ │ │ │ │ └── default.ctp │ │ │ │ │ ├── rss │ │ │ │ │ │ └── default.ctp │ │ │ │ │ └── xml │ │ │ │ │ │ └── default.ctp │ │ │ │ ├── Pages │ │ │ │ │ └── home.ctp │ │ │ │ └── Scaffolds │ │ │ │ │ └── empty │ │ │ │ ├── index.php │ │ │ │ ├── tmp │ │ │ │ ├── cache │ │ │ │ │ ├── models │ │ │ │ │ │ └── empty │ │ │ │ │ ├── persistent │ │ │ │ │ │ └── empty │ │ │ │ │ └── views │ │ │ │ │ │ └── empty │ │ │ │ ├── logs │ │ │ │ │ └── empty │ │ │ │ ├── sessions │ │ │ │ │ └── empty │ │ │ │ └── tests │ │ │ │ │ └── empty │ │ │ │ └── webroot │ │ │ │ ├── .htaccess │ │ │ │ ├── css │ │ │ │ └── cake.generic.css │ │ │ │ ├── favicon.ico │ │ │ │ ├── files │ │ │ │ └── empty │ │ │ │ ├── img │ │ │ │ ├── cake.icon.png │ │ │ │ ├── cake.power.gif │ │ │ │ ├── test-error-icon.png │ │ │ │ ├── test-fail-icon.png │ │ │ │ ├── test-pass-icon.png │ │ │ │ └── test-skip-icon.png │ │ │ │ ├── index.php │ │ │ │ ├── js │ │ │ │ └── empty │ │ │ │ └── test.php │ │ ├── cake │ │ ├── cake.bat │ │ └── cake.php │ │ ├── Controller │ │ ├── CakeErrorController.php │ │ ├── Component.php │ │ ├── Component │ │ │ ├── Acl │ │ │ │ ├── AclInterface.php │ │ │ │ ├── DbAcl.php │ │ │ │ ├── IniAcl.php │ │ │ │ └── PhpAcl.php │ │ │ ├── AclComponent.php │ │ │ ├── Auth │ │ │ │ ├── AbstractPasswordHasher.php │ │ │ │ ├── ActionsAuthorize.php │ │ │ │ ├── BaseAuthenticate.php │ │ │ │ ├── BaseAuthorize.php │ │ │ │ ├── BasicAuthenticate.php │ │ │ │ ├── BlowfishAuthenticate.php │ │ │ │ ├── BlowfishPasswordHasher.php │ │ │ │ ├── ControllerAuthorize.php │ │ │ │ ├── CrudAuthorize.php │ │ │ │ ├── DigestAuthenticate.php │ │ │ │ ├── FormAuthenticate.php │ │ │ │ └── SimplePasswordHasher.php │ │ │ ├── AuthComponent.php │ │ │ ├── CookieComponent.php │ │ │ ├── EmailComponent.php │ │ │ ├── FlashComponent.php │ │ │ ├── PaginatorComponent.php │ │ │ ├── RequestHandlerComponent.php │ │ │ ├── SecurityComponent.php │ │ │ └── SessionComponent.php │ │ ├── ComponentCollection.php │ │ ├── Controller.php │ │ ├── RequestHandlerComponent.php │ │ └── Scaffold.php │ │ ├── Core │ │ ├── App.php │ │ ├── CakeObject.php │ │ ├── CakePlugin.php │ │ ├── Configure.php │ │ └── Object.php │ │ ├── Error │ │ ├── ErrorHandler.php │ │ ├── ExceptionRenderer.php │ │ └── exceptions.php │ │ ├── Event │ │ ├── CakeEvent.php │ │ ├── CakeEventListener.php │ │ └── CakeEventManager.php │ │ ├── I18n │ │ ├── I18n.php │ │ ├── L10n.php │ │ └── Multibyte.php │ │ ├── LICENSE.txt │ │ ├── Log │ │ ├── CakeLog.php │ │ ├── CakeLogInterface.php │ │ ├── Engine │ │ │ ├── BaseLog.php │ │ │ ├── ConsoleLog.php │ │ │ ├── FileLog.php │ │ │ └── SyslogLog.php │ │ └── LogEngineCollection.php │ │ ├── Model │ │ ├── AclNode.php │ │ ├── Aco.php │ │ ├── AcoAction.php │ │ ├── Aro.php │ │ ├── Behavior │ │ │ ├── AclBehavior.php │ │ │ ├── ContainableBehavior.php │ │ │ ├── TranslateBehavior.php │ │ │ └── TreeBehavior.php │ │ ├── BehaviorCollection.php │ │ ├── CakeSchema.php │ │ ├── ConnectionManager.php │ │ ├── Datasource │ │ │ ├── CakeSession.php │ │ │ ├── DataSource.php │ │ │ ├── Database │ │ │ │ ├── Mysql.php │ │ │ │ ├── Postgres.php │ │ │ │ ├── Sqlite.php │ │ │ │ └── Sqlserver.php │ │ │ ├── DboSource.php │ │ │ └── Session │ │ │ │ ├── CacheSession.php │ │ │ │ ├── CakeSessionHandlerInterface.php │ │ │ │ └── DatabaseSession.php │ │ ├── I18nModel.php │ │ ├── Model.php │ │ ├── ModelBehavior.php │ │ ├── ModelValidator.php │ │ ├── Permission.php │ │ └── Validator │ │ │ ├── CakeValidationRule.php │ │ │ └── CakeValidationSet.php │ │ ├── Network │ │ ├── CakeRequest.php │ │ ├── CakeResponse.php │ │ ├── CakeSocket.php │ │ ├── Email │ │ │ ├── AbstractTransport.php │ │ │ ├── CakeEmail.php │ │ │ ├── DebugTransport.php │ │ │ ├── MailTransport.php │ │ │ └── SmtpTransport.php │ │ └── Http │ │ │ ├── BasicAuthentication.php │ │ │ ├── DigestAuthentication.php │ │ │ ├── HttpResponse.php │ │ │ ├── HttpSocket.php │ │ │ └── HttpSocketResponse.php │ │ ├── Routing │ │ ├── Dispatcher.php │ │ ├── DispatcherFilter.php │ │ ├── Filter │ │ │ ├── AssetDispatcher.php │ │ │ └── CacheDispatcher.php │ │ ├── Route │ │ │ ├── CakeRoute.php │ │ │ ├── PluginShortRoute.php │ │ │ └── RedirectRoute.php │ │ └── Router.php │ │ ├── Test │ │ ├── Case │ │ │ ├── AllBehaviorsTest.php │ │ │ ├── AllCacheTest.php │ │ │ ├── AllComponentsTest.php │ │ │ ├── AllConfigureTest.php │ │ │ ├── AllConsoleTest.php │ │ │ ├── AllControllerTest.php │ │ │ ├── AllCoreTest.php │ │ │ ├── AllDatabaseTest.php │ │ │ ├── AllDbRelatedTest.php │ │ │ ├── AllErrorTest.php │ │ │ ├── AllEventTest.php │ │ │ ├── AllHelpersTest.php │ │ │ ├── AllI18nTest.php │ │ │ ├── AllLogTest.php │ │ │ ├── AllNetworkTest.php │ │ │ ├── AllRoutingTest.php │ │ │ ├── AllTestSuiteTest.php │ │ │ ├── AllTestsTest.php │ │ │ ├── AllUtilityTest.php │ │ │ ├── AllViewTest.php │ │ │ ├── BasicsTest.php │ │ │ ├── Cache │ │ │ │ ├── CacheTest.php │ │ │ │ └── Engine │ │ │ │ │ ├── ApcEngineTest.php │ │ │ │ │ ├── FileEngineTest.php │ │ │ │ │ ├── MemcacheEngineTest.php │ │ │ │ │ ├── MemcachedEngineTest.php │ │ │ │ │ ├── RedisEngineTest.php │ │ │ │ │ ├── WincacheEngineTest.php │ │ │ │ │ └── XcacheEngineTest.php │ │ │ ├── Configure │ │ │ │ ├── IniReaderTest.php │ │ │ │ └── PhpReaderTest.php │ │ │ ├── Console │ │ │ │ ├── AllConsoleLibsTest.php │ │ │ │ ├── AllConsoleTest.php │ │ │ │ ├── AllShellsTest.php │ │ │ │ ├── AllTasksTest.php │ │ │ │ ├── Command │ │ │ │ │ ├── AclShellTest.php │ │ │ │ │ ├── ApiShellTest.php │ │ │ │ │ ├── BakeShellTest.php │ │ │ │ │ ├── CommandListShellTest.php │ │ │ │ │ ├── CompletionShellTest.php │ │ │ │ │ ├── SchemaShellTest.php │ │ │ │ │ ├── Task │ │ │ │ │ │ ├── CommandTaskTest.php │ │ │ │ │ │ ├── ControllerTaskTest.php │ │ │ │ │ │ ├── DbConfigTaskTest.php │ │ │ │ │ │ ├── ExtractTaskTest.php │ │ │ │ │ │ ├── FixtureTaskTest.php │ │ │ │ │ │ ├── ModelTaskTest.php │ │ │ │ │ │ ├── PluginTaskTest.php │ │ │ │ │ │ ├── ProjectTaskTest.php │ │ │ │ │ │ ├── TemplateTaskTest.php │ │ │ │ │ │ ├── TestTaskTest.php │ │ │ │ │ │ └── ViewTaskTest.php │ │ │ │ │ └── TestShellTest.php │ │ │ │ ├── ConsoleErrorHandlerTest.php │ │ │ │ ├── ConsoleOptionParserTest.php │ │ │ │ ├── ConsoleOutputTest.php │ │ │ │ ├── HelpFormatterTest.php │ │ │ │ ├── Helper │ │ │ │ │ ├── ProgressShellHelperTest.php │ │ │ │ │ └── TableShellHelperTest.php │ │ │ │ ├── ShellDispatcherTest.php │ │ │ │ ├── ShellTest.php │ │ │ │ └── TaskCollectionTest.php │ │ │ ├── Controller │ │ │ │ ├── ApplicationControllerTest.php │ │ │ │ ├── Component │ │ │ │ │ ├── Acl │ │ │ │ │ │ ├── DbAclTest.php │ │ │ │ │ │ ├── IniAclTest.php │ │ │ │ │ │ └── PhpAclTest.php │ │ │ │ │ ├── AclComponentTest.php │ │ │ │ │ ├── Auth │ │ │ │ │ │ ├── ActionsAuthorizeTest.php │ │ │ │ │ │ ├── BasicAuthenticateTest.php │ │ │ │ │ │ ├── BlowfishAuthenticateTest.php │ │ │ │ │ │ ├── ControllerAuthorizeTest.php │ │ │ │ │ │ ├── CrudAuthorizeTest.php │ │ │ │ │ │ ├── DigestAuthenticateTest.php │ │ │ │ │ │ └── FormAuthenticateTest.php │ │ │ │ │ ├── AuthComponentTest.php │ │ │ │ │ ├── CookieComponentTest.php │ │ │ │ │ ├── EmailComponentTest.php │ │ │ │ │ ├── FlashComponentTest.php │ │ │ │ │ ├── PaginatorComponentTest.php │ │ │ │ │ ├── RequestHandlerComponentTest.php │ │ │ │ │ ├── SecurityComponentTest.php │ │ │ │ │ └── SessionComponentTest.php │ │ │ │ ├── ComponentCollectionTest.php │ │ │ │ ├── ComponentTest.php │ │ │ │ ├── ControllerMergeVarsTest.php │ │ │ │ ├── ControllerTest.php │ │ │ │ ├── PagesControllerTest.php │ │ │ │ └── ScaffoldTest.php │ │ │ ├── Core │ │ │ │ ├── AppTest.php │ │ │ │ ├── CakeObjectTest.php │ │ │ │ ├── CakePluginTest.php │ │ │ │ └── ConfigureTest.php │ │ │ ├── Error │ │ │ │ ├── ErrorHandlerTest.php │ │ │ │ └── ExceptionRendererTest.php │ │ │ ├── Event │ │ │ │ ├── CakeEventManagerTest.php │ │ │ │ └── CakeEventTest.php │ │ │ ├── I18n │ │ │ │ ├── I18nTest.php │ │ │ │ ├── L10nTest.php │ │ │ │ └── MultibyteTest.php │ │ │ ├── Log │ │ │ │ ├── CakeLogTest.php │ │ │ │ ├── Engine │ │ │ │ │ ├── ConsoleLogTest.php │ │ │ │ │ ├── FileLogTest.php │ │ │ │ │ └── SyslogLogTest.php │ │ │ │ └── LogEngineCollectionTest.php │ │ │ ├── Model │ │ │ │ ├── AclNodeTest.php │ │ │ │ ├── Behavior │ │ │ │ │ ├── AclBehaviorTest.php │ │ │ │ │ ├── ContainableBehaviorTest.php │ │ │ │ │ ├── TranslateBehaviorTest.php │ │ │ │ │ ├── TreeBehaviorAfterTest.php │ │ │ │ │ ├── TreeBehaviorNumberTest.php │ │ │ │ │ ├── TreeBehaviorScopedTest.php │ │ │ │ │ ├── TreeBehaviorTest.php │ │ │ │ │ └── TreeBehaviorUuidTest.php │ │ │ │ ├── BehaviorCollectionTest.php │ │ │ │ ├── CakeSchemaTest.php │ │ │ │ ├── ConnectionManagerTest.php │ │ │ │ ├── Datasource │ │ │ │ │ ├── CakeSessionTest.php │ │ │ │ │ ├── DataSourceTest.php │ │ │ │ │ ├── Database │ │ │ │ │ │ ├── MysqlTest.php │ │ │ │ │ │ ├── PostgresTest.php │ │ │ │ │ │ ├── SqliteTest.php │ │ │ │ │ │ └── SqlserverTest.php │ │ │ │ │ ├── DboSourceTest.php │ │ │ │ │ └── Session │ │ │ │ │ │ ├── CacheSessionTest.php │ │ │ │ │ │ └── DatabaseSessionTest.php │ │ │ │ ├── ModelCrossSchemaHabtmTest.php │ │ │ │ ├── ModelDeleteTest.php │ │ │ │ ├── ModelIntegrationTest.php │ │ │ │ ├── ModelReadTest.php │ │ │ │ ├── ModelTest.php │ │ │ │ ├── ModelTestBase.php │ │ │ │ ├── ModelValidationTest.php │ │ │ │ ├── ModelWriteTest.php │ │ │ │ ├── Validator │ │ │ │ │ ├── CakeValidationRuleTest.php │ │ │ │ │ └── CakeValidationSetTest.php │ │ │ │ └── models.php │ │ │ ├── Network │ │ │ │ ├── CakeRequestTest.php │ │ │ │ ├── CakeResponseTest.php │ │ │ │ ├── CakeSocketTest.php │ │ │ │ ├── Email │ │ │ │ │ ├── CakeEmailTest.php │ │ │ │ │ ├── DebugTransportTest.php │ │ │ │ │ ├── MailTransportTest.php │ │ │ │ │ └── SmtpTransportTest.php │ │ │ │ └── Http │ │ │ │ │ ├── BasicAuthenticationTest.php │ │ │ │ │ ├── DigestAuthenticationTest.php │ │ │ │ │ ├── HttpResponseTest.php │ │ │ │ │ └── HttpSocketTest.php │ │ │ ├── Routing │ │ │ │ ├── DispatcherTest.php │ │ │ │ ├── Filter │ │ │ │ │ └── AssetDispatcherTest.php │ │ │ │ ├── Route │ │ │ │ │ ├── CakeRouteTest.php │ │ │ │ │ ├── PluginShortRouteTest.php │ │ │ │ │ └── RedirectRouteTest.php │ │ │ │ └── RouterTest.php │ │ │ ├── TestSuite │ │ │ │ ├── CakeTestCaseTest.php │ │ │ │ ├── CakeTestFixtureTest.php │ │ │ │ ├── CakeTestSuiteTest.php │ │ │ │ ├── ControllerTestCaseTest.php │ │ │ │ ├── Fixture │ │ │ │ │ └── CakeFixtureManagerTest.php │ │ │ │ ├── HtmlCoverageReportTest.php │ │ │ │ └── Stub │ │ │ │ │ └── ConsoleOutputStubTest.php │ │ │ ├── Utility │ │ │ │ ├── CakeNumberTest.php │ │ │ │ ├── CakeTextTest.php │ │ │ │ ├── CakeTimeTest.php │ │ │ │ ├── ClassRegistryTest.php │ │ │ │ ├── DebuggerTest.php │ │ │ │ ├── FileTest.php │ │ │ │ ├── FolderTest.php │ │ │ │ ├── HashTest.php │ │ │ │ ├── InflectorTest.php │ │ │ │ ├── ObjectCollectionTest.php │ │ │ │ ├── SanitizeTest.php │ │ │ │ ├── SecurityTest.php │ │ │ │ ├── SetTest.php │ │ │ │ ├── ValidationTest.php │ │ │ │ └── XmlTest.php │ │ │ └── View │ │ │ │ ├── Helper │ │ │ │ ├── CacheHelperTest.php │ │ │ │ ├── FlashHelperTest.php │ │ │ │ ├── FormHelperTest.php │ │ │ │ ├── HtmlHelperTest.php │ │ │ │ ├── JqueryEngineHelperTest.php │ │ │ │ ├── JsHelperTest.php │ │ │ │ ├── MootoolsEngineHelperTest.php │ │ │ │ ├── NumberHelperTest.php │ │ │ │ ├── PaginatorHelperTest.php │ │ │ │ ├── PrototypeEngineHelperTest.php │ │ │ │ ├── RssHelperTest.php │ │ │ │ ├── SessionHelperTest.php │ │ │ │ ├── TextHelperTest.php │ │ │ │ └── TimeHelperTest.php │ │ │ │ ├── HelperCollectionTest.php │ │ │ │ ├── HelperTest.php │ │ │ │ ├── JsonViewTest.php │ │ │ │ ├── MediaViewTest.php │ │ │ │ ├── ScaffoldViewTest.php │ │ │ │ ├── ThemeViewTest.php │ │ │ │ ├── ViewTest.php │ │ │ │ └── XmlViewTest.php │ │ ├── Fixture │ │ │ ├── AccountFixture.php │ │ │ ├── AcoActionFixture.php │ │ │ ├── AcoFixture.php │ │ │ ├── AcoTwoFixture.php │ │ │ ├── AdFixture.php │ │ │ ├── AdvertisementFixture.php │ │ │ ├── AfterTreeFixture.php │ │ │ ├── AnotherArticleFixture.php │ │ │ ├── AppleFixture.php │ │ │ ├── ArmorFixture.php │ │ │ ├── ArmorsPlayerFixture.php │ │ │ ├── AroFixture.php │ │ │ ├── AroTwoFixture.php │ │ │ ├── ArosAcoFixture.php │ │ │ ├── ArosAcoTwoFixture.php │ │ │ ├── ArticleFeaturedFixture.php │ │ │ ├── ArticleFeaturedsTagsFixture.php │ │ │ ├── ArticleFixture.php │ │ │ ├── ArticlesTagFixture.php │ │ │ ├── AssertTagsTestCase.php │ │ │ ├── AttachmentFixture.php │ │ │ ├── AuthUserCustomFieldFixture.php │ │ │ ├── AuthUserFixture.php │ │ │ ├── AuthorFixture.php │ │ │ ├── BakeArticleFixture.php │ │ │ ├── BakeArticlesBakeTagFixture.php │ │ │ ├── BakeCommentFixture.php │ │ │ ├── BakeTagFixture.php │ │ │ ├── BasketFixture.php │ │ │ ├── BidFixture.php │ │ │ ├── BiddingFixture.php │ │ │ ├── BiddingMessageFixture.php │ │ │ ├── BinaryTestFixture.php │ │ │ ├── BookFixture.php │ │ │ ├── CacheTestModelFixture.php │ │ │ ├── CakeSessionFixture.php │ │ │ ├── CallbackFixture.php │ │ │ ├── CampaignFixture.php │ │ │ ├── CategoryFixture.php │ │ │ ├── CategoryThreadFixture.php │ │ │ ├── CdFixture.php │ │ │ ├── CommentFixture.php │ │ │ ├── ContentAccountFixture.php │ │ │ ├── ContentFixture.php │ │ │ ├── CounterCachePostFixture.php │ │ │ ├── CounterCachePostNonstandardPrimaryKeyFixture.php │ │ │ ├── CounterCacheUserFixture.php │ │ │ ├── CounterCacheUserNonstandardPrimaryKeyFixture.php │ │ │ ├── DataTestFixture.php │ │ │ ├── DatatypeFixture.php │ │ │ ├── DependencyFixture.php │ │ │ ├── DeviceFixture.php │ │ │ ├── DeviceTypeCategoryFixture.php │ │ │ ├── DeviceTypeFixture.php │ │ │ ├── DocumentDirectoryFixture.php │ │ │ ├── DocumentFixture.php │ │ │ ├── DomainFixture.php │ │ │ ├── DomainsSiteFixture.php │ │ │ ├── ExteriorTypeCategoryFixture.php │ │ │ ├── FeatureSetFixture.php │ │ │ ├── FeaturedFixture.php │ │ │ ├── FilmFileFixture.php │ │ │ ├── FixturizedTestCase.php │ │ │ ├── FlagTreeFixture.php │ │ │ ├── FruitFixture.php │ │ │ ├── FruitsUuidTagFixture.php │ │ │ ├── GroupUpdateAllFixture.php │ │ │ ├── GuildFixture.php │ │ │ ├── GuildsPlayerFixture.php │ │ │ ├── HomeFixture.php │ │ │ ├── ImageFixture.php │ │ │ ├── InnoFixture.php │ │ │ ├── ItemFixture.php │ │ │ ├── ItemsPortfolioFixture.php │ │ │ ├── JoinABFixture.php │ │ │ ├── JoinACFixture.php │ │ │ ├── JoinAFixture.php │ │ │ ├── JoinBFixture.php │ │ │ ├── JoinCFixture.php │ │ │ ├── JoinThingFixture.php │ │ │ ├── MessageFixture.php │ │ │ ├── MyCategoriesMyProductsFixture.php │ │ │ ├── MyCategoriesMyUsersFixture.php │ │ │ ├── MyCategoryFixture.php │ │ │ ├── MyProductFixture.php │ │ │ ├── MyUserFixture.php │ │ │ ├── NodeFixture.php │ │ │ ├── NumberTreeFixture.php │ │ │ ├── NumberTreeTwoFixture.php │ │ │ ├── NumericArticleFixture.php │ │ │ ├── OverallFavoriteFixture.php │ │ │ ├── PersonFixture.php │ │ │ ├── PlayerFixture.php │ │ │ ├── PortfolioFixture.php │ │ │ ├── PostFixture.php │ │ │ ├── PostsTagFixture.php │ │ │ ├── PrefixTestFixture.php │ │ │ ├── PrimaryModelFixture.php │ │ │ ├── ProductFixture.php │ │ │ ├── ProductUpdateAllFixture.php │ │ │ ├── ProjectFixture.php │ │ │ ├── SampleFixture.php │ │ │ ├── SecondaryModelFixture.php │ │ │ ├── SessionFixture.php │ │ │ ├── SiteFixture.php │ │ │ ├── SomethingElseFixture.php │ │ │ ├── SomethingFixture.php │ │ │ ├── StoriesTagFixture.php │ │ │ ├── StoryFixture.php │ │ │ ├── SyfileFixture.php │ │ │ ├── TagFixture.php │ │ │ ├── TestPluginArticleFixture.php │ │ │ ├── TestPluginCommentFixture.php │ │ │ ├── ThePaperMonkiesFixture.php │ │ │ ├── ThreadFixture.php │ │ │ ├── TranslateArticleFixture.php │ │ │ ├── TranslateFixture.php │ │ │ ├── TranslateTableFixture.php │ │ │ ├── TranslateWithPrefixFixture.php │ │ │ ├── TranslatedArticleFixture.php │ │ │ ├── TranslatedItemFixture.php │ │ │ ├── UnconventionalTreeFixture.php │ │ │ ├── UnderscoreFieldFixture.php │ │ │ ├── UnsignedFixture.php │ │ │ ├── UserFixture.php │ │ │ ├── UuidFixture.php │ │ │ ├── UuidNativeFixture.php │ │ │ ├── UuidNativeTagFixture.php │ │ │ ├── UuidNativeTreeFixture.php │ │ │ ├── UuidTagFixture.php │ │ │ ├── UuidTreeFixture.php │ │ │ ├── UuiditemFixture.php │ │ │ ├── UuiditemsUuidportfolioFixture.php │ │ │ ├── UuiditemsUuidportfolioNumericidFixture.php │ │ │ ├── UuidnativeitemFixture.php │ │ │ ├── UuidnativeitemsUuidnativeportfolioFixture.php │ │ │ ├── UuidnativeitemsUuidnativeportfolioNumericidFixture.php │ │ │ ├── UuidnativeportfolioFixture.php │ │ │ ├── UuidportfolioFixture.php │ │ │ ├── rss.xml │ │ │ ├── sample.xml │ │ │ ├── soap_request.xml │ │ │ └── soap_response.xml │ │ ├── bake_compare │ │ │ ├── Controller │ │ │ │ ├── ActionsUsingSessions.ctp │ │ │ │ ├── ActionsWithNoSessions.ctp │ │ │ │ ├── NoActions.ctp │ │ │ │ ├── NoHelpersOrComponents.ctp │ │ │ │ └── Scaffold.ctp │ │ │ └── View │ │ │ │ └── index.ctp │ │ └── test_app │ │ │ ├── Config │ │ │ ├── acl.ini │ │ │ ├── acl.ini.php │ │ │ ├── acl.php │ │ │ ├── empty.ini │ │ │ ├── empty.php │ │ │ ├── htmlhelper_minimized.ini │ │ │ ├── htmlhelper_tags.php │ │ │ ├── nested.ini │ │ │ ├── no_ini_extension │ │ │ ├── no_php_extension │ │ │ ├── no_section.ini │ │ │ ├── routes.php │ │ │ ├── var_test.php │ │ │ └── var_test2.php │ │ │ ├── Console │ │ │ ├── Command │ │ │ │ ├── SampleShell.php │ │ │ │ └── Task │ │ │ │ │ └── empty │ │ │ └── Templates │ │ │ │ └── test │ │ │ │ ├── classes │ │ │ │ └── test_object.ctp │ │ │ │ └── views │ │ │ │ └── admin_edit.ctp │ │ │ ├── Controller │ │ │ ├── AppController.php │ │ │ ├── Component │ │ │ │ └── empty │ │ │ ├── PagesController.php │ │ │ ├── TestAppsErrorController.php │ │ │ ├── TestConfigsController.php │ │ │ ├── TestsAppsController.php │ │ │ └── TestsAppsPostsController.php │ │ │ ├── Error │ │ │ └── TestAppsExceptionRenderer.php │ │ │ ├── Lib │ │ │ ├── Cache │ │ │ │ └── Engine │ │ │ │ │ └── TestAppCacheEngine.php │ │ │ ├── Library.php │ │ │ ├── Log │ │ │ │ └── Engine │ │ │ │ │ └── TestAppLog.php │ │ │ └── Utility │ │ │ │ └── TestUtilityClass.php │ │ │ ├── Locale │ │ │ ├── cache_test_po │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── default.po │ │ │ │ │ ├── dom1.po │ │ │ │ │ └── dom2.po │ │ │ ├── eng │ │ │ │ └── LC_MESSAGES │ │ │ │ │ └── validation_messages.po │ │ │ ├── ja_jp │ │ │ │ └── LC_TIME │ │ │ ├── nld │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ └── default.po │ │ │ │ └── LC_TIME │ │ │ ├── nld_mo │ │ │ │ └── LC_MESSAGES │ │ │ │ │ └── default.mo │ │ │ ├── po │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ ├── default.po │ │ │ │ │ └── test_plugin.po │ │ │ │ ├── LC_MONETARY │ │ │ │ │ └── default.po │ │ │ │ └── LC_TIME │ │ │ ├── rule_0_mo │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── core.mo │ │ │ │ │ └── default.mo │ │ │ ├── rule_0_po │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── core.po │ │ │ │ │ └── default.po │ │ │ ├── rule_10_mo │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── core.mo │ │ │ │ │ └── default.mo │ │ │ ├── rule_10_po │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── core.po │ │ │ │ │ └── default.po │ │ │ ├── rule_11_mo │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── core.mo │ │ │ │ │ └── default.mo │ │ │ ├── rule_11_po │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── core.po │ │ │ │ │ └── default.po │ │ │ ├── rule_12_mo │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── core.mo │ │ │ │ │ └── default.mo │ │ │ ├── rule_12_po │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── core.po │ │ │ │ │ └── default.po │ │ │ ├── rule_13_mo │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── core.mo │ │ │ │ │ └── default.mo │ │ │ ├── rule_13_po │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── core.po │ │ │ │ │ └── default.po │ │ │ ├── rule_14_mo │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── core.mo │ │ │ │ │ └── default.mo │ │ │ ├── rule_14_po │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── core.po │ │ │ │ │ └── default.po │ │ │ ├── rule_15_mo │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── core.mo │ │ │ │ │ └── default.mo │ │ │ ├── rule_15_po │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── core.po │ │ │ │ │ └── default.po │ │ │ ├── rule_1_mo │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── core.mo │ │ │ │ │ └── default.mo │ │ │ ├── rule_1_po │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── core.po │ │ │ │ │ └── default.po │ │ │ ├── rule_2_mo │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── core.mo │ │ │ │ │ └── default.mo │ │ │ ├── rule_2_po │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── core.po │ │ │ │ │ └── default.po │ │ │ ├── rule_3_mo │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── core.mo │ │ │ │ │ └── default.mo │ │ │ ├── rule_3_po │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── core.po │ │ │ │ │ └── default.po │ │ │ ├── rule_4_mo │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── core.mo │ │ │ │ │ └── default.mo │ │ │ ├── rule_4_po │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── core.po │ │ │ │ │ └── default.po │ │ │ ├── rule_5_mo │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── core.mo │ │ │ │ │ └── default.mo │ │ │ ├── rule_5_po │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── core.po │ │ │ │ │ └── default.po │ │ │ ├── rule_6_mo │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── core.mo │ │ │ │ │ └── default.mo │ │ │ ├── rule_6_po │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── core.po │ │ │ │ │ └── default.po │ │ │ ├── rule_7_mo │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── core.mo │ │ │ │ │ └── default.mo │ │ │ ├── rule_7_po │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── core.po │ │ │ │ │ └── default.po │ │ │ ├── rule_8_mo │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── core.mo │ │ │ │ │ └── default.mo │ │ │ ├── rule_8_po │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── core.po │ │ │ │ │ └── default.po │ │ │ ├── rule_9_mo │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── core.mo │ │ │ │ │ └── default.mo │ │ │ ├── rule_9_po │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── core.po │ │ │ │ │ └── default.po │ │ │ └── time_test │ │ │ │ └── LC_TIME │ │ │ ├── Model │ │ │ ├── AppModel.php │ │ │ ├── Behavior │ │ │ │ ├── PersisterOneBehaviorBehavior.php │ │ │ │ └── PersisterTwoBehaviorBehavior.php │ │ │ ├── Comment.php │ │ │ ├── Datasource │ │ │ │ ├── Database │ │ │ │ │ └── TestLocalDriver.php │ │ │ │ ├── Session │ │ │ │ │ └── TestAppLibSession.php │ │ │ │ ├── Test2OtherSource.php │ │ │ │ └── Test2Source.php │ │ │ ├── Extract.php │ │ │ ├── PersisterOne.php │ │ │ ├── PersisterTwo.php │ │ │ └── Post.php │ │ │ ├── Plugin │ │ │ ├── PluginJs │ │ │ │ ├── Config │ │ │ │ │ └── bootstrap.php │ │ │ │ └── webroot │ │ │ │ │ └── js │ │ │ │ │ ├── one │ │ │ │ │ └── plugin_one.js │ │ │ │ │ └── plugin_js.js │ │ │ ├── TestPlugin │ │ │ │ ├── Config │ │ │ │ │ ├── Schema │ │ │ │ │ │ └── schema.php │ │ │ │ │ ├── acl.ini.php │ │ │ │ │ ├── bootstrap.php │ │ │ │ │ ├── custom_config.php │ │ │ │ │ ├── load.php │ │ │ │ │ ├── more.load.php │ │ │ │ │ ├── nested.ini │ │ │ │ │ └── routes.php │ │ │ │ ├── Console │ │ │ │ │ ├── Command │ │ │ │ │ │ ├── ExampleShell.php │ │ │ │ │ │ ├── Task │ │ │ │ │ │ │ └── OtherTaskTask.php │ │ │ │ │ │ └── TestPluginShell.php │ │ │ │ │ └── Templates │ │ │ │ │ │ └── empty │ │ │ │ ├── Controller │ │ │ │ │ ├── Component │ │ │ │ │ │ ├── OtherComponent.php │ │ │ │ │ │ ├── PluginsComponent.php │ │ │ │ │ │ ├── TestPluginComponent.php │ │ │ │ │ │ ├── TestPluginEmailComponent.php │ │ │ │ │ │ └── TestPluginOtherComponent.php │ │ │ │ │ ├── TestPluginAppController.php │ │ │ │ │ ├── TestPluginController.php │ │ │ │ │ └── TestsController.php │ │ │ │ ├── Lib │ │ │ │ │ ├── Cache │ │ │ │ │ │ └── Engine │ │ │ │ │ │ │ └── TestPluginCacheEngine.php │ │ │ │ │ ├── Custom │ │ │ │ │ │ └── Package │ │ │ │ │ │ │ └── CustomLibClass.php │ │ │ │ │ ├── Error │ │ │ │ │ │ └── TestPluginExceptionRenderer.php │ │ │ │ │ ├── Log │ │ │ │ │ │ └── Engine │ │ │ │ │ │ │ └── TestPluginLog.php │ │ │ │ │ ├── Routing │ │ │ │ │ │ ├── Filter │ │ │ │ │ │ │ ├── Test2DispatcherFilter.php │ │ │ │ │ │ │ └── TestDispatcherFilter.php │ │ │ │ │ │ └── Route │ │ │ │ │ │ │ └── TestRoute.php │ │ │ │ │ ├── TestPluginLibrary.php │ │ │ │ │ └── TestPluginOtherLibrary.php │ │ │ │ ├── Locale │ │ │ │ │ └── po │ │ │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ │ └── test_plugin.po │ │ │ │ │ │ └── LC_MONETARY │ │ │ │ │ │ └── test_plugin.po │ │ │ │ ├── Model │ │ │ │ │ ├── Behavior │ │ │ │ │ │ ├── TestPluginPersisterOneBehavior.php │ │ │ │ │ │ └── TestPluginPersisterTwoBehavior.php │ │ │ │ │ ├── Datasource │ │ │ │ │ │ ├── Database │ │ │ │ │ │ │ ├── DboDummy.php │ │ │ │ │ │ │ └── TestDriver.php │ │ │ │ │ │ ├── Session │ │ │ │ │ │ │ └── TestPluginSession.php │ │ │ │ │ │ ├── TestOtherSource.php │ │ │ │ │ │ └── TestSource.php │ │ │ │ │ ├── TestPluginAppModel.php │ │ │ │ │ ├── TestPluginAuthUser.php │ │ │ │ │ ├── TestPluginAuthors.php │ │ │ │ │ ├── TestPluginComment.php │ │ │ │ │ └── TestPluginPost.php │ │ │ │ ├── Utility │ │ │ │ │ └── TestPluginEngine.php │ │ │ │ ├── Vendor │ │ │ │ │ ├── Example │ │ │ │ │ │ └── ExampleExample.php │ │ │ │ │ ├── sample │ │ │ │ │ │ └── sample_plugin.php │ │ │ │ │ └── welcome.php │ │ │ │ ├── View │ │ │ │ │ ├── Elements │ │ │ │ │ │ ├── plugin_element.ctp │ │ │ │ │ │ ├── sub_dir │ │ │ │ │ │ │ └── sub_element.ctp │ │ │ │ │ │ ├── test_plugin_element.ctp │ │ │ │ │ │ └── translate.ctp │ │ │ │ │ ├── Emails │ │ │ │ │ │ └── text │ │ │ │ │ │ │ └── test_plugin_tpl.ctp │ │ │ │ │ ├── Errors │ │ │ │ │ │ └── error500.ctp │ │ │ │ │ ├── Helper │ │ │ │ │ │ ├── OtherHelperHelper.php │ │ │ │ │ │ ├── PluggedHelperHelper.php │ │ │ │ │ │ └── TestPluginAppHelper.php │ │ │ │ │ ├── Layouts │ │ │ │ │ │ ├── Emails │ │ │ │ │ │ │ └── text │ │ │ │ │ │ │ │ └── plug_default.ctp │ │ │ │ │ │ └── default.ctp │ │ │ │ │ └── Tests │ │ │ │ │ │ ├── index.ctp │ │ │ │ │ │ └── scaffold.form.ctp │ │ │ │ └── webroot │ │ │ │ │ ├── css │ │ │ │ │ ├── test_plugin_asset.css │ │ │ │ │ ├── theme_one.htc │ │ │ │ │ └── unknown.extension │ │ │ │ │ ├── flash │ │ │ │ │ └── plugin_test.swf │ │ │ │ │ ├── img │ │ │ │ │ └── cake.icon.gif │ │ │ │ │ ├── js │ │ │ │ │ └── test_plugin │ │ │ │ │ │ └── test.js │ │ │ │ │ ├── pdfs │ │ │ │ │ └── plugin_test.pdf │ │ │ │ │ └── root.js │ │ │ └── TestPluginTwo │ │ │ │ ├── Config │ │ │ │ └── bootstrap.php │ │ │ │ ├── Console │ │ │ │ ├── Command │ │ │ │ │ ├── ExampleShell.php │ │ │ │ │ ├── Task │ │ │ │ │ │ └── empty │ │ │ │ │ └── WelcomeShell.php │ │ │ │ └── Templates │ │ │ │ │ └── empty │ │ │ │ └── View │ │ │ │ └── Layouts │ │ │ │ └── Emails │ │ │ │ └── text │ │ │ │ └── default.ctp │ │ │ ├── Utility │ │ │ └── TestAppEngine.php │ │ │ ├── Vendor │ │ │ ├── Test │ │ │ │ ├── MyTest.php │ │ │ │ └── hello.php │ │ │ ├── css │ │ │ │ └── test_asset.css │ │ │ ├── img │ │ │ │ ├── test.jpg │ │ │ │ └── test_2.JPG │ │ │ ├── sample │ │ │ │ └── configure_test_vendor_sample.php │ │ │ ├── somename │ │ │ │ └── some.name.php │ │ │ └── welcome.php │ │ │ ├── View │ │ │ ├── Elements │ │ │ │ ├── Flash │ │ │ │ │ └── default.ctp │ │ │ │ ├── extended_element.ctp │ │ │ │ ├── extended_missing_element.ctp │ │ │ │ ├── flash_classy.ctp │ │ │ │ ├── flash_helper.ctp │ │ │ │ ├── html_call.ctp │ │ │ │ ├── nocache │ │ │ │ │ ├── contains_nocache.ctp │ │ │ │ │ ├── plain.ctp │ │ │ │ │ ├── sub1.ctp │ │ │ │ │ └── sub2.ctp │ │ │ │ ├── parent_element.ctp │ │ │ │ ├── session_helper.ctp │ │ │ │ ├── test_element.ctp │ │ │ │ ├── test_element.xml │ │ │ │ └── type_check.ctp │ │ │ ├── Emails │ │ │ │ ├── html │ │ │ │ │ ├── custom.ctp │ │ │ │ │ ├── default.ctp │ │ │ │ │ ├── html.ctp │ │ │ │ │ ├── image.ctp │ │ │ │ │ ├── japanese.ctp │ │ │ │ │ ├── long_line.ctp │ │ │ │ │ └── nested_element.ctp │ │ │ │ └── text │ │ │ │ │ ├── custom.ctp │ │ │ │ │ ├── custom_helper.ctp │ │ │ │ │ ├── default.ctp │ │ │ │ │ ├── japanese.ctp │ │ │ │ │ └── wide.ctp │ │ │ ├── Errors │ │ │ │ ├── error400.ctp │ │ │ │ └── error500.ctp │ │ │ ├── Helper │ │ │ │ └── BananaHelper.php │ │ │ ├── Layouts │ │ │ │ ├── Emails │ │ │ │ │ ├── html │ │ │ │ │ │ ├── default.ctp │ │ │ │ │ │ ├── japanese.ctp │ │ │ │ │ │ └── thin.ctp │ │ │ │ │ └── text │ │ │ │ │ │ ├── default.ctp │ │ │ │ │ │ └── japanese.ctp │ │ │ │ ├── ajax.ctp │ │ │ │ ├── ajax2.ctp │ │ │ │ ├── banana.ctp │ │ │ │ ├── cache_empty_sections.ctp │ │ │ │ ├── cache_layout.ctp │ │ │ │ ├── default.ctp │ │ │ │ ├── flash.ctp │ │ │ │ ├── js │ │ │ │ │ └── default.ctp │ │ │ │ ├── json │ │ │ │ │ └── default.ctp │ │ │ │ ├── multi_cache.ctp │ │ │ │ ├── rss │ │ │ │ │ └── default.ctp │ │ │ │ └── xml │ │ │ │ │ └── default.ctp │ │ │ ├── Pages │ │ │ │ ├── extract.ctp │ │ │ │ ├── home.ctp │ │ │ │ └── page.home.ctp │ │ │ ├── Posts │ │ │ │ ├── alt_ext.alt │ │ │ │ ├── cache_empty_sections.ctp │ │ │ │ ├── cache_form.ctp │ │ │ │ ├── extend_element.ctp │ │ │ │ ├── extend_loop.ctp │ │ │ │ ├── extend_loop_inner.ctp │ │ │ │ ├── extend_missing_element.ctp │ │ │ │ ├── extend_self.ctp │ │ │ │ ├── extend_with_element.ctp │ │ │ │ ├── helper_overwrite.ctp │ │ │ │ ├── index.ctp │ │ │ │ ├── json │ │ │ │ │ └── index.ctp │ │ │ │ ├── multiple_nocache.ctp │ │ │ │ ├── nested_extends.ctp │ │ │ │ ├── nocache_multiple_element.ctp │ │ │ │ ├── open_block.ctp │ │ │ │ ├── parent_1.ctp │ │ │ │ ├── parent_2.ctp │ │ │ │ ├── parent_view.ctp │ │ │ │ ├── scaffold.form.ctp │ │ │ │ ├── sequencial_nocache.ctp │ │ │ │ ├── test_nocache_tags.ctp │ │ │ │ └── xml │ │ │ │ │ └── index.ctp │ │ │ ├── Scaffolds │ │ │ │ └── empty │ │ │ ├── TestsApps │ │ │ │ ├── index.ctp │ │ │ │ └── json │ │ │ │ │ └── index.ctp │ │ │ └── Themed │ │ │ │ └── TestTheme │ │ │ │ ├── Elements │ │ │ │ └── test_element.ctp │ │ │ │ ├── Emails │ │ │ │ └── text │ │ │ │ │ └── themed.ctp │ │ │ │ ├── Layouts │ │ │ │ └── default.ctp │ │ │ │ ├── Plugin │ │ │ │ └── TestPlugin │ │ │ │ │ ├── Emails │ │ │ │ │ └── text │ │ │ │ │ │ └── test_plugin_tpl.ctp │ │ │ │ │ ├── Layouts │ │ │ │ │ └── plugin_default.ctp │ │ │ │ │ └── Tests │ │ │ │ │ └── index.ctp │ │ │ │ ├── Posts │ │ │ │ ├── index.ctp │ │ │ │ ├── scaffold.index.ctp │ │ │ │ └── themed.ctp │ │ │ │ └── webroot │ │ │ │ ├── css │ │ │ │ ├── test_asset.css │ │ │ │ └── theme_webroot.css │ │ │ │ ├── flash │ │ │ │ └── theme_test.swf │ │ │ │ ├── img │ │ │ │ ├── cake.power.gif │ │ │ │ └── test.jpg │ │ │ │ ├── js │ │ │ │ ├── one │ │ │ │ │ └── theme_one.js │ │ │ │ └── theme.js │ │ │ │ ├── pdfs │ │ │ │ └── theme_test.pdf │ │ │ │ └── space image.text │ │ │ ├── tmp │ │ │ └── empty │ │ │ └── webroot │ │ │ ├── img │ │ │ └── cake.power.gif │ │ │ └── theme │ │ │ └── test_theme │ │ │ ├── css │ │ │ ├── theme_webroot.css │ │ │ └── webroot_test.css │ │ │ └── img │ │ │ ├── cake.power.gif │ │ │ └── test.jpg │ │ ├── TestSuite │ │ ├── CakeTestCase.php │ │ ├── CakeTestLoader.php │ │ ├── CakeTestRunner.php │ │ ├── CakeTestSuite.php │ │ ├── CakeTestSuiteCommand.php │ │ ├── CakeTestSuiteDispatcher.php │ │ ├── ControllerTestCase.php │ │ ├── Coverage │ │ │ ├── BaseCoverageReport.php │ │ │ ├── HtmlCoverageReport.php │ │ │ └── TextCoverageReport.php │ │ ├── Fixture │ │ │ ├── CakeFixtureManager.php │ │ │ ├── CakeTestFixture.php │ │ │ └── CakeTestModel.php │ │ ├── Reporter │ │ │ ├── CakeBaseReporter.php │ │ │ ├── CakeHtmlReporter.php │ │ │ └── CakeTextReporter.php │ │ ├── Stub │ │ │ └── ConsoleOutputStub.php │ │ └── templates │ │ │ ├── footer.php │ │ │ ├── header.php │ │ │ ├── menu.php │ │ │ ├── missing_connection.php │ │ │ ├── phpunit.php │ │ │ └── xdebug.php │ │ ├── Utility │ │ ├── CakeNumber.php │ │ ├── CakeText.php │ │ ├── CakeTime.php │ │ ├── ClassRegistry.php │ │ ├── Debugger.php │ │ ├── File.php │ │ ├── Folder.php │ │ ├── Hash.php │ │ ├── Inflector.php │ │ ├── ObjectCollection.php │ │ ├── Sanitize.php │ │ ├── Security.php │ │ ├── Set.php │ │ ├── String.php │ │ ├── Validation.php │ │ └── Xml.php │ │ ├── VERSION.txt │ │ ├── View │ │ ├── Elements │ │ │ ├── Flash │ │ │ │ ├── default.ctp │ │ │ │ ├── error.ctp │ │ │ │ └── success.ctp │ │ │ ├── exception_stack_trace.ctp │ │ │ └── sql_dump.ctp │ │ ├── Errors │ │ │ ├── fatal_error.ctp │ │ │ ├── missing_action.ctp │ │ │ ├── missing_behavior.ctp │ │ │ ├── missing_component.ctp │ │ │ ├── missing_connection.ctp │ │ │ ├── missing_controller.ctp │ │ │ ├── missing_database.ctp │ │ │ ├── missing_datasource.ctp │ │ │ ├── missing_datasource_config.ctp │ │ │ ├── missing_helper.ctp │ │ │ ├── missing_layout.ctp │ │ │ ├── missing_plugin.ctp │ │ │ ├── missing_table.ctp │ │ │ ├── missing_view.ctp │ │ │ ├── pdo_error.ctp │ │ │ ├── private_action.ctp │ │ │ └── scaffold_error.ctp │ │ ├── Helper.php │ │ ├── Helper │ │ │ ├── CacheHelper.php │ │ │ ├── FlashHelper.php │ │ │ ├── FormHelper.php │ │ │ ├── HtmlHelper.php │ │ │ ├── JqueryEngineHelper.php │ │ │ ├── JsBaseEngineHelper.php │ │ │ ├── JsHelper.php │ │ │ ├── MootoolsEngineHelper.php │ │ │ ├── NumberHelper.php │ │ │ ├── PaginatorHelper.php │ │ │ ├── PrototypeEngineHelper.php │ │ │ ├── RssHelper.php │ │ │ ├── SessionHelper.php │ │ │ ├── TextHelper.php │ │ │ └── TimeHelper.php │ │ ├── HelperCollection.php │ │ ├── JsonView.php │ │ ├── MediaView.php │ │ ├── ScaffoldView.php │ │ ├── Scaffolds │ │ │ ├── form.ctp │ │ │ ├── index.ctp │ │ │ └── view.ctp │ │ ├── ThemeView.php │ │ ├── View.php │ │ ├── ViewBlock.php │ │ └── XmlView.php │ │ ├── basics.php │ │ └── bootstrap.php.in ├── composer.json ├── composer.lock ├── css │ ├── bootstrap-table-page-jump-to.min.css │ ├── bootstrap-table.min.css │ ├── bootstrap.min.css │ ├── font-awesome.min.css │ ├── reset.css │ └── spinner.css ├── fonts │ ├── fontawesome-webfont.eot │ ├── fontawesome-webfont.svg │ ├── fontawesome-webfont.ttf │ ├── fontawesome-webfont.woff │ ├── fontawesome-webfont.woff2 │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.svg │ ├── glyphicons-halflings-regular.ttf │ ├── glyphicons-halflings-regular.woff │ ├── glyphicons-halflings-regular.woff2 │ ├── license.md │ ├── material-icons.woff │ └── material-icons.woff2 ├── graphics │ ├── favicon.ico │ ├── spinner.png │ └── transparent.png ├── includes │ ├── Control.php │ ├── Event.php │ ├── Event_Data.php │ ├── Event_Tag.php │ ├── Filter.php │ ├── FilterTerm.php │ ├── Frame.php │ ├── Group.php │ ├── Group_Monitor.php │ ├── Group_Permission.php │ ├── Manufacturer.php │ ├── Model.php │ ├── Monitor.php │ ├── Monitor_Permission.php │ ├── MontageLayout.php │ ├── Object.php │ ├── Report.php │ ├── Server.php │ ├── Snapshot.php │ ├── Storage.php │ ├── Tag.php │ ├── User.php │ ├── User_Preference.php │ ├── Zone.php │ ├── actions │ │ ├── bandwidth.php │ │ ├── console.php │ │ ├── control.php │ │ ├── controlcap.php │ │ ├── controlcaps.php │ │ ├── device.php │ │ ├── devices.php │ │ ├── donate.php │ │ ├── event.php │ │ ├── eventdetail.php │ │ ├── events.php │ │ ├── files.php │ │ ├── filter.php │ │ ├── function.php │ │ ├── group.php │ │ ├── groups.php │ │ ├── login.php │ │ ├── logout.php │ │ ├── monitor.php │ │ ├── monitors.php │ │ ├── montage.php │ │ ├── options.php │ │ ├── privacy.php │ │ ├── report.php │ │ ├── server.php │ │ ├── settings.php │ │ ├── snapshot.php │ │ ├── state.php │ │ ├── storage.php │ │ ├── user.php │ │ ├── version.php │ │ ├── zone.php │ │ └── zones.php │ ├── auth.php │ ├── config.php.in │ ├── control_functions.php │ ├── csrf │ │ ├── LICENSE.txt │ │ ├── NEWS.txt │ │ ├── README.txt │ │ ├── csrf-magic.js │ │ └── csrf-magic.php │ ├── database.php │ ├── download_functions.php │ ├── functions.php │ ├── lang.php │ ├── logger.php │ ├── monitor_probe.php │ └── session.php ├── index.php ├── js │ ├── Map.js │ ├── MonitorLinkExpression.js │ ├── MonitorStream.js │ ├── Server.js │ ├── adapter.min.js │ ├── ajaxQueue.js │ ├── dms.js │ ├── dms.js.URL │ ├── fontfaceobserver.standalone.js │ ├── hls-1.6.13 │ │ ├── hls-demo.js │ │ ├── hls-demo.js.map │ │ ├── hls.d.mts │ │ ├── hls.d.ts │ │ ├── hls.js │ │ ├── hls.js.d.ts │ │ ├── hls.js.map │ │ ├── hls.light.js │ │ ├── hls.light.js.map │ │ ├── hls.light.min.js │ │ ├── hls.light.min.js.map │ │ ├── hls.light.mjs │ │ ├── hls.light.mjs.map │ │ ├── hls.min.js │ │ ├── hls.min.js.map │ │ ├── hls.mjs │ │ ├── hls.mjs.map │ │ ├── hls.worker.js │ │ └── hls.worker.js.map │ ├── logger.js │ ├── noUiSlider-15.8.1 │ │ ├── README.md │ │ └── dist │ │ │ ├── nouislider.css │ │ │ ├── nouislider.d.ts │ │ │ ├── nouislider.js │ │ │ ├── nouislider.min.css │ │ │ ├── nouislider.min.js │ │ │ ├── nouislider.min.mjs │ │ │ └── nouislider.mjs │ ├── panzoom.js │ ├── video-rtc.js │ ├── video-stream.js │ └── videojs.zoomrotate.js ├── lang │ ├── ba_ba.php │ ├── big5_big5.php │ ├── cs_cz.php │ ├── de_de.php │ ├── default.php │ ├── dk_dk.php │ ├── en_gb.php │ ├── en_us.php │ ├── es_ar.php │ ├── es_es.php │ ├── es_la.php │ ├── et_ee.php │ ├── fr_fr.php │ ├── he_il.php │ ├── hu_hu.php │ ├── it_it.php │ ├── ja_jp.php │ ├── nl_nl.php │ ├── no_nb.php │ ├── pl_pl.php │ ├── pt_br.php │ ├── ro_ro.php │ ├── ru_ru.php │ ├── se_se.php │ ├── tr_tr.php │ ├── updateLangs.php │ ├── zh_cn.php │ └── zh_tw.php ├── robots.txt ├── skins │ └── classic │ │ ├── assets │ │ ├── bootstrap-table-1.24.1 │ │ │ ├── bootstrap-table-locale-all.js │ │ │ ├── bootstrap-table-locale-all.min.js │ │ │ ├── bootstrap-table-vue.js │ │ │ ├── bootstrap-table-vue.umd.js │ │ │ ├── bootstrap-table.css │ │ │ ├── bootstrap-table.js │ │ │ ├── bootstrap-table.min.css │ │ │ ├── bootstrap-table.min.js │ │ │ ├── extensions │ │ │ │ ├── addrbar │ │ │ │ │ ├── bootstrap-table-addrbar.js │ │ │ │ │ └── bootstrap-table-addrbar.min.js │ │ │ │ ├── auto-refresh │ │ │ │ │ ├── bootstrap-table-auto-refresh.js │ │ │ │ │ └── bootstrap-table-auto-refresh.min.js │ │ │ │ ├── cookie │ │ │ │ │ ├── bootstrap-table-cookie.js │ │ │ │ │ └── bootstrap-table-cookie.min.js │ │ │ │ ├── copy-rows │ │ │ │ │ ├── bootstrap-table-copy-rows.js │ │ │ │ │ └── bootstrap-table-copy-rows.min.js │ │ │ │ ├── custom-view │ │ │ │ │ ├── bootstrap-table-custom-view.js │ │ │ │ │ └── bootstrap-table-custom-view.min.js │ │ │ │ ├── defer-url │ │ │ │ │ ├── bootstrap-table-defer-url.js │ │ │ │ │ └── bootstrap-table-defer-url.min.js │ │ │ │ ├── editable │ │ │ │ │ ├── bootstrap-table-editable.js │ │ │ │ │ └── bootstrap-table-editable.min.js │ │ │ │ ├── export │ │ │ │ │ ├── bootstrap-table-export.js │ │ │ │ │ └── bootstrap-table-export.min.js │ │ │ │ ├── filter-control │ │ │ │ │ ├── bootstrap-table-filter-control.css │ │ │ │ │ ├── bootstrap-table-filter-control.js │ │ │ │ │ ├── bootstrap-table-filter-control.min.css │ │ │ │ │ ├── bootstrap-table-filter-control.min.js │ │ │ │ │ ├── utils.js │ │ │ │ │ └── utils.min.js │ │ │ │ ├── fixed-columns │ │ │ │ │ ├── bootstrap-table-fixed-columns.css │ │ │ │ │ ├── bootstrap-table-fixed-columns.js │ │ │ │ │ ├── bootstrap-table-fixed-columns.min.css │ │ │ │ │ └── bootstrap-table-fixed-columns.min.js │ │ │ │ ├── group-by-v2 │ │ │ │ │ ├── bootstrap-table-group-by.css │ │ │ │ │ ├── bootstrap-table-group-by.js │ │ │ │ │ ├── bootstrap-table-group-by.min.css │ │ │ │ │ └── bootstrap-table-group-by.min.js │ │ │ │ ├── i18n-enhance │ │ │ │ │ ├── bootstrap-table-i18n-enhance.js │ │ │ │ │ └── bootstrap-table-i18n-enhance.min.js │ │ │ │ ├── key-events │ │ │ │ │ ├── bootstrap-table-key-events.js │ │ │ │ │ └── bootstrap-table-key-events.min.js │ │ │ │ ├── mobile │ │ │ │ │ ├── bootstrap-table-mobile.js │ │ │ │ │ └── bootstrap-table-mobile.min.js │ │ │ │ ├── multiple-sort │ │ │ │ │ ├── bootstrap-table-multiple-sort.js │ │ │ │ │ └── bootstrap-table-multiple-sort.min.js │ │ │ │ ├── page-jump-to │ │ │ │ │ ├── bootstrap-table-page-jump-to.css │ │ │ │ │ ├── bootstrap-table-page-jump-to.js │ │ │ │ │ ├── bootstrap-table-page-jump-to.min.css │ │ │ │ │ └── bootstrap-table-page-jump-to.min.js │ │ │ │ ├── pipeline │ │ │ │ │ ├── bootstrap-table-pipeline.js │ │ │ │ │ └── bootstrap-table-pipeline.min.js │ │ │ │ ├── print │ │ │ │ │ ├── bootstrap-table-print.js │ │ │ │ │ └── bootstrap-table-print.min.js │ │ │ │ ├── reorder-columns │ │ │ │ │ ├── bootstrap-table-reorder-columns.js │ │ │ │ │ └── bootstrap-table-reorder-columns.min.js │ │ │ │ ├── reorder-rows │ │ │ │ │ ├── bootstrap-table-reorder-rows.css │ │ │ │ │ ├── bootstrap-table-reorder-rows.js │ │ │ │ │ ├── bootstrap-table-reorder-rows.min.css │ │ │ │ │ └── bootstrap-table-reorder-rows.min.js │ │ │ │ ├── resizable │ │ │ │ │ ├── bootstrap-table-resizable.js │ │ │ │ │ └── bootstrap-table-resizable.min.js │ │ │ │ ├── sticky-header │ │ │ │ │ ├── bootstrap-table-sticky-header.css │ │ │ │ │ ├── bootstrap-table-sticky-header.js │ │ │ │ │ ├── bootstrap-table-sticky-header.min.css │ │ │ │ │ └── bootstrap-table-sticky-header.min.js │ │ │ │ ├── toolbar │ │ │ │ │ ├── bootstrap-table-toolbar.js │ │ │ │ │ └── bootstrap-table-toolbar.min.js │ │ │ │ └── treegrid │ │ │ │ │ ├── bootstrap-table-treegrid.js │ │ │ │ │ └── bootstrap-table-treegrid.min.js │ │ │ ├── locale │ │ │ │ ├── bootstrap-table-af-ZA.js │ │ │ │ ├── bootstrap-table-af-ZA.min.js │ │ │ │ ├── bootstrap-table-ar-SA.js │ │ │ │ ├── bootstrap-table-ar-SA.min.js │ │ │ │ ├── bootstrap-table-bg-BG.js │ │ │ │ ├── bootstrap-table-bg-BG.min.js │ │ │ │ ├── bootstrap-table-ca-ES.js │ │ │ │ ├── bootstrap-table-ca-ES.min.js │ │ │ │ ├── bootstrap-table-cs-CZ.js │ │ │ │ ├── bootstrap-table-cs-CZ.min.js │ │ │ │ ├── bootstrap-table-da-DK.js │ │ │ │ ├── bootstrap-table-da-DK.min.js │ │ │ │ ├── bootstrap-table-de-DE.js │ │ │ │ ├── bootstrap-table-de-DE.min.js │ │ │ │ ├── bootstrap-table-el-GR.js │ │ │ │ ├── bootstrap-table-el-GR.min.js │ │ │ │ ├── bootstrap-table-en-US.js │ │ │ │ ├── bootstrap-table-en-US.min.js │ │ │ │ ├── bootstrap-table-es-AR.js │ │ │ │ ├── bootstrap-table-es-AR.min.js │ │ │ │ ├── bootstrap-table-es-CL.js │ │ │ │ ├── bootstrap-table-es-CL.min.js │ │ │ │ ├── bootstrap-table-es-CR.js │ │ │ │ ├── bootstrap-table-es-CR.min.js │ │ │ │ ├── bootstrap-table-es-ES.js │ │ │ │ ├── bootstrap-table-es-ES.min.js │ │ │ │ ├── bootstrap-table-es-MX.js │ │ │ │ ├── bootstrap-table-es-MX.min.js │ │ │ │ ├── bootstrap-table-es-NI.js │ │ │ │ ├── bootstrap-table-es-NI.min.js │ │ │ │ ├── bootstrap-table-es-SP.js │ │ │ │ ├── bootstrap-table-es-SP.min.js │ │ │ │ ├── bootstrap-table-et-EE.js │ │ │ │ ├── bootstrap-table-et-EE.min.js │ │ │ │ ├── bootstrap-table-eu-EU.js │ │ │ │ ├── bootstrap-table-eu-EU.min.js │ │ │ │ ├── bootstrap-table-fa-IR.js │ │ │ │ ├── bootstrap-table-fa-IR.min.js │ │ │ │ ├── bootstrap-table-fi-FI.js │ │ │ │ ├── bootstrap-table-fi-FI.min.js │ │ │ │ ├── bootstrap-table-fr-BE.js │ │ │ │ ├── bootstrap-table-fr-BE.min.js │ │ │ │ ├── bootstrap-table-fr-CH.js │ │ │ │ ├── bootstrap-table-fr-CH.min.js │ │ │ │ ├── bootstrap-table-fr-FR.js │ │ │ │ ├── bootstrap-table-fr-FR.min.js │ │ │ │ ├── bootstrap-table-fr-LU.js │ │ │ │ ├── bootstrap-table-fr-LU.min.js │ │ │ │ ├── bootstrap-table-he-IL.js │ │ │ │ ├── bootstrap-table-he-IL.min.js │ │ │ │ ├── bootstrap-table-hi-IN.js │ │ │ │ ├── bootstrap-table-hi-IN.min.js │ │ │ │ ├── bootstrap-table-hr-HR.js │ │ │ │ ├── bootstrap-table-hr-HR.min.js │ │ │ │ ├── bootstrap-table-hu-HU.js │ │ │ │ ├── bootstrap-table-hu-HU.min.js │ │ │ │ ├── bootstrap-table-id-ID.js │ │ │ │ ├── bootstrap-table-id-ID.min.js │ │ │ │ ├── bootstrap-table-it-IT.js │ │ │ │ ├── bootstrap-table-it-IT.min.js │ │ │ │ ├── bootstrap-table-ja-JP.js │ │ │ │ ├── bootstrap-table-ja-JP.min.js │ │ │ │ ├── bootstrap-table-ka-GE.js │ │ │ │ ├── bootstrap-table-ka-GE.min.js │ │ │ │ ├── bootstrap-table-ko-KR.js │ │ │ │ ├── bootstrap-table-ko-KR.min.js │ │ │ │ ├── bootstrap-table-lb-LU.js │ │ │ │ ├── bootstrap-table-lb-LU.min.js │ │ │ │ ├── bootstrap-table-lt-LT.js │ │ │ │ ├── bootstrap-table-lt-LT.min.js │ │ │ │ ├── bootstrap-table-ms-MY.js │ │ │ │ ├── bootstrap-table-ms-MY.min.js │ │ │ │ ├── bootstrap-table-nb-NO.js │ │ │ │ ├── bootstrap-table-nb-NO.min.js │ │ │ │ ├── bootstrap-table-nl-BE.js │ │ │ │ ├── bootstrap-table-nl-BE.min.js │ │ │ │ ├── bootstrap-table-nl-NL.js │ │ │ │ ├── bootstrap-table-nl-NL.min.js │ │ │ │ ├── bootstrap-table-pl-PL.js │ │ │ │ ├── bootstrap-table-pl-PL.min.js │ │ │ │ ├── bootstrap-table-pt-BR.js │ │ │ │ ├── bootstrap-table-pt-BR.min.js │ │ │ │ ├── bootstrap-table-pt-PT.js │ │ │ │ ├── bootstrap-table-pt-PT.min.js │ │ │ │ ├── bootstrap-table-ro-RO.js │ │ │ │ ├── bootstrap-table-ro-RO.min.js │ │ │ │ ├── bootstrap-table-ru-RU.js │ │ │ │ ├── bootstrap-table-ru-RU.min.js │ │ │ │ ├── bootstrap-table-sk-SK.js │ │ │ │ ├── bootstrap-table-sk-SK.min.js │ │ │ │ ├── bootstrap-table-sl-SI.js │ │ │ │ ├── bootstrap-table-sl-SI.min.js │ │ │ │ ├── bootstrap-table-sr-Cyrl-RS.js │ │ │ │ ├── bootstrap-table-sr-Cyrl-RS.min.js │ │ │ │ ├── bootstrap-table-sr-Latn-RS.js │ │ │ │ ├── bootstrap-table-sr-Latn-RS.min.js │ │ │ │ ├── bootstrap-table-sv-SE.js │ │ │ │ ├── bootstrap-table-sv-SE.min.js │ │ │ │ ├── bootstrap-table-th-TH.js │ │ │ │ ├── bootstrap-table-th-TH.min.js │ │ │ │ ├── bootstrap-table-tr-TR.js │ │ │ │ ├── bootstrap-table-tr-TR.min.js │ │ │ │ ├── bootstrap-table-uk-UA.js │ │ │ │ ├── bootstrap-table-uk-UA.min.js │ │ │ │ ├── bootstrap-table-ur-PK.js │ │ │ │ ├── bootstrap-table-ur-PK.min.js │ │ │ │ ├── bootstrap-table-uz-Latn-UZ.js │ │ │ │ ├── bootstrap-table-uz-Latn-UZ.min.js │ │ │ │ ├── bootstrap-table-vi-VN.js │ │ │ │ ├── bootstrap-table-vi-VN.min.js │ │ │ │ ├── bootstrap-table-zh-CN.js │ │ │ │ ├── bootstrap-table-zh-CN.min.js │ │ │ │ ├── bootstrap-table-zh-TW.js │ │ │ │ └── bootstrap-table-zh-TW.min.js │ │ │ └── themes │ │ │ │ ├── bootstrap-table │ │ │ │ ├── bootstrap-table.css │ │ │ │ ├── bootstrap-table.js │ │ │ │ ├── bootstrap-table.min.css │ │ │ │ ├── bootstrap-table.min.js │ │ │ │ └── fonts │ │ │ │ │ ├── bootstrap-table.eot │ │ │ │ │ ├── bootstrap-table.svg │ │ │ │ │ ├── bootstrap-table.ttf │ │ │ │ │ └── bootstrap-table.woff │ │ │ │ ├── bulma │ │ │ │ ├── bootstrap-table-bulma.css │ │ │ │ ├── bootstrap-table-bulma.js │ │ │ │ ├── bootstrap-table-bulma.min.css │ │ │ │ └── bootstrap-table-bulma.min.js │ │ │ │ ├── foundation │ │ │ │ ├── bootstrap-table-foundation.css │ │ │ │ ├── bootstrap-table-foundation.js │ │ │ │ ├── bootstrap-table-foundation.min.css │ │ │ │ └── bootstrap-table-foundation.min.js │ │ │ │ ├── materialize │ │ │ │ ├── bootstrap-table-materialize.css │ │ │ │ ├── bootstrap-table-materialize.js │ │ │ │ ├── bootstrap-table-materialize.min.css │ │ │ │ └── bootstrap-table-materialize.min.js │ │ │ │ └── semantic │ │ │ │ ├── bootstrap-table-semantic.css │ │ │ │ ├── bootstrap-table-semantic.js │ │ │ │ ├── bootstrap-table-semantic.min.css │ │ │ │ └── bootstrap-table-semantic.min.js │ │ ├── gridstack-12.3.3 │ │ │ └── dist │ │ │ │ ├── dd-base-impl.d.ts │ │ │ │ ├── dd-base-impl.js │ │ │ │ ├── dd-base-impl.js.map │ │ │ │ ├── dd-draggable.d.ts │ │ │ │ ├── dd-draggable.js │ │ │ │ ├── dd-draggable.js.map │ │ │ │ ├── dd-droppable.d.ts │ │ │ │ ├── dd-droppable.js │ │ │ │ ├── dd-droppable.js.map │ │ │ │ ├── dd-element.d.ts │ │ │ │ ├── dd-element.js │ │ │ │ ├── dd-element.js.map │ │ │ │ ├── dd-gridstack.d.ts │ │ │ │ ├── dd-gridstack.js │ │ │ │ ├── dd-gridstack.js.map │ │ │ │ ├── dd-manager.d.ts │ │ │ │ ├── dd-manager.js │ │ │ │ ├── dd-manager.js.map │ │ │ │ ├── dd-resizable-handle.d.ts │ │ │ │ ├── dd-resizable-handle.js │ │ │ │ ├── dd-resizable-handle.js.map │ │ │ │ ├── dd-resizable.d.ts │ │ │ │ ├── dd-resizable.js │ │ │ │ ├── dd-resizable.js.map │ │ │ │ ├── dd-touch.d.ts │ │ │ │ ├── dd-touch.js │ │ │ │ ├── dd-touch.js.map │ │ │ │ ├── gridstack-all.js │ │ │ │ ├── gridstack-all.js.LICENSE.txt │ │ │ │ ├── gridstack-all.js.map │ │ │ │ ├── gridstack-engine.d.ts │ │ │ │ ├── gridstack-engine.js │ │ │ │ ├── gridstack-engine.js.map │ │ │ │ ├── gridstack.css │ │ │ │ ├── gridstack.d.ts │ │ │ │ ├── gridstack.js │ │ │ │ ├── gridstack.js.map │ │ │ │ ├── gridstack.min.css │ │ │ │ ├── src │ │ │ │ ├── dd-base-impl.d.ts │ │ │ │ ├── dd-base-impl.js │ │ │ │ ├── dd-base-impl.js.map │ │ │ │ ├── dd-draggable.d.ts │ │ │ │ ├── dd-draggable.js │ │ │ │ ├── dd-draggable.js.map │ │ │ │ ├── dd-droppable.d.ts │ │ │ │ ├── dd-droppable.js │ │ │ │ ├── dd-droppable.js.map │ │ │ │ ├── dd-element.d.ts │ │ │ │ ├── dd-element.js │ │ │ │ ├── dd-element.js.map │ │ │ │ ├── dd-gridstack.d.ts │ │ │ │ ├── dd-gridstack.js │ │ │ │ ├── dd-gridstack.js.map │ │ │ │ ├── dd-manager.d.ts │ │ │ │ ├── dd-manager.js │ │ │ │ ├── dd-manager.js.map │ │ │ │ ├── dd-resizable-handle.d.ts │ │ │ │ ├── dd-resizable-handle.js │ │ │ │ ├── dd-resizable-handle.js.map │ │ │ │ ├── dd-resizable.d.ts │ │ │ │ ├── dd-resizable.js │ │ │ │ ├── dd-resizable.js.map │ │ │ │ ├── dd-touch.d.ts │ │ │ │ ├── dd-touch.js │ │ │ │ ├── dd-touch.js.map │ │ │ │ ├── gridstack-engine.d.ts │ │ │ │ ├── gridstack-engine.js │ │ │ │ ├── gridstack-engine.js.map │ │ │ │ ├── gridstack.d.ts │ │ │ │ ├── gridstack.js │ │ │ │ ├── gridstack.js.map │ │ │ │ ├── gridstack.scss │ │ │ │ ├── types.d.ts │ │ │ │ ├── types.js │ │ │ │ ├── types.js.map │ │ │ │ ├── utils.d.ts │ │ │ │ ├── utils.js │ │ │ │ └── utils.js.map │ │ │ │ ├── types.d.ts │ │ │ │ ├── types.js │ │ │ │ ├── types.js.map │ │ │ │ ├── utils.d.ts │ │ │ │ ├── utils.js │ │ │ │ ├── utils.js.map │ │ │ │ ├── vitest.config.d.ts │ │ │ │ ├── vitest.config.js │ │ │ │ ├── vitest.config.js.map │ │ │ │ ├── vitest.setup.d.ts │ │ │ │ ├── vitest.setup.js │ │ │ │ └── vitest.setup.js.map │ │ ├── jquery.panzoom │ │ │ └── dist │ │ │ │ ├── jquery.panzoom.js │ │ │ │ └── jquery.panzoom.min.js │ │ ├── mb.extruder │ │ │ └── inc │ │ │ │ └── mbExtruder.js │ │ ├── pro-sidebar-template │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── READ_ME_BEFORE_EDIT │ │ │ ├── assets │ │ │ │ └── images │ │ │ │ │ └── sidebar-bg.jpg │ │ │ ├── build.sh │ │ │ ├── dist │ │ │ │ ├── main.css │ │ │ │ ├── main.css.map │ │ │ │ ├── main.js │ │ │ │ └── main.js.map │ │ │ ├── dist_dev │ │ │ │ ├── main.css │ │ │ │ ├── main.css.map │ │ │ │ ├── main.js │ │ │ │ └── main.js.map │ │ │ ├── postcss.config.js │ │ │ ├── src │ │ │ │ ├── index.js │ │ │ │ ├── libs │ │ │ │ │ ├── constants.js │ │ │ │ │ ├── popper.js │ │ │ │ │ ├── poppers.js │ │ │ │ │ └── slide.js │ │ │ │ └── styles │ │ │ │ │ ├── _layout.scss │ │ │ │ │ ├── _menu.scss │ │ │ │ │ ├── _sidebar.scss │ │ │ │ │ ├── _variables.scss │ │ │ │ │ ├── css-pro-layout.scss │ │ │ │ │ ├── styles.scss │ │ │ │ │ └── variables_css-pro-layout.scss │ │ │ └── webpack.config.js │ │ ├── swiped-events │ │ │ └── dist │ │ │ │ └── swiped-events.min.js │ │ └── version │ │ ├── css │ │ ├── base │ │ │ ├── export.css │ │ │ ├── material-icons.css │ │ │ ├── sidebar.css │ │ │ ├── skin.css │ │ │ ├── views │ │ │ │ ├── add_monitors.css │ │ │ │ ├── console.css │ │ │ │ ├── control.css │ │ │ │ ├── controlcap.css │ │ │ │ ├── controlcaps.css │ │ │ │ ├── cycle.css │ │ │ │ ├── devices.css │ │ │ │ ├── download.css │ │ │ │ ├── event.css │ │ │ │ ├── events.css │ │ │ │ ├── export.css │ │ │ │ ├── filter.css │ │ │ │ ├── frame.css │ │ │ │ ├── frames.css │ │ │ │ ├── groups.css │ │ │ │ ├── log.css │ │ │ │ ├── login.css │ │ │ │ ├── map.css │ │ │ │ ├── monitor.css │ │ │ │ ├── monitors.css │ │ │ │ ├── montage.css │ │ │ │ ├── montage_2wide.css │ │ │ │ ├── montage_3wide.css │ │ │ │ ├── montage_3wide50enlarge.css │ │ │ │ ├── montage_4wide.css │ │ │ │ ├── montage_freeform.css │ │ │ │ ├── montagereview.css │ │ │ │ ├── options.css │ │ │ │ ├── plugin.css │ │ │ │ ├── privacy.css │ │ │ │ ├── report_event_audit.css │ │ │ │ ├── reports.css │ │ │ │ ├── server.css │ │ │ │ ├── settings.css │ │ │ │ ├── snapshot.css │ │ │ │ ├── snapshots.css │ │ │ │ ├── stats.css │ │ │ │ ├── storage.css │ │ │ │ ├── timeline.css │ │ │ │ ├── timeline.css.php │ │ │ │ ├── user.css │ │ │ │ ├── video.css │ │ │ │ ├── watch.css │ │ │ │ ├── zone.css │ │ │ │ └── zones.css │ │ │ └── zones.css │ │ ├── classic │ │ │ ├── export.css │ │ │ ├── skin.css │ │ │ └── views │ │ │ │ ├── console.css │ │ │ │ ├── control.css │ │ │ │ ├── controlcaps.css │ │ │ │ ├── devices.css │ │ │ │ ├── download.css │ │ │ │ ├── event.css │ │ │ │ ├── events.css │ │ │ │ ├── export.css │ │ │ │ ├── filter.css │ │ │ │ ├── frame.css │ │ │ │ ├── frames.css │ │ │ │ ├── groups.css │ │ │ │ ├── log.css │ │ │ │ ├── login.css │ │ │ │ ├── monitor.css │ │ │ │ ├── montage.css │ │ │ │ ├── montage_2wide.css │ │ │ │ ├── montage_3wide.css │ │ │ │ ├── montage_3wide50enlarge.css │ │ │ │ ├── montage_4wide.css │ │ │ │ ├── montage_freeform.css │ │ │ │ ├── montagereview.css │ │ │ │ ├── options.css │ │ │ │ ├── plugin.css │ │ │ │ ├── stats.css │ │ │ │ ├── storage.css │ │ │ │ ├── timeline.css │ │ │ │ ├── timeline.css.php │ │ │ │ ├── video.css │ │ │ │ ├── watch.css │ │ │ │ ├── zone.css │ │ │ │ └── zones.css │ │ └── dark │ │ │ ├── export.css │ │ │ ├── skin.css │ │ │ └── views │ │ │ ├── console.css │ │ │ ├── control.css │ │ │ ├── controlcaps.css │ │ │ ├── devices.css │ │ │ ├── download.css │ │ │ ├── event.css │ │ │ ├── events.css │ │ │ ├── export.css │ │ │ ├── filter.css │ │ │ ├── frame.css │ │ │ ├── frames.css │ │ │ ├── groups.css │ │ │ ├── log.css │ │ │ ├── login.css │ │ │ ├── monitor.css │ │ │ ├── montage.css │ │ │ ├── montage_2wide.css │ │ │ ├── montage_3wide.css │ │ │ ├── montage_3wide50enlarge.css │ │ │ ├── montage_4wide.css │ │ │ ├── montage_freeform.css │ │ │ ├── montagereview.css │ │ │ ├── options.css │ │ │ ├── plugin.css │ │ │ ├── stats.css │ │ │ ├── storage.css │ │ │ ├── timeline.css │ │ │ ├── timeline.css.php │ │ │ ├── video.css │ │ │ ├── watch.css │ │ │ ├── zone.css │ │ │ └── zones.css │ │ ├── graphics │ │ ├── arrow-d.png │ │ ├── arrow-dl.png │ │ ├── arrow-dr.png │ │ ├── arrow-l-d.png │ │ ├── arrow-l-u.png │ │ ├── arrow-l.png │ │ ├── arrow-r.png │ │ ├── arrow-s-d.png │ │ ├── arrow-s-u.png │ │ ├── arrow-u.png │ │ ├── arrow-ul.png │ │ ├── arrow-ur.png │ │ ├── center.png │ │ ├── icon-connected.png │ │ ├── icon-disconnected.png │ │ ├── icon-error.png │ │ ├── point-g.png │ │ ├── point-o.png │ │ ├── point-r.png │ │ ├── seq-d.png │ │ ├── seq-u.png │ │ ├── ui-icons_444444_256x240.png │ │ ├── ui-icons_555555_256x240.png │ │ ├── ui-icons_777620_256x240.png │ │ ├── ui-icons_777777_256x240.png │ │ ├── ui-icons_cc0000_256x240.png │ │ └── ui-icons_ffffff_256x240.png │ │ ├── includes │ │ ├── config.php │ │ ├── control_functions.php │ │ ├── export_functions.php │ │ ├── functions.php │ │ └── timeline_functions.php │ │ ├── js │ │ ├── Chart.min.js │ │ ├── bootstrap-4.5.0.js │ │ ├── bootstrap-4.5.0.min.js │ │ ├── bootstrap.bundle.js.map │ │ ├── bootstrap.bundle.min.js │ │ ├── bootstrap.js.URL │ │ ├── chosen │ │ │ ├── chosen-sprite.png │ │ │ ├── chosen-sprite@2x.png │ │ │ ├── chosen.css │ │ │ ├── chosen.jquery.js │ │ │ ├── chosen.jquery.min.js │ │ │ └── chosen.min.css │ │ ├── dateTimePicker │ │ │ ├── jquery-ui-timepicker-addon.css │ │ │ └── jquery-ui-timepicker-addon.js │ │ ├── export.js │ │ ├── font │ │ │ ├── vjs.eot │ │ │ ├── vjs.ttf │ │ │ └── vjs.woff │ │ ├── jquery-3.7.1.min.js │ │ ├── jquery-3.7.1.min.map │ │ ├── jquery-ui-1.13.2 │ │ │ ├── AUTHORS.txt │ │ │ ├── LICENSE.txt │ │ │ ├── external │ │ │ │ └── jquery │ │ │ │ │ └── jquery.js │ │ │ ├── images │ │ │ │ ├── ui-icons_444444_256x240.png │ │ │ │ ├── ui-icons_555555_256x240.png │ │ │ │ ├── ui-icons_777620_256x240.png │ │ │ │ ├── ui-icons_777777_256x240.png │ │ │ │ ├── ui-icons_cc0000_256x240.png │ │ │ │ └── ui-icons_ffffff_256x240.png │ │ │ ├── index.html │ │ │ ├── jquery-ui.css │ │ │ ├── jquery-ui.js │ │ │ ├── jquery-ui.min.css │ │ │ ├── jquery-ui.min.js │ │ │ ├── jquery-ui.structure.css │ │ │ ├── jquery-ui.structure.min.css │ │ │ ├── jquery-ui.theme.css │ │ │ ├── jquery-ui.theme.min.css │ │ │ └── package.json │ │ ├── jquery.min.js │ │ ├── jquery.min.js.URL │ │ ├── luxon-3.4.4.min.js │ │ ├── moment.js │ │ ├── moment.js.URL │ │ ├── moment.min.js │ │ ├── montage_common.js │ │ ├── skin.js │ │ ├── skin.js.php │ │ ├── tableExport.min.js │ │ ├── video-js-skin.css │ │ ├── video-js.css │ │ ├── video-js.css.URL │ │ ├── video.js │ │ ├── video.js.URL │ │ └── video.min.js │ │ ├── skin.php │ │ └── views │ │ ├── _monitor_filters.php │ │ ├── _monitor_source_nvsocket.php │ │ ├── _options_api.php │ │ ├── _options_controlcaps.php │ │ ├── _options_dnsmasq.php │ │ ├── _options_servers.php │ │ ├── _options_storage.php │ │ ├── _options_users.php │ │ ├── add_monitors.php │ │ ├── bandwidth.php │ │ ├── blank.php │ │ ├── console.php │ │ ├── control.php │ │ ├── controlcap.php │ │ ├── cycle.php │ │ ├── devices.php │ │ ├── error.php │ │ ├── event.php │ │ ├── events.php │ │ ├── export.php │ │ ├── files.php │ │ ├── filter.php │ │ ├── frame.php │ │ ├── frames.php │ │ ├── groups.php │ │ ├── js │ │ ├── add_monitors.js │ │ ├── console.js │ │ ├── console.js.php │ │ ├── control.js │ │ ├── controlcap.js │ │ ├── controlcaps.js │ │ ├── cycle.js │ │ ├── cycle.js.php │ │ ├── devices.js │ │ ├── event.js │ │ ├── event.js.php │ │ ├── events.js │ │ ├── events.js.php │ │ ├── export.js │ │ ├── export.js.php │ │ ├── files.js │ │ ├── filter.js │ │ ├── filter.js.php │ │ ├── frame.js │ │ ├── frame.js.php │ │ ├── frames.js │ │ ├── frames.js.php │ │ ├── groups.js │ │ ├── log.js │ │ ├── login.js │ │ ├── login.js.php │ │ ├── map.js │ │ ├── monitor.js │ │ ├── monitor.js.php │ │ ├── monitorpreset.js │ │ ├── monitorprobe.js │ │ ├── montage.js │ │ ├── montage.js.php │ │ ├── montagereview.js │ │ ├── montagereview.js.php │ │ ├── onvifprobe.js │ │ ├── options.js │ │ ├── options.js.php │ │ ├── plugin.js │ │ ├── postlogin.js │ │ ├── postlogin.js.php │ │ ├── report.js │ │ ├── report_event_audit.js │ │ ├── reports.js │ │ ├── server.js │ │ ├── snapshot.js │ │ ├── snapshot.js.php │ │ ├── snapshots.js │ │ ├── snapshots.js.php │ │ ├── stats.js │ │ ├── storage.js │ │ ├── timeline.js │ │ ├── timeline.js.php │ │ ├── user.js │ │ ├── user.js.php │ │ ├── video.js │ │ ├── video.js.php │ │ ├── watch.js │ │ ├── watch.js.php │ │ ├── zone.js │ │ ├── zone.js.php │ │ ├── zones.js │ │ └── zones.js.php │ │ ├── log.php │ │ ├── login.php │ │ ├── map.php │ │ ├── monitor.php │ │ ├── monitorpreset.php │ │ ├── monitorprobe.php │ │ ├── monitors.php │ │ ├── montage.php │ │ ├── montagereview.php │ │ ├── none.php │ │ ├── onvifprobe.php │ │ ├── optionhelp.php │ │ ├── options.php │ │ ├── plugin.php │ │ ├── postlogin.php │ │ ├── privacy.php │ │ ├── report.php │ │ ├── report_event_audit.php │ │ ├── reports.php │ │ ├── snapshot.php │ │ ├── snapshots.php │ │ ├── stats.php │ │ ├── status.php │ │ ├── timeline.php │ │ ├── user.php │ │ ├── video.php │ │ ├── watch.php │ │ ├── zone.php │ │ └── zones.php ├── sounds │ └── snap.ogg ├── 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 │ ├── firebase │ │ └── php-jwt │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── composer.json │ │ │ └── src │ │ │ ├── BeforeValidException.php │ │ │ ├── ExpiredException.php │ │ │ ├── JWT.php │ │ │ └── SignatureInvalidException.php │ └── ircmaxell │ │ └── password-compat │ │ ├── LICENSE.md │ │ ├── composer.json │ │ ├── lib │ │ └── password.php │ │ └── version-test.php └── views │ ├── archive.php │ ├── image.php │ ├── no_database_connection.php │ └── view_video.php ├── zm.conf.in ├── zmconfgen.pl.in ├── zmlinkcontent.sh.in └── zoneminder-config.cmake /.cirrus.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/.cirrus.yml -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- 1 | .git 2 | -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.git-blame-ignore-revs: -------------------------------------------------------------------------------- 1 | # Reindent CMakeLists 2 | 6c9983155c65848a3e67976445cd20fb4fbfe108 -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/codeql/codeql-config.yml: -------------------------------------------------------------------------------- 1 | paths-ignore: 2 | - dep/ 3 | -------------------------------------------------------------------------------- /.github/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/.github/config.yml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/issue-close-app.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/.github/issue-close-app.yml -------------------------------------------------------------------------------- /.github/no-response.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/.github/no-response.yml -------------------------------------------------------------------------------- /.github/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/.github/stale.yml -------------------------------------------------------------------------------- /.github/support.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/.github/support.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/.gitlab-ci.yml -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/.gitmodules -------------------------------------------------------------------------------- /.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/.readthedocs.yaml -------------------------------------------------------------------------------- /.well-known/funding-manifest-urls: -------------------------------------------------------------------------------- 1 | https://zoneminder.com/funding.json 2 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/COPYING -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/SECURITY.md -------------------------------------------------------------------------------- /cmake/Modules/FindFmt.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/cmake/Modules/FindFmt.cmake -------------------------------------------------------------------------------- /cmake/Modules/FindV4L2.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/cmake/Modules/FindV4L2.cmake -------------------------------------------------------------------------------- /cmake/Modules/Pod2Man.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/cmake/Modules/Pod2Man.cmake -------------------------------------------------------------------------------- /cmakecacheimport.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/cmakecacheimport.sh -------------------------------------------------------------------------------- /code_of_conduct.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/code_of_conduct.md -------------------------------------------------------------------------------- /conf.d/02-multiserver.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/conf.d/02-multiserver.conf -------------------------------------------------------------------------------- /conf.d/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/conf.d/README -------------------------------------------------------------------------------- /db/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/db/CMakeLists.txt -------------------------------------------------------------------------------- /db/Object_Types.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/db/Object_Types.sql -------------------------------------------------------------------------------- /db/User_Preferences.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/db/User_Preferences.sql -------------------------------------------------------------------------------- /db/manufacturers.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/db/manufacturers.sql -------------------------------------------------------------------------------- /db/models.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/db/models.sql -------------------------------------------------------------------------------- /db/monitors_dbupdate.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/db/monitors_dbupdate.sql -------------------------------------------------------------------------------- /db/test.monitor.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/db/test.monitor.sql -------------------------------------------------------------------------------- /db/triggers.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/db/triggers.sql -------------------------------------------------------------------------------- /db/zm_create.sql.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/db/zm_create.sql.in -------------------------------------------------------------------------------- /db/zm_update-0.0.1.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/db/zm_update-0.0.1.sql -------------------------------------------------------------------------------- /db/zm_update-0.9.10.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/db/zm_update-0.9.10.sql -------------------------------------------------------------------------------- /db/zm_update-0.9.11.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/db/zm_update-0.9.11.sql -------------------------------------------------------------------------------- /db/zm_update-0.9.12.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/db/zm_update-0.9.12.sql -------------------------------------------------------------------------------- /db/zm_update-0.9.13.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/db/zm_update-0.9.13.sql -------------------------------------------------------------------------------- /db/zm_update-0.9.15.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/db/zm_update-0.9.15.sql -------------------------------------------------------------------------------- /db/zm_update-0.9.16.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/db/zm_update-0.9.16.sql -------------------------------------------------------------------------------- /db/zm_update-0.9.7.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/db/zm_update-0.9.7.sql -------------------------------------------------------------------------------- /db/zm_update-0.9.8.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/db/zm_update-0.9.8.sql -------------------------------------------------------------------------------- /db/zm_update-0.9.9.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/db/zm_update-0.9.9.sql -------------------------------------------------------------------------------- /db/zm_update-1.17.1.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/db/zm_update-1.17.1.sql -------------------------------------------------------------------------------- /db/zm_update-1.17.2.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/db/zm_update-1.17.2.sql -------------------------------------------------------------------------------- /db/zm_update-1.18.0.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/db/zm_update-1.18.0.sql -------------------------------------------------------------------------------- /db/zm_update-1.18.1.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/db/zm_update-1.18.1.sql -------------------------------------------------------------------------------- /db/zm_update-1.19.0.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/db/zm_update-1.19.0.sql -------------------------------------------------------------------------------- /db/zm_update-1.19.1.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/db/zm_update-1.19.1.sql -------------------------------------------------------------------------------- /db/zm_update-1.19.2.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/db/zm_update-1.19.2.sql -------------------------------------------------------------------------------- /db/zm_update-1.19.3.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/db/zm_update-1.19.3.sql -------------------------------------------------------------------------------- /db/zm_update-1.19.4.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/db/zm_update-1.19.4.sql -------------------------------------------------------------------------------- /db/zm_update-1.19.5.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/db/zm_update-1.19.5.sql -------------------------------------------------------------------------------- /db/zm_update-1.20.0.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/db/zm_update-1.20.0.sql -------------------------------------------------------------------------------- /db/zm_update-1.20.1.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/db/zm_update-1.20.1.sql -------------------------------------------------------------------------------- /db/zm_update-1.21.0.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/db/zm_update-1.21.0.sql -------------------------------------------------------------------------------- /db/zm_update-1.21.1.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/db/zm_update-1.21.1.sql -------------------------------------------------------------------------------- /db/zm_update-1.21.2.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/db/zm_update-1.21.2.sql -------------------------------------------------------------------------------- /db/zm_update-1.21.3.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/db/zm_update-1.21.3.sql -------------------------------------------------------------------------------- /db/zm_update-1.21.4.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/db/zm_update-1.21.4.sql -------------------------------------------------------------------------------- /db/zm_update-1.22.0.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/db/zm_update-1.22.0.sql -------------------------------------------------------------------------------- /db/zm_update-1.22.1.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/db/zm_update-1.22.1.sql -------------------------------------------------------------------------------- /db/zm_update-1.22.2.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/db/zm_update-1.22.2.sql -------------------------------------------------------------------------------- /db/zm_update-1.22.3.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/db/zm_update-1.22.3.sql -------------------------------------------------------------------------------- /db/zm_update-1.23.0.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/db/zm_update-1.23.0.sql -------------------------------------------------------------------------------- /db/zm_update-1.23.1.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/db/zm_update-1.23.1.sql -------------------------------------------------------------------------------- /db/zm_update-1.23.2.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/db/zm_update-1.23.2.sql -------------------------------------------------------------------------------- /db/zm_update-1.23.3.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/db/zm_update-1.23.3.sql -------------------------------------------------------------------------------- /db/zm_update-1.24.0.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/db/zm_update-1.24.0.sql -------------------------------------------------------------------------------- /db/zm_update-1.24.1.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/db/zm_update-1.24.1.sql -------------------------------------------------------------------------------- /db/zm_update-1.24.2.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/db/zm_update-1.24.2.sql -------------------------------------------------------------------------------- /db/zm_update-1.24.3.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/db/zm_update-1.24.3.sql -------------------------------------------------------------------------------- /db/zm_update-1.24.4.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/db/zm_update-1.24.4.sql -------------------------------------------------------------------------------- /db/zm_update-1.26.0.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/db/zm_update-1.26.0.sql -------------------------------------------------------------------------------- /db/zm_update-1.26.1.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/db/zm_update-1.26.1.sql -------------------------------------------------------------------------------- /db/zm_update-1.26.2.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/db/zm_update-1.26.2.sql -------------------------------------------------------------------------------- /db/zm_update-1.26.3.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/db/zm_update-1.26.3.sql -------------------------------------------------------------------------------- /db/zm_update-1.26.5.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/db/zm_update-1.26.5.sql -------------------------------------------------------------------------------- /db/zm_update-1.27.0.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/db/zm_update-1.27.0.sql -------------------------------------------------------------------------------- /db/zm_update-1.28.0.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/db/zm_update-1.28.0.sql -------------------------------------------------------------------------------- /db/zm_update-1.28.1.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE Monitors MODIFY Device tinytext; 2 | -------------------------------------------------------------------------------- /db/zm_update-1.28.100.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/db/zm_update-1.28.100.sql -------------------------------------------------------------------------------- /db/zm_update-1.28.101.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/db/zm_update-1.28.101.sql -------------------------------------------------------------------------------- /db/zm_update-1.28.102.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/db/zm_update-1.28.102.sql -------------------------------------------------------------------------------- /db/zm_update-1.28.103.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/db/zm_update-1.28.103.sql -------------------------------------------------------------------------------- /db/zm_update-1.28.104.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/db/zm_update-1.28.104.sql -------------------------------------------------------------------------------- /db/zm_update-1.28.105.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/db/zm_update-1.28.105.sql -------------------------------------------------------------------------------- /db/zm_update-1.28.106.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/db/zm_update-1.28.106.sql -------------------------------------------------------------------------------- /db/zm_update-1.28.107.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/db/zm_update-1.28.107.sql -------------------------------------------------------------------------------- /db/zm_update-1.28.108.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/db/zm_update-1.28.108.sql -------------------------------------------------------------------------------- /db/zm_update-1.28.109.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/db/zm_update-1.28.109.sql -------------------------------------------------------------------------------- /db/zm_update-1.28.110.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/db/zm_update-1.28.110.sql -------------------------------------------------------------------------------- /db/zm_update-1.28.99.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/db/zm_update-1.28.99.sql -------------------------------------------------------------------------------- /db/zm_update-1.29.0.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/db/zm_update-1.29.0.sql -------------------------------------------------------------------------------- /db/zm_update-1.30.0.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/db/zm_update-1.30.0.sql -------------------------------------------------------------------------------- /db/zm_update-1.30.1.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/db/zm_update-1.30.1.sql -------------------------------------------------------------------------------- /db/zm_update-1.30.2.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/db/zm_update-1.30.2.sql -------------------------------------------------------------------------------- /db/zm_update-1.30.3.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/db/zm_update-1.30.3.sql -------------------------------------------------------------------------------- /db/zm_update-1.30.4.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/db/zm_update-1.30.4.sql -------------------------------------------------------------------------------- /db/zm_update-1.31.0.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/db/zm_update-1.31.0.sql -------------------------------------------------------------------------------- /db/zm_update-1.31.1.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/db/zm_update-1.31.1.sql -------------------------------------------------------------------------------- /db/zm_update-1.31.10.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/db/zm_update-1.31.10.sql -------------------------------------------------------------------------------- /db/zm_update-1.31.11.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/db/zm_update-1.31.11.sql -------------------------------------------------------------------------------- /db/zm_update-1.31.12.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/db/zm_update-1.31.12.sql -------------------------------------------------------------------------------- /db/zm_update-1.31.13.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/db/zm_update-1.31.13.sql -------------------------------------------------------------------------------- /db/zm_update-1.31.14.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/db/zm_update-1.31.14.sql -------------------------------------------------------------------------------- /db/zm_update-1.31.15.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/db/zm_update-1.31.15.sql -------------------------------------------------------------------------------- /db/zm_update-1.31.16.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/db/zm_update-1.31.16.sql -------------------------------------------------------------------------------- /db/zm_update-1.31.17.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/db/zm_update-1.31.17.sql -------------------------------------------------------------------------------- /db/zm_update-1.31.18.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/db/zm_update-1.31.18.sql -------------------------------------------------------------------------------- /db/zm_update-1.31.19.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/db/zm_update-1.31.19.sql -------------------------------------------------------------------------------- /db/zm_update-1.31.2.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/db/zm_update-1.31.2.sql -------------------------------------------------------------------------------- /db/zm_update-1.31.20.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/db/zm_update-1.31.20.sql -------------------------------------------------------------------------------- /db/zm_update-1.31.21.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/db/zm_update-1.31.21.sql -------------------------------------------------------------------------------- /db/zm_update-1.31.22.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/db/zm_update-1.31.22.sql -------------------------------------------------------------------------------- /db/zm_update-1.31.23.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/db/zm_update-1.31.23.sql -------------------------------------------------------------------------------- /db/zm_update-1.31.24.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/db/zm_update-1.31.24.sql -------------------------------------------------------------------------------- /db/zm_update-1.31.25.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/db/zm_update-1.31.25.sql -------------------------------------------------------------------------------- /db/zm_update-1.31.26.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/db/zm_update-1.31.26.sql -------------------------------------------------------------------------------- /db/zm_update-1.31.27.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/db/zm_update-1.31.27.sql -------------------------------------------------------------------------------- /db/zm_update-1.31.28.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/db/zm_update-1.31.28.sql -------------------------------------------------------------------------------- /db/zm_update-1.31.29.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/db/zm_update-1.31.29.sql -------------------------------------------------------------------------------- /db/zm_update-1.31.3.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/db/zm_update-1.31.3.sql -------------------------------------------------------------------------------- /db/zm_update-1.31.30.sql.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/db/zm_update-1.31.30.sql.in -------------------------------------------------------------------------------- /db/zm_update-1.31.31.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE Storage MODIFY DiskSpace BIGINT default NULL; 2 | -------------------------------------------------------------------------------- /db/zm_update-1.31.32.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/db/zm_update-1.31.32.sql -------------------------------------------------------------------------------- /db/zm_update-1.31.33.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/db/zm_update-1.31.33.sql -------------------------------------------------------------------------------- /db/zm_update-1.31.34.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/db/zm_update-1.31.34.sql -------------------------------------------------------------------------------- /db/zm_update-1.31.35.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/db/zm_update-1.31.35.sql -------------------------------------------------------------------------------- /db/zm_update-1.31.36.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/db/zm_update-1.31.36.sql -------------------------------------------------------------------------------- /db/zm_update-1.31.37.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/db/zm_update-1.31.37.sql -------------------------------------------------------------------------------- /db/zm_update-1.31.38.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/db/zm_update-1.31.38.sql -------------------------------------------------------------------------------- /db/zm_update-1.31.39.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/db/zm_update-1.31.39.sql -------------------------------------------------------------------------------- /db/zm_update-1.31.4.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/db/zm_update-1.31.4.sql -------------------------------------------------------------------------------- /db/zm_update-1.31.40.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/db/zm_update-1.31.40.sql -------------------------------------------------------------------------------- /db/zm_update-1.31.41.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/db/zm_update-1.31.41.sql -------------------------------------------------------------------------------- /db/zm_update-1.31.42.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/db/zm_update-1.31.42.sql -------------------------------------------------------------------------------- /db/zm_update-1.31.43.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/db/zm_update-1.31.43.sql -------------------------------------------------------------------------------- /db/zm_update-1.31.44.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/db/zm_update-1.31.44.sql -------------------------------------------------------------------------------- /db/zm_update-1.31.45.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/db/zm_update-1.31.45.sql -------------------------------------------------------------------------------- /db/zm_update-1.31.46.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE Stats MODIFY COLUMN EventId bigint unsigned NOT NULL; 2 | 3 | -------------------------------------------------------------------------------- /db/zm_update-1.31.47.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE Frames MODIFY COLUMN EventId bigint unsigned NOT NULL; 2 | -------------------------------------------------------------------------------- /db/zm_update-1.31.5.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/db/zm_update-1.31.5.sql -------------------------------------------------------------------------------- /db/zm_update-1.31.6.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/db/zm_update-1.31.6.sql -------------------------------------------------------------------------------- /db/zm_update-1.31.7.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/db/zm_update-1.31.7.sql -------------------------------------------------------------------------------- /db/zm_update-1.31.8.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/db/zm_update-1.31.8.sql -------------------------------------------------------------------------------- /db/zm_update-1.31.9.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/db/zm_update-1.31.9.sql -------------------------------------------------------------------------------- /db/zm_update-1.32.0.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/db/zm_update-1.32.0.sql -------------------------------------------------------------------------------- /db/zm_update-1.32.1.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/db/zm_update-1.32.1.sql -------------------------------------------------------------------------------- /db/zm_update-1.32.2.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/db/zm_update-1.32.2.sql -------------------------------------------------------------------------------- /db/zm_update-1.32.3.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/db/zm_update-1.32.3.sql -------------------------------------------------------------------------------- /db/zm_update-1.33.0.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/db/zm_update-1.33.0.sql -------------------------------------------------------------------------------- /db/zm_update-1.33.1.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/db/zm_update-1.33.1.sql -------------------------------------------------------------------------------- /db/zm_update-1.33.10.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/db/zm_update-1.33.10.sql -------------------------------------------------------------------------------- /db/zm_update-1.33.11.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/db/zm_update-1.33.11.sql -------------------------------------------------------------------------------- /db/zm_update-1.33.12.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/db/zm_update-1.33.12.sql -------------------------------------------------------------------------------- /db/zm_update-1.33.13.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/db/zm_update-1.33.13.sql -------------------------------------------------------------------------------- /db/zm_update-1.33.14.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/db/zm_update-1.33.14.sql -------------------------------------------------------------------------------- /db/zm_update-1.33.15.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/db/zm_update-1.33.15.sql -------------------------------------------------------------------------------- /db/zm_update-1.33.16.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/db/zm_update-1.33.16.sql -------------------------------------------------------------------------------- /db/zm_update-1.33.2.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/db/zm_update-1.33.2.sql -------------------------------------------------------------------------------- /db/zm_update-1.33.3.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/db/zm_update-1.33.3.sql -------------------------------------------------------------------------------- /db/zm_update-1.33.4.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/db/zm_update-1.33.4.sql -------------------------------------------------------------------------------- /db/zm_update-1.33.5.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/db/zm_update-1.33.5.sql -------------------------------------------------------------------------------- /db/zm_update-1.33.6.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE Users MODIFY MonitorIds text; 2 | -------------------------------------------------------------------------------- /db/zm_update-1.33.7.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/db/zm_update-1.33.7.sql -------------------------------------------------------------------------------- /db/zm_update-1.33.8.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/db/zm_update-1.33.8.sql -------------------------------------------------------------------------------- /db/zm_update-1.33.9.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/db/zm_update-1.33.9.sql -------------------------------------------------------------------------------- /db/zm_update-1.34.0.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/db/zm_update-1.34.0.sql -------------------------------------------------------------------------------- /db/zm_update-1.34.1.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/db/zm_update-1.34.1.sql -------------------------------------------------------------------------------- /db/zm_update-1.34.2.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/db/zm_update-1.34.2.sql -------------------------------------------------------------------------------- /db/zm_update-1.34.20.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/db/zm_update-1.34.20.sql -------------------------------------------------------------------------------- /db/zm_update-1.34.3.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/db/zm_update-1.34.3.sql -------------------------------------------------------------------------------- /db/zm_update-1.34.4.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/db/zm_update-1.34.4.sql -------------------------------------------------------------------------------- /db/zm_update-1.34.5.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/db/zm_update-1.34.5.sql -------------------------------------------------------------------------------- /db/zm_update-1.34.6.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/db/zm_update-1.34.6.sql -------------------------------------------------------------------------------- /db/zm_update-1.34.7.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/db/zm_update-1.34.7.sql -------------------------------------------------------------------------------- /db/zm_update-1.35.0.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/db/zm_update-1.35.0.sql -------------------------------------------------------------------------------- /db/zm_update-1.35.1.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/db/zm_update-1.35.1.sql -------------------------------------------------------------------------------- /db/zm_update-1.35.10.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/db/zm_update-1.35.10.sql -------------------------------------------------------------------------------- /db/zm_update-1.35.11.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/db/zm_update-1.35.11.sql -------------------------------------------------------------------------------- /db/zm_update-1.35.12.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/db/zm_update-1.35.12.sql -------------------------------------------------------------------------------- /db/zm_update-1.35.13.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/db/zm_update-1.35.13.sql -------------------------------------------------------------------------------- /db/zm_update-1.35.14.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/db/zm_update-1.35.14.sql -------------------------------------------------------------------------------- /db/zm_update-1.35.15.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/db/zm_update-1.35.15.sql -------------------------------------------------------------------------------- /db/zm_update-1.35.16.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/db/zm_update-1.35.16.sql -------------------------------------------------------------------------------- /db/zm_update-1.35.17.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/db/zm_update-1.35.17.sql -------------------------------------------------------------------------------- /db/zm_update-1.35.18.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/db/zm_update-1.35.18.sql -------------------------------------------------------------------------------- /db/zm_update-1.35.19.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/db/zm_update-1.35.19.sql -------------------------------------------------------------------------------- /db/zm_update-1.35.2.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/db/zm_update-1.35.2.sql -------------------------------------------------------------------------------- /db/zm_update-1.35.20.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/db/zm_update-1.35.20.sql -------------------------------------------------------------------------------- /db/zm_update-1.35.21.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/db/zm_update-1.35.21.sql -------------------------------------------------------------------------------- /db/zm_update-1.35.22.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/db/zm_update-1.35.22.sql -------------------------------------------------------------------------------- /db/zm_update-1.35.23.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/db/zm_update-1.35.23.sql -------------------------------------------------------------------------------- /db/zm_update-1.35.24.sql.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/db/zm_update-1.35.24.sql.in -------------------------------------------------------------------------------- /db/zm_update-1.35.25.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/db/zm_update-1.35.25.sql -------------------------------------------------------------------------------- /db/zm_update-1.35.26.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/db/zm_update-1.35.26.sql -------------------------------------------------------------------------------- /db/zm_update-1.35.27.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/db/zm_update-1.35.27.sql -------------------------------------------------------------------------------- /db/zm_update-1.35.28.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/db/zm_update-1.35.28.sql -------------------------------------------------------------------------------- /db/zm_update-1.35.29.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/db/zm_update-1.35.29.sql -------------------------------------------------------------------------------- /db/zm_update-1.35.3.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/db/zm_update-1.35.3.sql -------------------------------------------------------------------------------- /db/zm_update-1.35.4.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/db/zm_update-1.35.4.sql -------------------------------------------------------------------------------- /db/zm_update-1.35.5.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/db/zm_update-1.35.5.sql -------------------------------------------------------------------------------- /db/zm_update-1.35.6.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/db/zm_update-1.35.6.sql -------------------------------------------------------------------------------- /db/zm_update-1.35.7.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/db/zm_update-1.35.7.sql -------------------------------------------------------------------------------- /db/zm_update-1.35.8.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/db/zm_update-1.35.8.sql -------------------------------------------------------------------------------- /db/zm_update-1.35.9.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/db/zm_update-1.35.9.sql -------------------------------------------------------------------------------- /db/zm_update-1.36.20.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/db/zm_update-1.36.20.sql -------------------------------------------------------------------------------- /db/zm_update-1.36.6.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE `Monitors` MODIFY `Longitude` DECIMAL(11,8); 2 | -------------------------------------------------------------------------------- /db/zm_update-1.37.1.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE `Monitors` MODIFY `Longitude` DECIMAL(11,8); 2 | -------------------------------------------------------------------------------- /db/zm_update-1.37.10.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/db/zm_update-1.37.10.sql -------------------------------------------------------------------------------- /db/zm_update-1.37.11.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/db/zm_update-1.37.11.sql -------------------------------------------------------------------------------- /db/zm_update-1.37.12.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/db/zm_update-1.37.12.sql -------------------------------------------------------------------------------- /db/zm_update-1.37.13.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/db/zm_update-1.37.13.sql -------------------------------------------------------------------------------- /db/zm_update-1.37.14.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/db/zm_update-1.37.14.sql -------------------------------------------------------------------------------- /db/zm_update-1.37.15.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/db/zm_update-1.37.15.sql -------------------------------------------------------------------------------- /db/zm_update-1.37.16.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/db/zm_update-1.37.16.sql -------------------------------------------------------------------------------- /db/zm_update-1.37.17.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/db/zm_update-1.37.17.sql -------------------------------------------------------------------------------- /db/zm_update-1.37.18.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/db/zm_update-1.37.18.sql -------------------------------------------------------------------------------- /db/zm_update-1.37.19.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/db/zm_update-1.37.19.sql -------------------------------------------------------------------------------- /db/zm_update-1.37.2.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/db/zm_update-1.37.2.sql -------------------------------------------------------------------------------- /db/zm_update-1.37.20.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/db/zm_update-1.37.20.sql -------------------------------------------------------------------------------- /db/zm_update-1.37.21.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/db/zm_update-1.37.21.sql -------------------------------------------------------------------------------- /db/zm_update-1.37.22.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/db/zm_update-1.37.22.sql -------------------------------------------------------------------------------- /db/zm_update-1.37.23.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/db/zm_update-1.37.23.sql -------------------------------------------------------------------------------- /db/zm_update-1.37.25.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/db/zm_update-1.37.25.sql -------------------------------------------------------------------------------- /db/zm_update-1.37.26.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/db/zm_update-1.37.26.sql -------------------------------------------------------------------------------- /db/zm_update-1.37.27.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/db/zm_update-1.37.27.sql -------------------------------------------------------------------------------- /db/zm_update-1.37.28.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/db/zm_update-1.37.28.sql -------------------------------------------------------------------------------- /db/zm_update-1.37.29.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/db/zm_update-1.37.29.sql -------------------------------------------------------------------------------- /db/zm_update-1.37.3.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/db/zm_update-1.37.3.sql -------------------------------------------------------------------------------- /db/zm_update-1.37.30.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/db/zm_update-1.37.30.sql -------------------------------------------------------------------------------- /db/zm_update-1.37.31.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/db/zm_update-1.37.31.sql -------------------------------------------------------------------------------- /db/zm_update-1.37.32.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/db/zm_update-1.37.32.sql -------------------------------------------------------------------------------- /db/zm_update-1.37.34.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/db/zm_update-1.37.34.sql -------------------------------------------------------------------------------- /db/zm_update-1.37.35.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/db/zm_update-1.37.35.sql -------------------------------------------------------------------------------- /db/zm_update-1.37.36.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/db/zm_update-1.37.36.sql -------------------------------------------------------------------------------- /db/zm_update-1.37.37.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/db/zm_update-1.37.37.sql -------------------------------------------------------------------------------- /db/zm_update-1.37.38.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/db/zm_update-1.37.38.sql -------------------------------------------------------------------------------- /db/zm_update-1.37.39.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/db/zm_update-1.37.39.sql -------------------------------------------------------------------------------- /db/zm_update-1.37.4.sql.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/db/zm_update-1.37.4.sql.in -------------------------------------------------------------------------------- /db/zm_update-1.37.40.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/db/zm_update-1.37.40.sql -------------------------------------------------------------------------------- /db/zm_update-1.37.41.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/db/zm_update-1.37.41.sql -------------------------------------------------------------------------------- /db/zm_update-1.37.42.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/db/zm_update-1.37.42.sql -------------------------------------------------------------------------------- /db/zm_update-1.37.43.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/db/zm_update-1.37.43.sql -------------------------------------------------------------------------------- /db/zm_update-1.37.44.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/db/zm_update-1.37.44.sql -------------------------------------------------------------------------------- /db/zm_update-1.37.45.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/db/zm_update-1.37.45.sql -------------------------------------------------------------------------------- /db/zm_update-1.37.46.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/db/zm_update-1.37.46.sql -------------------------------------------------------------------------------- /db/zm_update-1.37.47.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/db/zm_update-1.37.47.sql -------------------------------------------------------------------------------- /db/zm_update-1.37.48.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/db/zm_update-1.37.48.sql -------------------------------------------------------------------------------- /db/zm_update-1.37.49.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE Users MODIFY Phone varchar(64) NOT NULL default ''; 2 | -------------------------------------------------------------------------------- /db/zm_update-1.37.5.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/db/zm_update-1.37.5.sql -------------------------------------------------------------------------------- /db/zm_update-1.37.50.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/db/zm_update-1.37.50.sql -------------------------------------------------------------------------------- /db/zm_update-1.37.51.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/db/zm_update-1.37.51.sql -------------------------------------------------------------------------------- /db/zm_update-1.37.52.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/db/zm_update-1.37.52.sql -------------------------------------------------------------------------------- /db/zm_update-1.37.53.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/db/zm_update-1.37.53.sql -------------------------------------------------------------------------------- /db/zm_update-1.37.54.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/db/zm_update-1.37.54.sql -------------------------------------------------------------------------------- /db/zm_update-1.37.55.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/db/zm_update-1.37.55.sql -------------------------------------------------------------------------------- /db/zm_update-1.37.56.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/db/zm_update-1.37.56.sql -------------------------------------------------------------------------------- /db/zm_update-1.37.57.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/db/zm_update-1.37.57.sql -------------------------------------------------------------------------------- /db/zm_update-1.37.58.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/db/zm_update-1.37.58.sql -------------------------------------------------------------------------------- /db/zm_update-1.37.59.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/db/zm_update-1.37.59.sql -------------------------------------------------------------------------------- /db/zm_update-1.37.6.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/db/zm_update-1.37.6.sql -------------------------------------------------------------------------------- /db/zm_update-1.37.60.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/db/zm_update-1.37.60.sql -------------------------------------------------------------------------------- /db/zm_update-1.37.62.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/db/zm_update-1.37.62.sql -------------------------------------------------------------------------------- /db/zm_update-1.37.63.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/db/zm_update-1.37.63.sql -------------------------------------------------------------------------------- /db/zm_update-1.37.66.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/db/zm_update-1.37.66.sql -------------------------------------------------------------------------------- /db/zm_update-1.37.67.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/db/zm_update-1.37.67.sql -------------------------------------------------------------------------------- /db/zm_update-1.37.68.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/db/zm_update-1.37.68.sql -------------------------------------------------------------------------------- /db/zm_update-1.37.69.sql.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/db/zm_update-1.37.69.sql.in -------------------------------------------------------------------------------- /db/zm_update-1.37.7.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/db/zm_update-1.37.7.sql -------------------------------------------------------------------------------- /db/zm_update-1.37.70.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/db/zm_update-1.37.70.sql -------------------------------------------------------------------------------- /db/zm_update-1.37.71.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/db/zm_update-1.37.71.sql -------------------------------------------------------------------------------- /db/zm_update-1.37.72.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/db/zm_update-1.37.72.sql -------------------------------------------------------------------------------- /db/zm_update-1.37.73.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/db/zm_update-1.37.73.sql -------------------------------------------------------------------------------- /db/zm_update-1.37.8.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/db/zm_update-1.37.8.sql -------------------------------------------------------------------------------- /db/zm_update-1.37.9.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/db/zm_update-1.37.9.sql -------------------------------------------------------------------------------- /dep/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/dep/CMakeLists.txt -------------------------------------------------------------------------------- /dep/jwt-cpp/.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/dep/jwt-cpp/.clang-format -------------------------------------------------------------------------------- /dep/jwt-cpp/.clang-tidy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/dep/jwt-cpp/.clang-tidy -------------------------------------------------------------------------------- /dep/jwt-cpp/.cmake-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/dep/jwt-cpp/.cmake-format -------------------------------------------------------------------------------- /dep/jwt-cpp/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/dep/jwt-cpp/.editorconfig -------------------------------------------------------------------------------- /dep/jwt-cpp/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/dep/jwt-cpp/.gitattributes -------------------------------------------------------------------------------- /dep/jwt-cpp/.github/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/dep/jwt-cpp/.github/logo.svg -------------------------------------------------------------------------------- /dep/jwt-cpp/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/dep/jwt-cpp/.gitignore -------------------------------------------------------------------------------- /dep/jwt-cpp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/dep/jwt-cpp/CMakeLists.txt -------------------------------------------------------------------------------- /dep/jwt-cpp/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/dep/jwt-cpp/Doxyfile -------------------------------------------------------------------------------- /dep/jwt-cpp/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/dep/jwt-cpp/LICENSE -------------------------------------------------------------------------------- /dep/jwt-cpp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/dep/jwt-cpp/README.md -------------------------------------------------------------------------------- /dep/jwt-cpp/docs/faqs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/dep/jwt-cpp/docs/faqs.md -------------------------------------------------------------------------------- /dep/jwt-cpp/docs/signing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/dep/jwt-cpp/docs/signing.md -------------------------------------------------------------------------------- /dep/jwt-cpp/docs/ssl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/dep/jwt-cpp/docs/ssl.md -------------------------------------------------------------------------------- /dep/jwt-cpp/docs/traits.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/dep/jwt-cpp/docs/traits.md -------------------------------------------------------------------------------- /dep/jwt-cpp/tests/Keys.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/dep/jwt-cpp/tests/Keys.cpp -------------------------------------------------------------------------------- /dep/jwt-cpp/tests/fuzz/decode-corpus/086a3aa337038cac8a75a05131444f222e48aee8: -------------------------------------------------------------------------------- 1 | FMF= -------------------------------------------------------------------------------- /dep/jwt-cpp/tests/fuzz/decode-corpus/8ebaef2304e91465585c8d7fcf4d9f939e08d6b4: -------------------------------------------------------------------------------- 1 | eCy -------------------------------------------------------------------------------- /dep/jwt-cpp/tests/fuzz/decode-corpus/ba528234d9f6949ed9c9626c08a782f6e7c15b8b: -------------------------------------------------------------------------------- 1 | FF== -------------------------------------------------------------------------------- /dep/jwt-cpp/tests/fuzz/decode-corpus/e8f531caaa67cecb1c7b162f3e1d4e320d79befd: -------------------------------------------------------------------------------- 1 | eCyI -------------------------------------------------------------------------------- /dep/jwt-cpp/tests/fuzz/token-corpus/9d891e731f75deae56884d79e9816736b7488080: -------------------------------------------------------------------------------- 1 | .. -------------------------------------------------------------------------------- /dep/jwt-cpp/tests/fuzz/token-corpus/ff384e2421a333cd52f259cec14c7f790d595db9: -------------------------------------------------------------------------------- 1 | eyJhbGci.. -------------------------------------------------------------------------------- /dep/libbcrypt/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/dep/libbcrypt/CMakeLists.txt -------------------------------------------------------------------------------- /dep/libbcrypt/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/dep/libbcrypt/LICENSE -------------------------------------------------------------------------------- /dep/libbcrypt/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/dep/libbcrypt/README.md -------------------------------------------------------------------------------- /dep/libbcrypt/src/bcrypt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/dep/libbcrypt/src/bcrypt.c -------------------------------------------------------------------------------- /dep/libbcrypt/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/dep/libbcrypt/src/main.cpp -------------------------------------------------------------------------------- /dep/libbcrypt/src/wrapper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/dep/libbcrypt/src/wrapper.c -------------------------------------------------------------------------------- /dep/libbcrypt/src/x86.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/dep/libbcrypt/src/x86.S -------------------------------------------------------------------------------- /dep/span-lite/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/dep/span-lite/CMakeLists.txt -------------------------------------------------------------------------------- /dep/span-lite/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/dep/span-lite/LICENSE.txt -------------------------------------------------------------------------------- /dep/span-lite/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/dep/span-lite/README.md -------------------------------------------------------------------------------- /distros/beowulf/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/distros/beowulf/NEWS -------------------------------------------------------------------------------- /distros/beowulf/TODO.Debian: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/distros/beowulf/TODO.Debian -------------------------------------------------------------------------------- /distros/beowulf/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/distros/beowulf/changelog -------------------------------------------------------------------------------- /distros/beowulf/clean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/distros/beowulf/clean -------------------------------------------------------------------------------- /distros/beowulf/compat: -------------------------------------------------------------------------------- 1 | 9 2 | -------------------------------------------------------------------------------- /distros/beowulf/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/distros/beowulf/control -------------------------------------------------------------------------------- /distros/beowulf/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/distros/beowulf/copyright -------------------------------------------------------------------------------- /distros/beowulf/gbp.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/distros/beowulf/gbp.conf -------------------------------------------------------------------------------- /distros/beowulf/patches/series: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /distros/beowulf/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/distros/beowulf/rules -------------------------------------------------------------------------------- /distros/beowulf/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /distros/beowulf/zoneminder.docs: -------------------------------------------------------------------------------- 1 | README.md 2 | -------------------------------------------------------------------------------- /distros/beowulf/zoneminder.examples: -------------------------------------------------------------------------------- 1 | debian/examples/* 2 | dbuild/misc/apache.conf 3 | -------------------------------------------------------------------------------- /distros/beowulf/zoneminder.maintscript: -------------------------------------------------------------------------------- 1 | rm_conffile /etc/zm/apache.conf 1.28.1-5~ 2 | -------------------------------------------------------------------------------- /distros/beowulf/zoneminder.manpages: -------------------------------------------------------------------------------- 1 | docs/_build/man/*.1 2 | -------------------------------------------------------------------------------- /distros/debian/README.Debian: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/distros/debian/README.Debian -------------------------------------------------------------------------------- /distros/debian/apache.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/distros/debian/apache.conf -------------------------------------------------------------------------------- /distros/debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/distros/debian/changelog -------------------------------------------------------------------------------- /distros/debian/compat: -------------------------------------------------------------------------------- 1 | 9 2 | -------------------------------------------------------------------------------- /distros/debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/distros/debian/control -------------------------------------------------------------------------------- /distros/debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/distros/debian/copyright -------------------------------------------------------------------------------- /distros/debian/dirs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/distros/debian/dirs -------------------------------------------------------------------------------- /distros/debian/docs: -------------------------------------------------------------------------------- 1 | README.md 2 | -------------------------------------------------------------------------------- /distros/debian/init.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/distros/debian/init.d -------------------------------------------------------------------------------- /distros/debian/install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/distros/debian/install -------------------------------------------------------------------------------- /distros/debian/links: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/distros/debian/links -------------------------------------------------------------------------------- /distros/debian/postinst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/distros/debian/postinst -------------------------------------------------------------------------------- /distros/debian/postrm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/distros/debian/postrm -------------------------------------------------------------------------------- /distros/debian/preinst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/distros/debian/preinst -------------------------------------------------------------------------------- /distros/debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/distros/debian/rules -------------------------------------------------------------------------------- /distros/debian/watch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/distros/debian/watch -------------------------------------------------------------------------------- /distros/fedora: -------------------------------------------------------------------------------- 1 | redhat -------------------------------------------------------------------------------- /distros/opensuse/redalert.wav: -------------------------------------------------------------------------------- 1 | ../redhat/common/redalert.wav -------------------------------------------------------------------------------- /distros/podman/Containerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/distros/podman/Containerfile -------------------------------------------------------------------------------- /distros/redhat/readme/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/distros/redhat/readme/README -------------------------------------------------------------------------------- /distros/ubuntu1504_cmake_split_packages/compat: -------------------------------------------------------------------------------- 1 | 9 2 | -------------------------------------------------------------------------------- /distros/ubuntu1504_cmake_split_packages/docs: -------------------------------------------------------------------------------- 1 | README.md 2 | -------------------------------------------------------------------------------- /distros/ubuntu1504_cmake_split_packages/patches/series: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /distros/ubuntu1504_cmake_split_packages/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (native) 2 | -------------------------------------------------------------------------------- /distros/ubuntu1504_cmake_split_packages/source/local-options: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /distros/ubuntu1504_cmake_split_packages/zoneminder-database.install: -------------------------------------------------------------------------------- 1 | usr/share/zoneminder/db 2 | -------------------------------------------------------------------------------- /distros/ubuntu1504_cmake_split_packages/zoneminder-ui-api.install: -------------------------------------------------------------------------------- 1 | usr/share/zoneminder/api 2 | -------------------------------------------------------------------------------- /distros/ubuntu1504_cmake_split_packages/zoneminder-ui-classic.install: -------------------------------------------------------------------------------- 1 | usr/share/zoneminder/skins/classic 2 | -------------------------------------------------------------------------------- /distros/ubuntu2004/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/distros/ubuntu2004/NEWS -------------------------------------------------------------------------------- /distros/ubuntu2004/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/distros/ubuntu2004/TODO -------------------------------------------------------------------------------- /distros/ubuntu2004/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/distros/ubuntu2004/changelog -------------------------------------------------------------------------------- /distros/ubuntu2004/clean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/distros/ubuntu2004/clean -------------------------------------------------------------------------------- /distros/ubuntu2004/compat: -------------------------------------------------------------------------------- 1 | 12 2 | -------------------------------------------------------------------------------- /distros/ubuntu2004/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/distros/ubuntu2004/control -------------------------------------------------------------------------------- /distros/ubuntu2004/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/distros/ubuntu2004/copyright -------------------------------------------------------------------------------- /distros/ubuntu2004/gbp.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/distros/ubuntu2004/gbp.conf -------------------------------------------------------------------------------- /distros/ubuntu2004/patches/series: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /distros/ubuntu2004/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/distros/ubuntu2004/rules -------------------------------------------------------------------------------- /distros/ubuntu2004/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /distros/ubuntu2004/zoneminder.docs: -------------------------------------------------------------------------------- 1 | README.md 2 | -------------------------------------------------------------------------------- /distros/ubuntu2004/zoneminder.examples: -------------------------------------------------------------------------------- 1 | debian/examples/* 2 | dbuild/misc/apache.conf 3 | -------------------------------------------------------------------------------- /distros/ubuntu2004/zoneminder.maintscript: -------------------------------------------------------------------------------- 1 | rm_conffile /etc/zm/apache.conf 1.28.1-5~ 2 | -------------------------------------------------------------------------------- /distros/ubuntu2004/zoneminder.manpages: -------------------------------------------------------------------------------- 1 | docs/_build/man/*.1 2 | -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/_static/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/docs/_static/README.txt -------------------------------------------------------------------------------- /docs/_static/zmstyle.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/docs/_static/zmstyle.css -------------------------------------------------------------------------------- /docs/api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/docs/api.rst -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/contributing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/docs/contributing.rst -------------------------------------------------------------------------------- /docs/faq.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/docs/faq.rst -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/docs/requirements.txt -------------------------------------------------------------------------------- /docs/userguide/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/docs/userguide/index.rst -------------------------------------------------------------------------------- /docs/userguide/logging.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/docs/userguide/logging.rst -------------------------------------------------------------------------------- /docs/userguide/mobile.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/docs/userguide/mobile.rst -------------------------------------------------------------------------------- /docs/userguide/options.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/docs/userguide/options.rst -------------------------------------------------------------------------------- /docs/userguide/tags.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/docs/userguide/tags.rst -------------------------------------------------------------------------------- /docs/web_ui_api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/docs/web_ui_api.rst -------------------------------------------------------------------------------- /email_content/template.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/email_content/template.php -------------------------------------------------------------------------------- /eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/eslint.config.js -------------------------------------------------------------------------------- /fonts/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/fonts/CMakeLists.txt -------------------------------------------------------------------------------- /fonts/default.zmfnt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/fonts/default.zmfnt -------------------------------------------------------------------------------- /funding.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/funding.json -------------------------------------------------------------------------------- /icons/16x16/icon.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/icons/16x16/icon.xpm -------------------------------------------------------------------------------- /misc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/misc/CMakeLists.txt -------------------------------------------------------------------------------- /misc/MacVendors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/misc/MacVendors.json -------------------------------------------------------------------------------- /misc/apache-cors.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/misc/apache-cors.conf -------------------------------------------------------------------------------- /misc/apache.conf.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/misc/apache.conf.in -------------------------------------------------------------------------------- /misc/fail2ban.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/misc/fail2ban.rules -------------------------------------------------------------------------------- /misc/janus.jcfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/misc/janus.jcfg -------------------------------------------------------------------------------- /misc/logcheck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/misc/logcheck -------------------------------------------------------------------------------- /misc/logrotate.conf.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/misc/logrotate.conf.in -------------------------------------------------------------------------------- /misc/nginx.conf.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/misc/nginx.conf.in -------------------------------------------------------------------------------- /misc/syslog.conf.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/misc/syslog.conf.in -------------------------------------------------------------------------------- /misc/zm-sudo.in: -------------------------------------------------------------------------------- 1 | @WEB_USER@ ALL=NOPASSWD: @SBINDDIR@/shutdown 2 | -------------------------------------------------------------------------------- /misc/zoneminder.desktop.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/misc/zoneminder.desktop.in -------------------------------------------------------------------------------- /misc/zoneminder.monit.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/misc/zoneminder.monit.conf -------------------------------------------------------------------------------- /misc/zoneminder.service.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/misc/zoneminder.service.in -------------------------------------------------------------------------------- /onvif/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/onvif/.gitignore -------------------------------------------------------------------------------- /onvif/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/onvif/CMakeLists.txt -------------------------------------------------------------------------------- /onvif/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/onvif/README -------------------------------------------------------------------------------- /onvif/doc/monitor.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/onvif/doc/monitor.jpg -------------------------------------------------------------------------------- /onvif/doc/monitor2a.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/onvif/doc/monitor2a.jpg -------------------------------------------------------------------------------- /onvif/doc/monitor2b.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/onvif/doc/monitor2b.jpg -------------------------------------------------------------------------------- /onvif/doc/onvifprobe1a.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/onvif/doc/onvifprobe1a.jpg -------------------------------------------------------------------------------- /onvif/doc/onvifprobe1b.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/onvif/doc/onvifprobe1b.jpg -------------------------------------------------------------------------------- /onvif/doc/onvifprobe2a.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/onvif/doc/onvifprobe2a.jpg -------------------------------------------------------------------------------- /onvif/doc/onvifprobe2b.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/onvif/doc/onvifprobe2b.jpg -------------------------------------------------------------------------------- /onvif/modules/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/onvif/modules/CMakeLists.txt -------------------------------------------------------------------------------- /onvif/modules/Makefile.PL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/onvif/modules/Makefile.PL -------------------------------------------------------------------------------- /onvif/proxy/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/onvif/proxy/CMakeLists.txt -------------------------------------------------------------------------------- /onvif/proxy/Makefile.PL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/onvif/proxy/Makefile.PL -------------------------------------------------------------------------------- /onvif/wsdl/analytics.wsdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/onvif/wsdl/analytics.wsdl -------------------------------------------------------------------------------- /onvif/wsdl/b-2.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/onvif/wsdl/b-2.xsd -------------------------------------------------------------------------------- /onvif/wsdl/bf-2.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/onvif/wsdl/bf-2.xsd -------------------------------------------------------------------------------- /onvif/wsdl/br-2.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/onvif/wsdl/br-2.xsd -------------------------------------------------------------------------------- /onvif/wsdl/brw-2.wsdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/onvif/wsdl/brw-2.wsdl -------------------------------------------------------------------------------- /onvif/wsdl/bw-2.wsdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/onvif/wsdl/bw-2.wsdl -------------------------------------------------------------------------------- /onvif/wsdl/devicemgmt.wsdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/onvif/wsdl/devicemgmt.wsdl -------------------------------------------------------------------------------- /onvif/wsdl/media.wsdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/onvif/wsdl/media.wsdl -------------------------------------------------------------------------------- /onvif/wsdl/onvif-local.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/onvif/wsdl/onvif-local.xsd -------------------------------------------------------------------------------- /onvif/wsdl/onvif.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/onvif/wsdl/onvif.xsd -------------------------------------------------------------------------------- /onvif/wsdl/ptz.wsdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/onvif/wsdl/ptz.wsdl -------------------------------------------------------------------------------- /onvif/wsdl/r-2.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/onvif/wsdl/r-2.xsd -------------------------------------------------------------------------------- /onvif/wsdl/rw-2.wsdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/onvif/wsdl/rw-2.wsdl -------------------------------------------------------------------------------- /onvif/wsdl/soap-envelop.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/onvif/wsdl/soap-envelop.xsd -------------------------------------------------------------------------------- /onvif/wsdl/t-1.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/onvif/wsdl/t-1.xsd -------------------------------------------------------------------------------- /onvif/wsdl/wsdl.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/onvif/wsdl/wsdl.xsd -------------------------------------------------------------------------------- /onvif/wsdl/wsdl11soap12.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/onvif/wsdl/wsdl11soap12.xsd -------------------------------------------------------------------------------- /onvif/wsdl/xmlmime.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/onvif/wsdl/xmlmime.xsd -------------------------------------------------------------------------------- /onvif/wsdl/xop-include.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/onvif/wsdl/xop-include.xsd -------------------------------------------------------------------------------- /scripts/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/scripts/CMakeLists.txt -------------------------------------------------------------------------------- /scripts/ZoneMinder/Changes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/scripts/ZoneMinder/Changes -------------------------------------------------------------------------------- /scripts/ZoneMinder/INSTALL.SKIP: -------------------------------------------------------------------------------- 1 | \.pm\.in$ 2 | -------------------------------------------------------------------------------- /scripts/ZoneMinder/MANIFEST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/scripts/ZoneMinder/MANIFEST -------------------------------------------------------------------------------- /scripts/ZoneMinder/MANIFEST.SKIP: -------------------------------------------------------------------------------- 1 | \.pm\.in$ 2 | -------------------------------------------------------------------------------- /scripts/ZoneMinder/META.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/scripts/ZoneMinder/META.yml -------------------------------------------------------------------------------- /scripts/ZoneMinder/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/scripts/ZoneMinder/README -------------------------------------------------------------------------------- /scripts/zm.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/scripts/zm.in -------------------------------------------------------------------------------- /scripts/zmalarm-server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/scripts/zmalarm-server.py -------------------------------------------------------------------------------- /scripts/zmaudit.pl.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/scripts/zmaudit.pl.in -------------------------------------------------------------------------------- /scripts/zmcamtool.pl.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/scripts/zmcamtool.pl.in -------------------------------------------------------------------------------- /scripts/zmcontrol.pl.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/scripts/zmcontrol.pl.in -------------------------------------------------------------------------------- /scripts/zmdbbackup.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/scripts/zmdbbackup.in -------------------------------------------------------------------------------- /scripts/zmdbrestore.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/scripts/zmdbrestore.in -------------------------------------------------------------------------------- /scripts/zmdc.pl.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/scripts/zmdc.pl.in -------------------------------------------------------------------------------- /scripts/zmeventdump.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/scripts/zmeventdump.in -------------------------------------------------------------------------------- /scripts/zmeventtool.pl.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/scripts/zmeventtool.pl.in -------------------------------------------------------------------------------- /scripts/zmfilter.pl.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/scripts/zmfilter.pl.in -------------------------------------------------------------------------------- /scripts/zmlogrotate.conf.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/scripts/zmlogrotate.conf.in -------------------------------------------------------------------------------- /scripts/zmonvif-probe.pl.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/scripts/zmonvif-probe.pl.in -------------------------------------------------------------------------------- /scripts/zmpkg.pl.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/scripts/zmpkg.pl.in -------------------------------------------------------------------------------- /scripts/zmrecover.pl.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/scripts/zmrecover.pl.in -------------------------------------------------------------------------------- /scripts/zmstats.pl.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/scripts/zmstats.pl.in -------------------------------------------------------------------------------- /scripts/zmsystemctl.pl.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/scripts/zmsystemctl.pl.in -------------------------------------------------------------------------------- /scripts/zmtelemetry.pl.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/scripts/zmtelemetry.pl.in -------------------------------------------------------------------------------- /scripts/zmtrack.pl.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/scripts/zmtrack.pl.in -------------------------------------------------------------------------------- /scripts/zmtrigger.pl.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/scripts/zmtrigger.pl.in -------------------------------------------------------------------------------- /scripts/zmupdate.pl.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/scripts/zmupdate.pl.in -------------------------------------------------------------------------------- /scripts/zmvideo.pl.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/scripts/zmvideo.pl.in -------------------------------------------------------------------------------- /scripts/zmwatch.pl.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/scripts/zmwatch.pl.in -------------------------------------------------------------------------------- /scripts/zmx10.pl.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/scripts/zmx10.pl.in -------------------------------------------------------------------------------- /src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/src/CMakeLists.txt -------------------------------------------------------------------------------- /src/bindings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/src/bindings.h -------------------------------------------------------------------------------- /src/jinclude.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/src/jinclude.h -------------------------------------------------------------------------------- /src/zm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/src/zm.cpp -------------------------------------------------------------------------------- /src/zm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/src/zm.h -------------------------------------------------------------------------------- /src/zm_analysis_thread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/src/zm_analysis_thread.cpp -------------------------------------------------------------------------------- /src/zm_analysis_thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/src/zm_analysis_thread.h -------------------------------------------------------------------------------- /src/zm_box.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/src/zm_box.h -------------------------------------------------------------------------------- /src/zm_buffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/src/zm_buffer.cpp -------------------------------------------------------------------------------- /src/zm_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/src/zm_buffer.h -------------------------------------------------------------------------------- /src/zm_camera.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/src/zm_camera.cpp -------------------------------------------------------------------------------- /src/zm_camera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/src/zm_camera.h -------------------------------------------------------------------------------- /src/zm_comms.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/src/zm_comms.cpp -------------------------------------------------------------------------------- /src/zm_comms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/src/zm_comms.h -------------------------------------------------------------------------------- /src/zm_config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/src/zm_config.cpp -------------------------------------------------------------------------------- /src/zm_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/src/zm_config.h -------------------------------------------------------------------------------- /src/zm_config_data.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/src/zm_config_data.h.in -------------------------------------------------------------------------------- /src/zm_crypt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/src/zm_crypt.cpp -------------------------------------------------------------------------------- /src/zm_crypt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/src/zm_crypt.h -------------------------------------------------------------------------------- /src/zm_crypto_generics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/src/zm_crypto_generics.h -------------------------------------------------------------------------------- /src/zm_crypto_gnutls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/src/zm_crypto_gnutls.h -------------------------------------------------------------------------------- /src/zm_crypto_openssl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/src/zm_crypto_openssl.h -------------------------------------------------------------------------------- /src/zm_db.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/src/zm_db.cpp -------------------------------------------------------------------------------- /src/zm_db.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/src/zm_db.h -------------------------------------------------------------------------------- /src/zm_decoder_thread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/src/zm_decoder_thread.cpp -------------------------------------------------------------------------------- /src/zm_decoder_thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/src/zm_decoder_thread.h -------------------------------------------------------------------------------- /src/zm_define.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/src/zm_define.h -------------------------------------------------------------------------------- /src/zm_event.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/src/zm_event.cpp -------------------------------------------------------------------------------- /src/zm_event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/src/zm_event.h -------------------------------------------------------------------------------- /src/zm_event_tag.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/src/zm_event_tag.cpp -------------------------------------------------------------------------------- /src/zm_event_tag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/src/zm_event_tag.h -------------------------------------------------------------------------------- /src/zm_eventstream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/src/zm_eventstream.cpp -------------------------------------------------------------------------------- /src/zm_eventstream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/src/zm_eventstream.h -------------------------------------------------------------------------------- /src/zm_exception.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/src/zm_exception.cpp -------------------------------------------------------------------------------- /src/zm_exception.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/src/zm_exception.h -------------------------------------------------------------------------------- /src/zm_ffmpeg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/src/zm_ffmpeg.cpp -------------------------------------------------------------------------------- /src/zm_ffmpeg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/src/zm_ffmpeg.h -------------------------------------------------------------------------------- /src/zm_ffmpeg_camera.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/src/zm_ffmpeg_camera.cpp -------------------------------------------------------------------------------- /src/zm_ffmpeg_camera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/src/zm_ffmpeg_camera.h -------------------------------------------------------------------------------- /src/zm_ffmpeg_input.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/src/zm_ffmpeg_input.cpp -------------------------------------------------------------------------------- /src/zm_ffmpeg_input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/src/zm_ffmpeg_input.h -------------------------------------------------------------------------------- /src/zm_ffmpeg_output.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/src/zm_ffmpeg_output.cpp -------------------------------------------------------------------------------- /src/zm_ffmpeg_output.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/src/zm_ffmpeg_output.h -------------------------------------------------------------------------------- /src/zm_fifo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/src/zm_fifo.cpp -------------------------------------------------------------------------------- /src/zm_fifo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/src/zm_fifo.h -------------------------------------------------------------------------------- /src/zm_fifo_debug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/src/zm_fifo_debug.cpp -------------------------------------------------------------------------------- /src/zm_fifo_debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/src/zm_fifo_debug.h -------------------------------------------------------------------------------- /src/zm_fifo_stream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/src/zm_fifo_stream.cpp -------------------------------------------------------------------------------- /src/zm_fifo_stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/src/zm_fifo_stream.h -------------------------------------------------------------------------------- /src/zm_file_camera.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/src/zm_file_camera.cpp -------------------------------------------------------------------------------- /src/zm_file_camera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/src/zm_file_camera.h -------------------------------------------------------------------------------- /src/zm_font.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/src/zm_font.cpp -------------------------------------------------------------------------------- /src/zm_font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/src/zm_font.h -------------------------------------------------------------------------------- /src/zm_frame.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/src/zm_frame.cpp -------------------------------------------------------------------------------- /src/zm_frame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/src/zm_frame.h -------------------------------------------------------------------------------- /src/zm_group.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/src/zm_group.cpp -------------------------------------------------------------------------------- /src/zm_group.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/src/zm_group.h -------------------------------------------------------------------------------- /src/zm_group_permission.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/src/zm_group_permission.cpp -------------------------------------------------------------------------------- /src/zm_group_permission.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/src/zm_group_permission.h -------------------------------------------------------------------------------- /src/zm_image.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/src/zm_image.cpp -------------------------------------------------------------------------------- /src/zm_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/src/zm_image.h -------------------------------------------------------------------------------- /src/zm_image_analyser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/src/zm_image_analyser.cpp -------------------------------------------------------------------------------- /src/zm_image_analyser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/src/zm_image_analyser.h -------------------------------------------------------------------------------- /src/zm_jpeg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/src/zm_jpeg.cpp -------------------------------------------------------------------------------- /src/zm_jpeg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/src/zm_jpeg.h -------------------------------------------------------------------------------- /src/zm_libvlc_camera.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/src/zm_libvlc_camera.cpp -------------------------------------------------------------------------------- /src/zm_libvlc_camera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/src/zm_libvlc_camera.h -------------------------------------------------------------------------------- /src/zm_libvnc_camera.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/src/zm_libvnc_camera.cpp -------------------------------------------------------------------------------- /src/zm_libvnc_camera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/src/zm_libvnc_camera.h -------------------------------------------------------------------------------- /src/zm_line.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/src/zm_line.h -------------------------------------------------------------------------------- /src/zm_local_camera.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/src/zm_local_camera.cpp -------------------------------------------------------------------------------- /src/zm_local_camera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/src/zm_local_camera.h -------------------------------------------------------------------------------- /src/zm_logger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/src/zm_logger.cpp -------------------------------------------------------------------------------- /src/zm_logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/src/zm_logger.h -------------------------------------------------------------------------------- /src/zm_mem_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/src/zm_mem_utils.h -------------------------------------------------------------------------------- /src/zm_monitor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/src/zm_monitor.cpp -------------------------------------------------------------------------------- /src/zm_monitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/src/zm_monitor.h -------------------------------------------------------------------------------- /src/zm_monitor_amcrest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/src/zm_monitor_amcrest.cpp -------------------------------------------------------------------------------- /src/zm_monitor_go2rtc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/src/zm_monitor_go2rtc.cpp -------------------------------------------------------------------------------- /src/zm_monitor_janus.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/src/zm_monitor_janus.cpp -------------------------------------------------------------------------------- /src/zm_monitor_onvif.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/src/zm_monitor_onvif.cpp -------------------------------------------------------------------------------- /src/zm_monitor_permission.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/src/zm_monitor_permission.h -------------------------------------------------------------------------------- /src/zm_monitor_rtsp2web.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/src/zm_monitor_rtsp2web.cpp -------------------------------------------------------------------------------- /src/zm_monitorlink_token.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/src/zm_monitorlink_token.h -------------------------------------------------------------------------------- /src/zm_monitorstream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/src/zm_monitorstream.cpp -------------------------------------------------------------------------------- /src/zm_monitorstream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/src/zm_monitorstream.h -------------------------------------------------------------------------------- /src/zm_mpeg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/src/zm_mpeg.cpp -------------------------------------------------------------------------------- /src/zm_mpeg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/src/zm_mpeg.h -------------------------------------------------------------------------------- /src/zm_mqtt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/src/zm_mqtt.cpp -------------------------------------------------------------------------------- /src/zm_mqtt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/src/zm_mqtt.h -------------------------------------------------------------------------------- /src/zm_packet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/src/zm_packet.cpp -------------------------------------------------------------------------------- /src/zm_packet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/src/zm_packet.h -------------------------------------------------------------------------------- /src/zm_packetqueue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/src/zm_packetqueue.cpp -------------------------------------------------------------------------------- /src/zm_packetqueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/src/zm_packetqueue.h -------------------------------------------------------------------------------- /src/zm_poll_thread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/src/zm_poll_thread.cpp -------------------------------------------------------------------------------- /src/zm_poll_thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/src/zm_poll_thread.h -------------------------------------------------------------------------------- /src/zm_poly.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/src/zm_poly.cpp -------------------------------------------------------------------------------- /src/zm_poly.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/src/zm_poly.h -------------------------------------------------------------------------------- /src/zm_regexp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/src/zm_regexp.cpp -------------------------------------------------------------------------------- /src/zm_regexp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/src/zm_regexp.h -------------------------------------------------------------------------------- /src/zm_remote_camera.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/src/zm_remote_camera.cpp -------------------------------------------------------------------------------- /src/zm_remote_camera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/src/zm_remote_camera.h -------------------------------------------------------------------------------- /src/zm_remote_camera_http.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/src/zm_remote_camera_http.h -------------------------------------------------------------------------------- /src/zm_remote_camera_rtsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/src/zm_remote_camera_rtsp.h -------------------------------------------------------------------------------- /src/zm_rgb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/src/zm_rgb.h -------------------------------------------------------------------------------- /src/zm_rtp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/src/zm_rtp.cpp -------------------------------------------------------------------------------- /src/zm_rtp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/src/zm_rtp.h -------------------------------------------------------------------------------- /src/zm_rtp_ctrl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/src/zm_rtp_ctrl.cpp -------------------------------------------------------------------------------- /src/zm_rtp_ctrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/src/zm_rtp_ctrl.h -------------------------------------------------------------------------------- /src/zm_rtp_data.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/src/zm_rtp_data.cpp -------------------------------------------------------------------------------- /src/zm_rtp_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/src/zm_rtp_data.h -------------------------------------------------------------------------------- /src/zm_rtp_source.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/src/zm_rtp_source.cpp -------------------------------------------------------------------------------- /src/zm_rtp_source.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/src/zm_rtp_source.h -------------------------------------------------------------------------------- /src/zm_rtsp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/src/zm_rtsp.cpp -------------------------------------------------------------------------------- /src/zm_rtsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/src/zm_rtsp.h -------------------------------------------------------------------------------- /src/zm_rtsp_auth.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/src/zm_rtsp_auth.cpp -------------------------------------------------------------------------------- /src/zm_rtsp_auth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/src/zm_rtsp_auth.h -------------------------------------------------------------------------------- /src/zm_rtsp_server.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/src/zm_rtsp_server.cpp -------------------------------------------------------------------------------- /src/zm_rtsp_server_frame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/src/zm_rtsp_server_frame.h -------------------------------------------------------------------------------- /src/zm_sdp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/src/zm_sdp.cpp -------------------------------------------------------------------------------- /src/zm_sdp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/src/zm_sdp.h -------------------------------------------------------------------------------- /src/zm_sendfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/src/zm_sendfile.h -------------------------------------------------------------------------------- /src/zm_server.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/src/zm_server.cpp -------------------------------------------------------------------------------- /src/zm_server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/src/zm_server.h -------------------------------------------------------------------------------- /src/zm_signal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/src/zm_signal.cpp -------------------------------------------------------------------------------- /src/zm_signal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/src/zm_signal.h -------------------------------------------------------------------------------- /src/zm_storage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/src/zm_storage.cpp -------------------------------------------------------------------------------- /src/zm_storage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/src/zm_storage.h -------------------------------------------------------------------------------- /src/zm_stream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/src/zm_stream.cpp -------------------------------------------------------------------------------- /src/zm_stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/src/zm_stream.h -------------------------------------------------------------------------------- /src/zm_swscale.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/src/zm_swscale.cpp -------------------------------------------------------------------------------- /src/zm_swscale.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/src/zm_swscale.h -------------------------------------------------------------------------------- /src/zm_tag.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/src/zm_tag.cpp -------------------------------------------------------------------------------- /src/zm_tag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/src/zm_tag.h -------------------------------------------------------------------------------- /src/zm_time.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/src/zm_time.cpp -------------------------------------------------------------------------------- /src/zm_time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/src/zm_time.h -------------------------------------------------------------------------------- /src/zm_uri.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/src/zm_uri.cpp -------------------------------------------------------------------------------- /src/zm_uri.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/src/zm_uri.h -------------------------------------------------------------------------------- /src/zm_user.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/src/zm_user.cpp -------------------------------------------------------------------------------- /src/zm_user.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/src/zm_user.h -------------------------------------------------------------------------------- /src/zm_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/src/zm_utils.cpp -------------------------------------------------------------------------------- /src/zm_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/src/zm_utils.h -------------------------------------------------------------------------------- /src/zm_vector2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/src/zm_vector2.h -------------------------------------------------------------------------------- /src/zm_videostore.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/src/zm_videostore.cpp -------------------------------------------------------------------------------- /src/zm_videostore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/src/zm_videostore.h -------------------------------------------------------------------------------- /src/zm_zone.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/src/zm_zone.cpp -------------------------------------------------------------------------------- /src/zm_zone.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/src/zm_zone.h -------------------------------------------------------------------------------- /src/zm_zone_stats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/src/zm_zone_stats.h -------------------------------------------------------------------------------- /src/zmbenchmark.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/src/zmbenchmark.cpp -------------------------------------------------------------------------------- /src/zmc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/src/zmc.cpp -------------------------------------------------------------------------------- /src/zms.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/src/zms.cpp -------------------------------------------------------------------------------- /src/zmu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/src/zmu.cpp -------------------------------------------------------------------------------- /tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/tests/CMakeLists.txt -------------------------------------------------------------------------------- /tests/data/fonts/01_bad_magic.zmfnt: -------------------------------------------------------------------------------- 1 | ABCDE -------------------------------------------------------------------------------- /tests/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/tests/main.cpp -------------------------------------------------------------------------------- /tests/zm_box.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/tests/zm_box.cpp -------------------------------------------------------------------------------- /tests/zm_catch2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/tests/zm_catch2.h -------------------------------------------------------------------------------- /tests/zm_comms.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/tests/zm_comms.cpp -------------------------------------------------------------------------------- /tests/zm_crypt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/tests/zm_crypt.cpp -------------------------------------------------------------------------------- /tests/zm_font.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/tests/zm_font.cpp -------------------------------------------------------------------------------- /tests/zm_poly.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/tests/zm_poly.cpp -------------------------------------------------------------------------------- /tests/zm_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/tests/zm_utils.cpp -------------------------------------------------------------------------------- /tests/zm_vector2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/tests/zm_vector2.cpp -------------------------------------------------------------------------------- /utils/bump-version.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/utils/bump-version.pl -------------------------------------------------------------------------------- /utils/do_debian_package.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/utils/do_debian_package.sh -------------------------------------------------------------------------------- /utils/docker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/utils/docker/README.md -------------------------------------------------------------------------------- /utils/mk_bigfont.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/utils/mk_bigfont.pl -------------------------------------------------------------------------------- /utils/packpack/deploy_rsa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/utils/packpack/deploy_rsa -------------------------------------------------------------------------------- /utils/packpack/heartbeat.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/utils/packpack/heartbeat.sh -------------------------------------------------------------------------------- /utils/packpack/installzm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/utils/packpack/installzm.sh -------------------------------------------------------------------------------- /utils/packpack/rsync_xfer.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/utils/packpack/rsync_xfer.sh -------------------------------------------------------------------------------- /utils/packpack/setarch.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/utils/packpack/setarch.patch -------------------------------------------------------------------------------- /utils/travis.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/utils/travis.pl -------------------------------------------------------------------------------- /utils/zm-alarm.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/utils/zm-alarm.pl -------------------------------------------------------------------------------- /utils/zmeditconfigdata.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/utils/zmeditconfigdata.sh -------------------------------------------------------------------------------- /version.txt: -------------------------------------------------------------------------------- 1 | 1.37.73 2 | -------------------------------------------------------------------------------- /web/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/web/.editorconfig -------------------------------------------------------------------------------- /web/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/web/.gitignore -------------------------------------------------------------------------------- /web/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/web/.travis.yml -------------------------------------------------------------------------------- /web/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/web/CMakeLists.txt -------------------------------------------------------------------------------- /web/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/web/README.md -------------------------------------------------------------------------------- /web/ajax/add_monitors.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/web/ajax/add_monitors.php -------------------------------------------------------------------------------- /web/ajax/alarm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/web/ajax/alarm.php -------------------------------------------------------------------------------- /web/ajax/console.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/web/ajax/console.php -------------------------------------------------------------------------------- /web/ajax/control.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/web/ajax/control.php -------------------------------------------------------------------------------- /web/ajax/controlcaps.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/web/ajax/controlcaps.php -------------------------------------------------------------------------------- /web/ajax/device.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/web/ajax/device.php -------------------------------------------------------------------------------- /web/ajax/devices.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/web/ajax/devices.php -------------------------------------------------------------------------------- /web/ajax/event.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/web/ajax/event.php -------------------------------------------------------------------------------- /web/ajax/events.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/web/ajax/events.php -------------------------------------------------------------------------------- /web/ajax/frames.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/web/ajax/frames.php -------------------------------------------------------------------------------- /web/ajax/log.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/web/ajax/log.php -------------------------------------------------------------------------------- /web/ajax/modal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/web/ajax/modal.php -------------------------------------------------------------------------------- /web/ajax/modals/device.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/web/ajax/modals/device.php -------------------------------------------------------------------------------- /web/ajax/modals/donate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/web/ajax/modals/donate.php -------------------------------------------------------------------------------- /web/ajax/modals/download.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/web/ajax/modals/download.php -------------------------------------------------------------------------------- /web/ajax/modals/enoperm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/web/ajax/modals/enoperm.php -------------------------------------------------------------------------------- /web/ajax/modals/function.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/web/ajax/modals/function.php -------------------------------------------------------------------------------- /web/ajax/modals/group.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/web/ajax/modals/group.php -------------------------------------------------------------------------------- /web/ajax/modals/logout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/web/ajax/modals/logout.php -------------------------------------------------------------------------------- /web/ajax/modals/server.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/web/ajax/modals/server.php -------------------------------------------------------------------------------- /web/ajax/modals/settings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/web/ajax/modals/settings.php -------------------------------------------------------------------------------- /web/ajax/modals/shutdown.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/web/ajax/modals/shutdown.php -------------------------------------------------------------------------------- /web/ajax/modals/state.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/web/ajax/modals/state.php -------------------------------------------------------------------------------- /web/ajax/modals/storage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/web/ajax/modals/storage.php -------------------------------------------------------------------------------- /web/ajax/models.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/web/ajax/models.php -------------------------------------------------------------------------------- /web/ajax/reports.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/web/ajax/reports.php -------------------------------------------------------------------------------- /web/ajax/shutdown.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/web/ajax/shutdown.php -------------------------------------------------------------------------------- /web/ajax/snapshots.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/web/ajax/snapshots.php -------------------------------------------------------------------------------- /web/ajax/stats.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/web/ajax/stats.php -------------------------------------------------------------------------------- /web/ajax/status.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/web/ajax/status.php -------------------------------------------------------------------------------- /web/ajax/stream.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/web/ajax/stream.php -------------------------------------------------------------------------------- /web/ajax/tags.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/web/ajax/tags.php -------------------------------------------------------------------------------- /web/ajax/trigger.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/web/ajax/trigger.php -------------------------------------------------------------------------------- /web/ajax/v4l2_settings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/web/ajax/v4l2_settings.php -------------------------------------------------------------------------------- /web/ajax/watch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/web/ajax/watch.php -------------------------------------------------------------------------------- /web/ajax/zone.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/web/ajax/zone.php -------------------------------------------------------------------------------- /web/api/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/web/api/.editorconfig -------------------------------------------------------------------------------- /web/api/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/web/api/CMakeLists.txt -------------------------------------------------------------------------------- /web/api/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/web/api/CONTRIBUTING.md -------------------------------------------------------------------------------- /web/api/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/web/api/README.md -------------------------------------------------------------------------------- /web/api/app/Config/acl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/web/api/app/Config/acl.php -------------------------------------------------------------------------------- /web/api/app/Console/cake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/web/api/app/Console/cake -------------------------------------------------------------------------------- /web/api/app/Console/cake.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/web/api/app/Console/cake.bat -------------------------------------------------------------------------------- /web/api/app/Console/cake.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/web/api/app/Console/cake.php -------------------------------------------------------------------------------- /web/api/app/Model/Config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/web/api/app/Model/Config.php -------------------------------------------------------------------------------- /web/api/app/Model/Event.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/web/api/app/Model/Event.php -------------------------------------------------------------------------------- /web/api/app/Model/Frame.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/web/api/app/Model/Frame.php -------------------------------------------------------------------------------- /web/api/app/Model/Group.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/web/api/app/Model/Group.php -------------------------------------------------------------------------------- /web/api/app/Model/Host.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/web/api/app/Model/Host.php -------------------------------------------------------------------------------- /web/api/app/Model/Log.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/web/api/app/Model/Log.php -------------------------------------------------------------------------------- /web/api/app/Model/Server.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/web/api/app/Model/Server.php -------------------------------------------------------------------------------- /web/api/app/Model/State.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/web/api/app/Model/State.php -------------------------------------------------------------------------------- /web/api/app/Model/Tag.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/web/api/app/Model/Tag.php -------------------------------------------------------------------------------- /web/api/app/Model/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/web/api/app/Model/User.php -------------------------------------------------------------------------------- /web/api/app/Model/Zone.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/web/api/app/Model/Zone.php -------------------------------------------------------------------------------- /web/api/app/View/Configs/json/edit.ctp: -------------------------------------------------------------------------------- 1 | echo json_encode($config); 2 | -------------------------------------------------------------------------------- /web/api/app/View/Configs/json/index.ctp: -------------------------------------------------------------------------------- 1 | echo json_encode($configs); 2 | -------------------------------------------------------------------------------- /web/api/app/View/Configs/json/view.ctp: -------------------------------------------------------------------------------- 1 | echo json_encode($config); 2 | -------------------------------------------------------------------------------- /web/api/app/View/EventData/json/add.ctp: -------------------------------------------------------------------------------- 1 | echo json_encode($event_data); 2 | -------------------------------------------------------------------------------- /web/api/app/View/EventData/json/edit.ctp: -------------------------------------------------------------------------------- 1 | echo json_encode($event_data); 2 | -------------------------------------------------------------------------------- /web/api/app/View/EventData/json/view.ctp: -------------------------------------------------------------------------------- 1 | echo json_encode($event); 2 | -------------------------------------------------------------------------------- /web/api/app/View/Events/json/view.ctp: -------------------------------------------------------------------------------- 1 | echo json_encode($event); 2 | -------------------------------------------------------------------------------- /web/api/app/View/Groups/json/index.ctp: -------------------------------------------------------------------------------- 1 | echo json_encode($groups); 2 | -------------------------------------------------------------------------------- /web/api/app/View/Groups/json/view.ctp: -------------------------------------------------------------------------------- 1 | echo json_encode($group); 2 | -------------------------------------------------------------------------------- /web/api/app/View/Layouts/xml/default.ctp: -------------------------------------------------------------------------------- 1 | fetch('content'); ?> 2 | -------------------------------------------------------------------------------- /web/api/app/View/Manufacturers/json/index.ctp: -------------------------------------------------------------------------------- 1 | echo json_encode($manufacturers); 2 | -------------------------------------------------------------------------------- /web/api/app/View/Manufacturers/json/view.ctp: -------------------------------------------------------------------------------- 1 | echo json_encode($manufacturer); 2 | -------------------------------------------------------------------------------- /web/api/app/View/Monitors/json/daemon_control.ctp: -------------------------------------------------------------------------------- 1 | echo json_encode($status_text); 2 | -------------------------------------------------------------------------------- /web/api/app/View/Monitors/json/index.ctp: -------------------------------------------------------------------------------- 1 | echo json_encode($monitors); 2 | -------------------------------------------------------------------------------- /web/api/app/View/Monitors/json/view.ctp: -------------------------------------------------------------------------------- 1 | echo json_encode($monitor); 2 | -------------------------------------------------------------------------------- /web/api/app/View/ServerStats/json/index.ctp: -------------------------------------------------------------------------------- 1 | echo json_encode($serverstats); 2 | -------------------------------------------------------------------------------- /web/api/app/View/ServerStats/json/view.ctp: -------------------------------------------------------------------------------- 1 | echo json_encode($serverstat); 2 | -------------------------------------------------------------------------------- /web/api/app/View/Servers/json/index.ctp: -------------------------------------------------------------------------------- 1 | echo json_encode($servers); 2 | -------------------------------------------------------------------------------- /web/api/app/View/Servers/json/view.ctp: -------------------------------------------------------------------------------- 1 | echo json_encode($server); 2 | -------------------------------------------------------------------------------- /web/api/app/View/Snapshots/json/add.ctp: -------------------------------------------------------------------------------- 1 | echo json_encode($snapshot); 2 | -------------------------------------------------------------------------------- /web/api/app/View/Snapshots/json/index.ctp: -------------------------------------------------------------------------------- 1 | echo json_encode($snapshots); 2 | -------------------------------------------------------------------------------- /web/api/app/View/Snapshots/json/view.ctp: -------------------------------------------------------------------------------- 1 | echo json_encode($snapshot); 2 | -------------------------------------------------------------------------------- /web/api/app/View/Tags/json/index.ctp: -------------------------------------------------------------------------------- 1 | echo json_encode($tags); 2 | -------------------------------------------------------------------------------- /web/api/app/View/Tags/json/view.ctp: -------------------------------------------------------------------------------- 1 | echo json_encode($tag); 2 | -------------------------------------------------------------------------------- /web/api/app/View/UserPreference/json/add.ctp: -------------------------------------------------------------------------------- 1 | echo json_encode($message); 2 | -------------------------------------------------------------------------------- /web/api/app/View/UserPreference/json/edit.ctp: -------------------------------------------------------------------------------- 1 | echo json_encode($user_preference); 2 | -------------------------------------------------------------------------------- /web/api/app/View/UserPreference/json/view.ctp: -------------------------------------------------------------------------------- 1 | echo json_encode($user_preference); 2 | -------------------------------------------------------------------------------- /web/api/app/View/Users/json/view.ctp: -------------------------------------------------------------------------------- 1 | echo json_encode($user); 2 | -------------------------------------------------------------------------------- /web/api/app/View/Zones/json/index.ctp: -------------------------------------------------------------------------------- 1 | echo json_encode($zones); 2 | -------------------------------------------------------------------------------- /web/api/app/View/Zones/json/view.ctp: -------------------------------------------------------------------------------- 1 | echo json_encode($zone); 2 | -------------------------------------------------------------------------------- /web/api/app/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/web/api/app/index.php -------------------------------------------------------------------------------- /web/api/app/vendor/composer/installers/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | composer.lock 3 | .idea/ 4 | -------------------------------------------------------------------------------- /web/api/app/webroot/test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/web/api/app/webroot/test.php -------------------------------------------------------------------------------- /web/api/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/web/api/build.properties -------------------------------------------------------------------------------- /web/api/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/web/api/build.xml -------------------------------------------------------------------------------- /web/api/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/web/api/composer.json -------------------------------------------------------------------------------- /web/api/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/web/api/index.php -------------------------------------------------------------------------------- /web/api/lib/Cake/Console/Templates/skel/Console/Command/Task/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /web/api/lib/Cake/Console/Templates/skel/Console/Templates/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /web/api/lib/Cake/Console/Templates/skel/Controller/Component/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /web/api/lib/Cake/Console/Templates/skel/Lib/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /web/api/lib/Cake/Console/Templates/skel/Locale/eng/LC_MESSAGES/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /web/api/lib/Cake/Console/Templates/skel/Model/Behavior/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /web/api/lib/Cake/Console/Templates/skel/Model/Datasource/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /web/api/lib/Cake/Console/Templates/skel/Plugin/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /web/api/lib/Cake/Console/Templates/skel/Test/Case/Controller/Component/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /web/api/lib/Cake/Console/Templates/skel/Test/Case/Model/Behavior/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /web/api/lib/Cake/Console/Templates/skel/Test/Case/View/Helper/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /web/api/lib/Cake/Console/Templates/skel/Test/Fixture/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /web/api/lib/Cake/Console/Templates/skel/Vendor/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /web/api/lib/Cake/Console/Templates/skel/View/Layouts/xml/default.ctp: -------------------------------------------------------------------------------- 1 | fetch('content'); ?> 2 | -------------------------------------------------------------------------------- /web/api/lib/Cake/Console/Templates/skel/View/Scaffolds/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /web/api/lib/Cake/Console/Templates/skel/tmp/cache/models/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /web/api/lib/Cake/Console/Templates/skel/tmp/cache/persistent/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /web/api/lib/Cake/Console/Templates/skel/tmp/cache/views/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /web/api/lib/Cake/Console/Templates/skel/tmp/logs/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /web/api/lib/Cake/Console/Templates/skel/tmp/sessions/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /web/api/lib/Cake/Console/Templates/skel/tmp/tests/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /web/api/lib/Cake/Console/Templates/skel/webroot/files/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /web/api/lib/Cake/Console/Templates/skel/webroot/js/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /web/api/lib/Cake/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/web/api/lib/Cake/LICENSE.txt -------------------------------------------------------------------------------- /web/api/lib/Cake/Test/test_app/Console/Command/Task/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /web/api/lib/Cake/Test/test_app/Console/Templates/test/views/admin_edit.ctp: -------------------------------------------------------------------------------- 1 | admin_edit template -------------------------------------------------------------------------------- /web/api/lib/Cake/Test/test_app/Controller/Component/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /web/api/lib/Cake/Test/test_app/Plugin/PluginJs/webroot/js/one/plugin_one.js: -------------------------------------------------------------------------------- 1 | alert('plugin one nested js file'); -------------------------------------------------------------------------------- /web/api/lib/Cake/Test/test_app/Plugin/PluginJs/webroot/js/plugin_js.js: -------------------------------------------------------------------------------- 1 | alert('win sauce'); -------------------------------------------------------------------------------- /web/api/lib/Cake/Test/test_app/Plugin/TestPlugin/Console/Templates/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /web/api/lib/Cake/Test/test_app/Plugin/TestPlugin/View/Emails/text/test_plugin_tpl.ctp: -------------------------------------------------------------------------------- 1 | Into TestPlugin. 2 | -------------------------------------------------------------------------------- /web/api/lib/Cake/Test/test_app/Plugin/TestPlugin/View/Layouts/default.ctp: -------------------------------------------------------------------------------- 1 | test plugin default layout -------------------------------------------------------------------------------- /web/api/lib/Cake/Test/test_app/Plugin/TestPlugin/View/Tests/index.ctp: -------------------------------------------------------------------------------- 1 | test plugin index -------------------------------------------------------------------------------- /web/api/lib/Cake/Test/test_app/Plugin/TestPlugin/View/Tests/scaffold.form.ctp: -------------------------------------------------------------------------------- 1 | test_plugin add/edit scaffold view -------------------------------------------------------------------------------- /web/api/lib/Cake/Test/test_app/Plugin/TestPlugin/webroot/css/theme_one.htc: -------------------------------------------------------------------------------- 1 | htc file -------------------------------------------------------------------------------- /web/api/lib/Cake/Test/test_app/Plugin/TestPlugin/webroot/js/test_plugin/test.js: -------------------------------------------------------------------------------- 1 | alert("Test App"); -------------------------------------------------------------------------------- /web/api/lib/Cake/Test/test_app/Plugin/TestPlugin/webroot/root.js: -------------------------------------------------------------------------------- 1 | alert('I am a root level file!'); -------------------------------------------------------------------------------- /web/api/lib/Cake/Test/test_app/Plugin/TestPluginTwo/Console/Command/Task/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /web/api/lib/Cake/Test/test_app/Plugin/TestPluginTwo/Console/Templates/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /web/api/lib/Cake/Test/test_app/Utility/TestAppEngine.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /web/api/lib/Cake/Test/test_app/View/Elements/test_element.xml: -------------------------------------------------------------------------------- 1 |

test element

2 | -------------------------------------------------------------------------------- /web/api/lib/Cake/Test/test_app/View/Elements/type_check.ctp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /web/api/lib/Cake/Test/test_app/View/Emails/text/default.ctp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /web/api/lib/Cake/Test/test_app/View/Emails/text/japanese.ctp: -------------------------------------------------------------------------------- 1 | ここにあなたの設定した値が入ります: 2 | -------------------------------------------------------------------------------- /web/api/lib/Cake/Test/test_app/View/Layouts/ajax.ctp: -------------------------------------------------------------------------------- 1 | fetch('content'); ?> -------------------------------------------------------------------------------- /web/api/lib/Cake/Test/test_app/View/Layouts/ajax2.ctp: -------------------------------------------------------------------------------- 1 | Ajax! 2 | fetch('content'); -------------------------------------------------------------------------------- /web/api/lib/Cake/Test/test_app/View/Layouts/json/default.ctp: -------------------------------------------------------------------------------- 1 | fetch('content'); ?> -------------------------------------------------------------------------------- /web/api/lib/Cake/Test/test_app/View/Posts/alt_ext.alt: -------------------------------------------------------------------------------- 1 | alt ext -------------------------------------------------------------------------------- /web/api/lib/Cake/Test/test_app/View/Posts/index.ctp: -------------------------------------------------------------------------------- 1 | posts index -------------------------------------------------------------------------------- /web/api/lib/Cake/Test/test_app/View/Posts/scaffold.form.ctp: -------------------------------------------------------------------------------- 1 | test_app posts add/edit scaffold view -------------------------------------------------------------------------------- /web/api/lib/Cake/Test/test_app/View/Scaffolds/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /web/api/lib/Cake/Test/test_app/View/TestsApps/json/index.ctp: -------------------------------------------------------------------------------- 1 | {"cakephp":"cool"} -------------------------------------------------------------------------------- /web/api/lib/Cake/Test/test_app/View/Themed/TestTheme/Elements/test_element.ctp: -------------------------------------------------------------------------------- 1 | Hi, I'm the test element. -------------------------------------------------------------------------------- /web/api/lib/Cake/Test/test_app/View/Themed/TestTheme/Posts/index.ctp: -------------------------------------------------------------------------------- 1 | posts index themed view -------------------------------------------------------------------------------- /web/api/lib/Cake/Test/test_app/View/Themed/TestTheme/Posts/scaffold.index.ctp: -------------------------------------------------------------------------------- 1 | I'm a themed scaffold file. -------------------------------------------------------------------------------- /web/api/lib/Cake/Test/test_app/View/Themed/TestTheme/webroot/js/one/theme_one.js: -------------------------------------------------------------------------------- 1 | // nested theme js file -------------------------------------------------------------------------------- /web/api/lib/Cake/Test/test_app/View/Themed/TestTheme/webroot/js/theme.js: -------------------------------------------------------------------------------- 1 | // root theme js file -------------------------------------------------------------------------------- /web/api/lib/Cake/Test/test_app/View/Themed/TestTheme/webroot/space image.text: -------------------------------------------------------------------------------- 1 | This is not an image. 2 | -------------------------------------------------------------------------------- /web/api/lib/Cake/Test/test_app/tmp/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /web/api/lib/Cake/VERSION.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/web/api/lib/Cake/VERSION.txt -------------------------------------------------------------------------------- /web/api/lib/Cake/basics.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/web/api/lib/Cake/basics.php -------------------------------------------------------------------------------- /web/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/web/composer.json -------------------------------------------------------------------------------- /web/composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/web/composer.lock -------------------------------------------------------------------------------- /web/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/web/css/bootstrap.min.css -------------------------------------------------------------------------------- /web/css/font-awesome.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/web/css/font-awesome.min.css -------------------------------------------------------------------------------- /web/css/reset.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/web/css/reset.css -------------------------------------------------------------------------------- /web/css/spinner.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/web/css/spinner.css -------------------------------------------------------------------------------- /web/fonts/license.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/web/fonts/license.md -------------------------------------------------------------------------------- /web/graphics/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/web/graphics/favicon.ico -------------------------------------------------------------------------------- /web/graphics/spinner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/web/graphics/spinner.png -------------------------------------------------------------------------------- /web/graphics/transparent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/web/graphics/transparent.png -------------------------------------------------------------------------------- /web/includes/Control.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/web/includes/Control.php -------------------------------------------------------------------------------- /web/includes/Event.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/web/includes/Event.php -------------------------------------------------------------------------------- /web/includes/Event_Data.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/web/includes/Event_Data.php -------------------------------------------------------------------------------- /web/includes/Event_Tag.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/web/includes/Event_Tag.php -------------------------------------------------------------------------------- /web/includes/Filter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/web/includes/Filter.php -------------------------------------------------------------------------------- /web/includes/FilterTerm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/web/includes/FilterTerm.php -------------------------------------------------------------------------------- /web/includes/Frame.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/web/includes/Frame.php -------------------------------------------------------------------------------- /web/includes/Group.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/web/includes/Group.php -------------------------------------------------------------------------------- /web/includes/Model.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/web/includes/Model.php -------------------------------------------------------------------------------- /web/includes/Monitor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/web/includes/Monitor.php -------------------------------------------------------------------------------- /web/includes/Object.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/web/includes/Object.php -------------------------------------------------------------------------------- /web/includes/Report.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/web/includes/Report.php -------------------------------------------------------------------------------- /web/includes/Server.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/web/includes/Server.php -------------------------------------------------------------------------------- /web/includes/Snapshot.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/web/includes/Snapshot.php -------------------------------------------------------------------------------- /web/includes/Storage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/web/includes/Storage.php -------------------------------------------------------------------------------- /web/includes/Tag.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/web/includes/Tag.php -------------------------------------------------------------------------------- /web/includes/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/web/includes/User.php -------------------------------------------------------------------------------- /web/includes/Zone.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/web/includes/Zone.php -------------------------------------------------------------------------------- /web/includes/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/web/includes/auth.php -------------------------------------------------------------------------------- /web/includes/config.php.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/web/includes/config.php.in -------------------------------------------------------------------------------- /web/includes/csrf/NEWS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/web/includes/csrf/NEWS.txt -------------------------------------------------------------------------------- /web/includes/csrf/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/web/includes/csrf/README.txt -------------------------------------------------------------------------------- /web/includes/database.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/web/includes/database.php -------------------------------------------------------------------------------- /web/includes/functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/web/includes/functions.php -------------------------------------------------------------------------------- /web/includes/lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/web/includes/lang.php -------------------------------------------------------------------------------- /web/includes/logger.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/web/includes/logger.php -------------------------------------------------------------------------------- /web/includes/session.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/web/includes/session.php -------------------------------------------------------------------------------- /web/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/web/index.php -------------------------------------------------------------------------------- /web/js/Map.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/web/js/Map.js -------------------------------------------------------------------------------- /web/js/MonitorStream.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/web/js/MonitorStream.js -------------------------------------------------------------------------------- /web/js/Server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/web/js/Server.js -------------------------------------------------------------------------------- /web/js/adapter.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/web/js/adapter.min.js -------------------------------------------------------------------------------- /web/js/ajaxQueue.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/web/js/ajaxQueue.js -------------------------------------------------------------------------------- /web/js/dms.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/web/js/dms.js -------------------------------------------------------------------------------- /web/js/dms.js.URL: -------------------------------------------------------------------------------- 1 | https://github.com/WSDOT-GIS/dms-js 2 | -------------------------------------------------------------------------------- /web/js/hls-1.6.13/hls.d.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/web/js/hls-1.6.13/hls.d.mts -------------------------------------------------------------------------------- /web/js/hls-1.6.13/hls.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/web/js/hls-1.6.13/hls.d.ts -------------------------------------------------------------------------------- /web/js/hls-1.6.13/hls.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/web/js/hls-1.6.13/hls.js -------------------------------------------------------------------------------- /web/js/hls-1.6.13/hls.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/web/js/hls-1.6.13/hls.js.map -------------------------------------------------------------------------------- /web/js/hls-1.6.13/hls.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/web/js/hls-1.6.13/hls.min.js -------------------------------------------------------------------------------- /web/js/hls-1.6.13/hls.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/web/js/hls-1.6.13/hls.mjs -------------------------------------------------------------------------------- /web/js/logger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/web/js/logger.js -------------------------------------------------------------------------------- /web/js/panzoom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/web/js/panzoom.js -------------------------------------------------------------------------------- /web/js/video-rtc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/web/js/video-rtc.js -------------------------------------------------------------------------------- /web/js/video-stream.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/web/js/video-stream.js -------------------------------------------------------------------------------- /web/js/videojs.zoomrotate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/web/js/videojs.zoomrotate.js -------------------------------------------------------------------------------- /web/lang/ba_ba.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/web/lang/ba_ba.php -------------------------------------------------------------------------------- /web/lang/big5_big5.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/web/lang/big5_big5.php -------------------------------------------------------------------------------- /web/lang/cs_cz.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/web/lang/cs_cz.php -------------------------------------------------------------------------------- /web/lang/de_de.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/web/lang/de_de.php -------------------------------------------------------------------------------- /web/lang/default.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/web/lang/default.php -------------------------------------------------------------------------------- /web/lang/dk_dk.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/web/lang/dk_dk.php -------------------------------------------------------------------------------- /web/lang/en_gb.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/web/lang/en_gb.php -------------------------------------------------------------------------------- /web/lang/en_us.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/web/lang/en_us.php -------------------------------------------------------------------------------- /web/lang/es_ar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/web/lang/es_ar.php -------------------------------------------------------------------------------- /web/lang/es_es.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/web/lang/es_es.php -------------------------------------------------------------------------------- /web/lang/es_la.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/web/lang/es_la.php -------------------------------------------------------------------------------- /web/lang/et_ee.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/web/lang/et_ee.php -------------------------------------------------------------------------------- /web/lang/fr_fr.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/web/lang/fr_fr.php -------------------------------------------------------------------------------- /web/lang/he_il.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/web/lang/he_il.php -------------------------------------------------------------------------------- /web/lang/hu_hu.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/web/lang/hu_hu.php -------------------------------------------------------------------------------- /web/lang/it_it.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/web/lang/it_it.php -------------------------------------------------------------------------------- /web/lang/ja_jp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/web/lang/ja_jp.php -------------------------------------------------------------------------------- /web/lang/nl_nl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/web/lang/nl_nl.php -------------------------------------------------------------------------------- /web/lang/no_nb.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/web/lang/no_nb.php -------------------------------------------------------------------------------- /web/lang/pl_pl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/web/lang/pl_pl.php -------------------------------------------------------------------------------- /web/lang/pt_br.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/web/lang/pt_br.php -------------------------------------------------------------------------------- /web/lang/ro_ro.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/web/lang/ro_ro.php -------------------------------------------------------------------------------- /web/lang/ru_ru.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/web/lang/ru_ru.php -------------------------------------------------------------------------------- /web/lang/se_se.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/web/lang/se_se.php -------------------------------------------------------------------------------- /web/lang/tr_tr.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/web/lang/tr_tr.php -------------------------------------------------------------------------------- /web/lang/updateLangs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/web/lang/updateLangs.php -------------------------------------------------------------------------------- /web/lang/zh_cn.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/web/lang/zh_cn.php -------------------------------------------------------------------------------- /web/lang/zh_tw.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/web/lang/zh_tw.php -------------------------------------------------------------------------------- /web/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: / 3 | ### -------------------------------------------------------------------------------- /web/skins/classic/assets/gridstack-12.3.3/dist/vitest.setup.d.ts: -------------------------------------------------------------------------------- 1 | import '@testing-library/jest-dom'; 2 | -------------------------------------------------------------------------------- /web/skins/classic/css/base/views/controlcap.css: -------------------------------------------------------------------------------- 1 | 2 | input[type="number"] { 3 | width: 70px; 4 | } 5 | -------------------------------------------------------------------------------- /web/skins/classic/css/base/views/cycle.css: -------------------------------------------------------------------------------- 1 | 2 | #sidebar { 3 | min-width: 200px; 4 | } 5 | -------------------------------------------------------------------------------- /web/skins/classic/css/base/views/devices.css: -------------------------------------------------------------------------------- 1 | input.set { 2 | border: 1px #7F7FB2 dashed; 3 | } 4 | 5 | -------------------------------------------------------------------------------- /web/skins/classic/css/base/views/download.css: -------------------------------------------------------------------------------- 1 | #content table.minor { 2 | width: auto; 3 | } 4 | 5 | -------------------------------------------------------------------------------- /web/skins/classic/css/base/views/server.css: -------------------------------------------------------------------------------- 1 | input[type="text"] { 2 | width: 100%; 3 | } 4 | -------------------------------------------------------------------------------- /web/skins/classic/css/base/views/settings.css: -------------------------------------------------------------------------------- 1 | input[type="number"] { 2 | width: 50px; 3 | } 4 | -------------------------------------------------------------------------------- /web/skins/classic/css/classic/export.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /web/skins/classic/css/classic/views/devices.css: -------------------------------------------------------------------------------- 1 | input.set { 2 | border: 1px #7F7FB2 dashed; 3 | } 4 | 5 | -------------------------------------------------------------------------------- /web/skins/classic/css/classic/views/download.css: -------------------------------------------------------------------------------- 1 | #content table.minor { 2 | width: auto; 3 | } 4 | 5 | -------------------------------------------------------------------------------- /web/skins/classic/css/classic/views/storage.css: -------------------------------------------------------------------------------- 1 | input[type="url"] { 2 | width: 100%; 3 | } 4 | -------------------------------------------------------------------------------- /web/skins/classic/css/classic/views/zone.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /web/skins/classic/css/dark/export.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /web/skins/classic/css/dark/views/devices.css: -------------------------------------------------------------------------------- 1 | input.set { 2 | border: 1px #7F7FB2 dashed; 3 | } 4 | 5 | -------------------------------------------------------------------------------- /web/skins/classic/css/dark/views/download.css: -------------------------------------------------------------------------------- 1 | #content table.minor { 2 | width: auto; 3 | } 4 | 5 | -------------------------------------------------------------------------------- /web/skins/classic/css/dark/views/storage.css: -------------------------------------------------------------------------------- 1 | input[type="url"] { 2 | width: 100%; 3 | } 4 | -------------------------------------------------------------------------------- /web/skins/classic/css/dark/views/timeline.css.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /web/skins/classic/css/dark/views/zone.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /web/skins/classic/js/bootstrap.bundle.min.js: -------------------------------------------------------------------------------- 1 | bootstrap-4.5.0.min.js -------------------------------------------------------------------------------- /web/skins/classic/js/jquery.min.js: -------------------------------------------------------------------------------- 1 | jquery-3.7.1.min.js -------------------------------------------------------------------------------- /web/skins/classic/js/skin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/web/skins/classic/js/skin.js -------------------------------------------------------------------------------- /web/skins/classic/skin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/web/skins/classic/skin.php -------------------------------------------------------------------------------- /web/sounds/snap.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/web/sounds/snap.ogg -------------------------------------------------------------------------------- /web/vendor/autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/web/vendor/autoload.php -------------------------------------------------------------------------------- /web/views/archive.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/web/views/archive.php -------------------------------------------------------------------------------- /web/views/image.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/web/views/image.php -------------------------------------------------------------------------------- /web/views/view_video.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/web/views/view_video.php -------------------------------------------------------------------------------- /zm.conf.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/zm.conf.in -------------------------------------------------------------------------------- /zmconfgen.pl.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/zmconfgen.pl.in -------------------------------------------------------------------------------- /zmlinkcontent.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/zmlinkcontent.sh.in -------------------------------------------------------------------------------- /zoneminder-config.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoneMinder/zoneminder/HEAD/zoneminder-config.cmake --------------------------------------------------------------------------------