forked from PerlDancer/Dancer
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathMANIFEST
128 lines (128 loc) · 3.33 KB
/
MANIFEST
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
.gitignore
.perltidyrc
AUTHORS
CHANGES
lib/Dancer.pm
lib/Dancer/Config.pm
lib/Dancer/Cookie.pm
lib/Dancer/Cookies.pm
lib/Dancer/Error.pm
lib/Dancer/Exceptions.pm
lib/Dancer/FileUtils.pm
lib/Dancer/GetOpt.pm
lib/Dancer/Handler.pm
lib/Dancer/Handler/PSGI.pm
lib/Dancer/Handler/Standalone.pm
lib/Dancer/Helpers.pm
lib/Dancer/HTTP.pm
lib/Dancer/Logger.pm
lib/Dancer/Logger/Abstract.pm
lib/Dancer/Logger/File.pm
lib/Dancer/ModuleLoader.pm
lib/Dancer/Object.pm
lib/Dancer/Renderer.pm
lib/Dancer/Request.pm
lib/Dancer/Response.pm
lib/Dancer/Route.pm
lib/Dancer/Session.pm
lib/Dancer/Session/Abstract.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
MANIFEST This list of files
MANIFEST.SKIP
README
ROADMAP
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/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/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/09_params.t
t/03_route_handler/00_http_methods.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/05_error_catching.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/10_merge_registries.t
t/03_route_handler/11_redirect.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/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/04_file_mimeinfo_simple.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/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/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/index.txt
t/11_logger/01_abstract.t
t/11_logger/02_factory.t
t/11_logger/03_file.t
t/12_response/01_CRLF_injection.t
t/12_response/02_headers.t
t/lib/EasyMocker.pm
t/lib/TestApp.pm
t/pod.t
t/TestUtils.pm
TODO