forked from rsky/pear-html_template_flexy
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathChangeLog
More file actions
2923 lines (1860 loc) · 79.8 KB
/
ChangeLog
File metadata and controls
2923 lines (1860 loc) · 79.8 KB
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
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
2009-03-06 16:45 alan_k
* Flexy/Compiler/Flexy/Flexy.php: fix include to only pass
variables created by template, rather than flood the subtemplate
- fixes various segfaults.
2009-03-06 16:41 alan_k
* Flexy/Token.php: Add scopeVars fetch for better include
2009-03-05 13:37 alan_k
* Flexy/Compiler/Flexy/Tag.php: add some extra checks for writing
merging elements
2009-03-05 13:10 alan_k
* Flexy/Compiler/Flexy/Tag.php: remove reduntant code in Element
tag generation (added in last commit)
2009-03-02 16:26 alan_k
* Flexy/Compiler/Flexy/CustomFlexyAttributes.php: fix bug #14105 -
Empty element tag ending with /> and flexy:replace
2009-03-02 16:23 alan_k
* Flexy/Compiler/Flexy/CustomFlexyAttributes.php: fix bug #15961 -
customflexyattributes ignores multiple flexy attributes.
2009-03-02 16:15 alan_k
* Flexy/Compiler/: Flexy.php, Flexy/Tag.php: fix bug #14984 - PHP5
class_exists compat
2009-03-02 16:09 alan_k
* Flexy/Compiler/Flexy/Tag.php: fix bug #15272 - inherrited
namesues checkboxes get wrong names - patch by Heikki Uusitalo
2009-03-02 15:58 alan_k
* Flexy/Element.php: fix bug #15279 - early return from checkbox
code with [] in name. - may have knock on effects
2009-03-02 15:50 alan_k
* Flexy/Compiler/Flexy/Tag.php: fix bug #15874 - single API for
error reporting in Compiler/Flexy/Tag.php - to show
filename/line/tag etc.
2008-12-08 10:49 alan_k
* Flexy.php: fix bug #15263 - php5 merge elements needs to clone
objects
2008-11-04 12:46 alan_k
* Flexy/Element.php: fix bug #14899 - flexy:xhtml honored by
element - fix by Geoff Beaumon
2008-10-28 23:13 clockwerx
* tests/: test_conditions.html.phpt, test_forms.html.phpt,
test_looping.html.phpt, test_methods.html.phpt,
test_namespaces.html.phpt, test_plugin_modifiers.html.phpt,
test_usesname.html.phpt: Request #14893 - improve PHPCS (with
aknowles OK)
2008-10-28 18:41 alan_k
* Flexy/Element.php: Fix bug #14897 - xhtml not honored by element
input etc.
2008-05-15 14:30 alan_k
* Flexy/Plugin.php: fix bug #13887 - use is_callable on plugins
2008-05-05 11:20 alan_k
* Flexy/Compiler/Flexy/Flexy.php: fix php4 compat parse error
2008-04-29 10:36 alan_k
* Flexy/Compiler/Flexy.php: fix bug #13419 - switch to using LC_ALL
for setlocale (as LC_MESSAGES did not make sense, and was missing
on some platforms
2008-03-07 19:36 alan_k
* Flexy/Compiler/Flexy/Flexy.php: fix flexy:toJSON to correctly
create var (always) and variable name (for json_encode)
2008-02-27 14:12 alan_k
* package2.xml: update package2.xml for release
2008-02-27 13:56 alan_k
* Flexy.php: Yet another workaround for the stupid decision to
depreciate is_a
2008-02-01 10:53 alan_k
* Flexy.php: fix bug #13022 - E_STRICT not available on php4
2008-01-31 19:19 alan_k
* Flexy/Compiler/Flexy/Tag.php: fix bug #10248 - re-enable
CustomFlexyTags - never read the last comment on that patch
2008-01-31 19:12 alan_k
* package2.xml: release 1.3.2
2008-01-31 19:03 alan_k
* Flexy/Compiler/Flexy/Tag.php: revert changes for
CustomFlexyAttributes - they broke the whole thing!
2008-01-31 15:52 alan_k
* package2.xml: fix bug #13010 - missing file in package
2008-01-30 11:42 alan_k
* ChangeLog, package.xml, package2.xml: prep for release
2008-01-30 11:12 alan_k
* Flexy.php: fix bug #7609 - user defined compilers causing
warnings
2007-10-22 10:01 alan_k
* Flexy/Compiler/Flexy/CustomFlexyAttributes.php: fix bug #11751 -
E_NOTICE in CustomFlexyAttributes, fix WS/TAB issue.
2007-10-18 14:49 alan_k
* Flexy/Compiler/Flexy/Flexy.php: oops wrong logic on the use of
json_encode
2007-10-18 14:47 alan_k
* Flexy/Compiler.php: fix PHP5/4 warning issues with is_a
2007-10-18 11:41 alan_k
* Flexy/Compiler.php: fix req #7609 - support user defined
compilers as compiler object
2007-10-18 11:33 alan_k
* Flexy/Compiler/Flexy.php: fix bug #10830 - support title= on most
tags, and alt= on input tags.
2007-10-18 11:26 alan_k
* Flexy/Element.php: feature request #11741 - getOptions /
clearOptions - thx to justdev
2007-10-18 11:21 alan_k
* Flexy/Compiler/Flexy/Flexy.php: add experimental toJSON feature.
2007-10-18 11:08 alan_k
* Flexy/Element.php: fix feature request #12036 - prevent
generation of closing tags for link, meta, hr, br
2007-10-18 11:05 alan_k
* Flexy/Element.php: fix feature request #12265 - support label in
Element
2007-08-10 11:54 alan_k
* Flexy/Compiler/Flexy.php: change setlocale to use LC_MESSAGES to
prevent bugs with strtoupper
2007-08-03 15:05 alan_k
* Flexy/Compiler/Flexy/Tag.php: fix feature req / bug #9591 and
#11740 - radio buttons can auto generate ID if none given
2007-03-10 13:16 alan_k
* Flexy/Compiler/Flexy/: CustomFlexyAttributes.php, Tag.php:
feature request #10248 - attributes: flexy:content,
flexy:replace, flexy:omittag
2007-02-20 11:06 alan_k
* Flexy/Assign.php: fix bug #10002 - setData with array/object
2007-02-20 11:01 alan_k
* Flexy/Assign.php: remove strange char in file ^M?
2007-01-09 13:39 alan_k
* Flexy/Compiler/Flexy.php: fix bug #9157 - native language regex
support
2006-11-30 13:51 alan_k
* Flexy/Compiler/Flexy/Flexy.php: feature request #8008 -
flexy:include src= allow variables { }
2006-11-28 13:43 alan_k
* Flexy/Compiler/Flexy/Tag.php: Feature Request #9436 - support
background for url rewriting
2006-11-24 15:03 alan_k
* Flexy/Translator.php: minor CS fix, fix bug with wrong variable
name in translator tool
2006-11-16 12:31 alan_k
* Flexy.php: bug #9336 - nasty kludge fix to workaround stupidest
decision in PHP history ;)
2006-11-10 15:08 alan_k
* ChangeLog, package.xml: prep for release
2006-10-25 15:44 alan_k
* Flexy/Token/Text.php: fix bug #9157 regex testing allowing
multilanguage text
2006-09-11 11:52 alan_k
* Flexy/Compiler/Flexy/Flexy.php: minor tidy up to last patch
2006-09-11 11:51 alan_k
* Flexy/Compiler/Flexy/Flexy.php: Feature Request #7483 - implement
subtemplating with variable passing support Thanks to anil at m3
2006-06-26 08:59 alan_k
* Flexy/Translator.php: remove loadtranslations that should not be
there for gettext translation to work
2006-01-20 16:00 alan_k
* ChangeLog, package.xml: prep for release
2006-01-09 11:05 alan_k
* Flexy/: Translator.php, templates/translator.html: add ability to
remove unused translations, tidy up javascript a little
2006-01-04 15:04 alan_k
* Flexy/Translator.php: small typo in last commit, and it missed a
bit..
2006-01-04 14:45 alan_k
* Flexy/Translator.php: add support for gettext Translation2
backend - which needs patches too...
2005-12-20 09:45 alan_k
* Flexy.php, Flexy/Element.php: use correct name for config options
2005-12-20 09:42 alan_k
* Flexy/Compiler/Flexy/Tag.php: remove warning from compiled
template, when trying to merge possibly non-existant elements
2005-12-14 12:52 alan_k
* Flexy/Compiler/Regex/SimpleTags.php: Fix by Demian Turner -
remove short tags output from Simpletags compiler backend. + lots
of whitespace changes, for some reason...
2005-12-08 17:30 alan_k
* Flexy.php, Flexy/Element.php: basic charset support in
HTML_Template_Flexy_Element ... this is a todo for the rendering
layer though...
2005-12-05 19:55 alan_k
* Flexy/Element.php: fix bug #6152 - default to using key in
optgroup when novalue not set
2005-11-28 15:03 alan_k
* Flexy.php: variable declared as wrong case
2005-11-25 14:28 alan_k
* tests/: test_forms.html.phpt, templates/forms.html: tests for
bugs #6058 and #5267
2005-11-25 14:12 alan_k
* Flexy/Compiler/Flexy/Tag.php: hopefully fix bug #5267 -
checkboxes using [] , with ids
2005-11-10 12:17 alan_k
* Flexy/Element.php: the de-escaping is only really needed for
select option elements that want to use spaces, everything else
is handled ok...
2005-11-10 12:14 alan_k
* Flexy/Element.php: no need to de-escape & signs in textboxes -
this may apply to other xul stuff...
2005-11-09 16:31 alan_k
* Flexy/Compiler/Flexy/Tag.php: rationalize xul element support in
compiler
2005-11-09 16:31 alan_k
* Flexy/Element.php: rationalize xul support in element.
2005-11-09 16:29 alan_k
* Flexy/Element/Xul.php: add XUL checkbox support.
2005-11-09 16:10 alan_k
* Flexy/Element.php: correctly replace linefeeds on XUL textboxs
2005-11-09 14:54 alan_k
* Flexy/Element/Xul.php: better handling of XUL textbox and
menulist elements converted to Flexy XUL Elements
2005-11-09 14:51 alan_k
* Flexy/: Compiler/Flexy/Tag.php, Element.php: better handling of
XUL textbox and menulist elements converted to Flexy XUL Elements
2005-11-01 17:00 alan_k
* Flexy/Element.php: fix warning when name not defined on setting
value
2005-10-29 12:01 alan_k
* ChangeLog, package.xml: prep for release
2005-10-25 10:21 alan_k
* Flexy/Compiler/Flexy.php: fix bug #5752 - add support for :e
modifier == htmlentities() call.
2005-10-10 13:36 alan_k
* Flexy/Element.php: dont bork with error if value is not set when
setValue() on a radio button is called.
2005-10-10 13:01 alan_k
* Flexy/Compiler/Flexy/Tag.php: fix up nameuses with radio buttons.
2005-10-08 16:11 alan_k
* Flexy/Compiler/Flexy/Tag.php: id replacement fix (last commit
didnt quite work correctly)
2005-09-23 13:07 alan_k
* Flexy/Compiler/Flexy/Tag.php: php4.4 compatibility issues
2005-08-16 12:48 alan_k
* Flexy/Compiler/Regex/SimpleTags.php: oops message typo
2005-08-16 12:23 alan_k
* Flexy/Compiler/Regex/SimpleTags.php: summarize security issues
with SimpleTags
2005-08-16 12:09 alan_k
* Flexy/Compiler/: Xipe.php, Xipe/Basic.php, Xipe/Internal.php,
Xipe/Modifier.php, Xipe/QuickForm.php, Xipe/SimpleTag.php,
Xipe/TagLib.php, Xipe/Translate.php: removing old Xipe backend -
its not supported or security checked correctly, so off it
goes...
2005-07-23 12:42 alan_k
* ChangeLog, package.xml: prep for release
2005-07-14 08:30 alan_k
* Flexy/Compiler/Flexy.php: few CS fixes (thanks martin) - Im sure
theres more
2005-07-13 18:05 alan_k
* Flexy/Compiler/Flexy.php: set privaliges on other generated files
2005-07-05 09:43 alan_k
* Flexy/Compiler/Flexy.php: remove debugging code, support <a
title= translation
2005-06-29 11:19 alan_k
* tests/: test_usesname.html.phpt,
templates/flexy_raw_with_element.html, templates/usesname.html:
bug #4687 - usesname test (unable to reproduce)
2005-05-25 12:31 alan_k
* Flexy/Compiler/Flexy/Tag.php: make error message more sensible
2005-05-18 14:05 alan_k
* Flexy/Element.php: support for non-valued select options, not
sure if this is actually needed.. or just an old BC hack
2005-05-14 12:18 alan_k
* tests/: test_plugin_modifiers.html.phpt,
templates/plugin_modifiers.html: fix bug #3946 - flexy:raw with
plugin modifiers, and mixing flexy:raw with dynamic elements
produces error now (use flexy:ignore to turn of parsing here..
2005-05-14 12:01 alan_k
* Flexy/: Tokenizer.lex, Tokenizer.php, Compiler/Flexy.php: fix
chopping of modifier in attribute method calls
2005-05-14 11:44 alan_k
* Flexy/Plugin.php, Flexy/Token.php, Flexy/Tokenizer.lex,
Flexy/Tokenizer.php, Flexy/Compiler/Flexy.php,
Flexy/Compiler/Flexy/Tag.php,
tests/templates/plugin_modifiers.html: simplify tokenizer syntax,
and a few minor changes, synced from local repo (mostly debugging
comments)
2005-05-14 11:39 alan_k
* Flexy/Plugin/Savant.php, tests/test_forms.html.phpt,
tests/test_globals.html.phpt, tests/templates/forms.html: fix
test suite failures (including numberformat bug)
2005-05-14 11:06 alan_k
* Flexy/Factory.php: Fix bug #3885 - setRequired doesnt reset
return values.
2005-05-05 11:34 alan_k
* Flexy/Compiler/Flexy/Tag.php: remove warning, improve error
message
2005-04-13 16:30 alan_k
* Flexy/: Element.php, Compiler/Flexy/Tag.php: fix bug #4103 &
replaced with & in attribute values.
2005-02-15 10:35 alan_k
* Flexy/Compiler/Flexy/Tag.php: only allow variables in
attributes.. - still needs more testing (basically methods would
be a nightmare to support here)
2005-02-08 13:35 alan_k
* Flexy/Compiler/Standard.php: oops missed a .
2005-02-08 10:14 alan_k
* Flexy/Compiler/Standard.php: add warning to Old Standard Compiler
2005-01-31 14:57 alan_k
* Flexy/Tree.php: remove sprintf code from tree - was made
redundant by removing old gettext merging
2005-01-27 21:46 alan_k
* package.xml: prep for another release
2005-01-27 21:45 alan_k
* Flexy/: Plugin.php, Compiler/Flexy/Tag.php: oops left print_r in
there
2005-01-25 17:45 alan_k
* Flexy/Compiler/Flexy/Tag.php: another one of them (pass by
reference)
2005-01-25 17:38 alan_k
* package.xml, Flexy/Compiler/Flexy/Tag.php: oops how did that one
creep in.. - pass by reference
2005-01-25 15:41 alan_k
* package.xml: fix a few typos - post release..
2005-01-25 15:34 alan_k
* ChangeLog: adding Changelog as its normally quite informative
2005-01-25 15:32 alan_k
* package.xml: prep for release
2005-01-25 14:11 alan_k
* Flexy/Tokenizer.lex, Flexy/Tokenizer.php,
tests/test_looping.html.phpt, tests/templates/looping.html: fix
cdata with variables/looping
2005-01-25 12:49 alan_k
* tests/test_forms.html.phpt: passes all tests atm
2005-01-25 12:39 alan_k
* Flexy.php, Flexy/Plugin.php, Flexy/Token.php,
Flexy/Tokenizer.lex, Flexy/Tokenizer.php,
Flexy/Compiler/Flexy.php, Flexy/Compiler/Flexy/Tag.php,
tests/test_forms.html.phpt,
tests/test_plugin_modifiers.html.phpt,
tests/test_raw_php.html.phpt,
tests/templates/plugin_modifiers.html: adding allowPHP=>delete to
remove php code from a template., allow variables in cdata blocks
fix renderer for cdata blocks fix tests (including plugin,
raw_php etc.)
2005-01-23 12:07 alan_k
* tests/test_includes.html.phpt: remove redundant/empty test.
2005-01-23 11:57 alan_k
* tests/: test_include.html.phpt, templates/include.html,
templates/include_block.html: adding include tests
2005-01-22 22:15 alan_k
* Flexy/Element.php, tests/test_forms.html.phpt: fix warnings
2005-01-22 22:02 alan_k
* Flexy/Element.php, tests/test_forms.html.phpt: form test case
passing
2005-01-22 20:55 alan_k
* tests/results1/: add_product.xul.en.php, conditions.html.en.php,
error_foreach.html.en.php, flexy_tojavascript.html.en.php,
forms.html.en.php, function.html.en.php, image_view.html.en.php,
includes.html.en.php, javascript.html.en.php,
looping.html.en.php, methods.html.en.php, namespaces.html.en.php,
plugin_modifiers.html.en.php, raw_text.html.en.php,
style.html.en.php, variables.html.en.php,
add_product.xul.elements.serial, conditions.html.gettext.serial,
flexy_tojavascript.html.gettext.serial,
forms.html.elements.serial, forms.html.gettext.serial,
function.html.gettext.serial, javascript.html.gettext.serial,
looping.html.gettext.serial, methods.html.gettext.serial,
namespaces.html.elements.serial,
plugin_modifiers.html.gettext.serial,
raw_text.html.gettext.serial, variables.html.gettext.serial:
removing old test stuff
2005-01-22 20:48 alan_k
* tests/: test_forms.html.phpt, testsuite.php,
results1/forms.html.elements.serial: still working on the form
tests - (eg it fails at present.)
2005-01-22 14:32 alan_k
* Flexy/Token.php, Flexy/Tokenizer.lex, Flexy/Tokenizer.php,
Flexy/Tree.php, Flexy/Compiler/Flexy.php,
Flexy/Compiler/Flexy/Flexy.php, Flexy/Compiler/Flexy/Tag.php,
tests/test_raw_php.html.phpt, tests/testsuite.php,
tests/templates/raw_php.html: fix php code detection
2005-01-22 13:25 alan_k
* tests/: make_tests.php, test_blocks.html.phpt,
test_bug_2959.html.phpt, test_conditions.html.phpt,
test_error_foreach.html.phpt, test_flexy_tojavascript.html.phpt,
test_forms.html.phpt, test_function.html.phpt,
test_globals.html.phpt, test_image_view.html.phpt,
test_includes.html.phpt, test_javascript.html.phpt,
test_looping.html.phpt, test_methods.html.phpt,
test_namespaces.html.phpt, test_plugin_modifiers.html.phpt,
test_raw_php.html.phpt, test_raw_text.html.phpt,
test_style.html.phpt, test_variables.html.phpt, testsuite.php,
results1/looping.html.en.php,
results1/variables.html.gettext.serial, templates/looping.html:
add new testsuite
2005-01-21 09:47 alan_k
* Flexy/Compiler/Flexy/Flexy.php: another go at making scope in
included templates work
2005-01-20 19:26 alan_k
* Flexy/Compiler/Flexy/Flexy.php: oops typo
2005-01-20 09:45 alan_k
* Flexy/Compiler/Flexy/Flexy.php: make flexy:include work nicely
with nested templates.
2005-01-10 13:59 alan_k
* Flexy/Factory.php: fix bug #3129 and indicate that the
setRequired/setError/freeze methods are all depreciated
2005-01-10 13:51 alan_k
* Flexy/Compiler/Flexy/Tag.php: fix bug #3145 - missing ; in error
2004-12-28 09:40 alan_k
* package.xml, Flexy/Token.php: fix bug #3041 - warning shown
during compilation
2004-12-22 11:18 alan_k
* package.xml: update package file
2004-12-22 11:16 alan_k
* Flexy/Token.php: still need to do some concatination for it to
make sense..
2004-12-22 10:22 alan_k
* Flexy/: Token.php, Tokenizer.lex, Tokenizer.php,
Compiler/Flexy.php, Compiler/Flexy/Tag.php, Token/Text.php:
Drop auto concatinating strings together for translations - the
only way to do this now is via explicit {_( translation markers
)_} Support translation markers in attributes - allows things
like a href="{_(http://example.com)_}" - TODO support urlencoded
translation markers..
2004-12-18 12:17 alan_k
* package.xml: have another go at releasing
2004-12-18 12:15 alan_k
* Flexy/Compiler/Flexy.php: make alt tag on img translateable
2004-12-17 22:17 alan_k
* Flexy/Compiler/Flexy.php: fix {_(... translatable explicit
strings ...)_} - which got broken when i refactored it last
2004-12-17 14:29 alan_k
* Flexy/Token.php: remove old tree building code, use array_splice,
rather than nasty hack. (that didnt work!)
2004-12-16 17:26 alan_k
* Flexy/Compiler/Flexy.php: translation2 compatibility fixes
2004-12-15 13:40 alan_k
* Flexy/Token.php, Flexy/Compiler/Flexy.php,
Flexy/Plugin/Savant.php, Flexy/Token/Text.php,
tests/results2/blocks.html.en.php#block1,
tests/results2/blocks.html.en.php#block2: fix bug #2959 - empty
strings messing up gettext blocks
2004-12-10 14:41 alan_k
* package.xml, Flexy/Tokenizer.lex: prep for release
2004-11-16 16:51 alan_k
* Flexy/Token.php: simplified tree building process, more tolerant
of missing closers now.
2004-10-26 10:00 alan_k
* tests/: results1/style.html.en.php, templates/style.html: add
test for { problems
2004-10-26 09:56 alan_k
* Flexy/: Tokenizer.lex, Tokenizer.php: fix { and -xxx inside of
styles
2004-10-26 09:43 alan_k
* Flexy/Token.php: fix error reporting on template
2004-10-13 15:59 alan_k
* tests/trees/: blocks.html.tree, conditions.html.tree,
error_foreach.html.tree, flexy_tojavascript.html.tree,
forms.html.tree, function.html.tree, globals.html.tree,
image_view.html.tree, includes.html.tree, javascript.html.tree,
looping.html.tree, methods.html.tree, namespaces.html.tree,
plugin_modifiers.html.tree, raw_php.html.tree,
raw_text.html.tree, variables.html.tree: simplify createToken
code, add support for character Pos in tokens. - example results
2004-10-13 15:56 alan_k
* Flexy/: Token.php, Tokenizer.lex, Tokenizer.php: simplify
createToken code, add support for character Pos in tokens.
2004-10-11 10:29 alan_k
* package.xml: prep for release (probably with wrong date)
2004-10-08 16:29 alan_k
* Flexy/Tokenizer.lex, Flexy/Tokenizer.php,
Flexy/Compiler/Flexy.php, tests/results1/methods.html.en.php,
tests/templates/methods.html: fix bug #2074 - allow literal
numbers in methods
2004-10-08 16:14 alan_k
* package.xml, Flexy/Token.php, Flexy/Tokenizer.lex,
Flexy/Tokenizer.php, tests/results1/namespaces.html.en.php,
tests/results1/style.html.en.php,
tests/results1/variables.html.en.php,
tests/results1/variables.html.gettext.serial,
tests/results2/forms.result.html,
tests/results2/namespaces.html.en.php,
tests/templates/style.html, tests/templates/variables.html,
tests/trees/forms.html.tree, tests/trees/namespaces.html.tree:
- support for -ve numbers in {arrays[-1]} - support for variable
replacements in commented out blocks of styles
2004-09-01 16:32 alan_k
* Flexy/Compiler/Flexy/Tag.php: make forms without names, just
render as native html
2004-08-21 10:55 alan_k
* Flexy/Compiler/Flexy/Tag.php, tests/results1/forms.html.en.php,
tests/results2/forms.html.en.php: fix usage of mixed
dynamic/inline elements in loops
2004-08-20 15:58 alan_k
* Flexy.php: fix bug #2170 - spelling mistake
2004-08-20 13:23 alan_k
* Flexy/Compiler/Flexy.php, Flexy/Compiler/Flexy/Tag.php,
tests/results1/forms.html.elements.serial,
tests/results1/forms.html.en.php,
tests/results2/forms.html.elements.serial,
tests/results2/forms.html.en.php, tests/templates/forms.html:
feature request #2097 - support mixing of html elements and flexy
vars. ** This still needs some testing, it removes the default
tagname form for forms without names.. (which was silly anyway)
(thanks to Jamie Wall for persisting, and trying to get this to
work)
2004-08-18 18:25 alan_k
* Flexy/Compiler/: Flexy.php, Flexy/Tag.php: fixes to XUL renderer
2004-08-18 18:22 alan_k
* tests/: test.php, results1/function.html.en.php,
results1/namespaces.html.elements.serial,
results1/namespaces.html.en.php, results2/namespaces.html.en.php,
templates/namespaces.html: fix test suite
2004-08-18 15:40 alan_k
* Flexy/Compiler/Flexy/Tag.php: add a generic Token search for
dynamic elements
2004-08-17 11:50 alan_k
* Flexy/: Element.php, Element/Xul.php: menulists partially working
(needs to preserver menupopup args really.
2004-08-16 17:35 alan_k
* Flexy/Element.php: fix problem with optgroup usage
2004-08-16 17:15 alan_k
* Flexy/Element/Xul.php: fix some docbook comments
2004-08-16 17:13 alan_k
* Flexy/Element/Xul.php: fix typo
2004-08-16 17:12 alan_k
* Flexy/: Element.php, Element/Xul.php, Token/Tag.php,
Token/Text.php: phase II - XUL support for menulist
2004-08-16 16:37 alan_k
* package.xml, Flexy/Element.php, Flexy/Compiler/Flexy/Tag.php:
phase I - XUL support for element
2004-08-09 10:36 alan_k
* Flexy/Compiler/: Flexy.php, Standard.php: fix failed loading of
Tokens
2004-08-07 10:47 alan_k
* package.xml: prep for gold release
2004-07-29 18:00 alan_k
* Flexy/Element.php: enable override to work on form tags
2004-07-29 12:26 alan_k
* Flexy.php, Flexy/Token.php, Flexy/Tree.php,
Flexy/Compiler/Flexy/Tag.php, Flexy/Compiler/Standard/Tag.php,
tests/trees/blocks.html.tree, tests/trees/conditions.html.tree,
tests/trees/flexy_tojavascript.html.tree,
tests/trees/forms.html.tree, tests/trees/function.html.tree,
tests/trees/globals.html.tree, tests/trees/image_view.html.tree,
tests/trees/javascript.html.tree, tests/trees/looping.html.tree,
tests/trees/methods.html.tree, tests/trees/namespaces.html.tree,
tests/trees/plugin_modifiers.html.tree,
tests/trees/raw_php.html.tree, tests/trees/raw_text.html.tree,
tests/trees/variables.html.tree: reduce size of tree / main token
slightly.
2004-07-29 12:01 alan_k
* tests/: treeTest.php, results2/function.html.en.php,
results2/raw_php.html.en.php, templates/raw_php.html,
trees/blocks.html.tree, trees/conditions.html.tree,
trees/error_foreach.html.tree,
trees/flexy_tojavascript.html.tree, trees/forms.html.tree,
trees/function.html.tree, trees/globals.html.tree,
trees/image_view.html.tree, trees/includes.html.tree,
trees/javascript.html.tree, trees/looping.html.tree,
trees/methods.html.tree, trees/namespaces.html.tree,
trees/plugin_modifiers.html.tree, trees/raw_php.html.tree,
trees/raw_text.html.tree, trees/variables.html.tree: update test
results, add tree test suite
2004-07-29 11:15 alan_k
* Flexy/Tree.php: cs fixes
2004-07-29 10:56 alan_k
* Flexy/Tokenizer.lex: cs fixes
2004-07-29 10:53 alan_k
* Flexy/: Tokenizer.lex, Tokenizer.php, Tree.php,
Compiler/Flexy.php, Compiler/Standard.php,
Compiler/Flexy/Flexy.php: stage 1 of issolating tree parsing
code, for easier re-use
2004-07-26 12:51 alan_k
* Flexy/Compiler/Standard/Tag.php: make error message more
informative
2004-07-26 12:39 alan_k
* Flexy/Translator.php: remove debugger in translator
2004-07-24 12:42 alan_k
* package.xml: add translator to package
2004-07-24 12:36 alan_k
* Flexy/Translator.php: make translator instatatable for other
purposes
2004-07-08 13:11 alan_k
* Flexy/Compiler/Flexy.php: cleaning up compilation stage
2004-07-08 12:56 alan_k
* Flexy/Compiler.php: Renaming Standard Compiler to Flexy, in long
term prep for Template
2004-07-08 12:53 alan_k
* Flexy/Compiler/: Flexy.php, Flexy/Flexy.php, Flexy/Tag.php:
Renaming Standard Compiler to Flexy, in long term prep for
Template
2004-07-06 14:47 alan_k
* Flexy/Element.php: fix Element with matching key=value
2004-07-03 11:55 alan_k
* Flexy/Compiler/Regex/Mail.php: fix bug #1675 - crlf on windows
2004-07-03 11:51 alan_k
* tests/smarty/index.tpl.html: update smart converter example
2004-07-03 11:46 alan_k
* Flexy/Compiler/SmartyConvertor.php: some rather redundant fixes
on smartyconvertor
2004-06-24 18:21 alan_k
* tests/templates/image_view.html: add missing file to cvs
2004-06-24 18:20 alan_k
* package.xml: prep for another release
2004-06-24 16:39 alan_k
* Flexy/Compiler/Standard.php: fix caching so it works with
translations, and raw strings
2004-06-24 16:35 alan_k
* Flexy/Compiler/Standard.php: add tokenizing caching support to
speed up compilation on blocks
2004-06-24 14:21 alan_k
* Flexy.php, Flexy/Compiler/Standard.php: timestamp blocks just
like main template
2004-06-24 14:12 alan_k
* Flexy.php, Flexy/Compiler/Standard.php,
Flexy/Compiler/Standard/Flexy.php,
Flexy/Compiler/Standard/Tag.php: add support for
compile("templatename.html#block") / outputObject() which
outputs the tag, and contents of <span id="block">
2004-06-24 14:10 alan_k
* tests/: test.php, results2/blocks.html.en.php,
results2/blocks.html.en.php#block1,
results2/blocks.html.en.php#block2,
results2/blocks.html.gettext.serial, templates/blocks.html: tests
for new block support
2004-06-17 16:02 alan_k
* package.xml: someone finally fixed the html escaping on package
releases...
2004-06-17 15:59 alan_k
* package.xml: prep for another release - its probably not a good
idea heading to stable on this.. - it will be phased out if
Template gets approved
2004-06-17 15:21 alan_k
* Flexy/Compiler/Standard.php, Flexy/Compiler/Standard/Flexy.php,
tests/test.php, tests/results1/function.html.en.php,
tests/results1/function.html.gettext.serial,
tests/results2/function.html.en.php,
tests/results2/function.html.gettext.serial,
tests/results2/function.result.html,
tests/templates/function.html: add block like function support
<flexy:function name="", <flexy:function call="xxxx" and
<flexy:function call="{xxxxx}"
2004-06-14 12:31 alan_k
* Flexy/Translator.php: 1000% speed increase on translator
2004-06-12 15:22 alan_k
* Flexy/Plugin/Savant.php: number format and date format = options
stuff needs checking..