r53788 - in /branches/upstream/libdancer-perl: ./ current/ current/lib/ current/lib/Dancer/ current/lib/Dancer/Handler/ current/lib/Dancer/Logger/ current/lib/Dancer/Session/ current/lib/Dancer/Template/ current/script/ current/t/ current/t/00_base/ current/t/01_config/ current/t/01_config/environments/ current/t/02_request/ current/t/03_route_handler/ current/t/04_static_file/ current/t/04_static_file/static/ current/t/05_views/ current/t/05_views/views/ current/t/05_views/views/layouts/ current/t/06_helpers/ current/t/06_helpers/public/ current/t/07_apphandlers/ current/t/08_session/ current/t/09_cookies/ current/t/10_template/ current/t/11_logger/ current/t/12_response/ current/t/13_engines/ current/t/lib/

jawnsy-guest at users.alioth.debian.org jawnsy-guest at users.alioth.debian.org
Sun Mar 7 01:32:53 UTC 2010


Author: jawnsy-guest
Date: Sun Mar  7 01:32:46 2010
New Revision: 53788

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=53788
Log:
[svn-inject] Installing original source of libdancer-perl

Added:
    branches/upstream/libdancer-perl/
    branches/upstream/libdancer-perl/current/
    branches/upstream/libdancer-perl/current/.gitignore
    branches/upstream/libdancer-perl/current/.perltidyrc
    branches/upstream/libdancer-perl/current/AUTHORS
    branches/upstream/libdancer-perl/current/CHANGES
    branches/upstream/libdancer-perl/current/MANIFEST
    branches/upstream/libdancer-perl/current/MANIFEST.SKIP
    branches/upstream/libdancer-perl/current/META.yml
    branches/upstream/libdancer-perl/current/Makefile.PL
    branches/upstream/libdancer-perl/current/README
    branches/upstream/libdancer-perl/current/TODO
    branches/upstream/libdancer-perl/current/lib/
    branches/upstream/libdancer-perl/current/lib/Dancer/
    branches/upstream/libdancer-perl/current/lib/Dancer.pm
    branches/upstream/libdancer-perl/current/lib/Dancer/Config.pm
    branches/upstream/libdancer-perl/current/lib/Dancer/Cookbook.pod
    branches/upstream/libdancer-perl/current/lib/Dancer/Cookie.pm
    branches/upstream/libdancer-perl/current/lib/Dancer/Cookies.pm
    branches/upstream/libdancer-perl/current/lib/Dancer/Engine.pm
    branches/upstream/libdancer-perl/current/lib/Dancer/Error.pm
    branches/upstream/libdancer-perl/current/lib/Dancer/Exceptions.pm
    branches/upstream/libdancer-perl/current/lib/Dancer/FileUtils.pm
    branches/upstream/libdancer-perl/current/lib/Dancer/GetOpt.pm
    branches/upstream/libdancer-perl/current/lib/Dancer/HTTP.pm
    branches/upstream/libdancer-perl/current/lib/Dancer/Handler/
    branches/upstream/libdancer-perl/current/lib/Dancer/Handler.pm
    branches/upstream/libdancer-perl/current/lib/Dancer/Handler/PSGI.pm
    branches/upstream/libdancer-perl/current/lib/Dancer/Handler/Standalone.pm
    branches/upstream/libdancer-perl/current/lib/Dancer/Helpers.pm
    branches/upstream/libdancer-perl/current/lib/Dancer/Logger/
    branches/upstream/libdancer-perl/current/lib/Dancer/Logger.pm
    branches/upstream/libdancer-perl/current/lib/Dancer/Logger/Abstract.pm
    branches/upstream/libdancer-perl/current/lib/Dancer/Logger/File.pm
    branches/upstream/libdancer-perl/current/lib/Dancer/ModuleLoader.pm
    branches/upstream/libdancer-perl/current/lib/Dancer/Object.pm
    branches/upstream/libdancer-perl/current/lib/Dancer/Renderer.pm
    branches/upstream/libdancer-perl/current/lib/Dancer/Request.pm
    branches/upstream/libdancer-perl/current/lib/Dancer/Response.pm
    branches/upstream/libdancer-perl/current/lib/Dancer/Route.pm
    branches/upstream/libdancer-perl/current/lib/Dancer/Session/
    branches/upstream/libdancer-perl/current/lib/Dancer/Session.pm
    branches/upstream/libdancer-perl/current/lib/Dancer/Session/Abstract.pm
    branches/upstream/libdancer-perl/current/lib/Dancer/Session/YAML.pm
    branches/upstream/libdancer-perl/current/lib/Dancer/SharedData.pm
    branches/upstream/libdancer-perl/current/lib/Dancer/Template/
    branches/upstream/libdancer-perl/current/lib/Dancer/Template.pm
    branches/upstream/libdancer-perl/current/lib/Dancer/Template/Abstract.pm
    branches/upstream/libdancer-perl/current/lib/Dancer/Template/Simple.pm
    branches/upstream/libdancer-perl/current/lib/Dancer/Template/TemplateToolkit.pm
    branches/upstream/libdancer-perl/current/script/
    branches/upstream/libdancer-perl/current/script/dancer   (with props)
    branches/upstream/libdancer-perl/current/t/
    branches/upstream/libdancer-perl/current/t/00_base/
    branches/upstream/libdancer-perl/current/t/00_base/001_load.t
    branches/upstream/libdancer-perl/current/t/00_base/002_strict_and_warnings.t
    branches/upstream/libdancer-perl/current/t/00_base/003_syntax.t
    branches/upstream/libdancer-perl/current/t/00_base/004_args.t
    branches/upstream/libdancer-perl/current/t/00_base/005_module_loader.t
    branches/upstream/libdancer-perl/current/t/00_base/007_load_syntax.t
    branches/upstream/libdancer-perl/current/t/00_base/06_dancer_object.t
    branches/upstream/libdancer-perl/current/t/01_config/
    branches/upstream/libdancer-perl/current/t/01_config/01_settings.t
    branches/upstream/libdancer-perl/current/t/01_config/02_mime_type.t
    branches/upstream/libdancer-perl/current/t/01_config/03_logger.t
    branches/upstream/libdancer-perl/current/t/01_config/04_config_file.t
    branches/upstream/libdancer-perl/current/t/01_config/environments/
    branches/upstream/libdancer-perl/current/t/01_config/environments/development.pl
    branches/upstream/libdancer-perl/current/t/01_config/yaml_dependency.t
    branches/upstream/libdancer-perl/current/t/02_request/
    branches/upstream/libdancer-perl/current/t/02_request/01_load.t
    branches/upstream/libdancer-perl/current/t/02_request/02_get_params.t
    branches/upstream/libdancer-perl/current/t/02_request/03_post_params.t
    branches/upstream/libdancer-perl/current/t/02_request/04_custom.t
    branches/upstream/libdancer-perl/current/t/02_request/05_cgi_pm_compat.t
    branches/upstream/libdancer-perl/current/t/02_request/06_init_env.t
    branches/upstream/libdancer-perl/current/t/02_request/07_raw_data.t
    branches/upstream/libdancer-perl/current/t/02_request/08_params.t
    branches/upstream/libdancer-perl/current/t/02_request/10_mixed_params.t
    branches/upstream/libdancer-perl/current/t/02_request/11_accessors.t
    branches/upstream/libdancer-perl/current/t/02_request/12_base.t
    branches/upstream/libdancer-perl/current/t/03_route_handler/
    branches/upstream/libdancer-perl/current/t/03_route_handler/00_http_methods.t
    branches/upstream/libdancer-perl/current/t/03_route_handler/01_params.t
    branches/upstream/libdancer-perl/current/t/03_route_handler/02_before_filter.t
    branches/upstream/libdancer-perl/current/t/03_route_handler/03_passing.t
    branches/upstream/libdancer-perl/current/t/03_route_handler/04_wildcards.t
    branches/upstream/libdancer-perl/current/t/03_route_handler/05_error_catching.t
    branches/upstream/libdancer-perl/current/t/03_route_handler/06_regexp.t
    branches/upstream/libdancer-perl/current/t/03_route_handler/07_compilation_warning.t
    branches/upstream/libdancer-perl/current/t/03_route_handler/08_errors.t
    branches/upstream/libdancer-perl/current/t/03_route_handler/09_status.t
    branches/upstream/libdancer-perl/current/t/03_route_handler/10_merge_registries.t
    branches/upstream/libdancer-perl/current/t/03_route_handler/11_redirect.t
    branches/upstream/libdancer-perl/current/t/03_route_handler/12_response.t
    branches/upstream/libdancer-perl/current/t/03_route_handler/13_any_route_handler.t
    branches/upstream/libdancer-perl/current/t/03_route_handler/14_options.t
    branches/upstream/libdancer-perl/current/t/03_route_handler/15_prefix.t
    branches/upstream/libdancer-perl/current/t/04_static_file/
    branches/upstream/libdancer-perl/current/t/04_static_file/001_base.t
    branches/upstream/libdancer-perl/current/t/04_static_file/002_mime_types.t
    branches/upstream/libdancer-perl/current/t/04_static_file/03_get_mime_type.t
    branches/upstream/libdancer-perl/current/t/04_static_file/static/
    branches/upstream/libdancer-perl/current/t/04_static_file/static/hello.foo
    branches/upstream/libdancer-perl/current/t/04_static_file/static/hello.txt
    branches/upstream/libdancer-perl/current/t/05_views/
    branches/upstream/libdancer-perl/current/t/05_views/001_settings.t
    branches/upstream/libdancer-perl/current/t/05_views/002_view_rendering.t
    branches/upstream/libdancer-perl/current/t/05_views/03_layout.t
    branches/upstream/libdancer-perl/current/t/05_views/views/
    branches/upstream/libdancer-perl/current/t/05_views/views/clock.tt
    branches/upstream/libdancer-perl/current/t/05_views/views/index.tt
    branches/upstream/libdancer-perl/current/t/05_views/views/layouts/
    branches/upstream/libdancer-perl/current/t/05_views/views/layouts/main.tt
    branches/upstream/libdancer-perl/current/t/05_views/views/request.tt
    branches/upstream/libdancer-perl/current/t/05_views/views/t03.tt
    branches/upstream/libdancer-perl/current/t/06_helpers/
    branches/upstream/libdancer-perl/current/t/06_helpers/01_send_file.t
    branches/upstream/libdancer-perl/current/t/06_helpers/02_http_status.t
    branches/upstream/libdancer-perl/current/t/06_helpers/03_content_type.t
    branches/upstream/libdancer-perl/current/t/06_helpers/04_status.t
    branches/upstream/libdancer-perl/current/t/06_helpers/05_send_error.t
    branches/upstream/libdancer-perl/current/t/06_helpers/06_load.t
    branches/upstream/libdancer-perl/current/t/06_helpers/public/
    branches/upstream/libdancer-perl/current/t/06_helpers/public/file.txt
    branches/upstream/libdancer-perl/current/t/06_helpers/routes.pl
    branches/upstream/libdancer-perl/current/t/07_apphandlers/
    branches/upstream/libdancer-perl/current/t/07_apphandlers/01_base.t
    branches/upstream/libdancer-perl/current/t/07_apphandlers/02_apache2_plack.t
    branches/upstream/libdancer-perl/current/t/07_apphandlers/03_psgi_app.t
    branches/upstream/libdancer-perl/current/t/07_apphandlers/04_standalone_app.t
    branches/upstream/libdancer-perl/current/t/08_session/
    branches/upstream/libdancer-perl/current/t/08_session/01_load.t
    branches/upstream/libdancer-perl/current/t/08_session/02_dependency_check.t
    branches/upstream/libdancer-perl/current/t/08_session/03_http_requests.t
    branches/upstream/libdancer-perl/current/t/08_session/04_api.t
    branches/upstream/libdancer-perl/current/t/08_session/05_yaml.t
    branches/upstream/libdancer-perl/current/t/09_cookies/
    branches/upstream/libdancer-perl/current/t/09_cookies/01_use.t
    branches/upstream/libdancer-perl/current/t/09_cookies/02_cookie_object.t
    branches/upstream/libdancer-perl/current/t/09_cookies/03_persistence.t
    branches/upstream/libdancer-perl/current/t/09_cookies/04_has_changed.t
    branches/upstream/libdancer-perl/current/t/09_cookies/05_api.t
    branches/upstream/libdancer-perl/current/t/10_template/
    branches/upstream/libdancer-perl/current/t/10_template/01_factory.t
    branches/upstream/libdancer-perl/current/t/10_template/02_abstract_class.t
    branches/upstream/libdancer-perl/current/t/10_template/03_simple.t
    branches/upstream/libdancer-perl/current/t/10_template/05_template_toolkit.t
    branches/upstream/libdancer-perl/current/t/10_template/index.txt
    branches/upstream/libdancer-perl/current/t/11_logger/
    branches/upstream/libdancer-perl/current/t/11_logger/01_abstract.t
    branches/upstream/libdancer-perl/current/t/11_logger/02_factory.t
    branches/upstream/libdancer-perl/current/t/11_logger/03_file.t
    branches/upstream/libdancer-perl/current/t/12_response/
    branches/upstream/libdancer-perl/current/t/12_response/01_CRLF_injection.t
    branches/upstream/libdancer-perl/current/t/12_response/02_headers.t
    branches/upstream/libdancer-perl/current/t/13_engines/
    branches/upstream/libdancer-perl/current/t/13_engines/00_load.t
    branches/upstream/libdancer-perl/current/t/13_engines/02_template_init.t
    branches/upstream/libdancer-perl/current/t/TestUtils.pm
    branches/upstream/libdancer-perl/current/t/lib/
    branches/upstream/libdancer-perl/current/t/lib/EasyMocker.pm
    branches/upstream/libdancer-perl/current/t/lib/TestApp.pm
    branches/upstream/libdancer-perl/current/t/pod.t

