Dancer 1.1999_02 Deleted
Files
- .current_cover_stats
- .gitignore
- .perlcriticrc
- .perltidyrc
- AUTHORS
- CHANGES
- LICENSE
- MANIFEST
- MANIFEST.SKIP
- META.yml
- Makefile.PL
- README
- TODO
- examples/dancr/dancr.pl
- examples/dancr/public/css/style.css
- examples/dancr/schema.sql
- examples/dancr/views/layouts/main.tt
- examples/dancr/views/login.tt
- examples/dancr/views/show_entries.tt
- lib/Dancer.pm
- lib/Dancer/App.pm
- lib/Dancer/Config.pm
- lib/Dancer/Cookbook.pod
- lib/Dancer/Cookie.pm
- lib/Dancer/Cookies.pm
- lib/Dancer/Deployment.pod
- lib/Dancer/Development.pod
- lib/Dancer/Engine.pm
- lib/Dancer/Error.pm
- lib/Dancer/FileUtils.pm
- lib/Dancer/GetOpt.pm
- lib/Dancer/HTTP.pm
- lib/Dancer/Handler.pm
- lib/Dancer/Handler/PSGI.pm
- lib/Dancer/Handler/Standalone.pm
- lib/Dancer/Helpers.pm
- lib/Dancer/Introduction.pod
- lib/Dancer/Logger.pm
- lib/Dancer/Logger/Abstract.pm
- lib/Dancer/Logger/Console.pm
- lib/Dancer/Logger/File.pm
- lib/Dancer/ModuleLoader.pm
- lib/Dancer/Object.pm
- lib/Dancer/Plugin.pm
- lib/Dancer/Plugin/Ajax.pm
- lib/Dancer/Plugins.pod
- lib/Dancer/Renderer.pm
- lib/Dancer/Request.pm
- lib/Dancer/Request/Upload.pm
- lib/Dancer/Response.pm
- lib/Dancer/Route.pm
- lib/Dancer/Route/Cache.pm
- lib/Dancer/Route/Registry.pm
- lib/Dancer/Serializer.pm
- lib/Dancer/Serializer/Abstract.pm
- lib/Dancer/Serializer/Dumper.pm
- lib/Dancer/Serializer/JSON.pm
- lib/Dancer/Serializer/Mutable.pm
- lib/Dancer/Serializer/XML.pm
- lib/Dancer/Serializer/YAML.pm
- lib/Dancer/Session.pm
- lib/Dancer/Session/Abstract.pm
- lib/Dancer/Session/Simple.pm
- lib/Dancer/Session/YAML.pm
- lib/Dancer/SharedData.pm
- lib/Dancer/Template.pm
- lib/Dancer/Template/Abstract.pm
- lib/Dancer/Template/Simple.pm
- lib/Dancer/Template/TemplateToolkit.pm
- lib/Dancer/Test.pm
- lib/Dancer/Timer.pm
- lib/Dancer/Tutorial.pod
- script/dancer
- t/00_base/001_load.t
- t/00_base/002_strict_and_warnings.t
- t/00_base/003_syntax.t
- t/00_base/004_args.t
- t/00_base/005_module_loader.t
- t/00_base/007_load_syntax.t
- t/00_base/06_dancer_object.t
- t/00_base/08_pod_coverage_dancer.t
- t/00_base/09_load_app.t
- t/00_base/11_file_utils.t
- t/00_base/12_utf8_charset.t
- t/00_base/dancer_test.t
- t/00_base/lib/AppWithError.pm
- t/00_base/lib/WorkingApp.pm
- t/00_base/utf8.tt
- t/01_config/01_settings.t
- t/01_config/02_mime_type.t
- t/01_config/03_logger.t
- t/01_config/04_config_file.t
- t/01_config/05_serialiers.t
- t/01_config/06_stack_trace.t
- t/01_config/environments/development.pl
- t/01_config/yaml_dependency.t
- t/02_request/01_load.t
- t/02_request/02_get_params.t
- t/02_request/03_post_params.t
- t/02_request/04_custom.t
- t/02_request/05_cgi_pm_compat.t
- t/02_request/06_init_env.t
- t/02_request/07_raw_data.t
- t/02_request/08_params.t
- t/02_request/10_mixed_params.t
- t/02_request/11_accessors.t
- t/02_request/12_base.t
- t/02_request/13_ajax.t
- t/02_request/14_uploads.t
- t/02_request/15_headers.t
- t/02_request/16_delete.t
- t/03_route_handler/00_http_methods.t
- t/03_route_handler/00_route_object.t
- t/03_route_handler/01_params.t
- t/03_route_handler/02_before_filter.t
- t/03_route_handler/03_passing.t
- t/03_route_handler/04_wildcards.t
- t/03_route_handler/06_regexp.t
- t/03_route_handler/07_compilation_warning.t
- t/03_route_handler/08_errors.t
- t/03_route_handler/09_status.t
- t/03_route_handler/11_redirect.t
- t/03_route_handler/11_redirect_no_content.t
- t/03_route_handler/12_response.t
- t/03_route_handler/13_any_route_handler.t
- t/03_route_handler/14_options.t
- t/03_route_handler/15_prefix.t
- t/03_route_handler/16_caching.t
- t/03_route_handler/18_auto_page.t
- t/03_route_handler/19_filters_and_params.t
- t/03_route_handler/20_params_multiple_tokens.t
- t/03_route_handler/21_ajax.t
- t/03_route_handler/22_filter_halt.t
- t/03_route_handler/23_filter_error_catching.t
- t/03_route_handler/24_multiple_params.t
- t/03_route_handler/24_named_captures.t
- t/03_route_handler/26_after_hook.t
- t/03_route_handler/27_issue_77_pass_breaks_routes.t
- t/03_route_handler/28_plack_mount.t
- t/03_route_handler/public/404.html
- t/03_route_handler/views/hello.tt
- t/04_static_file/001_base.t
- t/04_static_file/002_mime_types.t
- t/04_static_file/03_get_mime_type.t
- t/04_static_file/static/hello.foo
- t/04_static_file/static/hello.txt
- t/05_views/001_settings.t
- t/05_views/002_view_rendering.t
- t/05_views/03_layout.t
- t/05_views/views/clock.tt
- t/05_views/views/index.tt
- t/05_views/views/layouts/custom.tt
- t/05_views/views/layouts/main.tt
- t/05_views/views/request.tt
- t/05_views/views/t03.tt
- t/06_helpers/01_send_file.t
- t/06_helpers/02_http_status.t
- t/06_helpers/03_content_type.t
- t/06_helpers/04_status.t
- t/06_helpers/05_send_error.t
- t/06_helpers/06_load.t
- t/06_helpers/public/file.txt
- t/06_helpers/routes.pl
- t/07_apphandlers/01_base.t
- t/07_apphandlers/02_apache2_plack.t
- t/07_apphandlers/03_psgi_app.t
- t/07_apphandlers/04_standalone_app.t
- t/08_session/01_load.t
- t/08_session/02_dependency_check.t
- t/08_session/03_http_requests.t
- t/08_session/04_api.t
- t/08_session/05_yaml.t
- t/08_session/06_abstract.t
- t/08_session/07_session_expires.t
- t/08_session/08_simple.t
- t/08_session/09_session.t
- t/08_session/10_filter.t
- t/09_cookies/01_use.t
- t/09_cookies/02_cookie_object.t
- t/09_cookies/03_persistence.t
- t/09_cookies/04_has_changed.t
- t/09_cookies/05_api.t
- t/10_template/01_factory.t
- t/10_template/02_abstract_class.t
- t/10_template/03_simple.t
- t/10_template/05_template_toolkit.t
- t/10_template/06_before_template_hook.t
- t/10_template/index.txt
- t/10_template/views/index.tt
- t/11_logger/01_abstract.t
- t/11_logger/02_factory.t
- t/11_logger/03_file.t
- t/11_logger/04_console.t
- t/12_response/01_CRLF_injection.t
- t/12_response/02_headers.t
- t/12_response/03_charset.t
- t/12_response/04_charset_server.t
- t/13_engines/00_load.t
- t/13_engines/02_template_init.t
- t/14_serializer/01_basic.t
- t/14_serializer/02_json.t
- t/14_serializer/03_yaml.t
- t/14_serializer/04_mutable.t
- t/14_serializer/05_live.t
- t/14_serializer/06_serialize_response.t
- t/14_serializer/07_bug_57805.t
- t/14_serializer/08_error.t
- t/14_serializer/09_abstract.t
- t/14_serializer/10_dumper.t
- t/14_serializer/11_bug_57829.t
- t/14_serializer/12_bug_gh106.t
- t/14_serializer/13_xml.t
- t/14_serializer/14_show_errors.t
- t/14_serializer/handler-helper.t
- t/15_plugins/01_register.t
- t/15_plugins/02_config.t
- t/15_plugins/03_namespace.t
- t/15_plugins/04_apps_and_plugins.t
- t/16_timer/00_base.t
- t/16_timer/02_hires.t
- t/17_apps/00_base.t
- t/17_apps/01_settings.t
- t/17_apps/02_load_app.t
- t/17_apps/03_prefix.t
- t/17_apps/04_issue_91.t
- t/18_main_dsl/01_config.t
- t/18_main_dsl/uri_for.t
- t/TestAppExt.pm
- t/TestPlugin.pm
- t/lib/EasyMocker.pm
- t/lib/Forum.pm
- t/lib/LinkBlocker.pm
- t/lib/MyApp.pm
- t/lib/MyAppFoo.pm
- t/lib/TestApp.pm
- t/lib/TestPlugin.pm
- t/lib/TestSerializer.pm
- t/lib/TestUtils.pm
- t/manifest.t
- t/pod.t