├── .gitignore ├── external ├── ctemplate-2.2.tar.gz ├── ctemplate.r129.patch ├── ffmpeg-2.0.1.tar.bz2 ├── poco-1.4.6p2.tar.gz ├── rtmpdump-2.3.tgz └── x264-snapshot-20131008-2245-stable.tar.bz2 ├── flashStreamPlayer ├── StreamPlayer.as ├── StreamPlayer.swf ├── StreamPlayerSeek.as ├── StreamPlayerSeek.swf └── readmeStreamPlayerSeek.txt ├── helperFuncs.sh ├── instructions ├── API_MyPlayer_swf.txt ├── InstallCrossCompileEnvironment.txt ├── before_build_moment.txt ├── build_ffmpeg_instruction.txt ├── faststart.txt ├── howto_debug.txt ├── moment.example.conf ├── moment_useful_stuff.txt ├── recpath.example.conf └── run_vlc_stream.txt ├── libmary ├── AUTHORS ├── COPYING ├── ChangeLog ├── Makefile.am ├── NEWS ├── README ├── autogen.sh ├── configure.in ├── docs │ ├── C++0x.txt │ ├── M coding guidelines.txt │ ├── composition.txt │ ├── exceptions.txt │ ├── flowcontrol.txt │ ├── informer.txt │ ├── iterators.txt │ ├── mt_safety.txt │ ├── multithreading.txt │ ├── notes.txt │ ├── poll.txt │ ├── print.txt │ ├── refcounting.txt │ ├── roadmap.txt │ ├── synchronization.txt │ └── time.txt ├── libmary-1.0.pc.in ├── libmary │ ├── Makefile.am │ ├── Makefile.inc.am │ ├── active_poll_group.h │ ├── annotations.h │ ├── array.h │ ├── array_holder.h │ ├── array_output_stream.h │ ├── async_file.h │ ├── async_input_stream.h │ ├── async_output_stream.cpp │ ├── async_output_stream.h │ ├── atomic.h │ ├── avl_tree.h │ ├── basic_referenced.h │ ├── buffered_output_stream.cpp │ ├── buffered_output_stream.h │ ├── cb.h │ ├── cb_deferred.h │ ├── cmdline.cpp │ ├── cmdline.h │ ├── code_ref.h │ ├── code_referenced.h │ ├── comparator.h │ ├── cond.h │ ├── connection.h │ ├── connection_receiver.generic.cpp │ ├── connection_receiver.generic.h │ ├── connection_sender_impl.cpp │ ├── connection_sender_impl.h │ ├── debug.h │ ├── deferred_connection_sender.cpp │ ├── deferred_connection_sender.h │ ├── deferred_processor.cpp │ ├── deferred_processor.h │ ├── deletion_queue.cpp │ ├── deletion_queue.h │ ├── dep_ref.h │ ├── epoll_poll_group.cpp │ ├── epoll_poll_group.h │ ├── exception.cpp │ ├── exception.h │ ├── exception_buffer.cpp │ ├── exception_buffer.h │ ├── extractor.h │ ├── fast_mutex.h │ ├── file.cpp │ ├── file.h │ ├── file_connection.cpp │ ├── file_connection.h │ ├── fixed_thread_pool.cpp │ ├── fixed_thread_pool.h │ ├── hash.h │ ├── http_client.cpp │ ├── http_client.h │ ├── http_server.cpp │ ├── http_server.h │ ├── http_service.cpp │ ├── http_service.h │ ├── immediate_connection_sender.cpp │ ├── immediate_connection_sender.h │ ├── informer.cpp │ ├── informer.h │ ├── input_stream.cpp │ ├── input_stream.h │ ├── intrusive_avl_tree.h │ ├── intrusive_list.h │ ├── io.h │ ├── iterator.h │ ├── libmary.cpp │ ├── libmary.h │ ├── libmary_config.h.in │ ├── libmary_md5.cpp │ ├── libmary_md5.h │ ├── libmary_thread_local.cpp │ ├── libmary_thread_local.h │ ├── line_pipe.cpp │ ├── line_pipe.h │ ├── line_server.cpp │ ├── line_server.h │ ├── line_service.cpp │ ├── line_service.h │ ├── list.h │ ├── log.cpp │ ├── log.h │ ├── map.h │ ├── md5 │ │ ├── md5.c │ │ ├── md5.h │ │ └── md5main.c │ ├── memory.h │ ├── memory_file.cpp │ ├── memory_file.h │ ├── module.cpp │ ├── module.h │ ├── module_init.h │ ├── multi_thread.cpp │ ├── multi_thread.h │ ├── mutex.h │ ├── mwritev.cpp │ ├── mwritev.h │ ├── native_async_file.linux.cpp │ ├── native_async_file.linux.h │ ├── native_file.linux.cpp │ ├── native_file.linux.h │ ├── object.cpp │ ├── object.h │ ├── output_stream.cpp │ ├── output_stream.h │ ├── page_pool.cpp │ ├── page_pool.h │ ├── pointer.h │ ├── poll_group.h │ ├── poll_poll_group.cpp │ ├── poll_poll_group.h │ ├── posix.cpp │ ├── receiver.cpp │ ├── receiver.h │ ├── ref.h │ ├── referenced.c++0x.h │ ├── referenced.cpp │ ├── referenced.h │ ├── select_poll_group.cpp │ ├── select_poll_group.h │ ├── sender.cpp │ ├── sender.h │ ├── server_app.cpp │ ├── server_app.h │ ├── server_context.h │ ├── server_thread_pool.h │ ├── st_ref.h │ ├── st_referenced.h │ ├── stat.cpp │ ├── stat.h │ ├── state_mutex.cpp │ ├── state_mutex.h │ ├── string.cpp │ ├── string.h │ ├── string_hash.h │ ├── tcp_connection.linux.cpp │ ├── tcp_connection.linux.h │ ├── tcp_server.linux.cpp │ ├── tcp_server.linux.h │ ├── thread.cpp │ ├── thread.h │ ├── timers.cpp │ ├── timers.h │ ├── types.cpp │ ├── types.h │ ├── types_base.h │ ├── util_base.cpp │ ├── util_base.h │ ├── util_c.c │ ├── util_common.cpp │ ├── util_common.h │ ├── util_dev.cpp │ ├── util_dev.h │ ├── util_net.cpp │ ├── util_net.h │ ├── util_posix.h │ ├── util_posix.linux.cpp │ ├── util_str.cpp │ ├── util_str.h │ ├── util_str_base.h │ ├── util_time.cpp │ ├── util_time.h │ ├── vfs.cpp │ ├── vfs.h │ ├── vfs_posix.cpp │ ├── vfs_posix.h │ ├── virt_ref.h │ ├── virt_referenced.h │ ├── vslab.h │ ├── vstack.cpp │ ├── vstack.h │ └── weak_ref.h └── tests │ ├── Makefile │ ├── exc │ ├── Makefile │ └── test__exc.cpp │ ├── http │ ├── Makefile │ └── test__http.cpp │ ├── informer │ ├── Makefile │ └── test__informer.cpp │ ├── log │ ├── Makefile │ └── test__log.cpp │ ├── printer │ ├── Makefile │ └── test__printer.cpp │ ├── refcounting │ ├── Makefile │ └── test__refcounting.cpp │ ├── tcp │ ├── Makefile │ └── test__tcp.cpp │ ├── tcp_server │ ├── Makefile │ └── test__tcp_server.cpp │ └── tostring │ ├── Makefile │ └── test__tostring.cpp ├── mconfig ├── AUTHORS ├── COPYING ├── ChangeLog ├── Makefile.am ├── NEWS ├── README ├── autogen.sh ├── configure.in ├── docs │ └── syntax.txt ├── mconfig-1.0.pc.in └── mconfig │ ├── Makefile.am │ ├── config.cpp │ ├── config.h │ ├── config_parser.cpp │ ├── config_parser.h │ ├── mconfig.cpp │ ├── mconfig.h │ ├── mconfig.par │ ├── util.cpp │ ├── util.h │ ├── varlist.cpp │ ├── varlist.h │ ├── varlist.par │ ├── varlist_parser.cpp │ └── varlist_parser.h ├── moment-ffmpeg ├── AUTHORS ├── COPYING ├── ChangeLog ├── Makefile.am ├── NEWS ├── README ├── autogen.sh ├── configure.in ├── iostat │ ├── Makefile │ ├── common.c │ ├── common.h │ ├── count.c │ ├── count.h │ ├── format.c │ ├── how to build.txt │ ├── ioconf.c │ ├── ioconf.h │ ├── iostat.c │ ├── iostat.h │ ├── iostat_bin.c │ ├── rd_stats.c │ ├── rd_stats.h │ ├── sadf.c │ ├── sadf.h │ ├── sysconfig.h │ └── version.h ├── moment-ffmpeg-1.0.pc.in └── moment-ffmpeg │ ├── Makefile.am │ ├── channel_checker.cpp │ ├── channel_checker.h │ ├── ffmpeg_common.h │ ├── ffmpeg_stream.cpp │ ├── ffmpeg_stream.h │ ├── inc.h │ ├── media_reader.cpp │ ├── media_reader.h │ ├── media_viewer.cpp │ ├── media_viewer.h │ ├── memory_dispatcher.cpp │ ├── memory_dispatcher.h │ ├── mod_ffmpeg.cpp │ ├── moment_ffmpeg_module.cpp │ ├── moment_ffmpeg_module.h │ ├── naming_scheme.cpp │ ├── naming_scheme.h │ ├── nvr_cleaner.cpp │ ├── nvr_cleaner.h │ ├── nvr_file_iterator.cpp │ ├── nvr_file_iterator.h │ ├── rec_path_config.cpp │ ├── rec_path_config.h │ ├── segment_muxer.c │ ├── stat_measurer.cpp │ ├── stat_measurer.h │ ├── time_checker.cpp │ ├── time_checker.h │ ├── types.cpp │ ├── types.h │ ├── video_part_maker.cpp │ └── video_part_maker.h ├── moment-gst ├── AUTHORS ├── COPYING ├── ChangeLog ├── Makefile.am ├── NEWS ├── README ├── autogen.sh ├── configure.in ├── moment-gst-1.0.pc.in └── moment-gst │ ├── Makefile.am │ ├── gst_stream.cpp │ ├── gst_stream.h │ ├── mod_gst.cpp │ ├── moment_gst_module.cpp │ └── moment_gst_module.h ├── moment-hls ├── AUTHORS ├── COPYING ├── ChangeLog ├── Makefile.am ├── NEWS ├── README ├── autogen.sh ├── configure.in └── moment-hls │ ├── Makefile.am │ ├── Makefile.inc.am │ ├── inc.h │ ├── mod_hls.cpp │ ├── mod_hls.cpp.old │ └── tsmux │ ├── crc.h │ ├── tsmux.c │ ├── tsmux.h │ ├── tsmuxcommon.h │ ├── tsmuxstream.c │ └── tsmuxstream.h ├── moment-nvr ├── AUTHORS ├── COPYING ├── ChangeLog ├── Makefile.am ├── NEWS ├── README ├── autogen.sh ├── configure.in ├── docs │ └── Architecture.txt ├── moment-nvr │ ├── Makefile.am │ ├── av_nvr_recorder.cpp │ ├── av_nvr_recorder.h │ ├── channel_checker.cpp │ ├── channel_checker.h │ ├── channel_recorder.cpp │ ├── channel_recorder.h │ ├── flv_file_muxer.cpp │ ├── flv_file_muxer.h │ ├── get_file_session.cpp │ ├── get_file_session.h │ ├── inc.h │ ├── media_reader.cpp │ ├── media_reader.h │ ├── media_recorder.cpp │ ├── media_recorder.h │ ├── media_viewer.cpp │ ├── media_viewer.h │ ├── mod_nvr.cpp │ ├── moment_nvr_module.cpp │ ├── moment_nvr_module.h │ ├── naming_scheme.cpp │ ├── naming_scheme.h │ ├── nvr_cleaner.cpp │ ├── nvr_cleaner.h │ ├── nvr_file_iterator.cpp │ ├── nvr_file_iterator.h │ ├── types.cpp │ └── types.h └── web │ └── index.tpl ├── moment-onvif ├── AUTHORS ├── COPYING ├── ChangeLog ├── INSTALL ├── Makefile.am ├── NEWS ├── README ├── autogen.sh ├── configure.in ├── moment-onvif-1.0.pc.in ├── moment-onvif │ ├── Makefile.am │ ├── mod_onvif.cpp │ ├── moment_onvif_module.cpp │ └── moment_onvif_module.h └── onvif-sdk │ ├── include │ └── OnvifSDK.h │ └── lib │ ├── x64 │ ├── libOnvifSDK.so │ └── libWsDiscovery.so │ └── x86 │ ├── libOnvifSDK.so │ └── libWsDiscovery.so ├── moment.conf ├── moment ├── AUTHORS ├── COPYING ├── ChangeLog ├── Makefile.am ├── NEWS ├── README ├── autogen.sh ├── configure.in ├── libmoment-1.0.pc.in ├── moment │ ├── Makefile.am │ ├── Makefile.inc.am │ ├── amf_decoder.cpp │ ├── amf_decoder.h │ ├── amf_encoder.cpp │ ├── amf_encoder.h │ ├── api.cpp │ ├── api.h │ ├── api_amf.cpp │ ├── av_muxer.h │ ├── av_recorder.cpp │ ├── av_recorder.h │ ├── channel.cpp │ ├── channel.h │ ├── channel_manager.cpp │ ├── channel_manager.h │ ├── channel_options.h │ ├── channel_set.cpp │ ├── channel_set.h │ ├── fetch_agent.cpp │ ├── fetch_agent.h │ ├── fetch_protocol.h │ ├── flv_muxer.cpp │ ├── flv_muxer.h │ ├── flv_util.cpp │ ├── flv_util.h │ ├── hmac │ │ ├── hmac_sha2.c │ │ ├── hmac_sha2.h │ │ ├── sha2.c │ │ └── sha2.h │ ├── inc.h │ ├── libmoment.cpp │ ├── libmoment.h │ ├── libmoment_config.h.in │ ├── libmoment_gst.cpp │ ├── libmoment_gst.h │ ├── local_storage.cpp │ ├── local_storage.h │ ├── media_source.h │ ├── media_source_provider.h │ ├── mod_file.cpp │ ├── mod_rtmp.cpp │ ├── mod_test.cpp │ ├── module_init.h │ ├── moment.cpp │ ├── moment.dist.conf │ ├── moment.example.conf │ ├── moment_http_server.cpp │ ├── moment_http_server.h │ ├── moment_request_handler.cpp │ ├── moment_request_handler.h │ ├── moment_server.cpp │ ├── moment_server.h │ ├── moment_types.h │ ├── mp4_muxer.cpp │ ├── mp4_muxer.h │ ├── playback.cpp │ ├── playback.h │ ├── playlist.cpp │ ├── playlist.h │ ├── push_agent.cpp │ ├── push_agent.h │ ├── push_protocol.h │ ├── recorder.cpp │ ├── recorder.h │ ├── rtmp_client.cpp │ ├── rtmp_client.h │ ├── rtmp_connection.cpp │ ├── rtmp_connection.h │ ├── rtmp_fetch_protocol.cpp │ ├── rtmp_fetch_protocol.h │ ├── rtmp_push_protocol.cpp │ ├── rtmp_push_protocol.h │ ├── rtmp_server.cpp │ ├── rtmp_server.h │ ├── rtmp_service.cpp │ ├── rtmp_service.h │ ├── rtmp_video_service.h │ ├── rtmpt_service.cpp │ ├── rtmpt_service.h │ ├── rtmptool.cpp │ ├── slave_media_source.cpp │ ├── slave_media_source.h │ ├── storage.h │ ├── test_stream_generator.cpp │ ├── test_stream_generator.h │ ├── transcoder.h │ ├── util_config.cpp │ ├── util_config.h │ ├── util_moment.cpp │ ├── util_moment.h │ ├── video_stream.cpp │ └── video_stream.h ├── tests │ └── server │ │ ├── Makefile │ │ └── test__server.cpp ├── web │ ├── Makefile.am │ ├── basic_player │ │ ├── BasicPlayer.as │ │ ├── BasicPlayer.swf │ │ ├── Makefile │ │ ├── fullscreen.png │ │ ├── horizontal.png │ │ ├── play.png │ │ ├── play_hover.png │ │ └── var.defaults │ ├── myplayer │ │ ├── Makefile.am │ │ ├── MyPlayer.as │ │ ├── MyPlayer.swf │ │ ├── README │ │ ├── basic.tpl │ │ ├── buffering.png │ │ ├── connecting.png │ │ ├── error.png │ │ ├── fullscreen.png │ │ ├── horizontal.png │ │ ├── index.tpl │ │ ├── jquery-1.6.2.min.js │ │ ├── jquery-ui.css │ │ ├── jquery-ui.js │ │ ├── jquery.js │ │ ├── myslider.swc │ │ ├── old.index.html │ │ ├── playlist.dist.json.tpl │ │ ├── playlist.example.json │ │ ├── playlist.json.tpl │ │ ├── playlist.png │ │ ├── url.js │ │ └── var.defaults │ └── publisher │ │ ├── Makefile │ │ ├── Publisher.as │ │ ├── index.tpl │ │ └── var.defaults └── www │ ├── Makefile │ ├── build.xml │ ├── developers.xml │ ├── doc.xml │ ├── doc_auth.xml │ ├── doc_builtin.xml │ ├── doc_channels.xml │ ├── doc_cluster.xml │ ├── doc_config.xml │ ├── doc_desc.xml │ ├── doc_examples.xml │ ├── doc_install.xml │ ├── doc_plugins.xml │ ├── doc_stress.xml │ ├── entities.dtd │ ├── err │ ├── 401.html │ ├── 403.html │ ├── 404.html │ ├── 405.html │ ├── 406.html │ ├── 407.html │ ├── 408.html │ ├── 409.html │ ├── 410.html │ ├── 411.html │ ├── 412.html │ ├── 413.html │ ├── 414.html │ ├── 415.html │ ├── 500.html │ ├── 501.html │ ├── 502.html │ ├── 503.html │ ├── 504.html │ └── 505.html │ ├── favicon.ico │ ├── feed.src.xml │ ├── gpl.xml │ ├── hls.xml │ ├── img │ ├── arrow.png │ ├── download.png │ ├── download.ru.png │ ├── langbar.png │ ├── logo.png │ ├── menubar.png │ ├── menubar_shadow.png │ ├── slogan.png │ └── wiki_logo.png │ ├── index.php │ ├── index.xml │ ├── licensing.xml │ ├── moment_logo.svg │ ├── nvr.xml │ ├── postprocess.xsl │ ├── postprocess_rss.xsl │ ├── quickstart.xml │ ├── template.svg │ ├── template.xsl │ └── upload.sh ├── nvr-onvif-client ├── CMakeLists.txt └── mainClient.cpp ├── pargen ├── AUTHORS ├── COPYING ├── ChangeLog ├── Makefile.am ├── NEWS ├── README ├── autogen.sh ├── configure.in ├── gendoc.sh ├── pargen-1.0.pc.in ├── pargen │ ├── Makefile.am │ ├── acceptor.h │ ├── compile.h │ ├── declarations.cpp │ ├── declarations.h │ ├── file_position.h │ ├── file_token_stream.cpp │ ├── file_token_stream.h │ ├── grammar.cpp │ ├── grammar.h │ ├── header_compiler.cpp │ ├── header_compiler.h │ ├── lookup_data.h │ ├── main.cpp │ ├── memory_token_stream.cpp │ ├── memory_token_stream.h │ ├── pargen_task_parser.cpp │ ├── pargen_task_parser.h │ ├── parser.cpp │ ├── parser.h │ ├── parser_element.h │ ├── parsing_exception.h │ ├── quick_test.sh │ ├── source_compiler.cpp │ ├── source_compiler.h │ ├── test.par │ ├── token_stream.h │ ├── util.cpp │ └── util.h └── tests │ └── pargen_simple │ ├── Makefile │ ├── test.1.par │ ├── test.2.par │ ├── test.3.par │ ├── test.4.par │ ├── test.in │ ├── test.par │ └── test__pargen_simple.cpp ├── recpath.conf ├── run_moment.sh ├── scruffy ├── AUTHORS ├── COPYING ├── ChangeLog ├── Makefile.am ├── NEWS ├── README ├── TODO ├── autogen.sh ├── configure.in ├── doc │ ├── USECASES │ ├── ideas.txt │ ├── mt.txt │ ├── mt_example.c │ ├── mt_formal.txt │ ├── mt_notes.txt │ ├── output.txt │ └── templates.txt ├── scruffy-1.0.pc.in └── scruffy │ ├── Makefile.am │ ├── byte_stream.h │ ├── checkpoint_tracker.cpp │ ├── checkpoint_tracker.h │ ├── cpp.cpp │ ├── cpp.h │ ├── cpp.par │ ├── cpp_cond.par │ ├── cpp_dispatcher.h │ ├── cpp_parser.cpp │ ├── cpp_parser.h │ ├── cpp_type_conversions.cpp │ ├── cpp_util.cpp │ ├── cpp_util.h │ ├── cpp_visitor.h │ ├── dump_context.cpp │ ├── dump_context.h │ ├── file_byte_stream.cpp │ ├── file_byte_stream.h │ ├── list_pp_item_stream.cpp │ ├── list_pp_item_stream.h │ ├── list_token_stream.h │ ├── macro_definition.h │ ├── main.cpp │ ├── name_tracker.cpp │ ├── name_tracker.h │ ├── parsing_exception.h │ ├── phase3_item_stream.cpp │ ├── phase3_item_stream.h │ ├── pp_item_stream.cpp │ ├── pp_item_stream.h │ ├── pp_item_stream_token_stream.cpp │ ├── pp_item_stream_token_stream.h │ ├── preprocessor.cpp │ ├── preprocessor.h │ ├── preprocessor_types.h │ ├── preprocessor_util.cpp │ ├── preprocessor_util.h │ ├── test.sh │ ├── test_dispatcher.cpp │ ├── test_dispatcher.h │ ├── tests │ ├── 1.cpp │ ├── 10.cpp │ ├── 11.cpp │ ├── 12.cpp │ ├── 13.cpp │ ├── 14.cpp │ ├── 2.cpp │ ├── 3.cpp │ ├── 4.cpp │ ├── 5.cpp │ ├── 6.cpp │ ├── 7.cpp │ ├── 8.cpp │ ├── 9.cpp │ ├── NOTES │ ├── README │ ├── cpp_1.cpp │ ├── more │ │ ├── test.1.cpp │ │ ├── test.cpp │ │ ├── test.cpp.2 │ │ ├── test.cpp.3 │ │ ├── test.jap.cpp │ │ └── test.ref.cpp │ ├── test.cpp │ └── test.sh │ ├── type.h │ ├── unichar_pp_item_stream.cpp │ ├── unichar_pp_item_stream.h │ ├── unichar_stream.h │ ├── utf8_unichar_stream.cpp │ ├── utf8_unichar_stream.h │ ├── util.cpp │ └── util.h ├── tools ├── make_big_idx.py ├── make_many_flv.py ├── make_many_idx.py └── run_many_vlc.py ├── vlcStreaming ├── readme.txt ├── run_vlc_host.bat ├── run_vlc_host.sh └── vlcstream.py ├── watchdog.py └── website ├── .gitignore ├── README ├── ad.php ├── assets ├── 18e22f48 │ ├── autocomplete │ │ ├── indicator.gif │ │ └── jquery.autocomplete.css │ ├── jquery.ajaxqueue.js │ ├── jquery.autocomplete.js │ ├── jquery.ba-bbq.js │ ├── jquery.ba-bbq.min.js │ ├── jquery.bgiframe.js │ ├── jquery.cookie.js │ ├── jquery.history.js │ ├── jquery.js │ ├── jquery.maskedinput.js │ ├── jquery.maskedinput.min.js │ ├── jquery.metadata.js │ ├── jquery.min.js │ ├── jquery.multifile.js │ ├── jquery.rating.js │ ├── jquery.treeview.async.js │ ├── jquery.treeview.edit.js │ ├── jquery.treeview.js │ ├── jquery.yii.js │ ├── jquery.yiiactiveform.js │ ├── jquery.yiitab.js │ ├── jui │ │ ├── css │ │ │ └── base │ │ │ │ ├── images │ │ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ │ │ ├── ui-bg_flat_75_ffffff_40x100.png │ │ │ │ ├── ui-bg_glass_55_fbf9ee_1x400.png │ │ │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ │ │ ├── ui-bg_glass_75_dadada_1x400.png │ │ │ │ ├── ui-bg_glass_75_e6e6e6_1x400.png │ │ │ │ ├── ui-bg_glass_95_fef1ec_1x400.png │ │ │ │ ├── ui-bg_highlight-soft_75_cccccc_1x100.png │ │ │ │ ├── ui-icons_222222_256x240.png │ │ │ │ ├── ui-icons_2e83ff_256x240.png │ │ │ │ ├── ui-icons_454545_256x240.png │ │ │ │ ├── ui-icons_888888_256x240.png │ │ │ │ └── ui-icons_cd0a0a_256x240.png │ │ │ │ ├── jquery-ui.css │ │ │ │ ├── jquery.ui.accordion.css │ │ │ │ ├── jquery.ui.autocomplete.css │ │ │ │ ├── jquery.ui.button.css │ │ │ │ ├── jquery.ui.core.css │ │ │ │ ├── jquery.ui.datepicker.css │ │ │ │ ├── jquery.ui.dialog.css │ │ │ │ ├── jquery.ui.menu.css │ │ │ │ ├── jquery.ui.progressbar.css │ │ │ │ ├── jquery.ui.resizable.css │ │ │ │ ├── jquery.ui.selectable.css │ │ │ │ ├── jquery.ui.slider.css │ │ │ │ ├── jquery.ui.spinner.css │ │ │ │ ├── jquery.ui.tabs.css │ │ │ │ ├── jquery.ui.theme.css │ │ │ │ └── jquery.ui.tooltip.css │ │ └── js │ │ │ ├── jquery-ui-i18n.min.js │ │ │ └── jquery-ui.min.js │ ├── punycode.js │ ├── punycode.min.js │ ├── rating │ │ ├── delete.gif │ │ ├── jquery.rating.css │ │ └── star.gif │ ├── treeview │ │ ├── images │ │ │ ├── ajax-loader.gif │ │ │ ├── file.gif │ │ │ ├── folder-closed.gif │ │ │ ├── folder.gif │ │ │ ├── minus.gif │ │ │ ├── plus.gif │ │ │ ├── treeview-black-line.gif │ │ │ ├── treeview-black.gif │ │ │ ├── treeview-default-line.gif │ │ │ ├── treeview-default.gif │ │ │ ├── treeview-famfamfam-line.gif │ │ │ ├── treeview-famfamfam.gif │ │ │ ├── treeview-gray-line.gif │ │ │ ├── treeview-gray.gif │ │ │ ├── treeview-red-line.gif │ │ │ └── treeview-red.gif │ │ └── jquery.treeview.css │ └── yiitab │ │ └── jquery.yiitab.css ├── 66359f5d │ ├── css │ │ ├── ie.css │ │ ├── main.css │ │ ├── print.css │ │ └── screen.css │ ├── images │ │ └── logo.png │ └── js │ │ ├── fancybox │ │ ├── blank.gif │ │ ├── fancy_close.png │ │ ├── fancy_loading.png │ │ ├── fancy_nav_left.png │ │ ├── fancy_nav_right.png │ │ ├── fancy_shadow_e.png │ │ ├── fancy_shadow_n.png │ │ ├── fancy_shadow_ne.png │ │ ├── fancy_shadow_nw.png │ │ ├── fancy_shadow_s.png │ │ ├── fancy_shadow_se.png │ │ ├── fancy_shadow_sw.png │ │ ├── fancy_shadow_w.png │ │ ├── fancy_title_left.png │ │ ├── fancy_title_main.png │ │ ├── fancy_title_over.png │ │ ├── fancy_title_right.png │ │ ├── fancybox-x.png │ │ ├── fancybox-y.png │ │ ├── fancybox.png │ │ ├── jquery.fancybox-1.3.1.css │ │ └── jquery.fancybox-1.3.1.pack.js │ │ ├── jquery.tooltip-1.2.6.min.js │ │ └── main.js ├── 7dd2697a │ └── pager.css ├── ab16d655 │ ├── autocomplete │ │ ├── indicator.gif │ │ └── jquery.autocomplete.css │ ├── jquery.ajaxqueue.js │ ├── jquery.autocomplete.js │ ├── jquery.ba-bbq.js │ ├── jquery.ba-bbq.min.js │ ├── jquery.bgiframe.js │ ├── jquery.cookie.js │ ├── jquery.history.js │ ├── jquery.js │ ├── jquery.maskedinput.js │ ├── jquery.maskedinput.min.js │ ├── jquery.metadata.js │ ├── jquery.min.js │ ├── jquery.multifile.js │ ├── jquery.rating.js │ ├── jquery.treeview.async.js │ ├── jquery.treeview.edit.js │ ├── jquery.treeview.js │ ├── jquery.yii.js │ ├── jquery.yiiactiveform.js │ ├── jquery.yiitab.js │ ├── jui │ │ ├── css │ │ │ └── base │ │ │ │ ├── images │ │ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ │ │ ├── ui-bg_flat_75_ffffff_40x100.png │ │ │ │ ├── ui-bg_glass_55_fbf9ee_1x400.png │ │ │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ │ │ ├── ui-bg_glass_75_dadada_1x400.png │ │ │ │ ├── ui-bg_glass_75_e6e6e6_1x400.png │ │ │ │ ├── ui-bg_glass_95_fef1ec_1x400.png │ │ │ │ ├── ui-bg_highlight-soft_75_cccccc_1x100.png │ │ │ │ ├── ui-icons_222222_256x240.png │ │ │ │ ├── ui-icons_2e83ff_256x240.png │ │ │ │ ├── ui-icons_454545_256x240.png │ │ │ │ ├── ui-icons_888888_256x240.png │ │ │ │ └── ui-icons_cd0a0a_256x240.png │ │ │ │ ├── jquery-ui.css │ │ │ │ ├── jquery.ui.accordion.css │ │ │ │ ├── jquery.ui.autocomplete.css │ │ │ │ ├── jquery.ui.button.css │ │ │ │ ├── jquery.ui.core.css │ │ │ │ ├── jquery.ui.datepicker.css │ │ │ │ ├── jquery.ui.dialog.css │ │ │ │ ├── jquery.ui.menu.css │ │ │ │ ├── jquery.ui.progressbar.css │ │ │ │ ├── jquery.ui.resizable.css │ │ │ │ ├── jquery.ui.selectable.css │ │ │ │ ├── jquery.ui.slider.css │ │ │ │ ├── jquery.ui.spinner.css │ │ │ │ ├── jquery.ui.tabs.css │ │ │ │ ├── jquery.ui.theme.css │ │ │ │ └── jquery.ui.tooltip.css │ │ └── js │ │ │ ├── jquery-ui-i18n.min.js │ │ │ └── jquery-ui.min.js │ ├── punycode.js │ ├── punycode.min.js │ ├── rating │ │ ├── delete.gif │ │ ├── jquery.rating.css │ │ └── star.gif │ ├── treeview │ │ ├── images │ │ │ ├── ajax-loader.gif │ │ │ ├── file.gif │ │ │ ├── folder-closed.gif │ │ │ ├── folder.gif │ │ │ ├── minus.gif │ │ │ ├── plus.gif │ │ │ ├── treeview-black-line.gif │ │ │ ├── treeview-black.gif │ │ │ ├── treeview-default-line.gif │ │ │ ├── treeview-default.gif │ │ │ ├── treeview-famfamfam-line.gif │ │ │ ├── treeview-famfamfam.gif │ │ │ ├── treeview-gray-line.gif │ │ │ ├── treeview-gray.gif │ │ │ ├── treeview-red-line.gif │ │ │ └── treeview-red.gif │ │ └── jquery.treeview.css │ └── yiitab │ │ └── jquery.yiitab.css └── f767d669 │ └── pager.css ├── css ├── MarkerCluster.Default.css ├── MarkerCluster.css ├── bootstrap-multiselect.css ├── bootstrap-theme.css ├── bootstrap-theme.min.css ├── bootstrap.css ├── bootstrap.min.css ├── fonts │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.svg │ ├── glyphicons-halflings-regular.ttf │ └── glyphicons-halflings-regular.woff ├── images │ ├── animated-overlay.gif │ ├── spritesheet-2x.png │ ├── spritesheet.png │ ├── ui-bg_diagonals-thick_18_b81900_40x40.png │ ├── ui-bg_diagonals-thick_20_666666_40x40.png │ ├── ui-bg_flat_10_000000_40x100.png │ ├── ui-bg_glass_100_f6f6f6_1x400.png │ ├── ui-bg_glass_100_fdf5ce_1x400.png │ ├── ui-bg_glass_65_ffffff_1x400.png │ ├── ui-bg_gloss-wave_35_f6a828_500x100.png │ ├── ui-bg_highlight-soft_100_eeeeee_1x100.png │ ├── ui-bg_highlight-soft_75_ffe45c_1x100.png │ ├── ui-icons_222222_256x240.png │ ├── ui-icons_228ef1_256x240.png │ ├── ui-icons_ef8c08_256x240.png │ ├── ui-icons_ffd27a_256x240.png │ └── ui-icons_ffffff_256x240.png ├── jquery-ui-1.10.4.custom.css ├── jquery-ui-1.10.4.custom.min.css ├── l.geosearch.css ├── leaflet.css ├── leaflet.draw.css ├── passfield.min.css ├── rand.png ├── rand@2x.png ├── screen_add_edit_form.css ├── style-default.css └── style-hipster.css ├── favicon.ico ├── fw ├── .gitignore ├── .htaccess ├── YiiBase.php ├── base │ ├── CApplication.php │ ├── CApplicationComponent.php │ ├── CBehavior.php │ ├── CComponent.php │ ├── CErrorEvent.php │ ├── CErrorHandler.php │ ├── CException.php │ ├── CExceptionEvent.php │ ├── CHttpException.php │ ├── CModel.php │ ├── CModelBehavior.php │ ├── CModelEvent.php │ ├── CModule.php │ ├── CSecurityManager.php │ ├── CStatePersister.php │ └── interfaces.php ├── caching │ ├── CApcCache.php │ ├── CCache.php │ ├── CDbCache.php │ ├── CDummyCache.php │ ├── CEAcceleratorCache.php │ ├── CFileCache.php │ ├── CMemCache.php │ ├── CWinCache.php │ ├── CXCache.php │ ├── CZendDataCache.php │ └── dependencies │ │ ├── CCacheDependency.php │ │ ├── CChainedCacheDependency.php │ │ ├── CDbCacheDependency.php │ │ ├── CDirectoryCacheDependency.php │ │ ├── CExpressionDependency.php │ │ ├── CFileCacheDependency.php │ │ └── CGlobalStateCacheDependency.php ├── cli │ ├── commands │ │ ├── MessageCommand.php │ │ ├── MigrateCommand.php │ │ ├── ShellCommand.php │ │ ├── WebAppCommand.php │ │ └── shell │ │ │ ├── ControllerCommand.php │ │ │ ├── CrudCommand.php │ │ │ ├── FormCommand.php │ │ │ ├── HelpCommand.php │ │ │ ├── ModelCommand.php │ │ │ └── ModuleCommand.php │ └── views │ │ ├── shell │ │ ├── controller │ │ │ ├── controller.php │ │ │ └── view.php │ │ ├── crud │ │ │ ├── _form.php │ │ │ ├── _search.php │ │ │ ├── _view.php │ │ │ ├── admin.php │ │ │ ├── controller.php │ │ │ ├── create.php │ │ │ ├── index.php │ │ │ ├── test.php │ │ │ ├── update.php │ │ │ └── view.php │ │ ├── form │ │ │ ├── action.php │ │ │ └── form.php │ │ ├── model │ │ │ ├── fixture.php │ │ │ ├── model.php │ │ │ └── test.php │ │ └── module │ │ │ ├── controllers │ │ │ └── DefaultController.php │ │ │ ├── module.php │ │ │ └── views │ │ │ └── default │ │ │ └── index.php │ │ └── webapp │ │ ├── assets │ │ ├── git-gitignore │ │ └── hg-hgkeep │ │ ├── css │ │ ├── bg.gif │ │ ├── form.css │ │ ├── ie.css │ │ ├── main.css │ │ ├── print.css │ │ └── screen.css │ │ ├── hg-hgignore │ │ ├── images │ │ ├── git-gitkeep │ │ └── hg-hgkeep │ │ ├── index-test.php │ │ ├── index.php │ │ ├── protected │ │ ├── .htaccess │ │ ├── commands │ │ │ └── shell │ │ │ │ ├── git-gitkeep │ │ │ │ └── hg-hgkeep │ │ ├── components │ │ │ ├── Controller.php │ │ │ └── UserIdentity.php │ │ ├── config │ │ │ ├── console.php │ │ │ ├── main.php │ │ │ └── test.php │ │ ├── controllers │ │ │ └── SiteController.php │ │ ├── data │ │ │ ├── schema.mysql.sql │ │ │ ├── schema.sqlite.sql │ │ │ └── testdrive.db │ │ ├── extensions │ │ │ ├── git-gitkeep │ │ │ └── hg-hgkeep │ │ ├── messages │ │ │ ├── git-gitkeep │ │ │ └── hg-hgkeep │ │ ├── migrations │ │ │ ├── git-gitkeep │ │ │ └── hg-hgkeep │ │ ├── models │ │ │ ├── ContactForm.php │ │ │ └── LoginForm.php │ │ ├── runtime │ │ │ ├── git-gitignore │ │ │ └── hg-hgkeep │ │ ├── tests │ │ │ ├── WebTestCase.php │ │ │ ├── bootstrap.php │ │ │ ├── fixtures │ │ │ │ ├── git-gitkeep │ │ │ │ └── hg-hgkeep │ │ │ ├── functional │ │ │ │ └── SiteTest.php │ │ │ ├── phpunit.xml │ │ │ ├── report │ │ │ │ ├── git-gitignore │ │ │ │ └── hg-hgkeep │ │ │ └── unit │ │ │ │ ├── git-gitkeep │ │ │ │ └── hg-hgkeep │ │ ├── views │ │ │ ├── layouts │ │ │ │ ├── column1.php │ │ │ │ ├── column2.php │ │ │ │ └── main.php │ │ │ └── site │ │ │ │ ├── contact.php │ │ │ │ ├── error.php │ │ │ │ ├── index.php │ │ │ │ ├── login.php │ │ │ │ └── pages │ │ │ │ └── about.php │ │ ├── yiic │ │ ├── yiic.bat │ │ └── yiic.php │ │ └── themes │ │ └── classic │ │ └── views │ │ ├── .htaccess │ │ ├── layouts │ │ ├── git-gitkeep │ │ └── hg-hgkeep │ │ ├── site │ │ ├── git-gitkeep │ │ └── hg-hgkeep │ │ └── system │ │ ├── git-gitkeep │ │ └── hg-hgkeep ├── collections │ ├── CAttributeCollection.php │ ├── CConfiguration.php │ ├── CList.php │ ├── CListIterator.php │ ├── CMap.php │ ├── CMapIterator.php │ ├── CQueue.php │ ├── CQueueIterator.php │ ├── CStack.php │ ├── CStackIterator.php │ ├── CTypedList.php │ └── CTypedMap.php ├── console │ ├── CConsoleApplication.php │ ├── CConsoleCommand.php │ ├── CConsoleCommandBehavior.php │ ├── CConsoleCommandEvent.php │ ├── CConsoleCommandRunner.php │ └── CHelpCommand.php ├── db │ ├── CDbCommand.php │ ├── CDbConnection.php │ ├── CDbDataReader.php │ ├── CDbException.php │ ├── CDbMigration.php │ ├── CDbTransaction.php │ ├── ar │ │ ├── CActiveFinder.php │ │ ├── CActiveRecord.php │ │ └── CActiveRecordBehavior.php │ └── schema │ │ ├── CDbColumnSchema.php │ │ ├── CDbCommandBuilder.php │ │ ├── CDbCriteria.php │ │ ├── CDbExpression.php │ │ ├── CDbSchema.php │ │ ├── CDbTableSchema.php │ │ ├── mssql │ │ ├── CMssqlColumnSchema.php │ │ ├── CMssqlCommandBuilder.php │ │ ├── CMssqlPdoAdapter.php │ │ ├── CMssqlSchema.php │ │ ├── CMssqlSqlsrvPdoAdapter.php │ │ └── CMssqlTableSchema.php │ │ ├── mysql │ │ ├── CMysqlColumnSchema.php │ │ ├── CMysqlCommandBuilder.php │ │ ├── CMysqlSchema.php │ │ └── CMysqlTableSchema.php │ │ ├── oci │ │ ├── COciColumnSchema.php │ │ ├── COciCommandBuilder.php │ │ ├── COciSchema.php │ │ └── COciTableSchema.php │ │ ├── pgsql │ │ ├── CPgsqlColumnSchema.php │ │ ├── CPgsqlSchema.php │ │ └── CPgsqlTableSchema.php │ │ └── sqlite │ │ ├── CSqliteColumnSchema.php │ │ ├── CSqliteCommandBuilder.php │ │ └── CSqliteSchema.php ├── gii │ ├── CCodeFile.php │ ├── CCodeForm.php │ ├── CCodeGenerator.php │ ├── CCodeModel.php │ ├── GiiModule.php │ ├── assets │ │ ├── css │ │ │ ├── ie.css │ │ │ ├── main.css │ │ │ ├── print.css │ │ │ └── screen.css │ │ ├── images │ │ │ └── logo.png │ │ └── js │ │ │ ├── fancybox │ │ │ ├── blank.gif │ │ │ ├── fancy_close.png │ │ │ ├── fancy_loading.png │ │ │ ├── fancy_nav_left.png │ │ │ ├── fancy_nav_right.png │ │ │ ├── fancy_shadow_e.png │ │ │ ├── fancy_shadow_n.png │ │ │ ├── fancy_shadow_ne.png │ │ │ ├── fancy_shadow_nw.png │ │ │ ├── fancy_shadow_s.png │ │ │ ├── fancy_shadow_se.png │ │ │ ├── fancy_shadow_sw.png │ │ │ ├── fancy_shadow_w.png │ │ │ ├── fancy_title_left.png │ │ │ ├── fancy_title_main.png │ │ │ ├── fancy_title_over.png │ │ │ ├── fancy_title_right.png │ │ │ ├── fancybox-x.png │ │ │ ├── fancybox-y.png │ │ │ ├── fancybox.png │ │ │ ├── jquery.fancybox-1.3.1.css │ │ │ └── jquery.fancybox-1.3.1.pack.js │ │ │ └── main.js │ ├── components │ │ ├── Pear │ │ │ └── Text │ │ │ │ ├── Diff.php │ │ │ │ ├── Diff │ │ │ │ ├── Engine │ │ │ │ │ ├── native.php │ │ │ │ │ ├── shell.php │ │ │ │ │ ├── string.php │ │ │ │ │ └── xdiff.php │ │ │ │ ├── Mapped.php │ │ │ │ ├── Renderer.php │ │ │ │ ├── Renderer │ │ │ │ │ ├── context.php │ │ │ │ │ ├── inline.php │ │ │ │ │ └── unified.php │ │ │ │ └── ThreeWay.php │ │ │ │ └── Diff3.php │ │ ├── TextDiff.php │ │ └── UserIdentity.php │ ├── controllers │ │ └── DefaultController.php │ ├── generators │ │ ├── controller │ │ │ ├── ControllerCode.php │ │ │ ├── ControllerGenerator.php │ │ │ ├── templates │ │ │ │ └── default │ │ │ │ │ ├── controller.php │ │ │ │ │ └── view.php │ │ │ └── views │ │ │ │ └── index.php │ │ ├── crud │ │ │ ├── CrudCode.php │ │ │ ├── CrudGenerator.php │ │ │ ├── templates │ │ │ │ └── default │ │ │ │ │ ├── _form.php │ │ │ │ │ ├── _search.php │ │ │ │ │ ├── _view.php │ │ │ │ │ ├── admin.php │ │ │ │ │ ├── controller.php │ │ │ │ │ ├── create.php │ │ │ │ │ ├── index.php │ │ │ │ │ ├── update.php │ │ │ │ │ └── view.php │ │ │ └── views │ │ │ │ └── index.php │ │ ├── form │ │ │ ├── FormCode.php │ │ │ ├── FormGenerator.php │ │ │ ├── templates │ │ │ │ └── default │ │ │ │ │ ├── action.php │ │ │ │ │ └── form.php │ │ │ └── views │ │ │ │ └── index.php │ │ ├── model │ │ │ ├── ModelCode.php │ │ │ ├── ModelGenerator.php │ │ │ ├── templates │ │ │ │ └── default │ │ │ │ │ └── model.php │ │ │ └── views │ │ │ │ └── index.php │ │ └── module │ │ │ ├── ModuleCode.php │ │ │ ├── ModuleGenerator.php │ │ │ ├── templates │ │ │ └── default │ │ │ │ ├── controllers │ │ │ │ └── DefaultController.php │ │ │ │ ├── module.php │ │ │ │ └── views │ │ │ │ └── default │ │ │ │ └── index.php │ │ │ └── views │ │ │ └── index.php │ ├── models │ │ └── LoginForm.php │ └── views │ │ ├── common │ │ ├── code.php │ │ ├── diff.php │ │ └── generator.php │ │ ├── default │ │ ├── error.php │ │ ├── index.php │ │ └── login.php │ │ └── layouts │ │ ├── column1.php │ │ ├── generator.php │ │ └── main.php ├── i18n │ ├── CChoiceFormat.php │ ├── CDateFormatter.php │ ├── CDbMessageSource.php │ ├── CGettextMessageSource.php │ ├── CLocale.php │ ├── CMessageSource.php │ ├── CNumberFormatter.php │ ├── CPhpMessageSource.php │ ├── data │ │ ├── README.txt │ │ ├── aa.php │ │ ├── aa_dj.php │ │ ├── aa_er.php │ │ ├── aa_et.php │ │ ├── af.php │ │ ├── af_na.php │ │ ├── af_za.php │ │ ├── agq.php │ │ ├── agq_cm.php │ │ ├── ak.php │ │ ├── ak_gh.php │ │ ├── am.php │ │ ├── am_et.php │ │ ├── ar.php │ │ ├── ar_001.php │ │ ├── ar_ae.php │ │ ├── ar_bh.php │ │ ├── ar_dz.php │ │ ├── ar_eg.php │ │ ├── ar_iq.php │ │ ├── ar_jo.php │ │ ├── ar_kw.php │ │ ├── ar_lb.php │ │ ├── ar_ly.php │ │ ├── ar_ma.php │ │ ├── ar_om.php │ │ ├── ar_qa.php │ │ ├── ar_sa.php │ │ ├── ar_sd.php │ │ ├── ar_sy.php │ │ ├── ar_tn.php │ │ ├── ar_ye.php │ │ ├── as.php │ │ ├── as_in.php │ │ ├── asa.php │ │ ├── asa_tz.php │ │ ├── az.php │ │ ├── az_arab.php │ │ ├── az_arab_ir.php │ │ ├── az_az.php │ │ ├── az_cyrl.php │ │ ├── az_cyrl_az.php │ │ ├── az_ir.php │ │ ├── az_latn.php │ │ ├── az_latn_az.php │ │ ├── bas.php │ │ ├── bas_cm.php │ │ ├── be.php │ │ ├── be_by.php │ │ ├── bem.php │ │ ├── bem_zm.php │ │ ├── bez.php │ │ ├── bez_tz.php │ │ ├── bg.php │ │ ├── bg_bg.php │ │ ├── bm.php │ │ ├── bm_ml.php │ │ ├── bn.php │ │ ├── bn_bd.php │ │ ├── bn_in.php │ │ ├── bo.php │ │ ├── bo_cn.php │ │ ├── bo_in.php │ │ ├── br.php │ │ ├── br_fr.php │ │ ├── brx.php │ │ ├── brx_in.php │ │ ├── bs.php │ │ ├── bs_ba.php │ │ ├── byn.php │ │ ├── byn_er.php │ │ ├── ca.php │ │ ├── ca_es.php │ │ ├── cch.php │ │ ├── cch_ng.php │ │ ├── cgg.php │ │ ├── cgg_ug.php │ │ ├── chr.php │ │ ├── chr_us.php │ │ ├── cs.php │ │ ├── cs_cz.php │ │ ├── cy.php │ │ ├── cy_gb.php │ │ ├── da.php │ │ ├── da_dk.php │ │ ├── dav.php │ │ ├── dav_ke.php │ │ ├── de.php │ │ ├── de_at.php │ │ ├── de_be.php │ │ ├── de_ch.php │ │ ├── de_de.php │ │ ├── de_li.php │ │ ├── de_lu.php │ │ ├── dje.php │ │ ├── dje_ne.php │ │ ├── dua.php │ │ ├── dua_cm.php │ │ ├── dv.php │ │ ├── dv_mv.php │ │ ├── dyo.php │ │ ├── dyo_sn.php │ │ ├── dz.php │ │ ├── dz_bt.php │ │ ├── ebu.php │ │ ├── ebu_ke.php │ │ ├── ee.php │ │ ├── ee_gh.php │ │ ├── ee_tg.php │ │ ├── el.php │ │ ├── el_cy.php │ │ ├── el_gr.php │ │ ├── el_polyton.php │ │ ├── en.php │ │ ├── en_as.php │ │ ├── en_au.php │ │ ├── en_bb.php │ │ ├── en_be.php │ │ ├── en_bm.php │ │ ├── en_bw.php │ │ ├── en_bz.php │ │ ├── en_ca.php │ │ ├── en_dsrt.php │ │ ├── en_dsrt_us.php │ │ ├── en_gb.php │ │ ├── en_gu.php │ │ ├── en_gy.php │ │ ├── en_hk.php │ │ ├── en_ie.php │ │ ├── en_in.php │ │ ├── en_jm.php │ │ ├── en_mh.php │ │ ├── en_mp.php │ │ ├── en_mt.php │ │ ├── en_mu.php │ │ ├── en_na.php │ │ ├── en_nz.php │ │ ├── en_ph.php │ │ ├── en_pk.php │ │ ├── en_sg.php │ │ ├── en_shaw.php │ │ ├── en_tt.php │ │ ├── en_um.php │ │ ├── en_us.php │ │ ├── en_us_posix.php │ │ ├── en_vi.php │ │ ├── en_za.php │ │ ├── en_zw.php │ │ ├── en_zz.php │ │ ├── eo.php │ │ ├── es.php │ │ ├── es_419.php │ │ ├── es_ar.php │ │ ├── es_bo.php │ │ ├── es_cl.php │ │ ├── es_co.php │ │ ├── es_cr.php │ │ ├── es_do.php │ │ ├── es_ec.php │ │ ├── es_es.php │ │ ├── es_gq.php │ │ ├── es_gt.php │ │ ├── es_hn.php │ │ ├── es_mx.php │ │ ├── es_ni.php │ │ ├── es_pa.php │ │ ├── es_pe.php │ │ ├── es_pr.php │ │ ├── es_py.php │ │ ├── es_sv.php │ │ ├── es_us.php │ │ ├── es_uy.php │ │ ├── es_ve.php │ │ ├── et.php │ │ ├── et_ee.php │ │ ├── eu.php │ │ ├── eu_es.php │ │ ├── ewo.php │ │ ├── ewo_cm.php │ │ ├── fa.php │ │ ├── fa_af.php │ │ ├── fa_ir.php │ │ ├── ff.php │ │ ├── ff_sn.php │ │ ├── fi.php │ │ ├── fi_fi.php │ │ ├── fil.php │ │ ├── fil_ph.php │ │ ├── fo.php │ │ ├── fo_fo.php │ │ ├── fr.php │ │ ├── fr_be.php │ │ ├── fr_bf.php │ │ ├── fr_bi.php │ │ ├── fr_bj.php │ │ ├── fr_bl.php │ │ ├── fr_ca.php │ │ ├── fr_cd.php │ │ ├── fr_cf.php │ │ ├── fr_cg.php │ │ ├── fr_ch.php │ │ ├── fr_ci.php │ │ ├── fr_cm.php │ │ ├── fr_dj.php │ │ ├── fr_fr.php │ │ ├── fr_ga.php │ │ ├── fr_gf.php │ │ ├── fr_gn.php │ │ ├── fr_gp.php │ │ ├── fr_gq.php │ │ ├── fr_km.php │ │ ├── fr_lu.php │ │ ├── fr_mc.php │ │ ├── fr_mf.php │ │ ├── fr_mg.php │ │ ├── fr_ml.php │ │ ├── fr_mq.php │ │ ├── fr_ne.php │ │ ├── fr_re.php │ │ ├── fr_rw.php │ │ ├── fr_sn.php │ │ ├── fr_td.php │ │ ├── fr_tg.php │ │ ├── fr_yt.php │ │ ├── fur.php │ │ ├── fur_it.php │ │ ├── ga.php │ │ ├── ga_ie.php │ │ ├── gaa.php │ │ ├── gaa_gh.php │ │ ├── gd.php │ │ ├── gd_gb.php │ │ ├── gez.php │ │ ├── gez_er.php │ │ ├── gez_et.php │ │ ├── gl.php │ │ ├── gl_es.php │ │ ├── gsw.php │ │ ├── gsw_ch.php │ │ ├── gu.php │ │ ├── gu_in.php │ │ ├── guz.php │ │ ├── guz_ke.php │ │ ├── gv.php │ │ ├── gv_gb.php │ │ ├── ha.php │ │ ├── ha_arab.php │ │ ├── ha_arab_ng.php │ │ ├── ha_arab_sd.php │ │ ├── ha_gh.php │ │ ├── ha_latn.php │ │ ├── ha_latn_gh.php │ │ ├── ha_latn_ne.php │ │ ├── ha_latn_ng.php │ │ ├── ha_ne.php │ │ ├── ha_ng.php │ │ ├── ha_sd.php │ │ ├── haw.php │ │ ├── haw_us.php │ │ ├── he.php │ │ ├── he_il.php │ │ ├── hi.php │ │ ├── hi_in.php │ │ ├── hr.php │ │ ├── hr_hr.php │ │ ├── hu.php │ │ ├── hu_hu.php │ │ ├── hy.php │ │ ├── hy_am.php │ │ ├── ia.php │ │ ├── id.php │ │ ├── id_id.php │ │ ├── ig.php │ │ ├── ig_ng.php │ │ ├── ii.php │ │ ├── ii_cn.php │ │ ├── in.php │ │ ├── is.php │ │ ├── is_is.php │ │ ├── it.php │ │ ├── it_ch.php │ │ ├── it_it.php │ │ ├── iu.php │ │ ├── iw.php │ │ ├── ja.php │ │ ├── ja_jp.php │ │ ├── jmc.php │ │ ├── jmc_tz.php │ │ ├── ka.php │ │ ├── ka_ge.php │ │ ├── kab.php │ │ ├── kab_dz.php │ │ ├── kaj.php │ │ ├── kaj_ng.php │ │ ├── kam.php │ │ ├── kam_ke.php │ │ ├── kcg.php │ │ ├── kcg_ng.php │ │ ├── kde.php │ │ ├── kde_tz.php │ │ ├── kea.php │ │ ├── kea_cv.php │ │ ├── kfo.php │ │ ├── kfo_ci.php │ │ ├── khq.php │ │ ├── khq_ml.php │ │ ├── ki.php │ │ ├── ki_ke.php │ │ ├── kk.php │ │ ├── kk_cyrl.php │ │ ├── kk_cyrl_kz.php │ │ ├── kk_kz.php │ │ ├── kl.php │ │ ├── kl_gl.php │ │ ├── kln.php │ │ ├── kln_ke.php │ │ ├── km.php │ │ ├── km_kh.php │ │ ├── kn.php │ │ ├── kn_in.php │ │ ├── ko.php │ │ ├── ko_kr.php │ │ ├── kok.php │ │ ├── kok_in.php │ │ ├── kpe.php │ │ ├── kpe_gn.php │ │ ├── kpe_lr.php │ │ ├── ksb.php │ │ ├── ksb_tz.php │ │ ├── ksf.php │ │ ├── ksf_cm.php │ │ ├── ksh.php │ │ ├── ksh_de.php │ │ ├── ku.php │ │ ├── ku_arab.php │ │ ├── ku_arab_iq.php │ │ ├── ku_arab_ir.php │ │ ├── ku_iq.php │ │ ├── ku_ir.php │ │ ├── ku_latn.php │ │ ├── ku_latn_sy.php │ │ ├── ku_latn_tr.php │ │ ├── ku_sy.php │ │ ├── ku_tr.php │ │ ├── kw.php │ │ ├── kw_gb.php │ │ ├── ky.php │ │ ├── ky_kg.php │ │ ├── lag.php │ │ ├── lag_tz.php │ │ ├── lg.php │ │ ├── lg_ug.php │ │ ├── ln.php │ │ ├── ln_cd.php │ │ ├── ln_cg.php │ │ ├── lo.php │ │ ├── lo_la.php │ │ ├── lt.php │ │ ├── lt_lt.php │ │ ├── lu.php │ │ ├── lu_cd.php │ │ ├── luo.php │ │ ├── luo_ke.php │ │ ├── luy.php │ │ ├── luy_ke.php │ │ ├── lv.php │ │ ├── lv_lv.php │ │ ├── mas.php │ │ ├── mas_ke.php │ │ ├── mas_tz.php │ │ ├── mer.php │ │ ├── mer_ke.php │ │ ├── mfe.php │ │ ├── mfe_mu.php │ │ ├── mg.php │ │ ├── mg_mg.php │ │ ├── mgh.php │ │ ├── mgh_mz.php │ │ ├── mi.php │ │ ├── mi_nz.php │ │ ├── mk.php │ │ ├── mk_mk.php │ │ ├── ml.php │ │ ├── ml_in.php │ │ ├── mn.php │ │ ├── mn_cn.php │ │ ├── mn_cyrl.php │ │ ├── mn_cyrl_mn.php │ │ ├── mn_mn.php │ │ ├── mn_mong.php │ │ ├── mn_mong_cn.php │ │ ├── mo.php │ │ ├── mr.php │ │ ├── mr_in.php │ │ ├── ms.php │ │ ├── ms_bn.php │ │ ├── ms_my.php │ │ ├── mt.php │ │ ├── mt_mt.php │ │ ├── mua.php │ │ ├── mua_cm.php │ │ ├── my.php │ │ ├── my_mm.php │ │ ├── naq.php │ │ ├── naq_na.php │ │ ├── nb.php │ │ ├── nb_no.php │ │ ├── nd.php │ │ ├── nd_zw.php │ │ ├── nds.php │ │ ├── nds_de.php │ │ ├── ne.php │ │ ├── ne_in.php │ │ ├── ne_np.php │ │ ├── nl.php │ │ ├── nl_aw.php │ │ ├── nl_be.php │ │ ├── nl_cw.php │ │ ├── nl_nl.php │ │ ├── nl_sx.php │ │ ├── nmg.php │ │ ├── nmg_cm.php │ │ ├── nn.php │ │ ├── nn_no.php │ │ ├── no.php │ │ ├── nr.php │ │ ├── nr_za.php │ │ ├── nso.php │ │ ├── nso_za.php │ │ ├── nus.php │ │ ├── nus_sd.php │ │ ├── ny.php │ │ ├── ny_mw.php │ │ ├── nyn.php │ │ ├── nyn_ug.php │ │ ├── oc.php │ │ ├── oc_fr.php │ │ ├── om.php │ │ ├── om_et.php │ │ ├── om_ke.php │ │ ├── or.php │ │ ├── or_in.php │ │ ├── pa.php │ │ ├── pa_arab.php │ │ ├── pa_arab_pk.php │ │ ├── pa_guru.php │ │ ├── pa_guru_in.php │ │ ├── pa_in.php │ │ ├── pa_pk.php │ │ ├── pl.php │ │ ├── pl_pl.php │ │ ├── ps.php │ │ ├── ps_af.php │ │ ├── pt.php │ │ ├── pt_ao.php │ │ ├── pt_br.php │ │ ├── pt_gw.php │ │ ├── pt_mz.php │ │ ├── pt_pt.php │ │ ├── pt_st.php │ │ ├── rm.php │ │ ├── rm_ch.php │ │ ├── rn.php │ │ ├── rn_bi.php │ │ ├── ro.php │ │ ├── ro_md.php │ │ ├── ro_ro.php │ │ ├── rof.php │ │ ├── rof_tz.php │ │ ├── root.php │ │ ├── ru.php │ │ ├── ru_md.php │ │ ├── ru_ru.php │ │ ├── ru_ua.php │ │ ├── rw.php │ │ ├── rw_rw.php │ │ ├── rwk.php │ │ ├── rwk_tz.php │ │ ├── sa.php │ │ ├── sa_in.php │ │ ├── sah.php │ │ ├── sah_ru.php │ │ ├── saq.php │ │ ├── saq_ke.php │ │ ├── sbp.php │ │ ├── sbp_tz.php │ │ ├── se.php │ │ ├── se_fi.php │ │ ├── se_no.php │ │ ├── seh.php │ │ ├── seh_mz.php │ │ ├── ses.php │ │ ├── ses_ml.php │ │ ├── sg.php │ │ ├── sg_cf.php │ │ ├── sh.php │ │ ├── sh_ba.php │ │ ├── sh_cs.php │ │ ├── sh_yu.php │ │ ├── shi.php │ │ ├── shi_latn.php │ │ ├── shi_latn_ma.php │ │ ├── shi_ma.php │ │ ├── shi_tfng.php │ │ ├── shi_tfng_ma.php │ │ ├── si.php │ │ ├── si_lk.php │ │ ├── sid.php │ │ ├── sid_et.php │ │ ├── sk.php │ │ ├── sk_sk.php │ │ ├── sl.php │ │ ├── sl_si.php │ │ ├── sn.php │ │ ├── sn_zw.php │ │ ├── so.php │ │ ├── so_dj.php │ │ ├── so_et.php │ │ ├── so_ke.php │ │ ├── so_so.php │ │ ├── sq.php │ │ ├── sq_al.php │ │ ├── sr.php │ │ ├── sr_ba.php │ │ ├── sr_cs.php │ │ ├── sr_cyrl.php │ │ ├── sr_cyrl_ba.php │ │ ├── sr_cyrl_cs.php │ │ ├── sr_cyrl_me.php │ │ ├── sr_cyrl_rs.php │ │ ├── sr_cyrl_yu.php │ │ ├── sr_latn.php │ │ ├── sr_latn_ba.php │ │ ├── sr_latn_cs.php │ │ ├── sr_latn_me.php │ │ ├── sr_latn_rs.php │ │ ├── sr_latn_yu.php │ │ ├── sr_me.php │ │ ├── sr_rs.php │ │ ├── sr_yu.php │ │ ├── ss.php │ │ ├── ss_sz.php │ │ ├── ss_za.php │ │ ├── ssy.php │ │ ├── ssy_er.php │ │ ├── st.php │ │ ├── st_ls.php │ │ ├── st_za.php │ │ ├── sv.php │ │ ├── sv_fi.php │ │ ├── sv_se.php │ │ ├── sw.php │ │ ├── sw_ke.php │ │ ├── sw_tz.php │ │ ├── swc.php │ │ ├── swc_cd.php │ │ ├── syr.php │ │ ├── syr_sy.php │ │ ├── ta.php │ │ ├── ta_in.php │ │ ├── ta_lk.php │ │ ├── te.php │ │ ├── te_in.php │ │ ├── teo.php │ │ ├── teo_ke.php │ │ ├── teo_ug.php │ │ ├── tg.php │ │ ├── tg_cyrl.php │ │ ├── tg_cyrl_tj.php │ │ ├── tg_tj.php │ │ ├── th.php │ │ ├── th_th.php │ │ ├── ti.php │ │ ├── ti_er.php │ │ ├── ti_et.php │ │ ├── tig.php │ │ ├── tig_er.php │ │ ├── tl.php │ │ ├── tl_ph.php │ │ ├── tn.php │ │ ├── tn_za.php │ │ ├── to.php │ │ ├── to_to.php │ │ ├── tr.php │ │ ├── tr_tr.php │ │ ├── trv.php │ │ ├── trv_tw.php │ │ ├── ts.php │ │ ├── ts_za.php │ │ ├── tt.php │ │ ├── tt_ru.php │ │ ├── twq.php │ │ ├── twq_ne.php │ │ ├── tzm.php │ │ ├── tzm_latn.php │ │ ├── tzm_latn_ma.php │ │ ├── tzm_ma.php │ │ ├── ug.php │ │ ├── ug_arab.php │ │ ├── ug_arab_cn.php │ │ ├── ug_cn.php │ │ ├── uk.php │ │ ├── uk_ua.php │ │ ├── ur.php │ │ ├── ur_in.php │ │ ├── ur_pk.php │ │ ├── uz.php │ │ ├── uz_af.php │ │ ├── uz_arab.php │ │ ├── uz_arab_af.php │ │ ├── uz_cyrl.php │ │ ├── uz_cyrl_uz.php │ │ ├── uz_latn.php │ │ ├── uz_latn_uz.php │ │ ├── uz_uz.php │ │ ├── vai.php │ │ ├── vai_latn.php │ │ ├── vai_latn_lr.php │ │ ├── vai_vaii.php │ │ ├── vai_vaii_lr.php │ │ ├── ve.php │ │ ├── ve_za.php │ │ ├── vi.php │ │ ├── vi_vn.php │ │ ├── vun.php │ │ ├── vun_tz.php │ │ ├── wae.php │ │ ├── wae_ch.php │ │ ├── wal.php │ │ ├── wal_et.php │ │ ├── wo.php │ │ ├── wo_latn.php │ │ ├── wo_latn_sn.php │ │ ├── wo_sn.php │ │ ├── xh.php │ │ ├── xh_za.php │ │ ├── xog.php │ │ ├── xog_ug.php │ │ ├── yav.php │ │ ├── yav_cm.php │ │ ├── yo.php │ │ ├── yo_ng.php │ │ ├── zh.php │ │ ├── zh_cn.php │ │ ├── zh_hans.php │ │ ├── zh_hans_cn.php │ │ ├── zh_hans_hk.php │ │ ├── zh_hans_mo.php │ │ ├── zh_hans_sg.php │ │ ├── zh_hant.php │ │ ├── zh_hant_hk.php │ │ ├── zh_hant_mo.php │ │ ├── zh_hant_tw.php │ │ ├── zh_hk.php │ │ ├── zh_mo.php │ │ ├── zh_sg.php │ │ ├── zh_tw.php │ │ ├── zu.php │ │ └── zu_za.php │ └── gettext │ │ ├── CGettextFile.php │ │ ├── CGettextMoFile.php │ │ └── CGettextPoFile.php ├── logging │ ├── CChainedLogFilter.php │ ├── CDbLogRoute.php │ ├── CEmailLogRoute.php │ ├── CFileLogRoute.php │ ├── CLogFilter.php │ ├── CLogRoute.php │ ├── CLogRouter.php │ ├── CLogger.php │ ├── CProfileLogRoute.php │ └── CWebLogRoute.php ├── messages │ ├── ar │ │ └── zii.php │ ├── bg │ │ ├── yii.php │ │ └── zii.php │ ├── bs │ │ └── yii.php │ ├── config.php │ ├── cs │ │ ├── yii.php │ │ └── zii.php │ ├── de │ │ ├── yii.php │ │ └── zii.php │ ├── el │ │ ├── yii.php │ │ └── zii.php │ ├── es │ │ ├── yii.php │ │ └── zii.php │ ├── fa_ir │ │ ├── yii.php │ │ └── zii.php │ ├── fi │ │ ├── yii.php │ │ └── zii.php │ ├── fr │ │ ├── yii.php │ │ └── zii.php │ ├── he │ │ ├── yii.php │ │ └── zii.php │ ├── hu │ │ ├── yii.php │ │ └── zii.php │ ├── id │ │ ├── yii.php │ │ └── zii.php │ ├── it │ │ ├── yii.php │ │ └── zii.php │ ├── ja │ │ ├── yii.php │ │ └── zii.php │ ├── kk │ │ ├── yii.php │ │ └── zii.php │ ├── ko_kr │ │ ├── yii.php │ │ └── zii.php │ ├── lt │ │ ├── yii.php │ │ └── zii.php │ ├── lv │ │ ├── yii.php │ │ └── zii.php │ ├── nl │ │ ├── yii.php │ │ └── zii.php │ ├── no │ │ └── yii.php │ ├── pl │ │ ├── yii.php │ │ └── zii.php │ ├── pt │ │ ├── yii.php │ │ └── zii.php │ ├── pt_br │ │ ├── yii.php │ │ └── zii.php │ ├── ro │ │ ├── yii.php │ │ └── zii.php │ ├── ru │ │ ├── yii.php │ │ └── zii.php │ ├── sk │ │ ├── yii.php │ │ └── zii.php │ ├── sr_sr │ │ ├── yii.php │ │ └── zii.php │ ├── sr_yu │ │ ├── yii.php │ │ └── zii.php │ ├── sv │ │ ├── yii.php │ │ └── zii.php │ ├── ta_in │ │ ├── yii.php │ │ └── zii.php │ ├── th │ │ └── yii.php │ ├── tr │ │ ├── yii.php │ │ └── zii.php │ ├── uk │ │ ├── yii.php │ │ └── zii.php │ ├── vi │ │ ├── yii.php │ │ └── zii.php │ ├── zh_cn │ │ ├── yii.php │ │ └── zii.php │ └── zh_tw │ │ ├── yii.php │ │ └── zii.php ├── test │ ├── CDbFixtureManager.php │ ├── CDbTestCase.php │ ├── CTestCase.php │ └── CWebTestCase.php ├── utils │ ├── CDateTimeParser.php │ ├── CFileHelper.php │ ├── CFormatter.php │ ├── CMarkdownParser.php │ ├── CPropertyValue.php │ ├── CTimestamp.php │ ├── CVarDumper.php │ └── mimeTypes.php ├── validators │ ├── CBooleanValidator.php │ ├── CCaptchaValidator.php │ ├── CCompareValidator.php │ ├── CDateValidator.php │ ├── CDefaultValueValidator.php │ ├── CEmailValidator.php │ ├── CExistValidator.php │ ├── CFileValidator.php │ ├── CFilterValidator.php │ ├── CInlineValidator.php │ ├── CNumberValidator.php │ ├── CRangeValidator.php │ ├── CRegularExpressionValidator.php │ ├── CRequiredValidator.php │ ├── CSafeValidator.php │ ├── CStringValidator.php │ ├── CTypeValidator.php │ ├── CUniqueValidator.php │ ├── CUnsafeValidator.php │ ├── CUrlValidator.php │ └── CValidator.php ├── vendors │ ├── README.html │ ├── TextHighlighter │ │ ├── Text │ │ │ ├── Highlighter.php │ │ │ ├── Highlighter │ │ │ │ ├── ABAP.php │ │ │ │ ├── CPP.php │ │ │ │ ├── CSS.php │ │ │ │ ├── DIFF.php │ │ │ │ ├── DTD.php │ │ │ │ ├── Generator.php │ │ │ │ ├── HTML.php │ │ │ │ ├── JAVA.php │ │ │ │ ├── JAVASCRIPT.php │ │ │ │ ├── MYSQL.php │ │ │ │ ├── PERL.php │ │ │ │ ├── PHP.php │ │ │ │ ├── PYTHON.php │ │ │ │ ├── RUBY.php │ │ │ │ ├── Renderer.php │ │ │ │ ├── Renderer │ │ │ │ │ ├── Array.php │ │ │ │ │ ├── BB.php │ │ │ │ │ ├── Console.php │ │ │ │ │ ├── Html.php │ │ │ │ │ ├── HtmlTags.php │ │ │ │ │ ├── JSON.php │ │ │ │ │ └── XML.php │ │ │ │ ├── SH.php │ │ │ │ ├── SQL.php │ │ │ │ ├── VBSCRIPT.php │ │ │ │ └── XML.php │ │ │ ├── README │ │ │ ├── TODO │ │ │ ├── abap.xml │ │ │ ├── cpp.xml │ │ │ ├── css.xml │ │ │ ├── diff.xml │ │ │ ├── dtd.xml │ │ │ ├── generate │ │ │ ├── generate.bat │ │ │ ├── html.xml │ │ │ ├── java.xml │ │ │ ├── javascript.xml │ │ │ ├── mysql.xml │ │ │ ├── package.xml │ │ │ ├── perl.xml │ │ │ ├── php.xml │ │ │ ├── python.xml │ │ │ ├── ruby.xml │ │ │ ├── sample.css │ │ │ ├── sh.xml │ │ │ ├── sql.xml │ │ │ ├── vbscript.xml │ │ │ └── xml.xml │ │ └── highlight.css │ ├── adodb │ │ └── LICENSE.txt │ ├── bbq │ │ └── LICENSE.txt │ ├── cldr │ │ └── LICENSE.txt │ ├── gettext │ │ └── LICENSE.txt │ ├── history │ │ └── license.txt │ ├── htmlpurifier │ │ ├── HTMLPurifier.standalone.php │ │ ├── LICENSE.txt │ │ └── standalone │ │ │ └── HTMLPurifier │ │ │ ├── ConfigSchema │ │ │ ├── Builder │ │ │ │ ├── ConfigSchema.php │ │ │ │ └── Xml.php │ │ │ ├── Exception.php │ │ │ ├── Interchange.php │ │ │ ├── Interchange │ │ │ │ ├── Directive.php │ │ │ │ └── Id.php │ │ │ ├── InterchangeBuilder.php │ │ │ ├── Validator.php │ │ │ ├── ValidatorAtom.php │ │ │ ├── schema.ser │ │ │ └── schema │ │ │ │ ├── Attr.AllowedClasses.txt │ │ │ │ ├── Attr.AllowedFrameTargets.txt │ │ │ │ ├── Attr.AllowedRel.txt │ │ │ │ ├── Attr.AllowedRev.txt │ │ │ │ ├── Attr.ClassUseCDATA.txt │ │ │ │ ├── Attr.DefaultImageAlt.txt │ │ │ │ ├── Attr.DefaultInvalidImage.txt │ │ │ │ ├── Attr.DefaultInvalidImageAlt.txt │ │ │ │ ├── Attr.DefaultTextDir.txt │ │ │ │ ├── Attr.EnableID.txt │ │ │ │ ├── Attr.ForbiddenClasses.txt │ │ │ │ ├── Attr.IDBlacklist.txt │ │ │ │ ├── Attr.IDBlacklistRegexp.txt │ │ │ │ ├── Attr.IDPrefix.txt │ │ │ │ ├── Attr.IDPrefixLocal.txt │ │ │ │ ├── AutoFormat.AutoParagraph.txt │ │ │ │ ├── AutoFormat.Custom.txt │ │ │ │ ├── AutoFormat.DisplayLinkURI.txt │ │ │ │ ├── AutoFormat.Linkify.txt │ │ │ │ ├── AutoFormat.PurifierLinkify.DocURL.txt │ │ │ │ ├── AutoFormat.PurifierLinkify.txt │ │ │ │ ├── AutoFormat.RemoveEmpty.RemoveNbsp.Exceptions.txt │ │ │ │ ├── AutoFormat.RemoveEmpty.RemoveNbsp.txt │ │ │ │ ├── AutoFormat.RemoveEmpty.txt │ │ │ │ ├── AutoFormat.RemoveSpansWithoutAttributes.txt │ │ │ │ ├── CSS.AllowImportant.txt │ │ │ │ ├── CSS.AllowTricky.txt │ │ │ │ ├── CSS.AllowedFonts.txt │ │ │ │ ├── CSS.AllowedProperties.txt │ │ │ │ ├── CSS.DefinitionRev.txt │ │ │ │ ├── CSS.ForbiddenProperties.txt │ │ │ │ ├── CSS.MaxImgLength.txt │ │ │ │ ├── CSS.Proprietary.txt │ │ │ │ ├── CSS.Trusted.txt │ │ │ │ ├── Cache.DefinitionImpl.txt │ │ │ │ ├── Cache.SerializerPath.txt │ │ │ │ ├── Cache.SerializerPermissions.txt │ │ │ │ ├── Core.AggressivelyFixLt.txt │ │ │ │ ├── Core.CollectErrors.txt │ │ │ │ ├── Core.ColorKeywords.txt │ │ │ │ ├── Core.ConvertDocumentToFragment.txt │ │ │ │ ├── Core.DirectLexLineNumberSyncInterval.txt │ │ │ │ ├── Core.EnableIDNA.txt │ │ │ │ ├── Core.Encoding.txt │ │ │ │ ├── Core.EscapeInvalidChildren.txt │ │ │ │ ├── Core.EscapeInvalidTags.txt │ │ │ │ ├── Core.EscapeNonASCIICharacters.txt │ │ │ │ ├── Core.HiddenElements.txt │ │ │ │ ├── Core.Language.txt │ │ │ │ ├── Core.LexerImpl.txt │ │ │ │ ├── Core.MaintainLineNumbers.txt │ │ │ │ ├── Core.NormalizeNewlines.txt │ │ │ │ ├── Core.RemoveInvalidImg.txt │ │ │ │ ├── Core.RemoveProcessingInstructions.txt │ │ │ │ ├── Core.RemoveScriptContents.txt │ │ │ │ ├── Filter.Custom.txt │ │ │ │ ├── Filter.ExtractStyleBlocks.Escaping.txt │ │ │ │ ├── Filter.ExtractStyleBlocks.Scope.txt │ │ │ │ ├── Filter.ExtractStyleBlocks.TidyImpl.txt │ │ │ │ ├── Filter.ExtractStyleBlocks.txt │ │ │ │ ├── Filter.YouTube.txt │ │ │ │ ├── HTML.Allowed.txt │ │ │ │ ├── HTML.AllowedAttributes.txt │ │ │ │ ├── HTML.AllowedComments.txt │ │ │ │ ├── HTML.AllowedCommentsRegexp.txt │ │ │ │ ├── HTML.AllowedElements.txt │ │ │ │ ├── HTML.AllowedModules.txt │ │ │ │ ├── HTML.Attr.Name.UseCDATA.txt │ │ │ │ ├── HTML.BlockWrapper.txt │ │ │ │ ├── HTML.CoreModules.txt │ │ │ │ ├── HTML.CustomDoctype.txt │ │ │ │ ├── HTML.DefinitionID.txt │ │ │ │ ├── HTML.DefinitionRev.txt │ │ │ │ ├── HTML.Doctype.txt │ │ │ │ ├── HTML.FlashAllowFullScreen.txt │ │ │ │ ├── HTML.ForbiddenAttributes.txt │ │ │ │ ├── HTML.ForbiddenElements.txt │ │ │ │ ├── HTML.MaxImgLength.txt │ │ │ │ ├── HTML.Nofollow.txt │ │ │ │ ├── HTML.Parent.txt │ │ │ │ ├── HTML.Proprietary.txt │ │ │ │ ├── HTML.SafeEmbed.txt │ │ │ │ ├── HTML.SafeIframe.txt │ │ │ │ ├── HTML.SafeObject.txt │ │ │ │ ├── HTML.Strict.txt │ │ │ │ ├── HTML.TargetBlank.txt │ │ │ │ ├── HTML.TidyAdd.txt │ │ │ │ ├── HTML.TidyLevel.txt │ │ │ │ ├── HTML.TidyRemove.txt │ │ │ │ ├── HTML.Trusted.txt │ │ │ │ ├── HTML.XHTML.txt │ │ │ │ ├── Output.CommentScriptContents.txt │ │ │ │ ├── Output.FixInnerHTML.txt │ │ │ │ ├── Output.FlashCompat.txt │ │ │ │ ├── Output.Newline.txt │ │ │ │ ├── Output.SortAttr.txt │ │ │ │ ├── Output.TidyFormat.txt │ │ │ │ ├── Test.ForceNoIconv.txt │ │ │ │ ├── URI.AllowedSchemes.txt │ │ │ │ ├── URI.Base.txt │ │ │ │ ├── URI.DefaultScheme.txt │ │ │ │ ├── URI.DefinitionID.txt │ │ │ │ ├── URI.DefinitionRev.txt │ │ │ │ ├── URI.Disable.txt │ │ │ │ ├── URI.DisableExternal.txt │ │ │ │ ├── URI.DisableExternalResources.txt │ │ │ │ ├── URI.DisableResources.txt │ │ │ │ ├── URI.Host.txt │ │ │ │ ├── URI.HostBlacklist.txt │ │ │ │ ├── URI.MakeAbsolute.txt │ │ │ │ ├── URI.Munge.txt │ │ │ │ ├── URI.MungeResources.txt │ │ │ │ ├── URI.MungeSecretKey.txt │ │ │ │ ├── URI.OverrideAllowedSchemes.txt │ │ │ │ ├── URI.SafeIframeRegexp.txt │ │ │ │ └── info.ini │ │ │ ├── EntityLookup │ │ │ └── entities.ser │ │ │ ├── Filter │ │ │ ├── ExtractStyleBlocks.php │ │ │ └── YouTube.php │ │ │ ├── Language │ │ │ ├── classes │ │ │ │ └── en-x-test.php │ │ │ └── messages │ │ │ │ ├── en-x-test.php │ │ │ │ ├── en-x-testmini.php │ │ │ │ └── en.php │ │ │ ├── Lexer │ │ │ └── PH5P.php │ │ │ ├── Printer.php │ │ │ └── Printer │ │ │ ├── CSSDefinition.php │ │ │ ├── ConfigForm.css │ │ │ ├── ConfigForm.js │ │ │ ├── ConfigForm.php │ │ │ └── HTMLDefinition.php │ ├── jquery │ │ ├── LICENSE.txt │ │ ├── autocomplete │ │ │ └── LICENSE.txt │ │ ├── maskedinput │ │ │ └── LICENSE.txt │ │ └── treeview │ │ │ └── LICENSE.txt │ ├── jqueryui │ │ └── MIT-LICENSE.txt │ ├── json │ │ └── LICENSE.txt │ ├── markdown │ │ ├── LICENSE.txt │ │ └── markdown.php │ └── punycode │ │ ├── LICENSE-GPL.txt │ │ └── LICENSE-MIT.txt ├── views │ ├── ar │ │ ├── error.php │ │ ├── error400.php │ │ ├── error403.php │ │ ├── error404.php │ │ ├── error500.php │ │ ├── error503.php │ │ ├── exception.php │ │ ├── log-firebug.php │ │ ├── log.php │ │ ├── profile-callstack-firebug.php │ │ ├── profile-callstack.php │ │ ├── profile-summary-firebug.php │ │ └── profile-summary.php │ ├── bg │ │ ├── error.php │ │ ├── error400.php │ │ ├── error403.php │ │ ├── error404.php │ │ ├── error500.php │ │ ├── error503.php │ │ ├── log-firebug.php │ │ ├── log.php │ │ ├── profile-callstack-firebug.php │ │ ├── profile-callstack.php │ │ ├── profile-summary-firebug.php │ │ └── profile-summary.php │ ├── de │ │ ├── error.php │ │ ├── error400.php │ │ ├── error403.php │ │ ├── error404.php │ │ ├── error500.php │ │ ├── error503.php │ │ ├── log-firebug.php │ │ ├── log.php │ │ ├── profile-callstack-firebug.php │ │ ├── profile-callstack.php │ │ ├── profile-summary-firebug.php │ │ └── profile-summary.php │ ├── el │ │ ├── error.php │ │ ├── error400.php │ │ ├── error403.php │ │ ├── error404.php │ │ ├── error500.php │ │ ├── error503.php │ │ ├── log-firebug.php │ │ ├── log.php │ │ ├── profile-callstack-firebug.php │ │ ├── profile-callstack.php │ │ ├── profile-summary-firebug.php │ │ └── profile-summary.php │ ├── error.php │ ├── error400.php │ ├── error403.php │ ├── error404.php │ ├── error500.php │ ├── error503.php │ ├── es │ │ ├── error.php │ │ ├── error400.php │ │ ├── error403.php │ │ ├── error404.php │ │ ├── error500.php │ │ ├── error503.php │ │ ├── log-firebug.php │ │ ├── log.php │ │ ├── profile-callstack-firebug.php │ │ ├── profile-callstack.php │ │ ├── profile-summary-firebug.php │ │ └── profile-summary.php │ ├── exception.php │ ├── fr │ │ ├── error.php │ │ ├── error400.php │ │ ├── error403.php │ │ ├── error404.php │ │ ├── error500.php │ │ ├── error503.php │ │ ├── log-firebug.php │ │ ├── log.php │ │ ├── profile-callstack-firebug.php │ │ ├── profile-callstack.php │ │ ├── profile-summary-firebug.php │ │ └── profile-summary.php │ ├── he │ │ ├── error.php │ │ ├── error400.php │ │ ├── error403.php │ │ ├── error404.php │ │ ├── error500.php │ │ ├── error503.php │ │ ├── log-firebug.php │ │ ├── log.php │ │ ├── profile-callstack-firebug.php │ │ ├── profile-callstack.php │ │ ├── profile-summary-firebug.php │ │ └── profile-summary.php │ ├── hr │ │ ├── error.php │ │ ├── error400.php │ │ ├── error403.php │ │ ├── error404.php │ │ ├── error500.php │ │ ├── error503.php │ │ ├── log-firebug.php │ │ ├── log.php │ │ ├── profile-callstack-firebug.php │ │ ├── profile-callstack.php │ │ ├── profile-summary-firebug.php │ │ └── profile-summary.php │ ├── id │ │ ├── error.php │ │ ├── error400.php │ │ ├── error403.php │ │ ├── error404.php │ │ ├── error500.php │ │ ├── error503.php │ │ ├── log-firebug.php │ │ ├── log.php │ │ ├── profile-callstack-firebug.php │ │ ├── profile-callstack.php │ │ ├── profile-summary-firebug.php │ │ └── profile-summary.php │ ├── it │ │ ├── error.php │ │ ├── error400.php │ │ ├── error403.php │ │ ├── error404.php │ │ ├── error500.php │ │ ├── error503.php │ │ ├── log-firebug.php │ │ ├── log.php │ │ ├── profile-callstack-firebug.php │ │ ├── profile-callstack.php │ │ ├── profile-summary-firebug.php │ │ └── profile-summary.php │ ├── ja │ │ ├── error.php │ │ ├── error400.php │ │ ├── error403.php │ │ ├── error404.php │ │ ├── error500.php │ │ ├── error503.php │ │ ├── log-firebug.php │ │ ├── log.php │ │ ├── profile-callstack-firebug.php │ │ ├── profile-callstack.php │ │ ├── profile-summary-firebug.php │ │ └── profile-summary.php │ ├── ko │ │ ├── error.php │ │ ├── error400.php │ │ ├── error403.php │ │ ├── error404.php │ │ ├── error500.php │ │ ├── error503.php │ │ ├── exception.php │ │ ├── log-firebug.php │ │ ├── log.php │ │ ├── profile-callstack-firebug.php │ │ ├── profile-callstack.php │ │ ├── profile-summary-firebug.php │ │ └── profile-summary.php │ ├── log-firebug.php │ ├── log.php │ ├── lt │ │ ├── error.php │ │ ├── error400.php │ │ ├── error403.php │ │ ├── error404.php │ │ ├── error500.php │ │ ├── error503.php │ │ ├── exception.php │ │ ├── log-firebug.php │ │ ├── log.php │ │ ├── profile-callstack-firebug.php │ │ ├── profile-callstack.php │ │ ├── profile-summary-firebug.php │ │ └── profile-summary.php │ ├── lv │ │ ├── error.php │ │ ├── error400.php │ │ ├── error403.php │ │ ├── error404.php │ │ ├── error500.php │ │ ├── error503.php │ │ ├── log-firebug.php │ │ ├── log.php │ │ ├── profile-callstack-firebug.php │ │ ├── profile-callstack.php │ │ ├── profile-summary-firebug.php │ │ └── profile-summary.php │ ├── nl │ │ ├── error.php │ │ ├── error400.php │ │ ├── error403.php │ │ ├── error404.php │ │ ├── error500.php │ │ ├── error503.php │ │ ├── log-firebug.php │ │ ├── log.php │ │ ├── profile-callstack-firebug.php │ │ ├── profile-callstack.php │ │ ├── profile-summary-firebug.php │ │ └── profile-summary.php │ ├── no │ │ ├── error.php │ │ ├── error400.php │ │ ├── error403.php │ │ ├── error404.php │ │ ├── error500.php │ │ ├── error503.php │ │ ├── log-firebug.php │ │ ├── log.php │ │ ├── profile-callstack-firebug.php │ │ ├── profile-callstack.php │ │ ├── profile-summary-firebug.php │ │ └── profile-summary.php │ ├── pl │ │ ├── error.php │ │ ├── error400.php │ │ ├── error403.php │ │ ├── error404.php │ │ ├── error500.php │ │ ├── error503.php │ │ ├── log-firebug.php │ │ ├── log.php │ │ ├── profile-callstack-firebug.php │ │ ├── profile-callstack.php │ │ ├── profile-summary-firebug.php │ │ └── profile-summary.php │ ├── profile-callstack-firebug.php │ ├── profile-callstack.php │ ├── profile-summary-firebug.php │ ├── profile-summary.php │ ├── pt │ │ ├── error.php │ │ ├── error400.php │ │ ├── error403.php │ │ ├── error404.php │ │ ├── error500.php │ │ ├── error503.php │ │ ├── log-firebug.php │ │ ├── log.php │ │ ├── profile-callstack-firebug.php │ │ ├── profile-callstack.php │ │ ├── profile-summary-firebug.php │ │ └── profile-summary.php │ ├── pt_br │ │ ├── error.php │ │ ├── error400.php │ │ ├── error403.php │ │ ├── error404.php │ │ ├── error500.php │ │ ├── error503.php │ │ ├── log-firebug.php │ │ ├── log.php │ │ ├── profile-callstack-firebug.php │ │ ├── profile-callstack.php │ │ ├── profile-summary-firebug.php │ │ └── profile-summary.php │ ├── ro │ │ ├── error.php │ │ ├── error400.php │ │ ├── error403.php │ │ ├── error404.php │ │ ├── error500.php │ │ ├── error503.php │ │ ├── log-firebug.php │ │ ├── log.php │ │ ├── profile-callstack-firebug.php │ │ ├── profile-callstack.php │ │ ├── profile-summary-firebug.php │ │ └── profile-summary.php │ ├── ru │ │ ├── error.php │ │ ├── error400.php │ │ ├── error403.php │ │ ├── error404.php │ │ ├── error500.php │ │ ├── error503.php │ │ ├── log-firebug.php │ │ ├── log.php │ │ ├── profile-callstack-firebug.php │ │ ├── profile-callstack.php │ │ ├── profile-summary-firebug.php │ │ └── profile-summary.php │ ├── sk │ │ ├── error.php │ │ ├── error400.php │ │ ├── error403.php │ │ ├── error404.php │ │ ├── error500.php │ │ ├── error503.php │ │ ├── log-firebug.php │ │ ├── log.php │ │ ├── profile-callstack-firebug.php │ │ ├── profile-callstack.php │ │ ├── profile-summary-firebug.php │ │ └── profile-summary.php │ ├── sv │ │ ├── error.php │ │ ├── error400.php │ │ ├── error403.php │ │ ├── error404.php │ │ ├── error500.php │ │ ├── error503.php │ │ ├── exception.php │ │ ├── log-firebug.php │ │ ├── log.php │ │ ├── profile-callstack-firebug.php │ │ ├── profile-callstack.php │ │ ├── profile-summary-firebug.php │ │ └── profile-summary.php │ ├── uk │ │ ├── error.php │ │ ├── error400.php │ │ ├── error403.php │ │ ├── error404.php │ │ ├── error500.php │ │ ├── error503.php │ │ ├── exception.php │ │ ├── log-firebug.php │ │ ├── log.php │ │ ├── profile-callstack-firebug.php │ │ ├── profile-callstack.php │ │ ├── profile-summary-firebug.php │ │ └── profile-summary.php │ ├── vi │ │ ├── error.php │ │ ├── error400.php │ │ ├── error403.php │ │ ├── error404.php │ │ ├── error500.php │ │ ├── error503.php │ │ ├── log-firebug.php │ │ ├── log.php │ │ ├── profile-callstack-firebug.php │ │ ├── profile-callstack.php │ │ ├── profile-summary-firebug.php │ │ └── profile-summary.php │ ├── zh_cn │ │ ├── error.php │ │ ├── error400.php │ │ ├── error403.php │ │ ├── error404.php │ │ ├── error500.php │ │ ├── error503.php │ │ ├── log-firebug.php │ │ ├── log.php │ │ ├── profile-callstack-firebug.php │ │ ├── profile-callstack.php │ │ ├── profile-summary-firebug.php │ │ └── profile-summary.php │ └── zh_tw │ │ ├── error.php │ │ ├── error400.php │ │ ├── error403.php │ │ ├── error404.php │ │ ├── error500.php │ │ ├── error503.php │ │ ├── log-firebug.php │ │ ├── log.php │ │ ├── profile-callstack-firebug.php │ │ ├── profile-callstack.php │ │ ├── profile-summary-firebug.php │ │ └── profile-summary.php ├── web │ ├── CActiveDataProvider.php │ ├── CArrayDataProvider.php │ ├── CAssetManager.php │ ├── CBaseController.php │ ├── CCacheHttpSession.php │ ├── CClientScript.php │ ├── CController.php │ ├── CDataProvider.php │ ├── CDataProviderIterator.php │ ├── CDbHttpSession.php │ ├── CExtController.php │ ├── CFormModel.php │ ├── CHttpCookie.php │ ├── CHttpRequest.php │ ├── CHttpSession.php │ ├── CHttpSessionIterator.php │ ├── COutputEvent.php │ ├── CPagination.php │ ├── CSort.php │ ├── CSqlDataProvider.php │ ├── CTheme.php │ ├── CThemeManager.php │ ├── CUploadedFile.php │ ├── CUrlManager.php │ ├── CWebApplication.php │ ├── CWebModule.php │ ├── CWidgetFactory.php │ ├── actions │ │ ├── CAction.php │ │ ├── CInlineAction.php │ │ └── CViewAction.php │ ├── auth │ │ ├── CAccessControlFilter.php │ │ ├── CAuthAssignment.php │ │ ├── CAuthItem.php │ │ ├── CAuthManager.php │ │ ├── CBaseUserIdentity.php │ │ ├── CDbAuthManager.php │ │ ├── CPhpAuthManager.php │ │ ├── CUserIdentity.php │ │ ├── CWebUser.php │ │ ├── schema-mssql.sql │ │ ├── schema-mysql.sql │ │ ├── schema-oci.sql │ │ ├── schema-pgsql.sql │ │ └── schema-sqlite.sql │ ├── filters │ │ ├── CFilter.php │ │ ├── CFilterChain.php │ │ ├── CHttpCacheFilter.php │ │ └── CInlineFilter.php │ ├── form │ │ ├── CForm.php │ │ ├── CFormButtonElement.php │ │ ├── CFormElement.php │ │ ├── CFormElementCollection.php │ │ ├── CFormInputElement.php │ │ └── CFormStringElement.php │ ├── helpers │ │ ├── CGoogleApi.php │ │ ├── CHtml.php │ │ ├── CJSON.php │ │ ├── CJavaScript.php │ │ └── CJavaScriptExpression.php │ ├── js │ │ ├── packages.php │ │ └── source │ │ │ ├── autocomplete │ │ │ ├── indicator.gif │ │ │ └── jquery.autocomplete.css │ │ │ ├── jquery.ajaxqueue.js │ │ │ ├── jquery.autocomplete.js │ │ │ ├── jquery.ba-bbq.js │ │ │ ├── jquery.ba-bbq.min.js │ │ │ ├── jquery.bgiframe.js │ │ │ ├── jquery.cookie.js │ │ │ ├── jquery.history.js │ │ │ ├── jquery.js │ │ │ ├── jquery.maskedinput.js │ │ │ ├── jquery.maskedinput.min.js │ │ │ ├── jquery.metadata.js │ │ │ ├── jquery.min.js │ │ │ ├── jquery.multifile.js │ │ │ ├── jquery.rating.js │ │ │ ├── jquery.treeview.async.js │ │ │ ├── jquery.treeview.edit.js │ │ │ ├── jquery.treeview.js │ │ │ ├── jquery.yii.js │ │ │ ├── jquery.yiiactiveform.js │ │ │ ├── jquery.yiitab.js │ │ │ ├── jui │ │ │ ├── css │ │ │ │ └── base │ │ │ │ │ ├── images │ │ │ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ │ │ │ ├── ui-bg_flat_75_ffffff_40x100.png │ │ │ │ │ ├── ui-bg_glass_55_fbf9ee_1x400.png │ │ │ │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ │ │ │ ├── ui-bg_glass_75_dadada_1x400.png │ │ │ │ │ ├── ui-bg_glass_75_e6e6e6_1x400.png │ │ │ │ │ ├── ui-bg_glass_95_fef1ec_1x400.png │ │ │ │ │ ├── ui-bg_highlight-soft_75_cccccc_1x100.png │ │ │ │ │ ├── ui-icons_222222_256x240.png │ │ │ │ │ ├── ui-icons_2e83ff_256x240.png │ │ │ │ │ ├── ui-icons_454545_256x240.png │ │ │ │ │ ├── ui-icons_888888_256x240.png │ │ │ │ │ └── ui-icons_cd0a0a_256x240.png │ │ │ │ │ ├── jquery-ui.css │ │ │ │ │ ├── jquery.ui.accordion.css │ │ │ │ │ ├── jquery.ui.autocomplete.css │ │ │ │ │ ├── jquery.ui.button.css │ │ │ │ │ ├── jquery.ui.core.css │ │ │ │ │ ├── jquery.ui.datepicker.css │ │ │ │ │ ├── jquery.ui.dialog.css │ │ │ │ │ ├── jquery.ui.menu.css │ │ │ │ │ ├── jquery.ui.progressbar.css │ │ │ │ │ ├── jquery.ui.resizable.css │ │ │ │ │ ├── jquery.ui.selectable.css │ │ │ │ │ ├── jquery.ui.slider.css │ │ │ │ │ ├── jquery.ui.spinner.css │ │ │ │ │ ├── jquery.ui.tabs.css │ │ │ │ │ ├── jquery.ui.theme.css │ │ │ │ │ └── jquery.ui.tooltip.css │ │ │ └── js │ │ │ │ ├── jquery-ui-i18n.min.js │ │ │ │ └── jquery-ui.min.js │ │ │ ├── punycode.js │ │ │ ├── punycode.min.js │ │ │ ├── rating │ │ │ ├── delete.gif │ │ │ ├── jquery.rating.css │ │ │ └── star.gif │ │ │ ├── treeview │ │ │ ├── images │ │ │ │ ├── ajax-loader.gif │ │ │ │ ├── file.gif │ │ │ │ ├── folder-closed.gif │ │ │ │ ├── folder.gif │ │ │ │ ├── minus.gif │ │ │ │ ├── plus.gif │ │ │ │ ├── treeview-black-line.gif │ │ │ │ ├── treeview-black.gif │ │ │ │ ├── treeview-default-line.gif │ │ │ │ ├── treeview-default.gif │ │ │ │ ├── treeview-famfamfam-line.gif │ │ │ │ ├── treeview-famfamfam.gif │ │ │ │ ├── treeview-gray-line.gif │ │ │ │ ├── treeview-gray.gif │ │ │ │ ├── treeview-red-line.gif │ │ │ │ └── treeview-red.gif │ │ │ └── jquery.treeview.css │ │ │ └── yiitab │ │ │ └── jquery.yiitab.css │ ├── renderers │ │ ├── CPradoViewRenderer.php │ │ └── CViewRenderer.php │ ├── services │ │ ├── CWebService.php │ │ ├── CWebServiceAction.php │ │ └── CWsdlGenerator.php │ └── widgets │ │ ├── CActiveForm.php │ │ ├── CAutoComplete.php │ │ ├── CClipWidget.php │ │ ├── CContentDecorator.php │ │ ├── CFilterWidget.php │ │ ├── CFlexWidget.php │ │ ├── CHtmlPurifier.php │ │ ├── CInputWidget.php │ │ ├── CMarkdown.php │ │ ├── CMaskedTextField.php │ │ ├── CMultiFileUpload.php │ │ ├── COutputCache.php │ │ ├── COutputProcessor.php │ │ ├── CStarRating.php │ │ ├── CTabView.php │ │ ├── CTextHighlighter.php │ │ ├── CTreeView.php │ │ ├── CWidget.php │ │ ├── captcha │ │ ├── CCaptcha.php │ │ └── CCaptchaAction.php │ │ ├── pagers │ │ ├── CBasePager.php │ │ ├── CLinkPager.php │ │ ├── CListPager.php │ │ └── pager.css │ │ └── views │ │ └── flexWidget.php ├── yii-powered.png ├── yii.php ├── yiic ├── yiic.bat ├── yiic.php ├── yiilite.php ├── yiit.php └── zii │ ├── behaviors │ └── CTimestampBehavior.php │ └── widgets │ ├── CBaseListView.php │ ├── CBreadcrumbs.php │ ├── CDetailView.php │ ├── CListView.php │ ├── CMenu.php │ ├── CPortlet.php │ ├── assets │ ├── detailview │ │ └── styles.css │ ├── gridview │ │ ├── bg.gif │ │ ├── delete.png │ │ ├── down.gif │ │ ├── jquery.yiigridview.js │ │ ├── loading.gif │ │ ├── styles.css │ │ ├── up.gif │ │ ├── update.png │ │ └── view.png │ └── listview │ │ ├── down.gif │ │ ├── jquery.yiilistview.js │ │ ├── loading.gif │ │ ├── styles.css │ │ └── up.gif │ ├── grid │ ├── CButtonColumn.php │ ├── CCheckBoxColumn.php │ ├── CDataColumn.php │ ├── CGridColumn.php │ ├── CGridView.php │ └── CLinkColumn.php │ └── jui │ ├── CJuiAccordion.php │ ├── CJuiAutoComplete.php │ ├── CJuiButton.php │ ├── CJuiDatePicker.php │ ├── CJuiDialog.php │ ├── CJuiDraggable.php │ ├── CJuiDroppable.php │ ├── CJuiInputWidget.php │ ├── CJuiProgressBar.php │ ├── CJuiResizable.php │ ├── CJuiSelectable.php │ ├── CJuiSlider.php │ ├── CJuiSliderInput.php │ ├── CJuiSortable.php │ ├── CJuiTabs.php │ └── CJuiWidget.php ├── i ├── app.zip ├── file_list.json ├── fw.zip ├── index.php ├── js │ ├── jquery-1.11.0.min.js │ ├── jquery-ui.css │ └── jquery-ui.min.js ├── langs │ └── ru.php ├── lib │ ├── dropWebLight.php │ ├── http.php │ └── installer.php ├── nvr.sql ├── tpl.html └── versions.json ├── images ├── add-icon.png ├── archive.png ├── bg.png ├── bgtop.png ├── building_icon.png ├── cam_icon.png ├── logo.png ├── map_bg.png ├── remove_button.png └── shadow.png ├── index-test.php ├── index.php ├── js ├── bootstrap-multiselect.js ├── bootstrap.js ├── bootstrap.min.js ├── jquery-1.10.2.js ├── jquery-ui-1.10.4.custom.min.js ├── jquery-ui-timepicker-addon.js ├── leaflet │ ├── Google.js │ ├── Yandex.js │ ├── l.control.geosearch.js │ ├── l.geosearch.provider.openstreetmap.js │ ├── leaflet.draw.js │ ├── leaflet.js │ └── leaflet.markercluster-src.js ├── passfield.min.js ├── screen_add_edit_form.js ├── swfobject.js └── ui.datepicker-ru.js ├── nvr.sql ├── player ├── MyPlayer.as ├── MyPlayer.swf ├── MyPlayer_hi_lo.swf ├── buffering.png ├── connecting.png ├── css │ ├── dark-hive │ │ ├── images │ │ │ ├── animated-overlay.gif │ │ │ ├── ui-bg_flat_30_cccccc_40x100.png │ │ │ ├── ui-bg_flat_50_5c5c5c_40x100.png │ │ │ ├── ui-bg_glass_40_ffc73d_1x400.png │ │ │ ├── ui-bg_highlight-hard_20_0972a5_1x100.png │ │ │ ├── ui-bg_highlight-soft_33_003147_1x100.png │ │ │ ├── ui-bg_highlight-soft_35_222222_1x100.png │ │ │ ├── ui-bg_highlight-soft_44_444444_1x100.png │ │ │ ├── ui-bg_highlight-soft_80_eeeeee_1x100.png │ │ │ ├── ui-bg_loop_25_000000_21x21.png │ │ │ ├── ui-icons_222222_256x240.png │ │ │ ├── ui-icons_4b8e0b_256x240.png │ │ │ ├── ui-icons_a83300_256x240.png │ │ │ ├── ui-icons_cccccc_256x240.png │ │ │ └── ui-icons_ffffff_256x240.png │ │ ├── jquery-ui-1.10.4.custom.css │ │ └── jquery-ui-1.10.4.custom.min.css │ └── ui-darkness │ │ ├── images │ │ ├── animated-overlay.gif │ │ ├── ui-bg_flat_30_cccccc_40x100.png │ │ ├── ui-bg_flat_50_5c5c5c_40x100.png │ │ ├── ui-bg_glass_20_555555_1x400.png │ │ ├── ui-bg_glass_40_0078a3_1x400.png │ │ ├── ui-bg_glass_40_ffc73d_1x400.png │ │ ├── ui-bg_gloss-wave_25_333333_500x100.png │ │ ├── ui-bg_highlight-soft_80_eeeeee_1x100.png │ │ ├── ui-bg_inset-soft_25_000000_1x100.png │ │ ├── ui-bg_inset-soft_30_f58400_1x100.png │ │ ├── ui-icons_222222_256x240.png │ │ ├── ui-icons_4b8e0b_256x240.png │ │ ├── ui-icons_a83300_256x240.png │ │ ├── ui-icons_cccccc_256x240.png │ │ └── ui-icons_ffffff_256x240.png │ │ ├── jquery-ui-1.10.4.custom.css │ │ └── jquery-ui-1.10.4.custom.min.css ├── error.png ├── fullscreen.png ├── horizontal.png ├── jquery-ui.css ├── jquery-ui.js ├── jquery.js ├── js │ ├── flowplayer-3.2.13.min.js │ ├── jquery-1.10.2.js │ ├── jquery-ui-1.10.4.custom.js │ └── jquery-ui-1.10.4.custom.min.js ├── playlist_.png └── url.js └── protected ├── .htaccess ├── components ├── Controller.php ├── UserIdentity.php ├── behaviors │ └── BeginRequest.php └── widgets │ ├── LanguageSelector.php │ └── views │ └── languageSelector.php ├── config ├── console.php ├── mail.php ├── main.php └── test.php ├── controllers ├── AdminController.php ├── CamsController.php ├── ScreensController.php ├── SiteController.php └── UsersController.php ├── data ├── schema.mysql.sql ├── schema.sqlite.sql └── testdrive.db ├── extensions ├── Updater │ ├── backups │ │ └── .gitignore │ ├── index.php │ ├── lib │ │ ├── backupHelper.php │ │ ├── driversManager.php │ │ ├── dropWebLight.php │ │ ├── http.php │ │ └── updateHelper.php │ └── tmp │ │ └── .gitignore ├── YiiMailer │ ├── PHPMailer │ │ ├── LICENSE │ │ ├── README │ │ ├── README.md │ │ ├── class.phpmailer.php │ │ ├── class.pop3.php │ │ └── class.smtp.php │ └── YiiMailer.php ├── charts │ ├── .gitignore │ ├── Highchart.php │ ├── HighchartJsExpr.php │ ├── HighchartOption.php │ ├── HighchartOptionRenderer.php │ ├── LICENSE │ ├── README.md │ ├── config.php │ ├── demos │ │ ├── highcharts │ │ │ ├── area │ │ │ │ ├── area_range.php │ │ │ │ ├── area_range_and_line.php │ │ │ │ ├── area_spline.php │ │ │ │ ├── area_with_missing_points.php │ │ │ │ ├── area_with_negative_values.php │ │ │ │ ├── basic_area.php │ │ │ │ ├── inverted_axes.php │ │ │ │ ├── percentage_area.php │ │ │ │ └── stacked_chart.php │ │ │ ├── column_and_bar │ │ │ │ ├── bar_with_negative_stack.php │ │ │ │ ├── basic_bar.php │ │ │ │ ├── basic_column.php │ │ │ │ ├── column_range.php │ │ │ │ ├── column_with_drilldown.php │ │ │ │ ├── column_with_negative_values.php │ │ │ │ ├── column_with_rotated_labels.php │ │ │ │ ├── data_defined_html_table.php │ │ │ │ ├── stacked_and_grouped_column.php │ │ │ │ ├── stacked_bar.php │ │ │ │ ├── stacked_column.php │ │ │ │ └── stacked_percentage_column.php │ │ │ ├── combinations │ │ │ │ ├── column_line_and_pie.php │ │ │ │ ├── dual_axes_line_and_column.php │ │ │ │ ├── multiple_axes.php │ │ │ │ └── scatter_with_regression_line.php │ │ │ ├── dynamic │ │ │ │ ├── click_to_add_a_point.php │ │ │ │ ├── master_detail_chart.php │ │ │ │ └── spline_updating_each_second.php │ │ │ ├── line │ │ │ │ ├── ajax_loaded_data_clickable_points.php │ │ │ │ ├── analytics.tsv │ │ │ │ ├── basic_line.php │ │ │ │ ├── logarithmic_axis.php │ │ │ │ ├── spline_with_inverted_axes.php │ │ │ │ ├── spline_with_plot_bands.php │ │ │ │ ├── spline_with_symbols.php │ │ │ │ ├── time_data_with_irregular_intervals.php │ │ │ │ ├── time_series_zoomable.php │ │ │ │ └── with_data_labels.php │ │ │ ├── more_chart_types │ │ │ │ ├── angular_gauge.php │ │ │ │ ├── box_plot.php │ │ │ │ ├── clock.php │ │ │ │ ├── error_bar.php │ │ │ │ ├── funnel_chart.php │ │ │ │ ├── gauge_with_dual_axes.php │ │ │ │ ├── general_drawing.php │ │ │ │ ├── polar_chart.php │ │ │ │ ├── spiderweb.php │ │ │ │ ├── vu_meter.php │ │ │ │ ├── waterfall.php │ │ │ │ └── wind_rose.php │ │ │ ├── pie │ │ │ │ ├── donut_chart.php │ │ │ │ ├── pie_chart.php │ │ │ │ ├── pie_with_gradient_fill.php │ │ │ │ └── pie_with_legend.php │ │ │ └── scatter_and_bubble │ │ │ │ ├── 3d_bubbles.php │ │ │ │ ├── bubble_chart.php │ │ │ │ └── scatter_plot.php │ │ └── highstock │ │ │ ├── chart_types │ │ │ ├── area.php │ │ │ ├── area_range.php │ │ │ ├── area_spline_range.php │ │ │ ├── areaspline.php │ │ │ ├── candlestick.php │ │ │ ├── column.php │ │ │ ├── column_range.php │ │ │ ├── line_with_markers_and_shadow.php │ │ │ ├── ohlc.php │ │ │ ├── point_markers_only.php │ │ │ ├── spline.php │ │ │ └── step_line.php │ │ │ ├── flags │ │ │ ├── flags_placement.php │ │ │ └── flags_shapes_and_colors.php │ │ │ ├── general │ │ │ ├── 1.7_million_points_with_async_loading.php │ │ │ ├── 52000_points_with_data_grouping.php │ │ │ ├── compare_multiple_series.php │ │ │ ├── dynamically_updated_data.php │ │ │ ├── flags_marking_events.php │ │ │ ├── intraday_area.php │ │ │ ├── intraday_candlestick.php │ │ │ ├── single_line_series.php │ │ │ └── two_panes_candlestick_and_volume.php │ │ │ └── various_features │ │ │ ├── disabled_navigator.php │ │ │ ├── disabled_scrollbar.php │ │ │ ├── plot_band_on_y_axis.php │ │ │ ├── plot_lines_on_y_axis.php │ │ │ ├── reversed_y_axis.php │ │ │ └── styled_scrollbar.php │ └── tests │ │ ├── HighchartOptionTest.php │ │ └── HighchartTest.php ├── moment │ ├── http.php │ ├── index.php │ ├── moment.php │ └── momentManager.php └── timezones │ └── index.php ├── messages ├── cn │ ├── YiiMailer.php │ ├── admin.php │ ├── app.php │ ├── cams.php │ ├── errors.php │ ├── menu.php │ ├── register.php │ ├── screens.php │ ├── timezone.php │ └── user.php ├── config.php ├── en │ ├── YiiMailer.php │ ├── admin.php │ ├── cams.php │ ├── errors.php │ ├── menu.php │ ├── register.php │ ├── screens.php │ ├── servers.php │ ├── timezone.php │ ├── user.php │ └── users.php └── ru │ ├── YiiMailer.php │ ├── admin.php │ ├── cams.php │ ├── errors.php │ ├── menu.php │ ├── register.php │ ├── screens.php │ ├── timezone.php │ └── user.php ├── models ├── Cams.php ├── CamsForm.php ├── LoginForm.php ├── Notifications.php ├── Notify.php ├── ProfileForm.php ├── RegForm.php ├── Screens.php ├── Servers.php ├── Sessions.php ├── Settings.php ├── ShareForm.php ├── Shared.php ├── UserForm.php ├── Users.php └── UsersForm.php ├── runtime ├── application.log ├── gii-1.1.13 │ └── ModelCode.php └── state.bin ├── views ├── admin │ ├── bumanager.php │ ├── cams │ │ └── index.php │ ├── logs │ │ └── index.php │ ├── servers │ │ ├── edit.php │ │ └── index.php │ ├── settings.php │ ├── stat │ │ └── index.php │ ├── updater.php │ └── users │ │ ├── edit.php │ │ ├── index.php │ │ └── oper.php ├── cams │ ├── archive.php │ ├── edit-default.php │ ├── edit-hipster.php │ ├── empty.php │ ├── fullscreen.php │ ├── index.php │ ├── list.php │ ├── map.php │ └── share.php ├── layouts │ ├── column1.php │ ├── empty.php │ ├── emptycolumn.php │ ├── mail.php │ ├── main-default.php │ └── main-hipster.php ├── screens │ ├── _form.php │ ├── _search.php │ ├── _view.php │ ├── create.php │ ├── index.php │ ├── manage.php │ ├── select_screen_type.php │ ├── update.php │ └── view.php ├── site │ ├── confirm.php │ ├── error.php │ ├── index.php │ ├── info.php │ ├── login.php │ ├── recovery.php │ └── register.php └── users │ ├── notify.php │ └── profile.php ├── yiic ├── yiic.bat └── yiic.php /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/.gitignore -------------------------------------------------------------------------------- /external/ctemplate-2.2.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/external/ctemplate-2.2.tar.gz -------------------------------------------------------------------------------- /external/ctemplate.r129.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/external/ctemplate.r129.patch -------------------------------------------------------------------------------- /external/ffmpeg-2.0.1.tar.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/external/ffmpeg-2.0.1.tar.bz2 -------------------------------------------------------------------------------- /external/poco-1.4.6p2.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/external/poco-1.4.6p2.tar.gz -------------------------------------------------------------------------------- /external/rtmpdump-2.3.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/external/rtmpdump-2.3.tgz -------------------------------------------------------------------------------- /helperFuncs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/helperFuncs.sh -------------------------------------------------------------------------------- /instructions/faststart.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/instructions/faststart.txt -------------------------------------------------------------------------------- /instructions/howto_debug.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/instructions/howto_debug.txt -------------------------------------------------------------------------------- /instructions/run_vlc_stream.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/instructions/run_vlc_stream.txt -------------------------------------------------------------------------------- /libmary/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/libmary/AUTHORS -------------------------------------------------------------------------------- /libmary/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/libmary/COPYING -------------------------------------------------------------------------------- /libmary/ChangeLog: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libmary/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/libmary/Makefile.am -------------------------------------------------------------------------------- /libmary/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/libmary/NEWS -------------------------------------------------------------------------------- /libmary/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/libmary/README -------------------------------------------------------------------------------- /libmary/autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/libmary/autogen.sh -------------------------------------------------------------------------------- /libmary/configure.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/libmary/configure.in -------------------------------------------------------------------------------- /libmary/docs/C++0x.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/libmary/docs/C++0x.txt -------------------------------------------------------------------------------- /libmary/docs/composition.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/libmary/docs/composition.txt -------------------------------------------------------------------------------- /libmary/docs/exceptions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/libmary/docs/exceptions.txt -------------------------------------------------------------------------------- /libmary/docs/flowcontrol.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/libmary/docs/flowcontrol.txt -------------------------------------------------------------------------------- /libmary/docs/informer.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/libmary/docs/informer.txt -------------------------------------------------------------------------------- /libmary/docs/iterators.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/libmary/docs/iterators.txt -------------------------------------------------------------------------------- /libmary/docs/mt_safety.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/libmary/docs/mt_safety.txt -------------------------------------------------------------------------------- /libmary/docs/multithreading.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/libmary/docs/multithreading.txt -------------------------------------------------------------------------------- /libmary/docs/notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/libmary/docs/notes.txt -------------------------------------------------------------------------------- /libmary/docs/poll.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/libmary/docs/poll.txt -------------------------------------------------------------------------------- /libmary/docs/print.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/libmary/docs/print.txt -------------------------------------------------------------------------------- /libmary/docs/refcounting.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/libmary/docs/refcounting.txt -------------------------------------------------------------------------------- /libmary/docs/roadmap.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/libmary/docs/roadmap.txt -------------------------------------------------------------------------------- /libmary/docs/time.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/libmary/docs/time.txt -------------------------------------------------------------------------------- /libmary/libmary-1.0.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/libmary/libmary-1.0.pc.in -------------------------------------------------------------------------------- /libmary/libmary/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/libmary/libmary/Makefile.am -------------------------------------------------------------------------------- /libmary/libmary/Makefile.inc.am: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libmary/libmary/annotations.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/libmary/libmary/annotations.h -------------------------------------------------------------------------------- /libmary/libmary/array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/libmary/libmary/array.h -------------------------------------------------------------------------------- /libmary/libmary/array_holder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/libmary/libmary/array_holder.h -------------------------------------------------------------------------------- /libmary/libmary/async_file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/libmary/libmary/async_file.h -------------------------------------------------------------------------------- /libmary/libmary/atomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/libmary/libmary/atomic.h -------------------------------------------------------------------------------- /libmary/libmary/avl_tree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/libmary/libmary/avl_tree.h -------------------------------------------------------------------------------- /libmary/libmary/cb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/libmary/libmary/cb.h -------------------------------------------------------------------------------- /libmary/libmary/cb_deferred.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/libmary/libmary/cb_deferred.h -------------------------------------------------------------------------------- /libmary/libmary/cmdline.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/libmary/libmary/cmdline.cpp -------------------------------------------------------------------------------- /libmary/libmary/cmdline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/libmary/libmary/cmdline.h -------------------------------------------------------------------------------- /libmary/libmary/code_ref.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/libmary/libmary/code_ref.h -------------------------------------------------------------------------------- /libmary/libmary/comparator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/libmary/libmary/comparator.h -------------------------------------------------------------------------------- /libmary/libmary/cond.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/libmary/libmary/cond.h -------------------------------------------------------------------------------- /libmary/libmary/connection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/libmary/libmary/connection.h -------------------------------------------------------------------------------- /libmary/libmary/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/libmary/libmary/debug.h -------------------------------------------------------------------------------- /libmary/libmary/dep_ref.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/libmary/libmary/dep_ref.h -------------------------------------------------------------------------------- /libmary/libmary/exception.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/libmary/libmary/exception.cpp -------------------------------------------------------------------------------- /libmary/libmary/exception.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/libmary/libmary/exception.h -------------------------------------------------------------------------------- /libmary/libmary/extractor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/libmary/libmary/extractor.h -------------------------------------------------------------------------------- /libmary/libmary/fast_mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/libmary/libmary/fast_mutex.h -------------------------------------------------------------------------------- /libmary/libmary/file.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/libmary/libmary/file.cpp -------------------------------------------------------------------------------- /libmary/libmary/file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/libmary/libmary/file.h -------------------------------------------------------------------------------- /libmary/libmary/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/libmary/libmary/hash.h -------------------------------------------------------------------------------- /libmary/libmary/http_client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/libmary/libmary/http_client.cpp -------------------------------------------------------------------------------- /libmary/libmary/http_client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/libmary/libmary/http_client.h -------------------------------------------------------------------------------- /libmary/libmary/http_server.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/libmary/libmary/http_server.cpp -------------------------------------------------------------------------------- /libmary/libmary/http_server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/libmary/libmary/http_server.h -------------------------------------------------------------------------------- /libmary/libmary/http_service.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/libmary/libmary/http_service.h -------------------------------------------------------------------------------- /libmary/libmary/informer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/libmary/libmary/informer.cpp -------------------------------------------------------------------------------- /libmary/libmary/informer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/libmary/libmary/informer.h -------------------------------------------------------------------------------- /libmary/libmary/input_stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/libmary/libmary/input_stream.h -------------------------------------------------------------------------------- /libmary/libmary/io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/libmary/libmary/io.h -------------------------------------------------------------------------------- /libmary/libmary/iterator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/libmary/libmary/iterator.h -------------------------------------------------------------------------------- /libmary/libmary/libmary.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/libmary/libmary/libmary.cpp -------------------------------------------------------------------------------- /libmary/libmary/libmary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/libmary/libmary/libmary.h -------------------------------------------------------------------------------- /libmary/libmary/libmary_md5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/libmary/libmary/libmary_md5.cpp -------------------------------------------------------------------------------- /libmary/libmary/libmary_md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/libmary/libmary/libmary_md5.h -------------------------------------------------------------------------------- /libmary/libmary/line_pipe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/libmary/libmary/line_pipe.cpp -------------------------------------------------------------------------------- /libmary/libmary/line_pipe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/libmary/libmary/line_pipe.h -------------------------------------------------------------------------------- /libmary/libmary/line_server.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/libmary/libmary/line_server.cpp -------------------------------------------------------------------------------- /libmary/libmary/line_server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/libmary/libmary/line_server.h -------------------------------------------------------------------------------- /libmary/libmary/line_service.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/libmary/libmary/line_service.h -------------------------------------------------------------------------------- /libmary/libmary/list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/libmary/libmary/list.h -------------------------------------------------------------------------------- /libmary/libmary/log.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/libmary/libmary/log.cpp -------------------------------------------------------------------------------- /libmary/libmary/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/libmary/libmary/log.h -------------------------------------------------------------------------------- /libmary/libmary/map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/libmary/libmary/map.h -------------------------------------------------------------------------------- /libmary/libmary/md5/md5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/libmary/libmary/md5/md5.c -------------------------------------------------------------------------------- /libmary/libmary/md5/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/libmary/libmary/md5/md5.h -------------------------------------------------------------------------------- /libmary/libmary/md5/md5main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/libmary/libmary/md5/md5main.c -------------------------------------------------------------------------------- /libmary/libmary/memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/libmary/libmary/memory.h -------------------------------------------------------------------------------- /libmary/libmary/memory_file.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/libmary/libmary/memory_file.cpp -------------------------------------------------------------------------------- /libmary/libmary/memory_file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/libmary/libmary/memory_file.h -------------------------------------------------------------------------------- /libmary/libmary/module.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/libmary/libmary/module.cpp -------------------------------------------------------------------------------- /libmary/libmary/module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/libmary/libmary/module.h -------------------------------------------------------------------------------- /libmary/libmary/module_init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/libmary/libmary/module_init.h -------------------------------------------------------------------------------- /libmary/libmary/multi_thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/libmary/libmary/multi_thread.h -------------------------------------------------------------------------------- /libmary/libmary/mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/libmary/libmary/mutex.h -------------------------------------------------------------------------------- /libmary/libmary/mwritev.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/libmary/libmary/mwritev.cpp -------------------------------------------------------------------------------- /libmary/libmary/mwritev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/libmary/libmary/mwritev.h -------------------------------------------------------------------------------- /libmary/libmary/object.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/libmary/libmary/object.cpp -------------------------------------------------------------------------------- /libmary/libmary/object.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/libmary/libmary/object.h -------------------------------------------------------------------------------- /libmary/libmary/output_stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/libmary/libmary/output_stream.h -------------------------------------------------------------------------------- /libmary/libmary/page_pool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/libmary/libmary/page_pool.cpp -------------------------------------------------------------------------------- /libmary/libmary/page_pool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/libmary/libmary/page_pool.h -------------------------------------------------------------------------------- /libmary/libmary/pointer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/libmary/libmary/pointer.h -------------------------------------------------------------------------------- /libmary/libmary/poll_group.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/libmary/libmary/poll_group.h -------------------------------------------------------------------------------- /libmary/libmary/posix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/libmary/libmary/posix.cpp -------------------------------------------------------------------------------- /libmary/libmary/receiver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/libmary/libmary/receiver.cpp -------------------------------------------------------------------------------- /libmary/libmary/receiver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/libmary/libmary/receiver.h -------------------------------------------------------------------------------- /libmary/libmary/ref.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/libmary/libmary/ref.h -------------------------------------------------------------------------------- /libmary/libmary/referenced.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/libmary/libmary/referenced.cpp -------------------------------------------------------------------------------- /libmary/libmary/referenced.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/libmary/libmary/referenced.h -------------------------------------------------------------------------------- /libmary/libmary/sender.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/libmary/libmary/sender.cpp -------------------------------------------------------------------------------- /libmary/libmary/sender.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/libmary/libmary/sender.h -------------------------------------------------------------------------------- /libmary/libmary/server_app.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/libmary/libmary/server_app.cpp -------------------------------------------------------------------------------- /libmary/libmary/server_app.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/libmary/libmary/server_app.h -------------------------------------------------------------------------------- /libmary/libmary/st_ref.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/libmary/libmary/st_ref.h -------------------------------------------------------------------------------- /libmary/libmary/st_referenced.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/libmary/libmary/st_referenced.h -------------------------------------------------------------------------------- /libmary/libmary/stat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/libmary/libmary/stat.cpp -------------------------------------------------------------------------------- /libmary/libmary/stat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/libmary/libmary/stat.h -------------------------------------------------------------------------------- /libmary/libmary/state_mutex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/libmary/libmary/state_mutex.cpp -------------------------------------------------------------------------------- /libmary/libmary/state_mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/libmary/libmary/state_mutex.h -------------------------------------------------------------------------------- /libmary/libmary/string.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/libmary/libmary/string.cpp -------------------------------------------------------------------------------- /libmary/libmary/string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/libmary/libmary/string.h -------------------------------------------------------------------------------- /libmary/libmary/string_hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/libmary/libmary/string_hash.h -------------------------------------------------------------------------------- /libmary/libmary/thread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/libmary/libmary/thread.cpp -------------------------------------------------------------------------------- /libmary/libmary/thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/libmary/libmary/thread.h -------------------------------------------------------------------------------- /libmary/libmary/timers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/libmary/libmary/timers.cpp -------------------------------------------------------------------------------- /libmary/libmary/timers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/libmary/libmary/timers.h -------------------------------------------------------------------------------- /libmary/libmary/types.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/libmary/libmary/types.cpp -------------------------------------------------------------------------------- /libmary/libmary/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/libmary/libmary/types.h -------------------------------------------------------------------------------- /libmary/libmary/types_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/libmary/libmary/types_base.h -------------------------------------------------------------------------------- /libmary/libmary/util_base.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/libmary/libmary/util_base.cpp -------------------------------------------------------------------------------- /libmary/libmary/util_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/libmary/libmary/util_base.h -------------------------------------------------------------------------------- /libmary/libmary/util_c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/libmary/libmary/util_c.c -------------------------------------------------------------------------------- /libmary/libmary/util_common.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/libmary/libmary/util_common.cpp -------------------------------------------------------------------------------- /libmary/libmary/util_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/libmary/libmary/util_common.h -------------------------------------------------------------------------------- /libmary/libmary/util_dev.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/libmary/libmary/util_dev.cpp -------------------------------------------------------------------------------- /libmary/libmary/util_dev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/libmary/libmary/util_dev.h -------------------------------------------------------------------------------- /libmary/libmary/util_net.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/libmary/libmary/util_net.cpp -------------------------------------------------------------------------------- /libmary/libmary/util_net.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/libmary/libmary/util_net.h -------------------------------------------------------------------------------- /libmary/libmary/util_posix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/libmary/libmary/util_posix.h -------------------------------------------------------------------------------- /libmary/libmary/util_str.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/libmary/libmary/util_str.cpp -------------------------------------------------------------------------------- /libmary/libmary/util_str.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/libmary/libmary/util_str.h -------------------------------------------------------------------------------- /libmary/libmary/util_str_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/libmary/libmary/util_str_base.h -------------------------------------------------------------------------------- /libmary/libmary/util_time.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/libmary/libmary/util_time.cpp -------------------------------------------------------------------------------- /libmary/libmary/util_time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/libmary/libmary/util_time.h -------------------------------------------------------------------------------- /libmary/libmary/vfs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/libmary/libmary/vfs.cpp -------------------------------------------------------------------------------- /libmary/libmary/vfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/libmary/libmary/vfs.h -------------------------------------------------------------------------------- /libmary/libmary/vfs_posix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/libmary/libmary/vfs_posix.cpp -------------------------------------------------------------------------------- /libmary/libmary/vfs_posix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/libmary/libmary/vfs_posix.h -------------------------------------------------------------------------------- /libmary/libmary/virt_ref.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/libmary/libmary/virt_ref.h -------------------------------------------------------------------------------- /libmary/libmary/vslab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/libmary/libmary/vslab.h -------------------------------------------------------------------------------- /libmary/libmary/vstack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/libmary/libmary/vstack.cpp -------------------------------------------------------------------------------- /libmary/libmary/vstack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/libmary/libmary/vstack.h -------------------------------------------------------------------------------- /libmary/libmary/weak_ref.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/libmary/libmary/weak_ref.h -------------------------------------------------------------------------------- /libmary/tests/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/libmary/tests/Makefile -------------------------------------------------------------------------------- /libmary/tests/exc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/libmary/tests/exc/Makefile -------------------------------------------------------------------------------- /libmary/tests/exc/test__exc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/libmary/tests/exc/test__exc.cpp -------------------------------------------------------------------------------- /libmary/tests/http/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/libmary/tests/http/Makefile -------------------------------------------------------------------------------- /libmary/tests/informer/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/libmary/tests/informer/Makefile -------------------------------------------------------------------------------- /libmary/tests/log/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/libmary/tests/log/Makefile -------------------------------------------------------------------------------- /libmary/tests/log/test__log.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/libmary/tests/log/test__log.cpp -------------------------------------------------------------------------------- /libmary/tests/printer/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/libmary/tests/printer/Makefile -------------------------------------------------------------------------------- /libmary/tests/tcp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/libmary/tests/tcp/Makefile -------------------------------------------------------------------------------- /libmary/tests/tcp/test__tcp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/libmary/tests/tcp/test__tcp.cpp -------------------------------------------------------------------------------- /libmary/tests/tostring/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/libmary/tests/tostring/Makefile -------------------------------------------------------------------------------- /mconfig/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/mconfig/AUTHORS -------------------------------------------------------------------------------- /mconfig/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/mconfig/COPYING -------------------------------------------------------------------------------- /mconfig/ChangeLog: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mconfig/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/mconfig/Makefile.am -------------------------------------------------------------------------------- /mconfig/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/mconfig/NEWS -------------------------------------------------------------------------------- /mconfig/README: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /mconfig/autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/mconfig/autogen.sh -------------------------------------------------------------------------------- /mconfig/configure.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/mconfig/configure.in -------------------------------------------------------------------------------- /mconfig/docs/syntax.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/mconfig/docs/syntax.txt -------------------------------------------------------------------------------- /mconfig/mconfig-1.0.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/mconfig/mconfig-1.0.pc.in -------------------------------------------------------------------------------- /mconfig/mconfig/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/mconfig/mconfig/Makefile.am -------------------------------------------------------------------------------- /mconfig/mconfig/config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/mconfig/mconfig/config.cpp -------------------------------------------------------------------------------- /mconfig/mconfig/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/mconfig/mconfig/config.h -------------------------------------------------------------------------------- /mconfig/mconfig/config_parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/mconfig/mconfig/config_parser.h -------------------------------------------------------------------------------- /mconfig/mconfig/mconfig.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/mconfig/mconfig/mconfig.cpp -------------------------------------------------------------------------------- /mconfig/mconfig/mconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/mconfig/mconfig/mconfig.h -------------------------------------------------------------------------------- /mconfig/mconfig/mconfig.par: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/mconfig/mconfig/mconfig.par -------------------------------------------------------------------------------- /mconfig/mconfig/util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/mconfig/mconfig/util.cpp -------------------------------------------------------------------------------- /mconfig/mconfig/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/mconfig/mconfig/util.h -------------------------------------------------------------------------------- /mconfig/mconfig/varlist.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/mconfig/mconfig/varlist.cpp -------------------------------------------------------------------------------- /mconfig/mconfig/varlist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/mconfig/mconfig/varlist.h -------------------------------------------------------------------------------- /mconfig/mconfig/varlist.par: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/mconfig/mconfig/varlist.par -------------------------------------------------------------------------------- /moment-ffmpeg/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/moment-ffmpeg/AUTHORS -------------------------------------------------------------------------------- /moment-ffmpeg/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/moment-ffmpeg/COPYING -------------------------------------------------------------------------------- /moment-ffmpeg/ChangeLog: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /moment-ffmpeg/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/moment-ffmpeg/Makefile.am -------------------------------------------------------------------------------- /moment-ffmpeg/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/moment-ffmpeg/NEWS -------------------------------------------------------------------------------- /moment-ffmpeg/README: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /moment-ffmpeg/autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/moment-ffmpeg/autogen.sh -------------------------------------------------------------------------------- /moment-ffmpeg/configure.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/moment-ffmpeg/configure.in -------------------------------------------------------------------------------- /moment-ffmpeg/iostat/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/moment-ffmpeg/iostat/Makefile -------------------------------------------------------------------------------- /moment-ffmpeg/iostat/common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/moment-ffmpeg/iostat/common.c -------------------------------------------------------------------------------- /moment-ffmpeg/iostat/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/moment-ffmpeg/iostat/common.h -------------------------------------------------------------------------------- /moment-ffmpeg/iostat/count.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/moment-ffmpeg/iostat/count.c -------------------------------------------------------------------------------- /moment-ffmpeg/iostat/count.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/moment-ffmpeg/iostat/count.h -------------------------------------------------------------------------------- /moment-ffmpeg/iostat/format.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/moment-ffmpeg/iostat/format.c -------------------------------------------------------------------------------- /moment-ffmpeg/iostat/ioconf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/moment-ffmpeg/iostat/ioconf.c -------------------------------------------------------------------------------- /moment-ffmpeg/iostat/ioconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/moment-ffmpeg/iostat/ioconf.h -------------------------------------------------------------------------------- /moment-ffmpeg/iostat/iostat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/moment-ffmpeg/iostat/iostat.c -------------------------------------------------------------------------------- /moment-ffmpeg/iostat/iostat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/moment-ffmpeg/iostat/iostat.h -------------------------------------------------------------------------------- /moment-ffmpeg/iostat/rd_stats.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/moment-ffmpeg/iostat/rd_stats.c -------------------------------------------------------------------------------- /moment-ffmpeg/iostat/rd_stats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/moment-ffmpeg/iostat/rd_stats.h -------------------------------------------------------------------------------- /moment-ffmpeg/iostat/sadf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/moment-ffmpeg/iostat/sadf.c -------------------------------------------------------------------------------- /moment-ffmpeg/iostat/sadf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/moment-ffmpeg/iostat/sadf.h -------------------------------------------------------------------------------- /moment-ffmpeg/iostat/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/moment-ffmpeg/iostat/version.h -------------------------------------------------------------------------------- /moment-gst/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/moment-gst/AUTHORS -------------------------------------------------------------------------------- /moment-gst/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/moment-gst/COPYING -------------------------------------------------------------------------------- /moment-gst/ChangeLog: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /moment-gst/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/moment-gst/Makefile.am -------------------------------------------------------------------------------- /moment-gst/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/moment-gst/NEWS -------------------------------------------------------------------------------- /moment-gst/README: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /moment-gst/autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/moment-gst/autogen.sh -------------------------------------------------------------------------------- /moment-gst/configure.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/moment-gst/configure.in -------------------------------------------------------------------------------- /moment-gst/moment-gst-1.0.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/moment-gst/moment-gst-1.0.pc.in -------------------------------------------------------------------------------- /moment-hls/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/moment-hls/AUTHORS -------------------------------------------------------------------------------- /moment-hls/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/moment-hls/COPYING -------------------------------------------------------------------------------- /moment-hls/ChangeLog: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /moment-hls/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = moment-hls 2 | 3 | -------------------------------------------------------------------------------- /moment-hls/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/moment-hls/NEWS -------------------------------------------------------------------------------- /moment-hls/README: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /moment-hls/autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/moment-hls/autogen.sh -------------------------------------------------------------------------------- /moment-hls/configure.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/moment-hls/configure.in -------------------------------------------------------------------------------- /moment-hls/moment-hls/Makefile.inc.am: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /moment-hls/moment-hls/inc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/moment-hls/moment-hls/inc.h -------------------------------------------------------------------------------- /moment-nvr/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/moment-nvr/AUTHORS -------------------------------------------------------------------------------- /moment-nvr/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/moment-nvr/COPYING -------------------------------------------------------------------------------- /moment-nvr/ChangeLog: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /moment-nvr/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = moment-nvr 2 | 3 | -------------------------------------------------------------------------------- /moment-nvr/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/moment-nvr/NEWS -------------------------------------------------------------------------------- /moment-nvr/README: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /moment-nvr/autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/moment-nvr/autogen.sh -------------------------------------------------------------------------------- /moment-nvr/configure.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/moment-nvr/configure.in -------------------------------------------------------------------------------- /moment-nvr/moment-nvr/inc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/moment-nvr/moment-nvr/inc.h -------------------------------------------------------------------------------- /moment-nvr/moment-nvr/types.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/moment-nvr/moment-nvr/types.cpp -------------------------------------------------------------------------------- /moment-nvr/moment-nvr/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/moment-nvr/moment-nvr/types.h -------------------------------------------------------------------------------- /moment-nvr/web/index.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/moment-nvr/web/index.tpl -------------------------------------------------------------------------------- /moment-onvif/AUTHORS: -------------------------------------------------------------------------------- 1 | CVS 2 | 3 | -------------------------------------------------------------------------------- /moment-onvif/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/moment-onvif/COPYING -------------------------------------------------------------------------------- /moment-onvif/ChangeLog: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /moment-onvif/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/moment-onvif/INSTALL -------------------------------------------------------------------------------- /moment-onvif/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/moment-onvif/Makefile.am -------------------------------------------------------------------------------- /moment-onvif/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/moment-onvif/NEWS -------------------------------------------------------------------------------- /moment-onvif/README: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /moment-onvif/autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/moment-onvif/autogen.sh -------------------------------------------------------------------------------- /moment-onvif/configure.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/moment-onvif/configure.in -------------------------------------------------------------------------------- /moment.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/moment.conf -------------------------------------------------------------------------------- /moment/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/moment/AUTHORS -------------------------------------------------------------------------------- /moment/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/moment/COPYING -------------------------------------------------------------------------------- /moment/ChangeLog: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /moment/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/moment/Makefile.am -------------------------------------------------------------------------------- /moment/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/moment/NEWS -------------------------------------------------------------------------------- /moment/README: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /moment/autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/moment/autogen.sh -------------------------------------------------------------------------------- /moment/configure.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/moment/configure.in -------------------------------------------------------------------------------- /moment/libmoment-1.0.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/moment/libmoment-1.0.pc.in -------------------------------------------------------------------------------- /moment/moment/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/moment/moment/Makefile.am -------------------------------------------------------------------------------- /moment/moment/Makefile.inc.am: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /moment/moment/amf_decoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/moment/moment/amf_decoder.cpp -------------------------------------------------------------------------------- /moment/moment/amf_decoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/moment/moment/amf_decoder.h -------------------------------------------------------------------------------- /moment/moment/amf_encoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/moment/moment/amf_encoder.cpp -------------------------------------------------------------------------------- /moment/moment/amf_encoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/moment/moment/amf_encoder.h -------------------------------------------------------------------------------- /moment/moment/api.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/moment/moment/api.cpp -------------------------------------------------------------------------------- /moment/moment/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/moment/moment/api.h -------------------------------------------------------------------------------- /moment/moment/api_amf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/moment/moment/api_amf.cpp -------------------------------------------------------------------------------- /moment/moment/av_muxer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/moment/moment/av_muxer.h -------------------------------------------------------------------------------- /moment/moment/av_recorder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/moment/moment/av_recorder.cpp -------------------------------------------------------------------------------- /moment/moment/av_recorder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/moment/moment/av_recorder.h -------------------------------------------------------------------------------- /moment/moment/channel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/moment/moment/channel.cpp -------------------------------------------------------------------------------- /moment/moment/channel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/moment/moment/channel.h -------------------------------------------------------------------------------- /moment/moment/channel_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/moment/moment/channel_manager.h -------------------------------------------------------------------------------- /moment/moment/channel_options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/moment/moment/channel_options.h -------------------------------------------------------------------------------- /moment/moment/channel_set.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/moment/moment/channel_set.cpp -------------------------------------------------------------------------------- /moment/moment/channel_set.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/moment/moment/channel_set.h -------------------------------------------------------------------------------- /moment/moment/fetch_agent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/moment/moment/fetch_agent.cpp -------------------------------------------------------------------------------- /moment/moment/fetch_agent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/moment/moment/fetch_agent.h -------------------------------------------------------------------------------- /moment/moment/fetch_protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/moment/moment/fetch_protocol.h -------------------------------------------------------------------------------- /moment/moment/flv_muxer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/moment/moment/flv_muxer.cpp -------------------------------------------------------------------------------- /moment/moment/flv_muxer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/moment/moment/flv_muxer.h -------------------------------------------------------------------------------- /moment/moment/flv_util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/moment/moment/flv_util.cpp -------------------------------------------------------------------------------- /moment/moment/flv_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/moment/moment/flv_util.h -------------------------------------------------------------------------------- /moment/moment/hmac/hmac_sha2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/moment/moment/hmac/hmac_sha2.c -------------------------------------------------------------------------------- /moment/moment/hmac/hmac_sha2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/moment/moment/hmac/hmac_sha2.h -------------------------------------------------------------------------------- /moment/moment/hmac/sha2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/moment/moment/hmac/sha2.c -------------------------------------------------------------------------------- /moment/moment/hmac/sha2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/moment/moment/hmac/sha2.h -------------------------------------------------------------------------------- /moment/moment/inc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/moment/moment/inc.h -------------------------------------------------------------------------------- /moment/moment/libmoment.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/moment/moment/libmoment.cpp -------------------------------------------------------------------------------- /moment/moment/libmoment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/moment/moment/libmoment.h -------------------------------------------------------------------------------- /moment/moment/libmoment_gst.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/moment/moment/libmoment_gst.cpp -------------------------------------------------------------------------------- /moment/moment/libmoment_gst.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/moment/moment/libmoment_gst.h -------------------------------------------------------------------------------- /moment/moment/local_storage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/moment/moment/local_storage.cpp -------------------------------------------------------------------------------- /moment/moment/local_storage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/moment/moment/local_storage.h -------------------------------------------------------------------------------- /moment/moment/media_source.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/moment/moment/media_source.h -------------------------------------------------------------------------------- /moment/moment/mod_file.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/moment/moment/mod_file.cpp -------------------------------------------------------------------------------- /moment/moment/mod_rtmp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/moment/moment/mod_rtmp.cpp -------------------------------------------------------------------------------- /moment/moment/mod_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/moment/moment/mod_test.cpp -------------------------------------------------------------------------------- /moment/moment/module_init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/moment/moment/module_init.h -------------------------------------------------------------------------------- /moment/moment/moment.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/moment/moment/moment.cpp -------------------------------------------------------------------------------- /moment/moment/moment.dist.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/moment/moment/moment.dist.conf -------------------------------------------------------------------------------- /moment/moment/moment_server.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/moment/moment/moment_server.cpp -------------------------------------------------------------------------------- /moment/moment/moment_server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/moment/moment/moment_server.h -------------------------------------------------------------------------------- /moment/moment/moment_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/moment/moment/moment_types.h -------------------------------------------------------------------------------- /moment/moment/mp4_muxer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/moment/moment/mp4_muxer.cpp -------------------------------------------------------------------------------- /moment/moment/mp4_muxer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/moment/moment/mp4_muxer.h -------------------------------------------------------------------------------- /moment/moment/playback.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/moment/moment/playback.cpp -------------------------------------------------------------------------------- /moment/moment/playback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/moment/moment/playback.h -------------------------------------------------------------------------------- /moment/moment/playlist.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/moment/moment/playlist.cpp -------------------------------------------------------------------------------- /moment/moment/playlist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/moment/moment/playlist.h -------------------------------------------------------------------------------- /moment/moment/push_agent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/moment/moment/push_agent.cpp -------------------------------------------------------------------------------- /moment/moment/push_agent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/moment/moment/push_agent.h -------------------------------------------------------------------------------- /moment/moment/push_protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/moment/moment/push_protocol.h -------------------------------------------------------------------------------- /moment/moment/recorder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/moment/moment/recorder.cpp -------------------------------------------------------------------------------- /moment/moment/recorder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/moment/moment/recorder.h -------------------------------------------------------------------------------- /moment/moment/rtmp_client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/moment/moment/rtmp_client.cpp -------------------------------------------------------------------------------- /moment/moment/rtmp_client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/moment/moment/rtmp_client.h -------------------------------------------------------------------------------- /moment/moment/rtmp_connection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/moment/moment/rtmp_connection.h -------------------------------------------------------------------------------- /moment/moment/rtmp_server.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/moment/moment/rtmp_server.cpp -------------------------------------------------------------------------------- /moment/moment/rtmp_server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/moment/moment/rtmp_server.h -------------------------------------------------------------------------------- /moment/moment/rtmp_service.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/moment/moment/rtmp_service.cpp -------------------------------------------------------------------------------- /moment/moment/rtmp_service.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/moment/moment/rtmp_service.h -------------------------------------------------------------------------------- /moment/moment/rtmpt_service.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/moment/moment/rtmpt_service.cpp -------------------------------------------------------------------------------- /moment/moment/rtmpt_service.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/moment/moment/rtmpt_service.h -------------------------------------------------------------------------------- /moment/moment/rtmptool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/moment/moment/rtmptool.cpp -------------------------------------------------------------------------------- /moment/moment/storage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/moment/moment/storage.h -------------------------------------------------------------------------------- /moment/moment/transcoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/moment/moment/transcoder.h -------------------------------------------------------------------------------- /moment/moment/util_config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/moment/moment/util_config.cpp -------------------------------------------------------------------------------- /moment/moment/util_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/moment/moment/util_config.h -------------------------------------------------------------------------------- /moment/moment/util_moment.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/moment/moment/util_moment.cpp -------------------------------------------------------------------------------- /moment/moment/util_moment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/moment/moment/util_moment.h -------------------------------------------------------------------------------- /moment/moment/video_stream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/moment/moment/video_stream.cpp -------------------------------------------------------------------------------- /moment/moment/video_stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/moment/moment/video_stream.h -------------------------------------------------------------------------------- /moment/tests/server/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/moment/tests/server/Makefile -------------------------------------------------------------------------------- /moment/web/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = myplayer 2 | 3 | -------------------------------------------------------------------------------- /moment/web/basic_player/var.defaults: -------------------------------------------------------------------------------- 1 | BasicPlayer_StreamName = "mytest" 2 | -------------------------------------------------------------------------------- /moment/web/myplayer/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/moment/web/myplayer/Makefile.am -------------------------------------------------------------------------------- /moment/web/myplayer/MyPlayer.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/moment/web/myplayer/MyPlayer.as -------------------------------------------------------------------------------- /moment/web/myplayer/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/moment/web/myplayer/README -------------------------------------------------------------------------------- /moment/web/myplayer/basic.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/moment/web/myplayer/basic.tpl -------------------------------------------------------------------------------- /moment/web/myplayer/error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/moment/web/myplayer/error.png -------------------------------------------------------------------------------- /moment/web/myplayer/index.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/moment/web/myplayer/index.tpl -------------------------------------------------------------------------------- /moment/web/myplayer/jquery.js: -------------------------------------------------------------------------------- 1 | jquery-1.6.2.min.js -------------------------------------------------------------------------------- /moment/web/myplayer/url.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/moment/web/myplayer/url.js -------------------------------------------------------------------------------- /moment/web/publisher/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/moment/web/publisher/Makefile -------------------------------------------------------------------------------- /moment/web/publisher/index.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/moment/web/publisher/index.tpl -------------------------------------------------------------------------------- /moment/www/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/moment/www/Makefile -------------------------------------------------------------------------------- /moment/www/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/moment/www/build.xml -------------------------------------------------------------------------------- /moment/www/developers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/moment/www/developers.xml -------------------------------------------------------------------------------- /moment/www/doc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/moment/www/doc.xml -------------------------------------------------------------------------------- /moment/www/doc_auth.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/moment/www/doc_auth.xml -------------------------------------------------------------------------------- /moment/www/doc_builtin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/moment/www/doc_builtin.xml -------------------------------------------------------------------------------- /moment/www/doc_channels.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/moment/www/doc_channels.xml -------------------------------------------------------------------------------- /moment/www/doc_cluster.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/moment/www/doc_cluster.xml -------------------------------------------------------------------------------- /moment/www/doc_config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/moment/www/doc_config.xml -------------------------------------------------------------------------------- /moment/www/doc_desc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/moment/www/doc_desc.xml -------------------------------------------------------------------------------- /moment/www/doc_examples.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/moment/www/doc_examples.xml -------------------------------------------------------------------------------- /moment/www/doc_install.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/moment/www/doc_install.xml -------------------------------------------------------------------------------- /moment/www/doc_plugins.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/moment/www/doc_plugins.xml -------------------------------------------------------------------------------- /moment/www/doc_stress.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/moment/www/doc_stress.xml -------------------------------------------------------------------------------- /moment/www/entities.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/moment/www/entities.dtd -------------------------------------------------------------------------------- /moment/www/err/401.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/moment/www/err/401.html -------------------------------------------------------------------------------- /moment/www/err/403.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/moment/www/err/403.html -------------------------------------------------------------------------------- /moment/www/err/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/moment/www/err/404.html -------------------------------------------------------------------------------- /moment/www/err/405.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/moment/www/err/405.html -------------------------------------------------------------------------------- /moment/www/err/406.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/moment/www/err/406.html -------------------------------------------------------------------------------- /moment/www/err/407.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/moment/www/err/407.html -------------------------------------------------------------------------------- /moment/www/err/408.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/moment/www/err/408.html -------------------------------------------------------------------------------- /moment/www/err/409.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/moment/www/err/409.html -------------------------------------------------------------------------------- /moment/www/err/410.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/moment/www/err/410.html -------------------------------------------------------------------------------- /moment/www/err/411.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/moment/www/err/411.html -------------------------------------------------------------------------------- /moment/www/err/412.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/moment/www/err/412.html -------------------------------------------------------------------------------- /moment/www/err/413.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/moment/www/err/413.html -------------------------------------------------------------------------------- /moment/www/err/414.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/moment/www/err/414.html -------------------------------------------------------------------------------- /moment/www/err/415.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/moment/www/err/415.html -------------------------------------------------------------------------------- /moment/www/err/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/moment/www/err/500.html -------------------------------------------------------------------------------- /moment/www/err/501.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/moment/www/err/501.html -------------------------------------------------------------------------------- /moment/www/err/502.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/moment/www/err/502.html -------------------------------------------------------------------------------- /moment/www/err/503.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/moment/www/err/503.html -------------------------------------------------------------------------------- /moment/www/err/504.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/moment/www/err/504.html -------------------------------------------------------------------------------- /moment/www/err/505.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/moment/www/err/505.html -------------------------------------------------------------------------------- /moment/www/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/moment/www/favicon.ico -------------------------------------------------------------------------------- /moment/www/feed.src.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/moment/www/feed.src.xml -------------------------------------------------------------------------------- /moment/www/gpl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/moment/www/gpl.xml -------------------------------------------------------------------------------- /moment/www/hls.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/moment/www/hls.xml -------------------------------------------------------------------------------- /moment/www/img/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/moment/www/img/arrow.png -------------------------------------------------------------------------------- /moment/www/img/download.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/moment/www/img/download.png -------------------------------------------------------------------------------- /moment/www/img/download.ru.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/moment/www/img/download.ru.png -------------------------------------------------------------------------------- /moment/www/img/langbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/moment/www/img/langbar.png -------------------------------------------------------------------------------- /moment/www/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/moment/www/img/logo.png -------------------------------------------------------------------------------- /moment/www/img/menubar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/moment/www/img/menubar.png -------------------------------------------------------------------------------- /moment/www/img/slogan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/moment/www/img/slogan.png -------------------------------------------------------------------------------- /moment/www/img/wiki_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/moment/www/img/wiki_logo.png -------------------------------------------------------------------------------- /moment/www/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/moment/www/index.php -------------------------------------------------------------------------------- /moment/www/index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/moment/www/index.xml -------------------------------------------------------------------------------- /moment/www/licensing.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/moment/www/licensing.xml -------------------------------------------------------------------------------- /moment/www/moment_logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/moment/www/moment_logo.svg -------------------------------------------------------------------------------- /moment/www/nvr.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/moment/www/nvr.xml -------------------------------------------------------------------------------- /moment/www/postprocess.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/moment/www/postprocess.xsl -------------------------------------------------------------------------------- /moment/www/postprocess_rss.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/moment/www/postprocess_rss.xsl -------------------------------------------------------------------------------- /moment/www/quickstart.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/moment/www/quickstart.xml -------------------------------------------------------------------------------- /moment/www/template.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/moment/www/template.svg -------------------------------------------------------------------------------- /moment/www/template.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/moment/www/template.xsl -------------------------------------------------------------------------------- /moment/www/upload.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/moment/www/upload.sh -------------------------------------------------------------------------------- /nvr-onvif-client/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/nvr-onvif-client/CMakeLists.txt -------------------------------------------------------------------------------- /nvr-onvif-client/mainClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/nvr-onvif-client/mainClient.cpp -------------------------------------------------------------------------------- /pargen/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/pargen/AUTHORS -------------------------------------------------------------------------------- /pargen/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/pargen/COPYING -------------------------------------------------------------------------------- /pargen/ChangeLog: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pargen/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/pargen/Makefile.am -------------------------------------------------------------------------------- /pargen/NEWS: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pargen/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/pargen/README -------------------------------------------------------------------------------- /pargen/autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/pargen/autogen.sh -------------------------------------------------------------------------------- /pargen/configure.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/pargen/configure.in -------------------------------------------------------------------------------- /pargen/gendoc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/pargen/gendoc.sh -------------------------------------------------------------------------------- /pargen/pargen-1.0.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/pargen/pargen-1.0.pc.in -------------------------------------------------------------------------------- /pargen/pargen/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/pargen/pargen/Makefile.am -------------------------------------------------------------------------------- /pargen/pargen/acceptor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/pargen/pargen/acceptor.h -------------------------------------------------------------------------------- /pargen/pargen/compile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/pargen/pargen/compile.h -------------------------------------------------------------------------------- /pargen/pargen/declarations.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/pargen/pargen/declarations.cpp -------------------------------------------------------------------------------- /pargen/pargen/declarations.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/pargen/pargen/declarations.h -------------------------------------------------------------------------------- /pargen/pargen/file_position.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/pargen/pargen/file_position.h -------------------------------------------------------------------------------- /pargen/pargen/grammar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/pargen/pargen/grammar.cpp -------------------------------------------------------------------------------- /pargen/pargen/grammar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/pargen/pargen/grammar.h -------------------------------------------------------------------------------- /pargen/pargen/header_compiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/pargen/pargen/header_compiler.h -------------------------------------------------------------------------------- /pargen/pargen/lookup_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/pargen/pargen/lookup_data.h -------------------------------------------------------------------------------- /pargen/pargen/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/pargen/pargen/main.cpp -------------------------------------------------------------------------------- /pargen/pargen/parser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/pargen/pargen/parser.cpp -------------------------------------------------------------------------------- /pargen/pargen/parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/pargen/pargen/parser.h -------------------------------------------------------------------------------- /pargen/pargen/parser_element.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/pargen/pargen/parser_element.h -------------------------------------------------------------------------------- /pargen/pargen/quick_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/pargen/pargen/quick_test.sh -------------------------------------------------------------------------------- /pargen/pargen/source_compiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/pargen/pargen/source_compiler.h -------------------------------------------------------------------------------- /pargen/pargen/test.par: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/pargen/pargen/test.par -------------------------------------------------------------------------------- /pargen/pargen/token_stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/pargen/pargen/token_stream.h -------------------------------------------------------------------------------- /pargen/pargen/util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/pargen/pargen/util.cpp -------------------------------------------------------------------------------- /pargen/pargen/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/pargen/pargen/util.h -------------------------------------------------------------------------------- /pargen/tests/pargen_simple/test.in: -------------------------------------------------------------------------------- 1 | one, two, three. 2 | 3 | -------------------------------------------------------------------------------- /recpath.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/recpath.conf -------------------------------------------------------------------------------- /run_moment.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/run_moment.sh -------------------------------------------------------------------------------- /scruffy/AUTHORS: -------------------------------------------------------------------------------- 1 | Dmitry Shatrov 2 | 3 | -------------------------------------------------------------------------------- /scruffy/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/scruffy/COPYING -------------------------------------------------------------------------------- /scruffy/ChangeLog: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scruffy/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/scruffy/Makefile.am -------------------------------------------------------------------------------- /scruffy/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/scruffy/NEWS -------------------------------------------------------------------------------- /scruffy/README: -------------------------------------------------------------------------------- 1 | I'm Scruffy. The janitor. 2 | 3 | -------------------------------------------------------------------------------- /scruffy/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/scruffy/TODO -------------------------------------------------------------------------------- /scruffy/autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/scruffy/autogen.sh -------------------------------------------------------------------------------- /scruffy/configure.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/scruffy/configure.in -------------------------------------------------------------------------------- /scruffy/doc/USECASES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/scruffy/doc/USECASES -------------------------------------------------------------------------------- /scruffy/doc/ideas.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/scruffy/doc/ideas.txt -------------------------------------------------------------------------------- /scruffy/doc/mt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/scruffy/doc/mt.txt -------------------------------------------------------------------------------- /scruffy/doc/mt_example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/scruffy/doc/mt_example.c -------------------------------------------------------------------------------- /scruffy/doc/mt_formal.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/scruffy/doc/mt_formal.txt -------------------------------------------------------------------------------- /scruffy/doc/mt_notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/scruffy/doc/mt_notes.txt -------------------------------------------------------------------------------- /scruffy/doc/output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/scruffy/doc/output.txt -------------------------------------------------------------------------------- /scruffy/doc/templates.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/scruffy/doc/templates.txt -------------------------------------------------------------------------------- /scruffy/scruffy-1.0.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/scruffy/scruffy-1.0.pc.in -------------------------------------------------------------------------------- /scruffy/scruffy/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/scruffy/scruffy/Makefile.am -------------------------------------------------------------------------------- /scruffy/scruffy/byte_stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/scruffy/scruffy/byte_stream.h -------------------------------------------------------------------------------- /scruffy/scruffy/cpp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/scruffy/scruffy/cpp.cpp -------------------------------------------------------------------------------- /scruffy/scruffy/cpp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/scruffy/scruffy/cpp.h -------------------------------------------------------------------------------- /scruffy/scruffy/cpp.par: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/scruffy/scruffy/cpp.par -------------------------------------------------------------------------------- /scruffy/scruffy/cpp_cond.par: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/scruffy/scruffy/cpp_cond.par -------------------------------------------------------------------------------- /scruffy/scruffy/cpp_parser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/scruffy/scruffy/cpp_parser.cpp -------------------------------------------------------------------------------- /scruffy/scruffy/cpp_parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/scruffy/scruffy/cpp_parser.h -------------------------------------------------------------------------------- /scruffy/scruffy/cpp_util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/scruffy/scruffy/cpp_util.cpp -------------------------------------------------------------------------------- /scruffy/scruffy/cpp_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/scruffy/scruffy/cpp_util.h -------------------------------------------------------------------------------- /scruffy/scruffy/cpp_visitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/scruffy/scruffy/cpp_visitor.h -------------------------------------------------------------------------------- /scruffy/scruffy/dump_context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/scruffy/scruffy/dump_context.h -------------------------------------------------------------------------------- /scruffy/scruffy/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/scruffy/scruffy/main.cpp -------------------------------------------------------------------------------- /scruffy/scruffy/name_tracker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/scruffy/scruffy/name_tracker.h -------------------------------------------------------------------------------- /scruffy/scruffy/preprocessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/scruffy/scruffy/preprocessor.h -------------------------------------------------------------------------------- /scruffy/scruffy/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/scruffy/scruffy/test.sh -------------------------------------------------------------------------------- /scruffy/scruffy/tests/1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/scruffy/scruffy/tests/1.cpp -------------------------------------------------------------------------------- /scruffy/scruffy/tests/10.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/scruffy/scruffy/tests/10.cpp -------------------------------------------------------------------------------- /scruffy/scruffy/tests/11.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/scruffy/scruffy/tests/11.cpp -------------------------------------------------------------------------------- /scruffy/scruffy/tests/12.cpp: -------------------------------------------------------------------------------- 1 | void f () 2 | { 3 | } 4 | 5 | -------------------------------------------------------------------------------- /scruffy/scruffy/tests/13.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/scruffy/scruffy/tests/13.cpp -------------------------------------------------------------------------------- /scruffy/scruffy/tests/14.cpp: -------------------------------------------------------------------------------- 1 | class A 2 | { 3 | }; 4 | 5 | -------------------------------------------------------------------------------- /scruffy/scruffy/tests/2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/scruffy/scruffy/tests/2.cpp -------------------------------------------------------------------------------- /scruffy/scruffy/tests/3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/scruffy/scruffy/tests/3.cpp -------------------------------------------------------------------------------- /scruffy/scruffy/tests/4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/scruffy/scruffy/tests/4.cpp -------------------------------------------------------------------------------- /scruffy/scruffy/tests/5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/scruffy/scruffy/tests/5.cpp -------------------------------------------------------------------------------- /scruffy/scruffy/tests/6.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/scruffy/scruffy/tests/6.cpp -------------------------------------------------------------------------------- /scruffy/scruffy/tests/7.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/scruffy/scruffy/tests/7.cpp -------------------------------------------------------------------------------- /scruffy/scruffy/tests/8.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/scruffy/scruffy/tests/8.cpp -------------------------------------------------------------------------------- /scruffy/scruffy/tests/9.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/scruffy/scruffy/tests/9.cpp -------------------------------------------------------------------------------- /scruffy/scruffy/tests/NOTES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/scruffy/scruffy/tests/NOTES -------------------------------------------------------------------------------- /scruffy/scruffy/tests/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/scruffy/scruffy/tests/README -------------------------------------------------------------------------------- /scruffy/scruffy/tests/cpp_1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/scruffy/scruffy/tests/cpp_1.cpp -------------------------------------------------------------------------------- /scruffy/scruffy/tests/more/test.ref.cpp: -------------------------------------------------------------------------------- 1 | int main (void) 2 | { 3 | } 4 | 5 | -------------------------------------------------------------------------------- /scruffy/scruffy/tests/test.cpp: -------------------------------------------------------------------------------- 1 | class A 2 | { 3 | A (); 4 | }; 5 | 6 | -------------------------------------------------------------------------------- /scruffy/scruffy/tests/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/scruffy/scruffy/tests/test.sh -------------------------------------------------------------------------------- /scruffy/scruffy/type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/scruffy/scruffy/type.h -------------------------------------------------------------------------------- /scruffy/scruffy/util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/scruffy/scruffy/util.cpp -------------------------------------------------------------------------------- /scruffy/scruffy/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/scruffy/scruffy/util.h -------------------------------------------------------------------------------- /tools/make_big_idx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/tools/make_big_idx.py -------------------------------------------------------------------------------- /tools/make_many_flv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/tools/make_many_flv.py -------------------------------------------------------------------------------- /tools/make_many_idx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/tools/make_many_idx.py -------------------------------------------------------------------------------- /tools/run_many_vlc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/tools/run_many_vlc.py -------------------------------------------------------------------------------- /vlcStreaming/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/vlcStreaming/readme.txt -------------------------------------------------------------------------------- /vlcStreaming/run_vlc_host.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/vlcStreaming/run_vlc_host.bat -------------------------------------------------------------------------------- /vlcStreaming/run_vlc_host.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/vlcStreaming/run_vlc_host.sh -------------------------------------------------------------------------------- /vlcStreaming/vlcstream.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/vlcStreaming/vlcstream.py -------------------------------------------------------------------------------- /watchdog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/watchdog.py -------------------------------------------------------------------------------- /website/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/.gitignore -------------------------------------------------------------------------------- /website/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/README -------------------------------------------------------------------------------- /website/ad.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/ad.php -------------------------------------------------------------------------------- /website/css/MarkerCluster.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/css/MarkerCluster.css -------------------------------------------------------------------------------- /website/css/bootstrap-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/css/bootstrap-theme.css -------------------------------------------------------------------------------- /website/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/css/bootstrap.css -------------------------------------------------------------------------------- /website/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/css/bootstrap.min.css -------------------------------------------------------------------------------- /website/css/l.geosearch.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/css/l.geosearch.css -------------------------------------------------------------------------------- /website/css/leaflet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/css/leaflet.css -------------------------------------------------------------------------------- /website/css/leaflet.draw.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/css/leaflet.draw.css -------------------------------------------------------------------------------- /website/css/passfield.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/css/passfield.min.css -------------------------------------------------------------------------------- /website/css/rand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/css/rand.png -------------------------------------------------------------------------------- /website/css/rand@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/css/rand@2x.png -------------------------------------------------------------------------------- /website/css/style-default.css: -------------------------------------------------------------------------------- 1 | .icons { 2 | font-size: 30px; 3 | } -------------------------------------------------------------------------------- /website/css/style-hipster.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/css/style-hipster.css -------------------------------------------------------------------------------- /website/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/favicon.ico -------------------------------------------------------------------------------- /website/fw/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore -------------------------------------------------------------------------------- /website/fw/.htaccess: -------------------------------------------------------------------------------- 1 | deny from all 2 | -------------------------------------------------------------------------------- /website/fw/YiiBase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/YiiBase.php -------------------------------------------------------------------------------- /website/fw/base/CBehavior.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/base/CBehavior.php -------------------------------------------------------------------------------- /website/fw/base/CComponent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/base/CComponent.php -------------------------------------------------------------------------------- /website/fw/base/CErrorEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/base/CErrorEvent.php -------------------------------------------------------------------------------- /website/fw/base/CException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/base/CException.php -------------------------------------------------------------------------------- /website/fw/base/CModel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/base/CModel.php -------------------------------------------------------------------------------- /website/fw/base/CModelEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/base/CModelEvent.php -------------------------------------------------------------------------------- /website/fw/base/CModule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/base/CModule.php -------------------------------------------------------------------------------- /website/fw/base/interfaces.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/base/interfaces.php -------------------------------------------------------------------------------- /website/fw/caching/CCache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/caching/CCache.php -------------------------------------------------------------------------------- /website/fw/caching/CDbCache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/caching/CDbCache.php -------------------------------------------------------------------------------- /website/fw/caching/CXCache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/caching/CXCache.php -------------------------------------------------------------------------------- /website/fw/cli/views/webapp/assets/git-gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore -------------------------------------------------------------------------------- /website/fw/cli/views/webapp/assets/hg-hgkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /website/fw/cli/views/webapp/images/git-gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /website/fw/cli/views/webapp/images/hg-hgkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /website/fw/cli/views/webapp/protected/.htaccess: -------------------------------------------------------------------------------- 1 | deny from all 2 | -------------------------------------------------------------------------------- /website/fw/cli/views/webapp/protected/commands/shell/git-gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /website/fw/cli/views/webapp/protected/commands/shell/hg-hgkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /website/fw/cli/views/webapp/protected/extensions/git-gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /website/fw/cli/views/webapp/protected/extensions/hg-hgkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /website/fw/cli/views/webapp/protected/messages/git-gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /website/fw/cli/views/webapp/protected/messages/hg-hgkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /website/fw/cli/views/webapp/protected/migrations/git-gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /website/fw/cli/views/webapp/protected/migrations/hg-hgkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /website/fw/cli/views/webapp/protected/runtime/git-gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore -------------------------------------------------------------------------------- /website/fw/cli/views/webapp/protected/runtime/hg-hgkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /website/fw/cli/views/webapp/protected/tests/fixtures/git-gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /website/fw/cli/views/webapp/protected/tests/fixtures/hg-hgkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /website/fw/cli/views/webapp/protected/tests/report/git-gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore -------------------------------------------------------------------------------- /website/fw/cli/views/webapp/protected/tests/report/hg-hgkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /website/fw/cli/views/webapp/protected/tests/unit/git-gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /website/fw/cli/views/webapp/protected/tests/unit/hg-hgkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /website/fw/cli/views/webapp/themes/classic/views/.htaccess: -------------------------------------------------------------------------------- 1 | deny from all 2 | -------------------------------------------------------------------------------- /website/fw/cli/views/webapp/themes/classic/views/layouts/git-gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /website/fw/cli/views/webapp/themes/classic/views/layouts/hg-hgkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /website/fw/cli/views/webapp/themes/classic/views/site/git-gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /website/fw/cli/views/webapp/themes/classic/views/site/hg-hgkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /website/fw/cli/views/webapp/themes/classic/views/system/git-gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /website/fw/cli/views/webapp/themes/classic/views/system/hg-hgkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /website/fw/collections/CMap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/collections/CMap.php -------------------------------------------------------------------------------- /website/fw/db/CDbCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/db/CDbCommand.php -------------------------------------------------------------------------------- /website/fw/db/CDbConnection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/db/CDbConnection.php -------------------------------------------------------------------------------- /website/fw/db/CDbDataReader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/db/CDbDataReader.php -------------------------------------------------------------------------------- /website/fw/db/CDbException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/db/CDbException.php -------------------------------------------------------------------------------- /website/fw/db/CDbMigration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/db/CDbMigration.php -------------------------------------------------------------------------------- /website/fw/gii/CCodeFile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/gii/CCodeFile.php -------------------------------------------------------------------------------- /website/fw/gii/CCodeForm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/gii/CCodeForm.php -------------------------------------------------------------------------------- /website/fw/gii/CCodeModel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/gii/CCodeModel.php -------------------------------------------------------------------------------- /website/fw/gii/GiiModule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/gii/GiiModule.php -------------------------------------------------------------------------------- /website/fw/i18n/CLocale.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/i18n/CLocale.php -------------------------------------------------------------------------------- /website/fw/i18n/data/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/i18n/data/README.txt -------------------------------------------------------------------------------- /website/fw/i18n/data/aa.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/i18n/data/aa.php -------------------------------------------------------------------------------- /website/fw/i18n/data/aa_dj.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/i18n/data/aa_dj.php -------------------------------------------------------------------------------- /website/fw/i18n/data/aa_er.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/i18n/data/aa_er.php -------------------------------------------------------------------------------- /website/fw/i18n/data/aa_et.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/i18n/data/aa_et.php -------------------------------------------------------------------------------- /website/fw/i18n/data/af.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/i18n/data/af.php -------------------------------------------------------------------------------- /website/fw/i18n/data/af_na.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/i18n/data/af_na.php -------------------------------------------------------------------------------- /website/fw/i18n/data/af_za.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/i18n/data/af_za.php -------------------------------------------------------------------------------- /website/fw/i18n/data/agq.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/i18n/data/agq.php -------------------------------------------------------------------------------- /website/fw/i18n/data/agq_cm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/i18n/data/agq_cm.php -------------------------------------------------------------------------------- /website/fw/i18n/data/ak.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/i18n/data/ak.php -------------------------------------------------------------------------------- /website/fw/i18n/data/ak_gh.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/i18n/data/ak_gh.php -------------------------------------------------------------------------------- /website/fw/i18n/data/am.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/i18n/data/am.php -------------------------------------------------------------------------------- /website/fw/i18n/data/am_et.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/i18n/data/am_et.php -------------------------------------------------------------------------------- /website/fw/i18n/data/ar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/i18n/data/ar.php -------------------------------------------------------------------------------- /website/fw/i18n/data/ar_001.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/i18n/data/ar_001.php -------------------------------------------------------------------------------- /website/fw/i18n/data/ar_ae.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/i18n/data/ar_ae.php -------------------------------------------------------------------------------- /website/fw/i18n/data/ar_bh.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/i18n/data/ar_bh.php -------------------------------------------------------------------------------- /website/fw/i18n/data/ar_dz.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/i18n/data/ar_dz.php -------------------------------------------------------------------------------- /website/fw/i18n/data/ar_eg.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/i18n/data/ar_eg.php -------------------------------------------------------------------------------- /website/fw/i18n/data/ar_iq.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/i18n/data/ar_iq.php -------------------------------------------------------------------------------- /website/fw/i18n/data/ar_jo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/i18n/data/ar_jo.php -------------------------------------------------------------------------------- /website/fw/i18n/data/ar_kw.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/i18n/data/ar_kw.php -------------------------------------------------------------------------------- /website/fw/i18n/data/ar_lb.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/i18n/data/ar_lb.php -------------------------------------------------------------------------------- /website/fw/i18n/data/ar_ly.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/i18n/data/ar_ly.php -------------------------------------------------------------------------------- /website/fw/i18n/data/ar_ma.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/i18n/data/ar_ma.php -------------------------------------------------------------------------------- /website/fw/i18n/data/ar_om.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/i18n/data/ar_om.php -------------------------------------------------------------------------------- /website/fw/i18n/data/ar_qa.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/i18n/data/ar_qa.php -------------------------------------------------------------------------------- /website/fw/i18n/data/ar_sa.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/i18n/data/ar_sa.php -------------------------------------------------------------------------------- /website/fw/i18n/data/ar_sd.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/i18n/data/ar_sd.php -------------------------------------------------------------------------------- /website/fw/i18n/data/ar_sy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/i18n/data/ar_sy.php -------------------------------------------------------------------------------- /website/fw/i18n/data/ar_tn.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/i18n/data/ar_tn.php -------------------------------------------------------------------------------- /website/fw/i18n/data/ar_ye.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/i18n/data/ar_ye.php -------------------------------------------------------------------------------- /website/fw/i18n/data/as.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/i18n/data/as.php -------------------------------------------------------------------------------- /website/fw/i18n/data/as_in.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/i18n/data/as_in.php -------------------------------------------------------------------------------- /website/fw/i18n/data/asa.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/i18n/data/asa.php -------------------------------------------------------------------------------- /website/fw/i18n/data/asa_tz.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/i18n/data/asa_tz.php -------------------------------------------------------------------------------- /website/fw/i18n/data/az.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/i18n/data/az.php -------------------------------------------------------------------------------- /website/fw/i18n/data/az_az.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/i18n/data/az_az.php -------------------------------------------------------------------------------- /website/fw/i18n/data/az_ir.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/i18n/data/az_ir.php -------------------------------------------------------------------------------- /website/fw/i18n/data/bas.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/i18n/data/bas.php -------------------------------------------------------------------------------- /website/fw/i18n/data/bas_cm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/i18n/data/bas_cm.php -------------------------------------------------------------------------------- /website/fw/i18n/data/be.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/i18n/data/be.php -------------------------------------------------------------------------------- /website/fw/i18n/data/be_by.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/i18n/data/be_by.php -------------------------------------------------------------------------------- /website/fw/i18n/data/bem.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/i18n/data/bem.php -------------------------------------------------------------------------------- /website/fw/i18n/data/bem_zm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/i18n/data/bem_zm.php -------------------------------------------------------------------------------- /website/fw/i18n/data/bez.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/i18n/data/bez.php -------------------------------------------------------------------------------- /website/fw/i18n/data/bez_tz.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/i18n/data/bez_tz.php -------------------------------------------------------------------------------- /website/fw/i18n/data/bg.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/i18n/data/bg.php -------------------------------------------------------------------------------- /website/fw/i18n/data/bg_bg.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/i18n/data/bg_bg.php -------------------------------------------------------------------------------- /website/fw/i18n/data/bm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/i18n/data/bm.php -------------------------------------------------------------------------------- /website/fw/i18n/data/bm_ml.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/i18n/data/bm_ml.php -------------------------------------------------------------------------------- /website/fw/i18n/data/bn.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/i18n/data/bn.php -------------------------------------------------------------------------------- /website/fw/i18n/data/bn_bd.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/i18n/data/bn_bd.php -------------------------------------------------------------------------------- /website/fw/i18n/data/bn_in.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/i18n/data/bn_in.php -------------------------------------------------------------------------------- /website/fw/i18n/data/bo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/i18n/data/bo.php -------------------------------------------------------------------------------- /website/fw/i18n/data/bo_cn.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/i18n/data/bo_cn.php -------------------------------------------------------------------------------- /website/fw/i18n/data/bo_in.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/i18n/data/bo_in.php -------------------------------------------------------------------------------- /website/fw/i18n/data/br.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/i18n/data/br.php -------------------------------------------------------------------------------- /website/fw/i18n/data/br_fr.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/i18n/data/br_fr.php -------------------------------------------------------------------------------- /website/fw/i18n/data/brx.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/i18n/data/brx.php -------------------------------------------------------------------------------- /website/fw/i18n/data/brx_in.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/i18n/data/brx_in.php -------------------------------------------------------------------------------- /website/fw/i18n/data/bs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/i18n/data/bs.php -------------------------------------------------------------------------------- /website/fw/i18n/data/bs_ba.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/i18n/data/bs_ba.php -------------------------------------------------------------------------------- /website/fw/i18n/data/byn.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/i18n/data/byn.php -------------------------------------------------------------------------------- /website/fw/i18n/data/byn_er.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/i18n/data/byn_er.php -------------------------------------------------------------------------------- /website/fw/i18n/data/ca.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/i18n/data/ca.php -------------------------------------------------------------------------------- /website/fw/i18n/data/ca_es.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/i18n/data/ca_es.php -------------------------------------------------------------------------------- /website/fw/i18n/data/cch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/i18n/data/cch.php -------------------------------------------------------------------------------- /website/fw/i18n/data/cch_ng.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/i18n/data/cch_ng.php -------------------------------------------------------------------------------- /website/fw/i18n/data/cgg.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/i18n/data/cgg.php -------------------------------------------------------------------------------- /website/fw/i18n/data/cgg_ug.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/i18n/data/cgg_ug.php -------------------------------------------------------------------------------- /website/fw/i18n/data/chr.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/i18n/data/chr.php -------------------------------------------------------------------------------- /website/fw/i18n/data/chr_us.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/i18n/data/chr_us.php -------------------------------------------------------------------------------- /website/fw/i18n/data/cs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/i18n/data/cs.php -------------------------------------------------------------------------------- /website/fw/i18n/data/cy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/i18n/data/cy.php -------------------------------------------------------------------------------- /website/fw/i18n/data/da.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/i18n/data/da.php -------------------------------------------------------------------------------- /website/fw/i18n/data/dav.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/i18n/data/dav.php -------------------------------------------------------------------------------- /website/fw/i18n/data/de.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/i18n/data/de.php -------------------------------------------------------------------------------- /website/fw/i18n/data/dje.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/i18n/data/dje.php -------------------------------------------------------------------------------- /website/fw/i18n/data/dua.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/i18n/data/dua.php -------------------------------------------------------------------------------- /website/fw/i18n/data/dv.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/i18n/data/dv.php -------------------------------------------------------------------------------- /website/fw/i18n/data/dyo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/i18n/data/dyo.php -------------------------------------------------------------------------------- /website/fw/i18n/data/dz.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/i18n/data/dz.php -------------------------------------------------------------------------------- /website/fw/i18n/data/ebu.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/i18n/data/ebu.php -------------------------------------------------------------------------------- /website/fw/i18n/data/ee.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/i18n/data/ee.php -------------------------------------------------------------------------------- /website/fw/i18n/data/el.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/i18n/data/el.php -------------------------------------------------------------------------------- /website/fw/i18n/data/en.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/i18n/data/en.php -------------------------------------------------------------------------------- /website/fw/i18n/data/eo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/i18n/data/eo.php -------------------------------------------------------------------------------- /website/fw/i18n/data/es.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/i18n/data/es.php -------------------------------------------------------------------------------- /website/fw/i18n/data/et.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/i18n/data/et.php -------------------------------------------------------------------------------- /website/fw/i18n/data/eu.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/i18n/data/eu.php -------------------------------------------------------------------------------- /website/fw/i18n/data/ewo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/i18n/data/ewo.php -------------------------------------------------------------------------------- /website/fw/i18n/data/fa.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/i18n/data/fa.php -------------------------------------------------------------------------------- /website/fw/i18n/data/ff.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/i18n/data/ff.php -------------------------------------------------------------------------------- /website/fw/i18n/data/fi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/i18n/data/fi.php -------------------------------------------------------------------------------- /website/fw/i18n/data/fil.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/i18n/data/fil.php -------------------------------------------------------------------------------- /website/fw/i18n/data/fo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/i18n/data/fo.php -------------------------------------------------------------------------------- /website/fw/i18n/data/fr.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/i18n/data/fr.php -------------------------------------------------------------------------------- /website/fw/i18n/data/fur.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/i18n/data/fur.php -------------------------------------------------------------------------------- /website/fw/i18n/data/ga.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/i18n/data/ga.php -------------------------------------------------------------------------------- /website/fw/i18n/data/gaa.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/i18n/data/gaa.php -------------------------------------------------------------------------------- /website/fw/i18n/data/gd.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/i18n/data/gd.php -------------------------------------------------------------------------------- /website/fw/i18n/data/gez.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/i18n/data/gez.php -------------------------------------------------------------------------------- /website/fw/i18n/data/gl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/i18n/data/gl.php -------------------------------------------------------------------------------- /website/fw/i18n/data/gsw.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/i18n/data/gsw.php -------------------------------------------------------------------------------- /website/fw/i18n/data/gu.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/i18n/data/gu.php -------------------------------------------------------------------------------- /website/fw/i18n/data/guz.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/i18n/data/guz.php -------------------------------------------------------------------------------- /website/fw/i18n/data/gv.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/i18n/data/gv.php -------------------------------------------------------------------------------- /website/fw/i18n/data/ha.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/i18n/data/ha.php -------------------------------------------------------------------------------- /website/fw/i18n/data/haw.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/i18n/data/haw.php -------------------------------------------------------------------------------- /website/fw/i18n/data/he.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/i18n/data/he.php -------------------------------------------------------------------------------- /website/fw/i18n/data/hi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/i18n/data/hi.php -------------------------------------------------------------------------------- /website/fw/i18n/data/hr.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/i18n/data/hr.php -------------------------------------------------------------------------------- /website/fw/i18n/data/hu.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/i18n/data/hu.php -------------------------------------------------------------------------------- /website/fw/i18n/data/hy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/i18n/data/hy.php -------------------------------------------------------------------------------- /website/fw/i18n/data/ia.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/i18n/data/ia.php -------------------------------------------------------------------------------- /website/fw/i18n/data/id.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/i18n/data/id.php -------------------------------------------------------------------------------- /website/fw/i18n/data/ig.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/i18n/data/ig.php -------------------------------------------------------------------------------- /website/fw/i18n/data/ii.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/i18n/data/ii.php -------------------------------------------------------------------------------- /website/fw/i18n/data/in.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/i18n/data/in.php -------------------------------------------------------------------------------- /website/fw/i18n/data/is.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/i18n/data/is.php -------------------------------------------------------------------------------- /website/fw/i18n/data/it.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/i18n/data/it.php -------------------------------------------------------------------------------- /website/fw/i18n/data/iu.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/i18n/data/iu.php -------------------------------------------------------------------------------- /website/fw/i18n/data/iw.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/i18n/data/iw.php -------------------------------------------------------------------------------- /website/fw/i18n/data/ja.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/i18n/data/ja.php -------------------------------------------------------------------------------- /website/fw/i18n/data/jmc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/i18n/data/jmc.php -------------------------------------------------------------------------------- /website/fw/i18n/data/ka.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/i18n/data/ka.php -------------------------------------------------------------------------------- /website/fw/i18n/data/kab.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/i18n/data/kab.php -------------------------------------------------------------------------------- /website/fw/i18n/data/kaj.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/i18n/data/kaj.php -------------------------------------------------------------------------------- /website/fw/i18n/data/kam.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/i18n/data/kam.php -------------------------------------------------------------------------------- /website/fw/i18n/data/kcg.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/i18n/data/kcg.php -------------------------------------------------------------------------------- /website/fw/i18n/data/kde.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/i18n/data/kde.php -------------------------------------------------------------------------------- /website/fw/i18n/data/kea.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/i18n/data/kea.php -------------------------------------------------------------------------------- /website/fw/i18n/data/kfo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/i18n/data/kfo.php -------------------------------------------------------------------------------- /website/fw/i18n/data/khq.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/i18n/data/khq.php -------------------------------------------------------------------------------- /website/fw/i18n/data/ki.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/i18n/data/ki.php -------------------------------------------------------------------------------- /website/fw/i18n/data/kk.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/i18n/data/kk.php -------------------------------------------------------------------------------- /website/fw/i18n/data/kl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/i18n/data/kl.php -------------------------------------------------------------------------------- /website/fw/i18n/data/kln.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/i18n/data/kln.php -------------------------------------------------------------------------------- /website/fw/i18n/data/km.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/i18n/data/km.php -------------------------------------------------------------------------------- /website/fw/i18n/data/kn.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/i18n/data/kn.php -------------------------------------------------------------------------------- /website/fw/i18n/data/ko.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/i18n/data/ko.php -------------------------------------------------------------------------------- /website/fw/i18n/data/kok.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/i18n/data/kok.php -------------------------------------------------------------------------------- /website/fw/i18n/data/kpe.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/i18n/data/kpe.php -------------------------------------------------------------------------------- /website/fw/i18n/data/ksb.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/i18n/data/ksb.php -------------------------------------------------------------------------------- /website/fw/i18n/data/ksf.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/i18n/data/ksf.php -------------------------------------------------------------------------------- /website/fw/i18n/data/ksh.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/i18n/data/ksh.php -------------------------------------------------------------------------------- /website/fw/i18n/data/ku.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/i18n/data/ku.php -------------------------------------------------------------------------------- /website/fw/i18n/data/kw.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/i18n/data/kw.php -------------------------------------------------------------------------------- /website/fw/i18n/data/ky.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/i18n/data/ky.php -------------------------------------------------------------------------------- /website/fw/i18n/data/lag.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/i18n/data/lag.php -------------------------------------------------------------------------------- /website/fw/i18n/data/lg.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/i18n/data/lg.php -------------------------------------------------------------------------------- /website/fw/i18n/data/ln.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/i18n/data/ln.php -------------------------------------------------------------------------------- /website/fw/i18n/data/lo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/i18n/data/lo.php -------------------------------------------------------------------------------- /website/fw/i18n/data/lt.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/i18n/data/lt.php -------------------------------------------------------------------------------- /website/fw/i18n/data/lu.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/i18n/data/lu.php -------------------------------------------------------------------------------- /website/fw/i18n/data/luo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/i18n/data/luo.php -------------------------------------------------------------------------------- /website/fw/i18n/data/luy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/i18n/data/luy.php -------------------------------------------------------------------------------- /website/fw/i18n/data/lv.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/i18n/data/lv.php -------------------------------------------------------------------------------- /website/fw/i18n/data/mas.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/i18n/data/mas.php -------------------------------------------------------------------------------- /website/fw/i18n/data/mer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/i18n/data/mer.php -------------------------------------------------------------------------------- /website/fw/i18n/data/mfe.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/i18n/data/mfe.php -------------------------------------------------------------------------------- /website/fw/i18n/data/mg.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/i18n/data/mg.php -------------------------------------------------------------------------------- /website/fw/i18n/data/mgh.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/i18n/data/mgh.php -------------------------------------------------------------------------------- /website/fw/i18n/data/mi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/i18n/data/mi.php -------------------------------------------------------------------------------- /website/fw/i18n/data/mk.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/i18n/data/mk.php -------------------------------------------------------------------------------- /website/fw/i18n/data/ml.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/i18n/data/ml.php -------------------------------------------------------------------------------- /website/fw/i18n/data/mn.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/i18n/data/mn.php -------------------------------------------------------------------------------- /website/fw/i18n/data/mo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/i18n/data/mo.php -------------------------------------------------------------------------------- /website/fw/i18n/data/mr.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/i18n/data/mr.php -------------------------------------------------------------------------------- /website/fw/i18n/data/ms.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/i18n/data/ms.php -------------------------------------------------------------------------------- /website/fw/i18n/data/mt.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/i18n/data/mt.php -------------------------------------------------------------------------------- /website/fw/i18n/data/mua.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/i18n/data/mua.php -------------------------------------------------------------------------------- /website/fw/i18n/data/my.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/i18n/data/my.php -------------------------------------------------------------------------------- /website/fw/i18n/data/naq.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/i18n/data/naq.php -------------------------------------------------------------------------------- /website/fw/i18n/data/nb.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/i18n/data/nb.php -------------------------------------------------------------------------------- /website/fw/i18n/data/nd.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/i18n/data/nd.php -------------------------------------------------------------------------------- /website/fw/i18n/data/nds.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/i18n/data/nds.php -------------------------------------------------------------------------------- /website/fw/i18n/data/ne.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/i18n/data/ne.php -------------------------------------------------------------------------------- /website/fw/i18n/data/nl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/i18n/data/nl.php -------------------------------------------------------------------------------- /website/fw/i18n/data/nmg.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/i18n/data/nmg.php -------------------------------------------------------------------------------- /website/fw/i18n/data/nn.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/i18n/data/nn.php -------------------------------------------------------------------------------- /website/fw/i18n/data/no.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/i18n/data/no.php -------------------------------------------------------------------------------- /website/fw/i18n/data/nr.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/i18n/data/nr.php -------------------------------------------------------------------------------- /website/fw/i18n/data/nso.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/i18n/data/nso.php -------------------------------------------------------------------------------- /website/fw/i18n/data/nus.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/i18n/data/nus.php -------------------------------------------------------------------------------- /website/fw/i18n/data/ny.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/i18n/data/ny.php -------------------------------------------------------------------------------- /website/fw/i18n/data/nyn.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/i18n/data/nyn.php -------------------------------------------------------------------------------- /website/fw/i18n/data/oc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/i18n/data/oc.php -------------------------------------------------------------------------------- /website/fw/i18n/data/om.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/i18n/data/om.php -------------------------------------------------------------------------------- /website/fw/i18n/data/or.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/i18n/data/or.php -------------------------------------------------------------------------------- /website/fw/i18n/data/pa.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/i18n/data/pa.php -------------------------------------------------------------------------------- /website/fw/i18n/data/pl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/i18n/data/pl.php -------------------------------------------------------------------------------- /website/fw/i18n/data/ps.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/i18n/data/ps.php -------------------------------------------------------------------------------- /website/fw/i18n/data/pt.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/i18n/data/pt.php -------------------------------------------------------------------------------- /website/fw/i18n/data/rm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/i18n/data/rm.php -------------------------------------------------------------------------------- /website/fw/i18n/data/rn.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/i18n/data/rn.php -------------------------------------------------------------------------------- /website/fw/i18n/data/ro.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/i18n/data/ro.php -------------------------------------------------------------------------------- /website/fw/i18n/data/rof.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/i18n/data/rof.php -------------------------------------------------------------------------------- /website/fw/i18n/data/ru.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/i18n/data/ru.php -------------------------------------------------------------------------------- /website/fw/i18n/data/rw.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/i18n/data/rw.php -------------------------------------------------------------------------------- /website/fw/i18n/data/rwk.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/i18n/data/rwk.php -------------------------------------------------------------------------------- /website/fw/i18n/data/sa.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/i18n/data/sa.php -------------------------------------------------------------------------------- /website/fw/i18n/data/sah.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/i18n/data/sah.php -------------------------------------------------------------------------------- /website/fw/i18n/data/saq.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/i18n/data/saq.php -------------------------------------------------------------------------------- /website/fw/i18n/data/sbp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/i18n/data/sbp.php -------------------------------------------------------------------------------- /website/fw/i18n/data/se.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/i18n/data/se.php -------------------------------------------------------------------------------- /website/fw/i18n/data/seh.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/i18n/data/seh.php -------------------------------------------------------------------------------- /website/fw/i18n/data/ses.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/i18n/data/ses.php -------------------------------------------------------------------------------- /website/fw/i18n/data/sg.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/i18n/data/sg.php -------------------------------------------------------------------------------- /website/fw/i18n/data/sh.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/i18n/data/sh.php -------------------------------------------------------------------------------- /website/fw/i18n/data/shi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/i18n/data/shi.php -------------------------------------------------------------------------------- /website/fw/i18n/data/si.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/i18n/data/si.php -------------------------------------------------------------------------------- /website/fw/i18n/data/sid.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/i18n/data/sid.php -------------------------------------------------------------------------------- /website/fw/i18n/data/sk.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/i18n/data/sk.php -------------------------------------------------------------------------------- /website/fw/i18n/data/sl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/i18n/data/sl.php -------------------------------------------------------------------------------- /website/fw/i18n/data/sn.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/i18n/data/sn.php -------------------------------------------------------------------------------- /website/fw/i18n/data/so.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/i18n/data/so.php -------------------------------------------------------------------------------- /website/fw/i18n/data/sq.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/i18n/data/sq.php -------------------------------------------------------------------------------- /website/fw/i18n/data/sr.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/i18n/data/sr.php -------------------------------------------------------------------------------- /website/fw/i18n/data/ss.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/i18n/data/ss.php -------------------------------------------------------------------------------- /website/fw/i18n/data/ssy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/i18n/data/ssy.php -------------------------------------------------------------------------------- /website/fw/i18n/data/st.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/i18n/data/st.php -------------------------------------------------------------------------------- /website/fw/i18n/data/sv.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/i18n/data/sv.php -------------------------------------------------------------------------------- /website/fw/i18n/data/sw.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/i18n/data/sw.php -------------------------------------------------------------------------------- /website/fw/i18n/data/swc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/i18n/data/swc.php -------------------------------------------------------------------------------- /website/fw/i18n/data/syr.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/i18n/data/syr.php -------------------------------------------------------------------------------- /website/fw/i18n/data/ta.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/i18n/data/ta.php -------------------------------------------------------------------------------- /website/fw/i18n/data/te.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/i18n/data/te.php -------------------------------------------------------------------------------- /website/fw/i18n/data/teo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/i18n/data/teo.php -------------------------------------------------------------------------------- /website/fw/i18n/data/tg.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/i18n/data/tg.php -------------------------------------------------------------------------------- /website/fw/i18n/data/th.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/i18n/data/th.php -------------------------------------------------------------------------------- /website/fw/i18n/data/ti.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/i18n/data/ti.php -------------------------------------------------------------------------------- /website/fw/i18n/data/tig.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/i18n/data/tig.php -------------------------------------------------------------------------------- /website/fw/i18n/data/tl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/i18n/data/tl.php -------------------------------------------------------------------------------- /website/fw/i18n/data/tn.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/i18n/data/tn.php -------------------------------------------------------------------------------- /website/fw/i18n/data/to.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/i18n/data/to.php -------------------------------------------------------------------------------- /website/fw/i18n/data/tr.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/i18n/data/tr.php -------------------------------------------------------------------------------- /website/fw/i18n/data/trv.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/i18n/data/trv.php -------------------------------------------------------------------------------- /website/fw/i18n/data/ts.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/i18n/data/ts.php -------------------------------------------------------------------------------- /website/fw/i18n/data/tt.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/i18n/data/tt.php -------------------------------------------------------------------------------- /website/fw/i18n/data/twq.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/i18n/data/twq.php -------------------------------------------------------------------------------- /website/fw/i18n/data/tzm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/i18n/data/tzm.php -------------------------------------------------------------------------------- /website/fw/i18n/data/ug.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/i18n/data/ug.php -------------------------------------------------------------------------------- /website/fw/i18n/data/uk.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/i18n/data/uk.php -------------------------------------------------------------------------------- /website/fw/i18n/data/ur.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/i18n/data/ur.php -------------------------------------------------------------------------------- /website/fw/i18n/data/uz.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/i18n/data/uz.php -------------------------------------------------------------------------------- /website/fw/i18n/data/vai.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/i18n/data/vai.php -------------------------------------------------------------------------------- /website/fw/i18n/data/ve.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/i18n/data/ve.php -------------------------------------------------------------------------------- /website/fw/i18n/data/vi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/i18n/data/vi.php -------------------------------------------------------------------------------- /website/fw/i18n/data/vun.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/i18n/data/vun.php -------------------------------------------------------------------------------- /website/fw/i18n/data/wae.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/i18n/data/wae.php -------------------------------------------------------------------------------- /website/fw/i18n/data/wal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/i18n/data/wal.php -------------------------------------------------------------------------------- /website/fw/i18n/data/wo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/i18n/data/wo.php -------------------------------------------------------------------------------- /website/fw/i18n/data/xh.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/i18n/data/xh.php -------------------------------------------------------------------------------- /website/fw/i18n/data/xog.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/i18n/data/xog.php -------------------------------------------------------------------------------- /website/fw/i18n/data/yav.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/i18n/data/yav.php -------------------------------------------------------------------------------- /website/fw/i18n/data/yo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/i18n/data/yo.php -------------------------------------------------------------------------------- /website/fw/i18n/data/zh.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/i18n/data/zh.php -------------------------------------------------------------------------------- /website/fw/i18n/data/zu.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/i18n/data/zu.php -------------------------------------------------------------------------------- /website/fw/views/ar/log.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/views/ar/log.php -------------------------------------------------------------------------------- /website/fw/views/bg/log.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/views/bg/log.php -------------------------------------------------------------------------------- /website/fw/views/de/log.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/views/de/log.php -------------------------------------------------------------------------------- /website/fw/views/el/log.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/views/el/log.php -------------------------------------------------------------------------------- /website/fw/views/error.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/views/error.php -------------------------------------------------------------------------------- /website/fw/views/es/log.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/views/es/log.php -------------------------------------------------------------------------------- /website/fw/views/fr/log.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/views/fr/log.php -------------------------------------------------------------------------------- /website/fw/views/he/log.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/views/he/log.php -------------------------------------------------------------------------------- /website/fw/views/hr/log.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/views/hr/log.php -------------------------------------------------------------------------------- /website/fw/views/id/log.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/views/id/log.php -------------------------------------------------------------------------------- /website/fw/views/it/log.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/views/it/log.php -------------------------------------------------------------------------------- /website/fw/views/ja/log.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/views/ja/log.php -------------------------------------------------------------------------------- /website/fw/views/ko/log.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/views/ko/log.php -------------------------------------------------------------------------------- /website/fw/views/log.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/views/log.php -------------------------------------------------------------------------------- /website/fw/views/lt/log.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/views/lt/log.php -------------------------------------------------------------------------------- /website/fw/views/lv/log.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/views/lv/log.php -------------------------------------------------------------------------------- /website/fw/views/nl/log.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/views/nl/log.php -------------------------------------------------------------------------------- /website/fw/views/no/log.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/views/no/log.php -------------------------------------------------------------------------------- /website/fw/views/pl/log.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/views/pl/log.php -------------------------------------------------------------------------------- /website/fw/views/pt/log.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/views/pt/log.php -------------------------------------------------------------------------------- /website/fw/views/ro/log.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/views/ro/log.php -------------------------------------------------------------------------------- /website/fw/views/ru/log.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/views/ru/log.php -------------------------------------------------------------------------------- /website/fw/views/sk/log.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/views/sk/log.php -------------------------------------------------------------------------------- /website/fw/views/sv/log.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/views/sv/log.php -------------------------------------------------------------------------------- /website/fw/views/uk/log.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/views/uk/log.php -------------------------------------------------------------------------------- /website/fw/views/vi/log.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/views/vi/log.php -------------------------------------------------------------------------------- /website/fw/web/CSort.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/web/CSort.php -------------------------------------------------------------------------------- /website/fw/web/CTheme.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/web/CTheme.php -------------------------------------------------------------------------------- /website/fw/yii-powered.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/yii-powered.png -------------------------------------------------------------------------------- /website/fw/yii.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/yii.php -------------------------------------------------------------------------------- /website/fw/yiic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/yiic -------------------------------------------------------------------------------- /website/fw/yiic.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/yiic.bat -------------------------------------------------------------------------------- /website/fw/yiic.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/yiic.php -------------------------------------------------------------------------------- /website/fw/yiilite.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/yiilite.php -------------------------------------------------------------------------------- /website/fw/yiit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/fw/yiit.php -------------------------------------------------------------------------------- /website/i/app.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/i/app.zip -------------------------------------------------------------------------------- /website/i/file_list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/i/file_list.json -------------------------------------------------------------------------------- /website/i/fw.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/i/fw.zip -------------------------------------------------------------------------------- /website/i/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/i/index.php -------------------------------------------------------------------------------- /website/i/js/jquery-ui.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/i/js/jquery-ui.css -------------------------------------------------------------------------------- /website/i/langs/ru.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/i/langs/ru.php -------------------------------------------------------------------------------- /website/i/lib/http.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/i/lib/http.php -------------------------------------------------------------------------------- /website/i/lib/installer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/i/lib/installer.php -------------------------------------------------------------------------------- /website/i/nvr.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/i/nvr.sql -------------------------------------------------------------------------------- /website/i/tpl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/i/tpl.html -------------------------------------------------------------------------------- /website/i/versions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/i/versions.json -------------------------------------------------------------------------------- /website/images/add-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/images/add-icon.png -------------------------------------------------------------------------------- /website/images/archive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/images/archive.png -------------------------------------------------------------------------------- /website/images/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/images/bg.png -------------------------------------------------------------------------------- /website/images/bgtop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/images/bgtop.png -------------------------------------------------------------------------------- /website/images/cam_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/images/cam_icon.png -------------------------------------------------------------------------------- /website/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/images/logo.png -------------------------------------------------------------------------------- /website/images/map_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/images/map_bg.png -------------------------------------------------------------------------------- /website/images/shadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/images/shadow.png -------------------------------------------------------------------------------- /website/index-test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/index-test.php -------------------------------------------------------------------------------- /website/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/index.php -------------------------------------------------------------------------------- /website/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/js/bootstrap.js -------------------------------------------------------------------------------- /website/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/js/bootstrap.min.js -------------------------------------------------------------------------------- /website/js/jquery-1.10.2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/js/jquery-1.10.2.js -------------------------------------------------------------------------------- /website/js/leaflet/Google.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/js/leaflet/Google.js -------------------------------------------------------------------------------- /website/js/leaflet/Yandex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/js/leaflet/Yandex.js -------------------------------------------------------------------------------- /website/js/passfield.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/js/passfield.min.js -------------------------------------------------------------------------------- /website/js/swfobject.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/js/swfobject.js -------------------------------------------------------------------------------- /website/nvr.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/nvr.sql -------------------------------------------------------------------------------- /website/player/MyPlayer.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/player/MyPlayer.as -------------------------------------------------------------------------------- /website/player/MyPlayer.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/player/MyPlayer.swf -------------------------------------------------------------------------------- /website/player/buffering.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/player/buffering.png -------------------------------------------------------------------------------- /website/player/error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/player/error.png -------------------------------------------------------------------------------- /website/player/jquery-ui.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/player/jquery-ui.css -------------------------------------------------------------------------------- /website/player/jquery-ui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/player/jquery-ui.js -------------------------------------------------------------------------------- /website/player/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/player/jquery.js -------------------------------------------------------------------------------- /website/player/playlist_.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/player/playlist_.png -------------------------------------------------------------------------------- /website/player/url.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/player/url.js -------------------------------------------------------------------------------- /website/protected/.htaccess: -------------------------------------------------------------------------------- 1 | deny from all 2 | -------------------------------------------------------------------------------- /website/protected/extensions/Updater/backups/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore -------------------------------------------------------------------------------- /website/protected/extensions/Updater/tmp/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore -------------------------------------------------------------------------------- /website/protected/extensions/charts/.gitignore: -------------------------------------------------------------------------------- 1 | .buildpath 2 | .project 3 | .settings/ -------------------------------------------------------------------------------- /website/protected/views/cams/empty.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /website/protected/views/layouts/empty.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /website/protected/views/site/index.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /website/protected/yiic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/protected/yiic -------------------------------------------------------------------------------- /website/protected/yiic.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/protected/yiic.bat -------------------------------------------------------------------------------- /website/protected/yiic.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigrand/OpenNVR/HEAD/website/protected/yiic.php --------------------------------------------------------------------------------