[This mail would be too long, it was shortened to contain the URLs only.]

Added: branches/upstream/libdancer-perl/current/.gitignore
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libdancer-perl/current/.gitignore?rev=53788&op=file

Added: branches/upstream/libdancer-perl/current/.perltidyrc
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libdancer-perl/current/.perltidyrc?rev=53788&op=file

Added: branches/upstream/libdancer-perl/current/AUTHORS
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libdancer-perl/current/AUTHORS?rev=53788&op=file

Added: branches/upstream/libdancer-perl/current/CHANGES
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libdancer-perl/current/CHANGES?rev=53788&op=file

Added: branches/upstream/libdancer-perl/current/MANIFEST
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libdancer-perl/current/MANIFEST?rev=53788&op=file

Added: branches/upstream/libdancer-perl/current/MANIFEST.SKIP
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libdancer-perl/current/MANIFEST.SKIP?rev=53788&op=file

Added: branches/upstream/libdancer-perl/current/META.yml
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libdancer-perl/current/META.yml?rev=53788&op=file

Added: branches/upstream/libdancer-perl/current/Makefile.PL
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libdancer-perl/current/Makefile.PL?rev=53788&op=file

Added: branches/upstream/libdancer-perl/current/README
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libdancer-perl/current/README?rev=53788&op=file

