]> Dogcows Code - chaz/p5-CGI-Ex/blob - Changes
CGI::Ex 2.17
[chaz/p5-CGI-Ex] / Changes
1 2.17
2 2007-06-26
3 * Add load_conf and conf* methods to App to allow for easier external configuration
4 * Add more documentation
5 * Allow print_content_type('text/html', 'utf-8')
6 * Allow App to pass mimetime and charset to print_out.
7 * Update path methods.
8
9 2.16
10 2007-06-21
11 * Add default __error step which is called by default handle_error method.
12 * Default base_dir_abs to '.'
13
14 2.15
15 2007-06-20
16 * Fix some warning issues with the Recipe sample in App
17 * Cleanup require_auth interface in App (you will want to
18 double check if you have overwritten require_auth in your
19 application to make sure your implementation is still compatible)
20 * Require latest Template::Alloy
21
22 2.14
23 2007-06-12
24 * Moved CGI::Ex::Template to Template::Alloy
25 * Template::Alloy is now required as a dependency
26 * Update some portions of App POD.
27
28 2.13
29 2007-05-21
30 * Added full support for HTML::Template and HTML::Template::Expr.
31 * Added missing HTML::Template::Expr vmethods.
32 * Added support for using Text vmethods as top level items.
33 * Added SYNTAX configuration item.
34 * Added V2EQUALS configuration item.
35 * Broke Extra and HTE out to its own area.
36 * Added many more tests.
37 * Allow QR_PRIVATE to be false.
38
39
40 2.12
41 2007-05-11
42 * Add STAT_TTL
43 * Add NEGATIVE_STAT_TTL
44 * Add WRAPPER configuation
45 * Add ERROR and ERRORS configuration
46 * Cleanup handling of PRE_PROCESS and POST_PROCESS
47 * Add more tests for the file operations
48 * Cleanup some potential argument issues on cached USE and THROW
49
50 2.11 2007-05-07
51 * Add more samples to App synopsis.
52 * Add VIEW directive support to Template.
53 * Update data storage to more easily support TT2 parsers.
54 * Add regex support in Template.
55 * Add CONFIG directive in Template.
56 * Better error reporting.
57 * Allow parser to parse all TT2 tests in TT2 test suite.
58 * Add V2PIPE configuration to provide backward support for TT2 non-inline pipes.
59 * Add vmethod url.
60 * Cleanup argument parsing to be more compatible with TT2.
61
62 2.10 2007-04-27
63 * Allow for fully regex grammar based engine.
64 * Move to generic operator parse tree. All constructs are now only arrayrefs.
65 This should allow for easy porting to other languages.
66 * Allow for nested tags [% "[% 2 %]" | eval %].
67 * Added back in references in Template - but fast and simple.
68 * Allow for regex based TAGS.
69 * Allow for "unquoted" in TAGS.
70 * Catch parsing bug in "1 - + 2" in Template.
71 * Fix minor bug in Template qw() construct.
72 * Re-added ANYCASE support.
73 * Added V1DOLLAR support.
74 * Remove GROUP support from CGI::Ex::Validate.
75 * Allow for crypted passwords to work in Auth.
76
77 2.09 2007-04-05
78 * Add more documentation about file paths
79 * Allow for base_dir_abs to return a single value, or an arrayref of values, or
80 a coderef that returns a single value or arrayref.
81 * Allow CGI::Ex send_status to work on mod_perl2.
82 * Add tests to cover all virtual methods in CGI::Ex::Template.
83 * Bring all virtual methods into line with TT2.18
84
85 2.08 2007-03-02
86 * Allow for digits passed to %*s patterns in format, and fmt or CGI::Ex::Template
87 * Fix bug in validate.js to allow for non-existant fields (with replace)
88 * Warn clean in Validate.pm for non-existant field (with replace)
89 * Fix bug in validate.js with trim_control_chars - was broken entirely
90 * Add no_tag_splitting flag to JSONDump
91 * Allow for more types of numbers to be quoted in JSONDump
92 * Add path_info_map_base method to CGI::Ex::App
93 * Add path_info_map hook to CGI::Ex::App
94 * Updated and added much documentation to CGI::Ex::App
95
96 2.07 2007-01-30
97 * Add clear_app method which flushes items pertaining to navigation.
98 * Allow for CGI::Ex::Template PLUGIN_BASE to be a scalar OR an arrayref.
99 * Add sort keys to DUMP directive
100 * Add trim_control_chars as a validate directive
101 * Allow for . in the QR_PRIVATE of Template
102 * Add dump_parse_expr to CGI::Ex::Template
103 * Fix JSONDump to handle more number cases
104 * Fix JSONDump to output more IE friendly JS
105 * Allow fill to work only with form elements with attributes
106
107 2.06 2006-07-21
108 * Allow for JSONDump to swap --> to --"+">
109 * Fix memory issue in App with closures
110 * Remove weak_copy routine from Template (memory issue)
111
112 2.05 2006-07-19
113 * Allow for CGI::Ex to be compatible with Mandrake and Fedora mod_perl 2, as well as debian mod_perl2
114 and older mod_perl1.
115 * Allow for CGI::Ex::Dump to localize the Data::Dumper options to not stomp on anybody elses toes.
116 * Update various perldoc bugs
117 * Fix JSONDump of \t and \r
118 * Change .as to .fmt to coincide with Perl6 (.as is still there - just not documented)
119
120 2.04 2006-07-10
121 * Allow for items not in group order to get added to validation correctly in CGI::Ex::Validate.
122 * Add samples/index.cgi
123 * Fix samples/app/cgi_ex_* to actually work.
124 * Added CGI::Ex::JSONDump
125 * Change Validate to use JSONDump instaed of JSON
126 * Various perldoc and other bug fixes.
127 * Removed CGI-Ex.spec - use cpan2rpm or cpan2deb instead.
128
129 2.03 2006-06-10
130 * Fix the associativity of operators in Template to match perl
131 * Allow for multiple prefix operators.
132 * Change name of parse_variable to parse_expr
133 * Change name of get_variable to play_expr
134
135 2.02 2006-06-08
136 * Fix the yaml tests
137 * Add failed_sleep to Auth
138 * Various pod fixes
139 * Allow for conf_read and write errors to die - we really do need to have those bubble up.
140 * Fix all tests
141 * Allow for validate.js to work with existing onsubmit handlers of forms
142 * Added "as" virtual methods to Template
143 * Added Virtual Objects to Template
144 * Added self modifiers (*= etc) to Template
145 * Added increment and decrement (++ --) to Template
146 * Allow for scientific notation and hexidecimal in Template
147 * Added int, rand and random virtual methods to Template
148
149 2.01 2006-05-31
150 * Added App refine_path hook.
151 * Added App destroy method.
152 * Fix CGI::Ex::Template perldoc.
153
154 2.00 2006-05-30
155 * Added CGI::Ex::Template and test suites
156 * Allow for CGI::Ex::Template to be fully TT2 syntax compliant
157 * Re-implementation of CGI::Ex::Auth
158 * Allow for step to be automatically untainted during loop in CGI::Ex::App
159 * Fix base_dir_rel to work with "" as the dir in CGI::Ex::App
160 * Bug fixes in CGI::Ex::Fill
161 * Better perldoc in CGI::Ex::Fill
162 * Add named parameter function called fill in CGI::Ex::Fill
163 * DProfd CGI::Ex::Conf for improvements
164 * DProfd CGI::Ex::Validate for improvements
165 * Added conf_read and conf_write methods for Conf
166 * Cleanup of all of the test
167 * Add missing tests
168 * Add Array Prototype fixes from Eamon Daly
169 * Add examples and cleanup to CGI::Ex::App
170 * Cleanup hooks in App (add fill_args and template_args)
171 * Change run_hook syntax in App
172 * Add dump_history with more history information
173 * Integrate CGI::Ex::Auth with App
174
175 1.14 2005-02-28
176 * Bug fix in validate (OR's were not working)
177 * Allow for checking for package existence without require in App
178 * Add hash_swap
179 * Add hash_base
180 * Add add_to_ methods for swap, fill, form, common, and errors
181 * Swap the run_hook order of step and hookname
182 * Allow for untaint in CGI::Ex::Validate
183 * Allow for !field in equals of CGI::Ex::Validate
184 * Allow for return of names in CGI::Ex::Validate
185 * Allow CGI::Ex to work better with CGI/mod_perl1/mod_perl2
186 * Fix required => 0 in javascript
187
188 1.13 2004-12-02
189 * Show more App perldoc examples
190 * Fix some App path bugs
191 * Add more app hooks
192 * Cleanup app code
193 * Allow for Conf to write to each of the types
194
195 1.12 2004-11-10
196 * Show more App perldoc examples
197 * Fix some App path bugs
198 * Change some App method names
199 * Allow for App js_validation
200 * Allow for App validation redirection
201
202 1.11 2004-11-08
203 * Let file path dependent tests succeed
204 * Allow for next current and previous steps in App
205 * Couple of warn cleans in App
206
207 1.10 2004-11-05
208 * Make CGI::Ex::App->print really work with Template
209 * Fix very large javascript variable swapping bug
210 * Numerous upgrades to App
211 * Fix module access in CGI::Ex
212 * Allow validate to populate what_was_validated array
213 * Allow for App to cleanup crossed references
214
215 1.00 2004-04-23
216 * Added set_path method
217 * Added Auth module
218 * Fix validate.js for select-multiple
219 * Fix validate.js for max_values
220 * Add min_in_set and max_in_set types for validate
221 * Add default for validate (sets default value)
222
223 0.99 2004-03-22
224 * Allow swap_template to be called with one argument
225 * Added extended examples in t/samples/cgi_ex_*
226 * Remove dependency on CGI::Util (doesn't exists on some perls)
227 * A few fixes on App
228 * Added set_form
229 * Updated tests
230
231 0.98 2004-03-19
232 * Multiple fixes in Fill module
233 * Updates on perldocs (thanks to Simon Bellwood for bug reports)
234 * Addition of Dump (debug) module
235 * Addition of Die module
236 * Addition of App module
237
238 0.97 2004-03-05
239 * Allow for custom_js type
240 * Fix unshift, shift, and push in ie 5.0
241 * Fix type CC in validate.js
242 * Allow for duplicate field definitions
243
244 0.96 2003-11-26
245 * Fix for pos not resetting in CGI::Ex::Fill
246 * Fix for general items set in self not being passed to generate_js
247 * Workaround for yaml_load.js |- not properly trimming whitespace
248
249 0.94 2003-11-26
250 * Javascript functionality is in.
251
252 0.0 2003-11-01
253 * Version 0.0 checked in
This page took 0.042446 seconds and 5 git commands to generate.