Added: branches/upstream/libdancer-perl/current/TODO
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libdancer-perl/current/TODO?rev=53788&op=file

Added: branches/upstream/libdancer-perl/current/lib/Dancer.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libdancer-perl/current/lib/Dancer.pm?rev=53788&op=file

Added: branches/upstream/libdancer-perl/current/lib/Dancer/Config.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libdancer-perl/current/lib/Dancer/Config.pm?rev=53788&op=file

Added: branches/upstream/libdancer-perl/current/lib/Dancer/Cookbook.pod
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libdancer-perl/current/lib/Dancer/Cookbook.pod?rev=53788&op=file

Added: branches/upstream/libdancer-perl/current/lib/Dancer/Cookie.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libdancer-perl/current/lib/Dancer/Cookie.pm?rev=53788&op=file

Added: branches/upstream/libdancer-perl/current/lib/Dancer/Cookies.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libdancer-perl/current/lib/Dancer/Cookies.pm?rev=53788&op=file

Added: branches/upstream/libdancer-perl/current/lib/Dancer/Engine.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libdancer-perl/current/lib/Dancer/Engine.pm?rev=53788&op=file

Added: branches/upstream/libdancer-perl/current/lib/Dancer/Error.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libdancer-perl/current/lib/Dancer/Error.pm?rev=53788&op=file

Added: branches/upstream/libdancer-perl/current/lib/Dancer/Exceptions.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libdancer-perl/current/lib/Dancer/Exceptions.pm?rev=53788&op=file

Added: branches/upstream/libdancer-perl/current/lib/Dancer/FileUtils.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libdancer-perl/current/lib/Dancer/FileUtils.pm?rev=53788&op=file

Added: branches/upstream/libdancer-perl/current/lib/Dancer/GetOpt.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libdancer-perl/current/lib/Dancer/GetOpt.pm?rev=53788&op=file

Added: branches/upstream/libdancer-perl/current/lib/Dancer/HTTP.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libdancer-perl/current/lib/Dancer/HTTP.pm?rev=53788&op=file

Added: branches/upstream/libdancer-perl/current/lib/Dancer/Handler.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libdancer-perl/current/lib/Dancer/Handler.pm?rev=53788&op=file

Added: branches/upstream/libdancer-perl/current/lib/Dancer/Handler/PSGI.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libdancer-perl/current/lib/Dancer/Handler/PSGI.pm?rev=53788&op=file

Added: branches/upstream/libdancer-perl/current/lib/Dancer/Handler/Standalone.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libdancer-perl/current/lib/Dancer/Handler/Standalone.pm?rev=53788&op=file

Added: branches/upstream/libdancer-perl/current/lib/Dancer/Helpers.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libdancer-perl/current/lib/Dancer/Helpers.pm?rev=53788&op=file

Added: branches/upstream/libdancer-perl/current/lib/Dancer/Logger.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libdancer-perl/current/lib/Dancer/Logger.pm?rev=53788&op=file

Added: branches/upstream/libdancer-perl/current/lib/Dancer/Logger/Abstract.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libdancer-perl/current/lib/Dancer/Logger/Abstract.pm?rev=53788&op=file

Added: branches/upstream/libdancer-perl/current/lib/Dancer/Logger/File.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libdancer-perl/current/lib/Dancer/Logger/File.pm?rev=53788&op=file

Added: branches/upstream/libdancer-perl/current/lib/Dancer/ModuleLoader.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libdancer-perl/current/lib/Dancer/ModuleLoader.pm?rev=53788&op=file

Added: branches/upstream/libdancer-perl/current/lib/Dancer/Object.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libdancer-perl/current/lib/Dancer/Object.pm?rev=53788&op=file

Added: branches/upstream/libdancer-perl/current/lib/Dancer/Renderer.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libdancer-perl/current/lib/Dancer/Renderer.pm?rev=53788&op=file

Added: branches/upstream/libdancer-perl/current/lib/Dancer/Request.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libdancer-perl/current/lib/Dancer/Request.pm?rev=53788&op=file

Added: branches/upstream/libdancer-perl/current/lib/Dancer/Response.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libdancer-perl/current/lib/Dancer/Response.pm?rev=53788&op=file

Added: branches/upstream/libdancer-perl/current/lib/Dancer/Route.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libdancer-perl/current/lib/Dancer/Route.pm?rev=53788&op=file

Added: branches/upstream/libdancer-perl/current/lib/Dancer/Session.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libdancer-perl/current/lib/Dancer/Session.pm?rev=53788&op=file

Added: branches/upstream/libdancer-perl/current/lib/Dancer/Session/Abstract.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libdancer-perl/current/lib/Dancer/Session/Abstract.pm?rev=53788&op=file

Added: branches/upstream/libdancer-perl/current/lib/Dancer/Session/YAML.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libdancer-perl/current/lib/Dancer/Session/YAML.pm?rev=53788&op=file

Added: branches/upstream/libdancer-perl/current/lib/Dancer/SharedData.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libdancer-perl/current/lib/Dancer/SharedData.pm?rev=53788&op=file

Added: branches/upstream/libdancer-perl/current/lib/Dancer/Template.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libdancer-perl/current/lib/Dancer/Template.pm?rev=53788&op=file

Added: branches/upstream/libdancer-perl/current/lib/Dancer/Template/Abstract.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libdancer-perl/current/lib/Dancer/Template/Abstract.pm?rev=53788&op=file

Added: branches/upstream/libdancer-perl/current/lib/Dancer/Template/Simple.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libdancer-perl/current/lib/Dancer/Template/Simple.pm?rev=53788&op=file

Added: branches/upstream/libdancer-perl/current/lib/Dancer/Template/TemplateToolkit.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libdancer-perl/current/lib/Dancer/Template/TemplateToolkit.pm?rev=53788&op=file

Added: branches/upstream/libdancer-perl/current/script/dancer
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libdancer-perl/current/script/dancer?rev=53788&op=file

Added: branches/upstream/libdancer-perl/current/t/00_base/001_load.t
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libdancer-perl/current/t/00_base/001_load.t?rev=53788&op=file

Added: branches/upstream/libdancer-perl/current/t/00_base/002_strict_and_warnings.t
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libdancer-perl/current/t/00_base/002_strict_and_warnings.t?rev=53788&op=file

Added: branches/upstream/libdancer-perl/current/t/00_base/003_syntax.t
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libdancer-perl/current/t/00_base/003_syntax.t?rev=53788&op=file

Added: branches/upstream/libdancer-perl/current/t/00_base/004_args.t
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libdancer-perl/current/t/00_base/004_args.t?rev=53788&op=file

Added: branches/upstream/libdancer-perl/current/t/00_base/005_module_loader.t
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libdancer-perl/current/t/00_base/005_module_loader.t?rev=53788&op=file

Added: branches/upstream/libdancer-perl/current/t/00_base/007_load_syntax.t
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libdancer-perl/current/t/00_base/007_load_syntax.t?rev=53788&op=file

Added: branches/upstream/libdancer-perl/current/t/00_base/06_dancer_object.t
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libdancer-perl/current/t/00_base/06_dancer_object.t?rev=53788&op=file

Added: branches/upstream/libdancer-perl/current/t/01_config/01_settings.t
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libdancer-perl/current/t/01_config/01_settings.t?rev=53788&op=file

Added: branches/upstream/libdancer-perl/current/t/01_config/02_mime_type.t
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libdancer-perl/current/t/01_config/02_mime_type.t?rev=53788&op=file

Added: branches/upstream/libdancer-perl/current/t/01_config/03_logger.t
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libdancer-perl/current/t/01_config/03_logger.t?rev=53788&op=file

Added: branches/upstream/libdancer-perl/current/t/01_config/04_config_file.t
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libdancer-perl/current/t/01_config/04_config_file.t?rev=53788&op=file

Added: branches/upstream/libdancer-perl/current/t/01_config/environments/development.pl
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libdancer-perl/current/t/01_config/environments/development.pl?rev=53788&op=file

Added: branches/upstream/libdancer-perl/current/t/01_config/yaml_dependency.t
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libdancer-perl/current/t/01_config/yaml_dependency.t?rev=53788&op=file

Added: branches/upstream/libdancer-perl/current/t/02_request/01_load.t
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libdancer-perl/current/t/02_request/01_load.t?rev=53788&op=file

Added: branches/upstream/libdancer-perl/current/t/02_request/02_get_params.t
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libdancer-perl/current/t/02_request/02_get_params.t?rev=53788&op=file

Added: branches/upstream/libdancer-perl/current/t/02_request/03_post_params.t
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libdancer-perl/current/t/02_request/03_post_params.t?rev=53788&op=file

Added: branches/upstream/libdancer-perl/current/t/02_request/04_custom.t
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libdancer-perl/current/t/02_request/04_custom.t?rev=53788&op=file

Added: branches/upstream/libdancer-perl/current/t/02_request/05_cgi_pm_compat.t
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libdancer-perl/current/t/02_request/05_cgi_pm_compat.t?rev=53788&op=file

Added: branches/upstream/libdancer-perl/current/t/02_request/06_init_env.t
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libdancer-perl/current/t/02_request/06_init_env.t?rev=53788&op=file

Added: branches/upstream/libdancer-perl/current/t/02_request/07_raw_data.t
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libdancer-perl/current/t/02_request/07_raw_data.t?rev=53788&op=file

Added: branches/upstream/libdancer-perl/current/t/02_request/08_params.t
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libdancer-perl/current/t/02_request/08_params.t?rev=53788&op=file

Added: branches/upstream/libdancer-perl/current/t/02_request/10_mixed_params.t
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libdancer-perl/current/t/02_request/10_mixed_params.t?rev=53788&op=file

Added: branches/upstream/libdancer-perl/current/t/02_request/11_accessors.t
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libdancer-perl/current/t/02_request/11_accessors.t?rev=53788&op=file

Added: branches/upstream/libdancer-perl/current/t/02_request/12_base.t
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libdancer-perl/current/t/02_request/12_base.t?rev=53788&op=file

Added: branches/upstream/libdancer-perl/current/t/03_route_handler/00_http_methods.t
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libdancer-perl/current/t/03_route_handler/00_http_methods.t?rev=53788&op=file

Added: branches/upstream/libdancer-perl/current/t/03_route_handler/01_params.t
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libdancer-perl/current/t/03_route_handler/01_params.t?rev=53788&op=file

Added: branches/upstream/libdancer-perl/current/t/03_route_handler/02_before_filter.t
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libdancer-perl/current/t/03_route_handler/02_before_filter.t?rev=53788&op=file

Added: branches/upstream/libdancer-perl/current/t/03_route_handler/03_passing.t
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libdancer-perl/current/t/03_route_handler/03_passing.t?rev=53788&op=file

Added: branches/upstream/libdancer-perl/current/t/03_route_handler/04_wildcards.t
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libdancer-perl/current/t/03_route_handler/04_wildcards.t?rev=53788&op=file

Added: branches/upstream/libdancer-perl/current/t/03_route_handler/05_error_catching.t
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libdancer-perl/current/t/03_route_handler/05_error_catching.t?rev=53788&op=file

Added: branches/upstream/libdancer-perl/current/t/03_route_handler/06_regexp.t
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libdancer-perl/current/t/03_route_handler/06_regexp.t?rev=53788&op=file

Added: branches/upstream/libdancer-perl/current/t/03_route_handler/07_compilation_warning.t
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libdancer-perl/current/t/03_route_handler/07_compilation_warning.t?rev=53788&op=file

Added: branches/upstream/libdancer-perl/current/t/03_route_handler/08_errors.t
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libdancer-perl/current/t/03_route_handler/08_errors.t?rev=53788&op=file

Added: branches/upstream/libdancer-perl/current/t/03_route_handler/09_status.t
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libdancer-perl/current/t/03_route_handler/09_status.t?rev=53788&op=file

Added: branches/upstream/libdancer-perl/current/t/03_route_handler/10_merge_registries.t
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libdancer-perl/current/t/03_route_handler/10_merge_registries.t?rev=53788&op=file

Added: branches/upstream/libdancer-perl/current/t/03_route_handler/11_redirect.t
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libdancer-perl/current/t/03_route_handler/11_redirect.t?rev=53788&op=file

Added: branches/upstream/libdancer-perl/current/t/03_route_handler/12_response.t
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libdancer-perl/current/t/03_route_handler/12_response.t?rev=53788&op=file

Added: branches/upstream/libdancer-perl/current/t/03_route_handler/13_any_route_handler.t
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libdancer-perl/current/t/03_route_handler/13_any_route_handler.t?rev=53788&op=file

Added: branches/upstream/libdancer-perl/current/t/03_route_handler/14_options.t
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libdancer-perl/current/t/03_route_handler/14_options.t?rev=53788&op=file

Added: branches/upstream/libdancer-perl/current/t/03_route_handler/15_prefix.t
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libdancer-perl/current/t/03_route_handler/15_prefix.t?rev=53788&op=file

Added: branches/upstream/libdancer-perl/current/t/04_static_file/001_base.t
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libdancer-perl/current/t/04_static_file/001_base.t?rev=53788&op=file

Added: branches/upstream/libdancer-perl/current/t/04_static_file/002_mime_types.t
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libdancer-perl/current/t/04_static_file/002_mime_types.t?rev=53788&op=file

Added: branches/upstream/libdancer-perl/current/t/04_static_file/03_get_mime_type.t
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libdancer-perl/current/t/04_static_file/03_get_mime_type.t?rev=53788&op=file

Added: branches/upstream/libdancer-perl/current/t/04_static_file/static/hello.foo
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libdancer-perl/current/t/04_static_file/static/hello.foo?rev=53788&op=file

Added: branches/upstream/libdancer-perl/current/t/04_static_file/static/hello.txt
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libdancer-perl/current/t/04_static_file/static/hello.txt?rev=53788&op=file

Added: branches/upstream/libdancer-perl/current/t/05_views/001_settings.t
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libdancer-perl/current/t/05_views/001_settings.t?rev=53788&op=file

Added: branches/upstream/libdancer-perl/current/t/05_views/002_view_rendering.t
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libdancer-perl/current/t/05_views/002_view_rendering.t?rev=53788&op=file

Added: branches/upstream/libdancer-perl/current/t/05_views/03_layout.t
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libdancer-perl/current/t/05_views/03_layout.t?rev=53788&op=file

Added: branches/upstream/libdancer-perl/current/t/05_views/views/clock.tt
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libdancer-perl/current/t/05_views/views/clock.tt?rev=53788&op=file

Added: branches/upstream/libdancer-perl/current/t/05_views/views/index.tt
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libdancer-perl/current/t/05_views/views/index.tt?rev=53788&op=file

Added: branches/upstream/libdancer-perl/current/t/05_views/views/layouts/main.tt
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libdancer-perl/current/t/05_views/views/layouts/main.tt?rev=53788&op=file

Added: branches/upstream/libdancer-perl/current/t/05_views/views/request.tt
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libdancer-perl/current/t/05_views/views/request.tt?rev=53788&op=file

Added: branches/upstream/libdancer-perl/current/t/05_views/views/t03.tt
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libdancer-perl/current/t/05_views/views/t03.tt?rev=53788&op=file

Added: branches/upstream/libdancer-perl/current/t/06_helpers/01_send_file.t
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libdancer-perl/current/t/06_helpers/01_send_file.t?rev=53788&op=file

Added: branches/upstream/libdancer-perl/current/t/06_helpers/02_http_status.t
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libdancer-perl/current/t/06_helpers/02_http_status.t?rev=53788&op=file

Added: branches/upstream/libdancer-perl/current/t/06_helpers/03_content_type.t
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libdancer-perl/current/t/06_helpers/03_content_type.t?rev=53788&op=file

Added: branches/upstream/libdancer-perl/current/t/06_helpers/04_status.t
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libdancer-perl/current/t/06_helpers/04_status.t?rev=53788&op=file

Added: branches/upstream/libdancer-perl/current/t/06_helpers/05_send_error.t
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libdancer-perl/current/t/06_helpers/05_send_error.t?rev=53788&op=file

Added: branches/upstream/libdancer-perl/current/t/06_helpers/06_load.t
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libdancer-perl/current/t/06_helpers/06_load.t?rev=53788&op=file

Added: branches/upstream/libdancer-perl/current/t/06_helpers/public/file.txt
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libdancer-perl/current/t/06_helpers/public/file.txt?rev=53788&op=file

Added: branches/upstream/libdancer-perl/current/t/06_helpers/routes.pl
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libdancer-perl/current/t/06_helpers/routes.pl?rev=53788&op=file

Added: branches/upstream/libdancer-perl/current/t/07_apphandlers/01_base.t
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libdancer-perl/current/t/07_apphandlers/01_base.t?rev=53788&op=file

Added: branches/upstream/libdancer-perl/current/t/07_apphandlers/02_apache2_plack.t
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libdancer-perl/current/t/07_apphandlers/02_apache2_plack.t?rev=53788&op=file

Added: branches/upstream/libdancer-perl/current/t/07_apphandlers/03_psgi_app.t
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libdancer-perl/current/t/07_apphandlers/03_psgi_app.t?rev=53788&op=file

Added: branches/upstream/libdancer-perl/current/t/07_apphandlers/04_standalone_app.t
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libdancer-perl/current/t/07_apphandlers/04_standalone_app.t?rev=53788&op=file

Added: branches/upstream/libdancer-perl/current/t/08_session/01_load.t
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libdancer-perl/current/t/08_session/01_load.t?rev=53788&op=file

Added: branches/upstream/libdancer-perl/current/t/08_session/02_dependency_check.t
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libdancer-perl/current/t/08_session/02_dependency_check.t?rev=53788&op=file

Added: branches/upstream/libdancer-perl/current/t/08_session/03_http_requests.t
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libdancer-perl/current/t/08_session/03_http_requests.t?rev=53788&op=file

Added: branches/upstream/libdancer-perl/current/t/08_session/04_api.t
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libdancer-perl/current/t/08_session/04_api.t?rev=53788&op=file

Added: branches/upstream/libdancer-perl/current/t/08_session/05_yaml.t
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libdancer-perl/current/t/08_session/05_yaml.t?rev=53788&op=file

Added: branches/upstream/libdancer-perl/current/t/09_cookies/01_use.t
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libdancer-perl/current/t/09_cookies/01_use.t?rev=53788&op=file

Added: branches/upstream/libdancer-perl/current/t/09_cookies/02_cookie_object.t
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libdancer-perl/current/t/09_cookies/02_cookie_object.t?rev=53788&op=file

Added: branches/upstream/libdancer-perl/current/t/09_cookies/03_persistence.t
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libdancer-perl/current/t/09_cookies/03_persistence.t?rev=53788&op=file

Added: branches/upstream/libdancer-perl/current/t/09_cookies/04_has_changed.t
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libdancer-perl/current/t/09_cookies/04_has_changed.t?rev=53788&op=file

Added: branches/upstream/libdancer-perl/current/t/09_cookies/05_api.t
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libdancer-perl/current/t/09_cookies/05_api.t?rev=53788&op=file

Added: branches/upstream/libdancer-perl/current/t/10_template/01_factory.t
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libdancer-perl/current/t/10_template/01_factory.t?rev=53788&op=file

Added: branches/upstream/libdancer-perl/current/t/10_template/02_abstract_class.t
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libdancer-perl/current/t/10_template/02_abstract_class.t?rev=53788&op=file

Added: branches/upstream/libdancer-perl/current/t/10_template/03_simple.t
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libdancer-perl/current/t/10_template/03_simple.t?rev=53788&op=file

Added: branches/upstream/libdancer-perl/current/t/10_template/05_template_toolkit.t
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libdancer-perl/current/t/10_template/05_template_toolkit.t?rev=53788&op=file

Added: branches/upstream/libdancer-perl/current/t/10_template/index.txt
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libdancer-perl/current/t/10_template/index.txt?rev=53788&op=file

Added: branches/upstream/libdancer-perl/current/t/11_logger/01_abstract.t
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libdancer-perl/current/t/11_logger/01_abstract.t?rev=53788&op=file

Added: branches/upstream/libdancer-perl/current/t/11_logger/02_factory.t
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libdancer-perl/current/t/11_logger/02_factory.t?rev=53788&op=file

Added: branches/upstream/libdancer-perl/current/t/11_logger/03_file.t
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libdancer-perl/current/t/11_logger/03_file.t?rev=53788&op=file

Added: branches/upstream/libdancer-perl/current/t/12_response/01_CRLF_injection.t
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libdancer-perl/current/t/12_response/01_CRLF_injection.t?rev=53788&op=file

Added: branches/upstream/libdancer-perl/current/t/12_response/02_headers.t
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libdancer-perl/current/t/12_response/02_headers.t?rev=53788&op=file

Added: branches/upstream/libdancer-perl/current/t/13_engines/00_load.t
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libdancer-perl/current/t/13_engines/00_load.t?rev=53788&op=file

Added: branches/upstream/libdancer-perl/current/t/13_engines/02_template_init.t
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libdancer-perl/current/t/13_engines/02_template_init.t?rev=53788&op=file

Added: branches/upstream/libdancer-perl/current/t/TestUtils.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libdancer-perl/current/t/TestUtils.pm?rev=53788&op=file

Added: branches/upstream/libdancer-perl/current/t/lib/EasyMocker.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libdancer-perl/current/t/lib/EasyMocker.pm?rev=53788&op=file

Added: branches/upstream/libdancer-perl/current/t/lib/TestApp.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libdancer-perl/current/t/lib/TestApp.pm?rev=53788&op=file

Added: branches/upstream/libdancer-perl/current/t/pod.t
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libdancer-perl/current/t/pod.t?rev=53788&op=file




More information about the Pkg-perl-cvs-commits mailing list