This repository has been archived by the owner on Sep 24, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ChangeLog
9219 lines (6678 loc) · 283 KB
/
ChangeLog
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
===== 2.6.31 ===
2017-11-03
* replace functions deprecated in PHP 7.2
2016-09-11 Uwe Tews
* {math} fix parameter checking order to avoid misleading message
* {math} replace wrong versiom
2016-07-19 Uwe Tews
* {math} shell injection vulnerability patch provided by Tim Weber
2015-12-30 Uwe Tews
* fixed plugin filepath cache must not be static, because of possible problem
when using multiple Smarty instances with diffrent plugins_dir settings
https://github.com/smarty-php/smarty/issues/146
2015-06-21 Uwe Tews
* PHP7 raises E_DEPRECATED use __construct for compatibility
2013-09-30
* Fixed old vulnerability bug https://bugs.gentoo.org/show_bug.cgi?id=356615
2013-07-16 Uwe Tews
* Fixed made Smarty_Compiler.class.php compatible with PHP 5.5
2012-09-24 Uwe Tews
* Fixed escape Smarty error messages to avoid possible script execution
2010-04-17 Uwe Tews
* Fixed security hole in {math} plugin
2007-09-27 TAKAGI Masahiro <[email protected]>
* docs/ja/designers/language-custom-functions/language-function-html-checkboxes.xml:
sync with en.
2007-09-27 Monte Ohrt <[email protected]>
* docs/en/designers/language-custom-functions/language-function-html-checkboxes.xml:
remove redundant attribute
2007-09-18 Messju Mohr <[email protected]>
* docs/id/programmers/plugins/plugins-functions.xml:
removed errornous whitespace
2007-09-18 Zaenal Mutaqin <[email protected]>
* docs/id/designers/language-basic-syntax/language-escaping.xml
docs/id/designers/language-basic-syntax/language-math.xml
docs/id/designers/language-basic-syntax/language-syntax-attributes.xml
docs/id/designers/language-basic-syntax/language-syntax-comments.xml
docs/id/designers/language-basic-syntax/language-syntax-functions.xml
docs/id/designers/language-basic-syntax/language-syntax-quotes.xml
docs/id/designers/language-basic-syntax/language-syntax-variables.xml
docs/id/designers/language-builtin-functions/language-function-capture.xml
docs/id/designers/language-builtin-functions/language-function-config-load.xml
docs/id/designers/language-builtin-functions/language-function-foreach.xml
docs/id/designers/language-builtin-functions/language-function-if.xml
docs/id/designers/language-builtin-functions/language-function-include-php.xml
docs/id/designers/language-builtin-functions/language-function-include.xml
docs/id/designers/language-builtin-functions/language-function-insert.xml
docs/id/designers/language-builtin-functions/language-function-ldelim.xml
docs/id/designers/language-builtin-functions/language-function-literal.xml
docs/id/designers/language-builtin-functions/language-function-php.xml
docs/id/designers/language-builtin-functions/language-function-section.xml
docs/id/designers/language-builtin-functions/language-function-strip.xml
docs/id/designers/language-custom-functions/language-function-assign.xml
docs/id/designers/language-custom-functions/language-function-counter.xml
docs/id/designers/language-custom-functions/language-function-cycle.xml
docs/id/designers/language-custom-functions/language-function-debug.xml
docs/id/designers/language-custom-functions/language-function-eval.xml
docs/id/designers/language-custom-functions/language-function-fetch.xml
docs/id/designers/language-custom-functions/language-function-html-checkboxes.xml
docs/id/designers/language-custom-functions/language-function-html-image.xml
docs/id/designers/language-custom-functions/language-function-html-options.xml
docs/id/designers/language-custom-functions/language-function-html-radios.xml
docs/id/designers/language-custom-functions/language-function-html-select-date.xml
docs/id/designers/language-custom-functions/language-function-html-select-time.xml
docs/id/designers/language-custom-functions/language-function-html-table.xml
docs/id/designers/language-custom-functions/language-function-mailto.xml
docs/id/designers/language-custom-functions/language-function-math.xml
docs/id/designers/language-custom-functions/language-function-popup-init.xml
docs/id/designers/language-custom-functions/language-function-popup.xml
docs/id/designers/language-custom-functions/language-function-textformat.xml
docs/id/designers/language-modifiers/language-modifier-capitalize.xml
docs/id/designers/language-modifiers/language-modifier-cat.xml
docs/id/designers/language-modifiers/language-modifier-count-characters.xml
docs/id/designers/language-modifiers/language-modifier-count-paragraphs.xml
docs/id/designers/language-modifiers/language-modifier-count-sentences.xml
docs/id/designers/language-modifiers/language-modifier-count-words.xml
docs/id/designers/language-modifiers/language-modifier-date-format.xml
docs/id/designers/language-modifiers/language-modifier-default.xml
docs/id/designers/language-modifiers/language-modifier-escape.xml
docs/id/designers/language-modifiers/language-modifier-indent.xml
docs/id/designers/language-modifiers/language-modifier-lower.xml
docs/id/designers/language-modifiers/language-modifier-nl2br.xml
docs/id/designers/language-modifiers/language-modifier-regex-replace.xml
docs/id/designers/language-modifiers/language-modifier-replace.xml
docs/id/designers/language-modifiers/language-modifier-spacify.xml
docs/id/designers/language-modifiers/language-modifier-string-format.xml
docs/id/designers/language-modifiers/language-modifier-strip-tags.xml
docs/id/designers/language-modifiers/language-modifier-strip.xml
docs/id/designers/language-modifiers/language-modifier-truncate.xml
docs/id/designers/language-modifiers/language-modifier-upper.xml
docs/id/designers/language-modifiers/language-modifier-wordwrap.xml
docs/id/designers/language-variables/language-assigned-variables.xml
docs/id/designers/language-variables/language-config-variables.xml
docs/id/designers/language-variables/language-variables-smarty.xml
docs/id/programmers/advanced-features/advanced-features-objects.xml
docs/id/programmers/advanced-features/advanced-features-outputfilters.xml
docs/id/programmers/advanced-features/advanced-features-postfilters.xml
docs/id/programmers/advanced-features/advanced-features-prefilters.xml
docs/id/programmers/advanced-features/section-template-cache-handler-func.xml
docs/id/programmers/advanced-features/template-resources.xml
docs/id/programmers/api-functions/api-append-by-ref.xml
docs/id/programmers/api-functions/api-append.xml
docs/id/programmers/api-functions/api-assign-by-ref.xml
docs/id/programmers/api-functions/api-assign.xml
docs/id/programmers/api-functions/api-clear-all-assign.xml
docs/id/programmers/api-functions/api-clear-all-cache.xml
docs/id/programmers/api-functions/api-clear-assign.xml
docs/id/programmers/api-functions/api-clear-cache.xml
docs/id/programmers/api-functions/api-clear-compiled-tpl.xml
docs/id/programmers/api-functions/api-clear-config.xml
docs/id/programmers/api-functions/api-config-load.xml
docs/id/programmers/api-functions/api-display.xml
docs/id/programmers/api-functions/api-fetch.xml
docs/id/programmers/api-functions/api-get-config-vars.xml
docs/id/programmers/api-functions/api-get-registered-object.xml
docs/id/programmers/api-functions/api-get-template-vars.xml
docs/id/programmers/api-functions/api-is-cached.xml
docs/id/programmers/api-functions/api-load-filter.xml
docs/id/programmers/api-functions/api-register-block.xml
docs/id/programmers/api-functions/api-register-compiler-function.xml
docs/id/programmers/api-functions/api-register-function.xml
docs/id/programmers/api-functions/api-register-modifier.xml
docs/id/programmers/api-functions/api-register-object.xml
docs/id/programmers/api-functions/api-register-outputfilter.xml
docs/id/programmers/api-functions/api-register-postfilter.xml
docs/id/programmers/api-functions/api-register-prefilter.xml
docs/id/programmers/api-functions/api-register-resource.xml
docs/id/programmers/api-functions/api-template-exists.xml
docs/id/programmers/api-functions/api-trigger-error.xml
docs/id/programmers/api-functions/api-unregister-block.xml
docs/id/programmers/api-functions/api-unregister-compiler-function.xml
docs/id/programmers/api-functions/api-unregister-function.xml
docs/id/programmers/api-functions/api-unregister-modifier.xml
docs/id/programmers/api-functions/api-unregister-object.xml
docs/id/programmers/api-functions/api-unregister-outputfilter.xml
docs/id/programmers/api-functions/api-unregister-postfilter.xml
docs/id/programmers/api-functions/api-unregister-prefilter.xml
docs/id/programmers/api-functions/api-unregister-resource.xml
docs/id/programmers/api-variables/variable-autoload-filters.xml
docs/id/programmers/api-variables/variable-cache-dir.xml
docs/id/programmers/api-variables/variable-cache-handler-func.xml
docs/id/programmers/api-variables/variable-cache-lifetime.xml
docs/id/programmers/api-variables/variable-cache-modified-check.xml
docs/id/programmers/api-variables/variable-caching.xml
docs/id/programmers/api-variables/variable-compile-check.xml
docs/id/programmers/api-variables/variable-compile-dir.xml
docs/id/programmers/api-variables/variable-compile-id.xml
docs/id/programmers/api-variables/variable-compiler-class.xml
docs/id/programmers/api-variables/variable-config-booleanize.xml
docs/id/programmers/api-variables/variable-config-dir.xml
docs/id/programmers/api-variables/variable-config-fix-newlines.xml
docs/id/programmers/api-variables/variable-config-overwrite.xml
docs/id/programmers/api-variables/variable-config-read-hidden.xml
docs/id/programmers/api-variables/variable-debug-tpl.xml
docs/id/programmers/api-variables/variable-debugging-ctrl.xml
docs/id/programmers/api-variables/variable-debugging.xml
docs/id/programmers/api-variables/variable-default-modifiers.xml
docs/id/programmers/api-variables/variable-default-resource-type.xml
docs/id/programmers/api-variables/variable-default-template-handler-func.xml
docs/id/programmers/api-variables/variable-error-reporting.xml
docs/id/programmers/api-variables/variable-force-compile.xml
docs/id/programmers/api-variables/variable-left-delimiter.xml
docs/id/programmers/api-variables/variable-php-handling.xml
docs/id/programmers/api-variables/variable-plugins-dir.xml
docs/id/programmers/api-variables/variable-request-use-auto-globals.xml
docs/id/programmers/api-variables/variable-request-vars-order.xml
docs/id/programmers/api-variables/variable-right-delimiter.xml
docs/id/programmers/api-variables/variable-secure-dir.xml
docs/id/programmers/api-variables/variable-security-settings.xml
docs/id/programmers/api-variables/variable-security.xml
docs/id/programmers/api-variables/variable-template-dir.xml
docs/id/programmers/api-variables/variable-trusted-dir.xml
docs/id/programmers/api-variables/variable-use-sub-dirs.xml
docs/id/programmers/caching/caching-cacheable.xml
docs/id/programmers/caching/caching-groups.xml
docs/id/programmers/caching/caching-multiple-caches.xml
docs/id/programmers/caching/caching-setting-up.xml
docs/id/programmers/plugins/plugins-block-functions.xml
docs/id/programmers/plugins/plugins-compiler-functions.xml
docs/id/programmers/plugins/plugins-functions.xml
docs/id/programmers/plugins/plugins-howto.xml
docs/id/programmers/plugins/plugins-inserts.xml
docs/id/programmers/plugins/plugins-modifiers.xml
docs/id/programmers/plugins/plugins-naming-conventions.xml
docs/id/programmers/plugins/plugins-outputfilters.xml
docs/id/programmers/plugins/plugins-prefilters-postfilters.xml
docs/id/programmers/plugins/plugins-resources.xml
docs/id/programmers/plugins/plugins-writing.xml:
Typos correction and all translated now.
2007-09-17 Messju Mohr <[email protected]>
* docs/id/bookinfo.xml
docs/id/getting-started.xml
docs/id/language-defs.ent
docs/id/language-snippets.ent
docs/id/livedocs.ent
docs/id/preface.xml:
added indonesian docs - thanks Zaenal Mutaqin
* docs/scripts/generate_web.php:
raise pcre.backtrack_limit - thanks to takagi
2007-09-16 Monte Ohrt <[email protected]>
* libs/Smarty_Compiler.class.php:
fix typo
2007-08-22 George Miroshnikov <[email protected]>
* docs/ru/getting-started.xml
docs/ru/getting-started.xml:
Sync with EN.
2007-08-01 Monte Ohrt <[email protected]>
* NEWS
libs/Smarty_Compiler.class.php:
add append feature to capture
2007-06-24 TAKAGI Masahiro <[email protected]>
* docs/ja/getting-started.xml:
sync with en.
2007-06-24 Messju Mohr <[email protected]>
* docs/Makefile.in:
reverted accidently modified file
* docs/Makefile.in
docs/de/getting-started.xml:
sync with en
* docs/en/getting-started.xml:
fixed link to ini_set(). thanks to Lee Yunyoung.
2007-06-18 TAKAGI Masahiro <[email protected]>
* docs/ja/language-snippets.ent
docs/ja/programmers/api-functions/api-register-outputfilter.xml
docs/ja/programmers/api-functions/api-register-postfilter.xml
docs/ja/programmers/api-functions/api-register-prefilter.xml:
sync with en.
2007-06-18 Danilo Buerger <[email protected]>
* docs/en/language-snippets.ent
docs/en/programmers/api-functions/api-register-outputfilter.xml
docs/en/programmers/api-functions/api-register-postfilter.xml
docs/en/programmers/api-functions/api-register-prefilter.xml:
Updated docs according to the changes from the previous commit
* NEWS
libs/Smarty.class.php:
Added the ability to (un)register multiple filters of the same type with
the same method name but different class name. Before it was not possible
due to the fact that only the method name was used to distinguish between
different filters of the same type. This does however not allow (same as
before) to register multiple filters of the same type with the same method
and class name (i.e. different instances of the same class).
2007-05-29 Messju Mohr <[email protected]>
* libs/plugins/compiler.assign.php:
fixed typo
2007-05-11 Messju Mohr <[email protected]>
* NEWS
libs/Smarty_Compiler.class.php:
fixed calling registered objects' methods with an empty argument list.
thanks marcello
2007-05-03 TAKAGI Masahiro <[email protected]>
* docs/ja/designers/language-variables.xml
docs/ja/designers/language-builtin-functions/language-function-config-load.xml
docs/ja/designers/language-builtin-functions/language-function-foreach.xml
docs/ja/designers/language-builtin-functions/language-function-if.xml
docs/ja/designers/language-modifiers/language-modifier-cat.xml
docs/ja/designers/language-modifiers/language-modifier-wordwrap.xml
docs/ja/designers/language-variables/language-variables-smarty.xml:
sync with en.
2007-05-03 Monte Ohrt <[email protected]>
* docs/en/designers/language-variables.xml
docs/en/designers/language-builtin-functions/language-function-config-load.xml
docs/en/designers/language-builtin-functions/language-function-foreach.xml
docs/en/designers/language-builtin-functions/language-function-if.xml
docs/en/designers/language-modifiers/language-modifier-cat.xml
docs/en/designers/language-modifiers/language-modifier-wordwrap.xml
docs/en/designers/language-variables/language-variables-smarty.xml:
update documentation corrections from marcello in the forums. Thanks
marcello!
2007-04-22 TAKAGI Masahiro <[email protected]>
* docs/ja/programmers/advanced-features.xml
docs/ja/programmers/api-functions.xml
docs/ja/programmers/api-variables.xml:
corrected the garbled text.
2007-04-21 TAKAGI Masahiro <[email protected]>
* docs/ja/bookinfo.xml
docs/ja/getting-started.xml
docs/ja/language-defs.ent
docs/ja/language-snippets.ent
docs/ja/livedocs.ent
docs/ja/make_chm_index.html
docs/ja/preface.xml
docs/ja/translation.xml
docs/ja/appendixes/bugs.xml
docs/ja/appendixes/resources.xml
docs/ja/appendixes/tips.xml
docs/ja/appendixes/troubleshooting.xml
docs/ja/designers/chapter-debugging-console.xml
docs/ja/designers/config-files.xml
docs/ja/designers/language-basic-syntax.xml
docs/ja/designers/language-builtin-functions.xml
docs/ja/designers/language-combining-modifiers.xml
docs/ja/designers/language-custom-functions.xml
docs/ja/designers/language-modifiers.xml
docs/ja/designers/language-variables.xml
docs/ja/designers/language-basic-syntax/language-escaping.xml
docs/ja/designers/language-basic-syntax/language-math.xml
docs/ja/designers/language-basic-syntax/language-syntax-attributes.xml
docs/ja/designers/language-basic-syntax/language-syntax-comments.xml
docs/ja/designers/language-basic-syntax/language-syntax-functions.xml
docs/ja/designers/language-basic-syntax/language-syntax-quotes.xml
docs/ja/designers/language-basic-syntax/language-syntax-variables.xml
docs/ja/designers/language-builtin-functions/language-function-capture.xml
docs/ja/designers/language-builtin-functions/language-function-config-load.xml
docs/ja/designers/language-builtin-functions/language-function-foreach.xml
docs/ja/designers/language-builtin-functions/language-function-if.xml
docs/ja/designers/language-builtin-functions/language-function-include-php.xml
docs/ja/designers/language-builtin-functions/language-function-include.xml
docs/ja/designers/language-builtin-functions/language-function-insert.xml
docs/ja/designers/language-builtin-functions/language-function-ldelim.xml
docs/ja/designers/language-builtin-functions/language-function-literal.xml
docs/ja/designers/language-builtin-functions/language-function-php.xml
docs/ja/designers/language-builtin-functions/language-function-section.xml
docs/ja/designers/language-builtin-functions/language-function-strip.xml
docs/ja/designers/language-custom-functions/language-function-assign.xml
docs/ja/designers/language-custom-functions/language-function-counter.xml
docs/ja/designers/language-custom-functions/language-function-cycle.xml
docs/ja/designers/language-custom-functions/language-function-debug.xml
docs/ja/designers/language-custom-functions/language-function-eval.xml
docs/ja/designers/language-custom-functions/language-function-fetch.xml
docs/ja/designers/language-custom-functions/language-function-html-checkboxes.xml
docs/ja/designers/language-custom-functions/language-function-html-image.xml
docs/ja/designers/language-custom-functions/language-function-html-options.xml
docs/ja/designers/language-custom-functions/language-function-html-radios.xml
docs/ja/designers/language-custom-functions/language-function-html-select-date.xml
docs/ja/designers/language-custom-functions/language-function-html-select-time.xml
docs/ja/designers/language-custom-functions/language-function-html-table.xml
docs/ja/designers/language-custom-functions/language-function-mailto.xml
docs/ja/designers/language-custom-functions/language-function-math.xml
docs/ja/designers/language-custom-functions/language-function-popup-init.xml
docs/ja/designers/language-custom-functions/language-function-popup.xml
docs/ja/designers/language-custom-functions/language-function-textformat.xml
docs/ja/designers/language-modifiers/language-modifier-capitalize.xml
docs/ja/designers/language-modifiers/language-modifier-cat.xml
docs/ja/designers/language-modifiers/language-modifier-count-characters.xml
docs/ja/designers/language-modifiers/language-modifier-count-paragraphs.xml
docs/ja/designers/language-modifiers/language-modifier-count-sentences.xml
docs/ja/designers/language-modifiers/language-modifier-count-words.xml
docs/ja/designers/language-modifiers/language-modifier-date-format.xml
docs/ja/designers/language-modifiers/language-modifier-default.xml
docs/ja/designers/language-modifiers/language-modifier-escape.xml
docs/ja/designers/language-modifiers/language-modifier-indent.xml
docs/ja/designers/language-modifiers/language-modifier-lower.xml
docs/ja/designers/language-modifiers/language-modifier-nl2br.xml
docs/ja/designers/language-modifiers/language-modifier-regex-replace.xml
docs/ja/designers/language-modifiers/language-modifier-replace.xml
docs/ja/designers/language-modifiers/language-modifier-spacify.xml
docs/ja/designers/language-modifiers/language-modifier-string-format.xml
docs/ja/designers/language-modifiers/language-modifier-strip-tags.xml
docs/ja/designers/language-modifiers/language-modifier-strip.xml
docs/ja/designers/language-modifiers/language-modifier-truncate.xml
docs/ja/designers/language-modifiers/language-modifier-upper.xml
docs/ja/designers/language-modifiers/language-modifier-wordwrap.xml
docs/ja/designers/language-variables/language-assigned-variables.xml
docs/ja/designers/language-variables/language-config-variables.xml
docs/ja/designers/language-variables/language-variables-smarty.xml
docs/ja/programmers/advanced-features.xml
docs/ja/programmers/api-functions.xml
docs/ja/programmers/api-variables.xml
docs/ja/programmers/caching.xml
docs/ja/programmers/plugins.xml
docs/ja/programmers/smarty-constants.xml
docs/ja/programmers/advanced-features/advanced-features-objects.xml
docs/ja/programmers/advanced-features/advanced-features-outputfilters.xml
docs/ja/programmers/advanced-features/advanced-features-postfilters.xml
docs/ja/programmers/advanced-features/advanced-features-prefilters.xml
docs/ja/programmers/advanced-features/section-template-cache-handler-func.xml
docs/ja/programmers/advanced-features/template-resources.xml
docs/ja/programmers/api-functions/api-append-by-ref.xml
docs/ja/programmers/api-functions/api-append.xml
docs/ja/programmers/api-functions/api-assign-by-ref.xml
docs/ja/programmers/api-functions/api-assign.xml
docs/ja/programmers/api-functions/api-clear-all-assign.xml
docs/ja/programmers/api-functions/api-clear-all-cache.xml
docs/ja/programmers/api-functions/api-clear-assign.xml
docs/ja/programmers/api-functions/api-clear-cache.xml
docs/ja/programmers/api-functions/api-clear-compiled-tpl.xml
docs/ja/programmers/api-functions/api-clear-config.xml
docs/ja/programmers/api-functions/api-config-load.xml
docs/ja/programmers/api-functions/api-display.xml
docs/ja/programmers/api-functions/api-fetch.xml
docs/ja/programmers/api-functions/api-get-config-vars.xml
docs/ja/programmers/api-functions/api-get-registered-object.xml
docs/ja/programmers/api-functions/api-get-template-vars.xml
docs/ja/programmers/api-functions/api-is-cached.xml
docs/ja/programmers/api-functions/api-load-filter.xml
docs/ja/programmers/api-functions/api-register-block.xml
docs/ja/programmers/api-functions/api-register-compiler-function.xml
docs/ja/programmers/api-functions/api-register-function.xml
docs/ja/programmers/api-functions/api-register-modifier.xml
docs/ja/programmers/api-functions/api-register-object.xml
docs/ja/programmers/api-functions/api-register-outputfilter.xml
docs/ja/programmers/api-functions/api-register-postfilter.xml
docs/ja/programmers/api-functions/api-register-prefilter.xml
docs/ja/programmers/api-functions/api-register-resource.xml
docs/ja/programmers/api-functions/api-template-exists.xml
docs/ja/programmers/api-functions/api-trigger-error.xml
docs/ja/programmers/api-functions/api-unregister-block.xml
docs/ja/programmers/api-functions/api-unregister-compiler-function.xml
docs/ja/programmers/api-functions/api-unregister-function.xml
docs/ja/programmers/api-functions/api-unregister-modifier.xml
docs/ja/programmers/api-functions/api-unregister-object.xml
docs/ja/programmers/api-functions/api-unregister-outputfilter.xml
docs/ja/programmers/api-functions/api-unregister-postfilter.xml
docs/ja/programmers/api-functions/api-unregister-prefilter.xml
docs/ja/programmers/api-functions/api-unregister-resource.xml
docs/ja/programmers/api-variables/variable-autoload-filters.xml
docs/ja/programmers/api-variables/variable-cache-dir.xml
docs/ja/programmers/api-variables/variable-cache-handler-func.xml
docs/ja/programmers/api-variables/variable-cache-lifetime.xml
docs/ja/programmers/api-variables/variable-cache-modified-check.xml
docs/ja/programmers/api-variables/variable-caching.xml
docs/ja/programmers/api-variables/variable-compile-check.xml
docs/ja/programmers/api-variables/variable-compile-dir.xml
docs/ja/programmers/api-variables/variable-compile-id.xml
docs/ja/programmers/api-variables/variable-compiler-class.xml
docs/ja/programmers/api-variables/variable-config-booleanize.xml
docs/ja/programmers/api-variables/variable-config-dir.xml
docs/ja/programmers/api-variables/variable-config-fix-newlines.xml
docs/ja/programmers/api-variables/variable-config-overwrite.xml
docs/ja/programmers/api-variables/variable-config-read-hidden.xml
docs/ja/programmers/api-variables/variable-debug-tpl.xml
docs/ja/programmers/api-variables/variable-debugging-ctrl.xml
docs/ja/programmers/api-variables/variable-debugging.xml
docs/ja/programmers/api-variables/variable-default-modifiers.xml
docs/ja/programmers/api-variables/variable-default-resource-type.xml
docs/ja/programmers/api-variables/variable-default-template-handler-func.xml
docs/ja/programmers/api-variables/variable-error-reporting.xml
docs/ja/programmers/api-variables/variable-force-compile.xml
docs/ja/programmers/api-variables/variable-left-delimiter.xml
docs/ja/programmers/api-variables/variable-php-handling.xml
docs/ja/programmers/api-variables/variable-plugins-dir.xml
docs/ja/programmers/api-variables/variable-request-use-auto-globals.xml
docs/ja/programmers/api-variables/variable-request-vars-order.xml
docs/ja/programmers/api-variables/variable-right-delimiter.xml
docs/ja/programmers/api-variables/variable-secure-dir.xml
docs/ja/programmers/api-variables/variable-security-settings.xml
docs/ja/programmers/api-variables/variable-security.xml
docs/ja/programmers/api-variables/variable-template-dir.xml
docs/ja/programmers/api-variables/variable-trusted-dir.xml
docs/ja/programmers/api-variables/variable-use-sub-dirs.xml
docs/ja/programmers/caching/caching-cacheable.xml
docs/ja/programmers/caching/caching-groups.xml
docs/ja/programmers/caching/caching-multiple-caches.xml
docs/ja/programmers/caching/caching-setting-up.xml
docs/ja/programmers/plugins/plugins-block-functions.xml
docs/ja/programmers/plugins/plugins-compiler-functions.xml
docs/ja/programmers/plugins/plugins-functions.xml
docs/ja/programmers/plugins/plugins-howto.xml
docs/ja/programmers/plugins/plugins-inserts.xml
docs/ja/programmers/plugins/plugins-modifiers.xml
docs/ja/programmers/plugins/plugins-naming-conventions.xml
docs/ja/programmers/plugins/plugins-outputfilters.xml
docs/ja/programmers/plugins/plugins-prefilters-postfilters.xml
docs/ja/programmers/plugins/plugins-resources.xml
docs/ja/programmers/plugins/plugins-writing.xml:
added Japanese translation files.
* docs/Makefile.in
docs/configure.in:
added the configuration for Japanese translation.
2007-04-11 Messju Mohr <[email protected]>
* docs/en/programmers/smarty-constants.xml:
fixed typo
2007-04-04 Messju Mohr <[email protected]>
* docs/ru/getting-started.xml:
fixed uri for Zend Accelerator
2007-04-03 Messju Mohr <[email protected]>
* docs/de/getting-started.xml
docs/es/getting-started.xml
docs/it/getting-started.xml
docs/pt_BR/getting-started.xml:
fixed uris for php-accelerator
2007-03-08 Monte Ohrt <[email protected]>
* libs/Config_File.class.php
libs/Smarty.class.php
libs/Smarty_Compiler.class.php:
update version numbers
2007-03-07 Monte Ohrt <[email protected]>
* (Smarty_2_6_18)
NEWS:
update NEWS file with patch
* (Smarty_2_6_18)
docs/en/designers/language-builtin-functions/language-function-section.xml:
note the fact that section loop will accept an integer
2007-03-06 Monte Ohrt <[email protected]>
* NEWS
libs/plugins/function.html_select_date.php:
fix html_select_date separator when parts are missing (thanks to kayk for
the patch)
2007-03-06 Messju Mohr <[email protected]>
* libs/Config_File.class.php
libs/Smarty.class.php
libs/Smarty_Compiler.class.php:
bumped version number
* NEWS:
added release headline
* libs/internals/core.write_compiled_include.php:
fixed detection of non-cached block when writing compiled includes
2007-03-01 Danilo Buerger <[email protected]>
* NEWS
libs/Smarty_Compiler.class.php:
Applied boots clean up patch and removed commented out code.
Updated NEWS file
2007-02-27 Danilo Buerger <[email protected]>
* NEWS
docs/en/designers/language-modifiers/language-modifier-date-format.xml
libs/internals/core.write_file.php
libs/plugins/modifier.date_format.php:
Updated smarty_core_write_file() and smarty_modifier_date_format() to speed
up Windows detection.
Emulated more parameters for Windows in smarty_modifier_date_format() and
fixed some old ones.
Updated the docs to tell what parameters are emulated on Windows.
Updated NEWS file.
* NEWS:
Updated NEWS file to reflect changes commited in the last revision
2007-02-27 Monte Ohrt <[email protected]>
* docs/en/appendixes/troubleshooting.xml:
fix typo
2007-02-27 Danilo Buerger <[email protected]>
* libs/Smarty_Compiler.class.php:
Modified _(push|pop)_cacheable_state() to embedd alternate syntax. See this
bug report: http://www.phpinsider.com/smarty-forum/viewtopic.php?t=10502
2007-02-26 Peter 'Mash' Morgan <[email protected]>
* docs/en/designers/language-custom-functions/language-function-html-options.xml:
Fix incorrect var name
2007-02-23 Monte Ohrt <[email protected]>
* libs/Smarty_Compiler.class.php:
escape creating of language=php from interleaving
* libs/Smarty_Compiler.class.php:
add removed line back in
* libs/Smarty_Compiler.class.php:
fix up last patch, remove unnecessary lines
* libs/Smarty_Compiler.class.php:
fix situation when no compiled tags are present
* libs/Smarty_Compiler.class.php:
fix problem with php open tags generated from tag interleaving
2007-02-06 boots <[email protected]>
* docs/en/programmers/advanced-features/template-resources.xml:
Correct default template handler function example.
2007-01-17 Messju Mohr <[email protected]>
* NEWS
libs/plugins/modifier.truncate.php:
fixed handling of $etc in the truncate modifier when $etc is longer
than $length.
thanks to Sylvinus!
2007-01-10 boots <[email protected]>
* NEWS
libs/plugins/modifier.date_format.php
libs/plugins/modifier.date_format.php:
fix handling of %I with mysql timestamps
Thanks to Danilo Buerger
* NEWS
libs/internals/core.write_file.php:
Better recognize Windows filesystems to reduce warnings
* NEWS
libs/plugins/modifier.date_format.php:
Emulate %R in the date_format modifier on Windows
Thanks to Danilo Buerger
2006-12-10 Yannick Torres <[email protected]>
* docs/fr/getting-started.xml:
fix build
* docs/fr/language-snippets.ent
docs/fr/designers/language-builtin-functions/language-function-include-php.xml
docs/fr/designers/language-modifiers/language-modifier-truncate.xml
docs/fr/designers/language-variables/language-variables-smarty.xml:
sync with EN
2006-12-02 Peter 'Mash' Morgan <[email protected]>
* docs/en/designers/language-builtin-functions/language-function-include-php.xml:
Tidy example, speeling andd add links
* docs/en/getting-started.xml:
Add/correct entities
* docs/entities/global.ent:
Fix entities (strange)
2006-12-01 Monte Ohrt <[email protected]>
* libs/Config_File.class.php
libs/Smarty.class.php
libs/Smarty_Compiler.class.php:
update dev version numbers
2006-12-01 boots <[email protected]>
* (Smarty_2_6_16)
NEWS:
Fixed replacement bug introduced in trimwhitespaces output filter that
was introduced in the last release.
Thanks to Spuerhund from the forums.
* (Smarty_2_6_16)
libs/plugins/outputfilter.trimwhitespace.php:
Fixed replacement bug introduced by last changes.
Thanks to Spuerhund from the forums.
2006-11-30 Monte Ohrt <[email protected]>
* NEWS
docs/en/designers/language-modifiers/language-modifier-truncate.xml
libs/Config_File.class.php
libs/Smarty.class.php
libs/Smarty_Compiler.class.php:
update dev version numbers, fix manual typo
2006-11-22 George Miroshnikov <[email protected]>
* docs/ru/getting-started.xml
docs/ru/language-snippets.ent:
sync with EN
* docs/en/getting-started.xml:
replaced hardcoded path separator with PATH_SEPARATOR constant
2006-11-20 boots <[email protected]>
* libs/plugins/modifier.debug_print_var.php:
fix depth formatting of arrays and objects in modifier debug_print_var
2006-11-10 Messju Mohr <[email protected]>
* docs/en/designers/language-variables/language-variables-smarty.xml:
fixed typo. thanks jonez.
2006-11-08 boots <[email protected]>
* NEWS
libs/internals/core.write_file.php:
change file writing semantics in smarty_core_write_file()
This avoids unlink() unless rename() fails or a Windows system is detected
see: http://www.phpinsider.com/smarty-forum/viewtopic.php?t=6956
Thanks to c960657 from the forums.
2006-11-07 boots <[email protected]>
* NEWS
libs/debug.tpl:
update debug.tpl to xhtml 1.1 compliance, fix javascript escaping in debug
output and apply a Smarty based color scheme
see: http://www.phpinsider.com/smarty-forum/viewtopic.php?t=7178
thanks to cybot from the forums!
* NEWS
libs/plugins/modifier.debug_print_var.php:
enhance reporting precision of debug_print_var modifier
see: http://www.phpinsider.com/smarty-forum/viewtopic.php?t=9281
thanks to cybot from the forums
2006-11-01 boots <[email protected]>
* NEWS
libs/plugins/function.html_select_date.php:
make html_select_date work consistently with 0000-00-00 00:00:00 and
0000-00-00 inputs
Thanks to cybot from forums
2006-10-16 George Miroshnikov <[email protected]>
* docs/en/language-snippets.ent:
minor typo fix - &$class doesn't make sense.
2006-10-14 Yannick Torres <[email protected]>
* docs/fr/designers/language-basic-syntax.xml
docs/fr/designers/language-builtin-functions.xml
docs/fr/designers/language-basic-syntax/language-syntax-attributes.xml
docs/fr/designers/language-basic-syntax/language-syntax-comments.xml
docs/fr/designers/language-basic-syntax/language-syntax-quotes.xml
docs/fr/designers/language-builtin-functions/language-function-capture.xml
docs/fr/designers/language-builtin-functions/language-function-php.xml
docs/fr/designers/language-builtin-functions/language-function-section.xml
docs/fr/designers/language-custom-functions/language-function-popup-init.xml
docs/fr/designers/language-modifiers/language-modifier-escape.xml
docs/fr/programmers/api-functions/api-display.xml
docs/fr/programmers/plugins/plugins-inserts.xml:
sync with EN
2006-10-14 Fernando Correa da Concei��o <[email protected]>
* docs/pt_BR/programmers/api-variables/variable-error-reporting.xml:
New Translation
* docs/pt_BR/designers/language-basic-syntax/language-escaping.xml
docs/pt_BR/designers/language-basic-syntax/language-syntax-variables.xml:
New Translations
* docs/pt_BR/translation.xml:
Used in revcheck
* docs/pt_BR/getting-started.xml
docs/pt_BR/language-snippets.ent
docs/pt_BR/make_chm_index.html
docs/pt_BR/preface.xml
docs/pt_BR/appendixes/resources.xml
docs/pt_BR/appendixes/troubleshooting.xml
docs/pt_BR/designers/language-modifiers/language-modifier-capitalize.xml
docs/pt_BR/designers/language-modifiers/language-modifier-cat.xml
docs/pt_BR/designers/language-modifiers/language-modifier-count-characters.xml
docs/pt_BR/designers/language-modifiers/language-modifier-count-paragraphs.xml
docs/pt_BR/designers/language-modifiers/language-modifier-count-sentences.xml
docs/pt_BR/designers/language-modifiers/language-modifier-count-words.xml
docs/pt_BR/designers/language-modifiers/language-modifier-date-format.xml
docs/pt_BR/designers/language-modifiers/language-modifier-default.xml
docs/pt_BR/designers/language-modifiers/language-modifier-escape.xml
docs/pt_BR/designers/language-modifiers/language-modifier-indent.xml
docs/pt_BR/designers/language-modifiers/language-modifier-lower.xml
docs/pt_BR/designers/language-modifiers/language-modifier-nl2br.xml
docs/pt_BR/designers/language-modifiers/language-modifier-regex-replace.xml
docs/pt_BR/designers/language-modifiers/language-modifier-replace.xml
docs/pt_BR/designers/language-modifiers/language-modifier-spacify.xml
docs/pt_BR/designers/language-modifiers/language-modifier-string-format.xml
docs/pt_BR/designers/language-modifiers/language-modifier-strip-tags.xml
docs/pt_BR/designers/language-modifiers/language-modifier-strip.xml
docs/pt_BR/designers/language-modifiers/language-modifier-truncate.xml
docs/pt_BR/designers/language-modifiers/language-modifier-upper.xml
docs/pt_BR/designers/language-modifiers/language-modifier-wordwrap.xml
docs/pt_BR/designers/language-variables/language-assigned-variables.xml
docs/pt_BR/designers/language-variables/language-config-variables.xml
docs/pt_BR/designers/language-variables/language-variables-smarty.xml
docs/pt_BR/programmers/advanced-features.xml
docs/pt_BR/programmers/api-functions.xml
docs/pt_BR/programmers/api-variables.xml
docs/pt_BR/programmers/caching.xml
docs/pt_BR/programmers/plugins.xml
docs/pt_BR/programmers/smarty-constants.xml
docs/pt_BR/programmers/advanced-features/advanced-features-objects.xml
docs/pt_BR/programmers/advanced-features/advanced-features-outputfilters.xml
docs/pt_BR/programmers/advanced-features/advanced-features-postfilters.xml
docs/pt_BR/programmers/advanced-features/advanced-features-prefilters.xml
docs/pt_BR/programmers/advanced-features/section-template-cache-handler-func.xml
docs/pt_BR/programmers/advanced-features/template-resources.xml
docs/pt_BR/programmers/api-functions/api-append-by-ref.xml
docs/pt_BR/programmers/api-functions/api-append.xml
docs/pt_BR/programmers/api-functions/api-assign-by-ref.xml
docs/pt_BR/programmers/api-functions/api-assign.xml
docs/pt_BR/programmers/api-functions/api-clear-all-assign.xml
docs/pt_BR/programmers/api-functions/api-clear-all-cache.xml
docs/pt_BR/programmers/api-functions/api-clear-assign.xml
docs/pt_BR/programmers/api-functions/api-clear-cache.xml
docs/pt_BR/programmers/api-functions/api-clear-compiled-tpl.xml
docs/pt_BR/programmers/api-functions/api-clear-config.xml
docs/pt_BR/programmers/api-functions/api-config-load.xml
docs/pt_BR/programmers/api-functions/api-display.xml
docs/pt_BR/programmers/api-functions/api-fetch.xml
docs/pt_BR/programmers/api-functions/api-get-config-vars.xml
docs/pt_BR/programmers/api-functions/api-get-registered-object.xml
docs/pt_BR/programmers/api-functions/api-get-template-vars.xml
docs/pt_BR/programmers/api-functions/api-is-cached.xml
docs/pt_BR/programmers/api-functions/api-load-filter.xml
docs/pt_BR/programmers/api-functions/api-register-block.xml
docs/pt_BR/programmers/api-functions/api-register-compiler-function.xml
docs/pt_BR/programmers/api-functions/api-register-function.xml
docs/pt_BR/programmers/api-functions/api-register-modifier.xml
docs/pt_BR/programmers/api-functions/api-register-object.xml
docs/pt_BR/programmers/api-functions/api-register-outputfilter.xml
docs/pt_BR/programmers/api-functions/api-register-postfilter.xml
docs/pt_BR/programmers/api-functions/api-register-prefilter.xml
docs/pt_BR/programmers/api-functions/api-register-resource.xml
docs/pt_BR/programmers/api-functions/api-template-exists.xml
docs/pt_BR/programmers/api-functions/api-trigger-error.xml
docs/pt_BR/programmers/api-functions/api-unregister-block.xml
docs/pt_BR/programmers/api-functions/api-unregister-compiler-function.xml
docs/pt_BR/programmers/api-functions/api-unregister-function.xml
docs/pt_BR/programmers/api-functions/api-unregister-modifier.xml
docs/pt_BR/programmers/api-functions/api-unregister-object.xml
docs/pt_BR/programmers/api-functions/api-unregister-outputfilter.xml
docs/pt_BR/programmers/api-functions/api-unregister-postfilter.xml
docs/pt_BR/programmers/api-functions/api-unregister-prefilter.xml
docs/pt_BR/programmers/api-functions/api-unregister-resource.xml
docs/pt_BR/programmers/api-variables/variable-autoload-filters.xml
docs/pt_BR/programmers/api-variables/variable-cache-dir.xml
docs/pt_BR/programmers/api-variables/variable-cache-handler-func.xml
docs/pt_BR/programmers/api-variables/variable-cache-lifetime.xml
docs/pt_BR/programmers/api-variables/variable-cache-modified-check.xml
docs/pt_BR/programmers/api-variables/variable-caching.xml
docs/pt_BR/programmers/api-variables/variable-compile-check.xml
docs/pt_BR/programmers/api-variables/variable-compile-dir.xml
docs/pt_BR/programmers/api-variables/variable-compile-id.xml
docs/pt_BR/programmers/api-variables/variable-compiler-class.xml
docs/pt_BR/programmers/api-variables/variable-config-booleanize.xml
docs/pt_BR/programmers/api-variables/variable-config-dir.xml
docs/pt_BR/programmers/api-variables/variable-config-fix-newlines.xml
docs/pt_BR/programmers/api-variables/variable-config-overwrite.xml
docs/pt_BR/programmers/api-variables/variable-config-read-hidden.xml
docs/pt_BR/programmers/api-variables/variable-debug-tpl.xml
docs/pt_BR/programmers/api-variables/variable-debugging-ctrl.xml
docs/pt_BR/programmers/api-variables/variable-debugging.xml
docs/pt_BR/programmers/api-variables/variable-default-modifiers.xml
docs/pt_BR/programmers/api-variables/variable-default-resource-type.xml
docs/pt_BR/programmers/api-variables/variable-default-template-handler-func.xml
docs/pt_BR/programmers/api-variables/variable-force-compile.xml
docs/pt_BR/programmers/api-variables/variable-global-assign.xml
docs/pt_BR/programmers/api-variables/variable-left-delimiter.xml
docs/pt_BR/programmers/api-variables/variable-php-handling.xml
docs/pt_BR/programmers/api-variables/variable-plugins-dir.xml
docs/pt_BR/programmers/api-variables/variable-request-use-auto-globals.xml
docs/pt_BR/programmers/api-variables/variable-request-vars-order.xml
docs/pt_BR/programmers/api-variables/variable-right-delimiter.xml
docs/pt_BR/programmers/api-variables/variable-secure-dir.xml
docs/pt_BR/programmers/api-variables/variable-security-settings.xml
docs/pt_BR/programmers/api-variables/variable-security.xml
docs/pt_BR/programmers/api-variables/variable-template-dir.xml
docs/pt_BR/programmers/api-variables/variable-trusted-dir.xml
docs/pt_BR/programmers/api-variables/variable-undefined.xml
docs/pt_BR/programmers/api-variables/variable-use-sub-dirs.xml
docs/pt_BR/programmers/caching/caching-cacheable.xml
docs/pt_BR/programmers/caching/caching-groups.xml
docs/pt_BR/programmers/caching/caching-multiple-caches.xml
docs/pt_BR/programmers/caching/caching-setting-up.xml
docs/pt_BR/programmers/plugins/plugins-block-functions.xml
docs/pt_BR/programmers/plugins/plugins-compiler-functions.xml
docs/pt_BR/programmers/plugins/plugins-functions.xml
docs/pt_BR/programmers/plugins/plugins-howto.xml
docs/pt_BR/programmers/plugins/plugins-inserts.xml
docs/pt_BR/programmers/plugins/plugins-modifiers.xml
docs/pt_BR/programmers/plugins/plugins-naming-conventions.xml
docs/pt_BR/programmers/plugins/plugins-outputfilters.xml
docs/pt_BR/programmers/plugins/plugins-prefilters-postfilters.xml
docs/pt_BR/programmers/plugins/plugins-resources.xml
docs/pt_BR/programmers/plugins/plugins-writing.xml:
Big update. Revision tag for all files. Some updates. Now I can update it
2006-10-09 Peter 'Mash' Morgan <[email protected]>
* docs/en/getting-started.xml
docs/en/designers/language-basic-syntax.xml
docs/en/designers/language-custom-functions/language-function-popup-init.xml
docs/en/designers/language-modifiers/language-modifier-escape.xml
docs/en/programmers/api-functions/api-display.xml
docs/en/programmers/plugins/plugins-inserts.xml:
Minor changes and corrections
* docs/en/designers/language-basic-syntax.xml
docs/en/designers/language-builtin-functions.xml
docs/en/designers/language-basic-syntax/language-syntax-attributes.xml
docs/en/designers/language-basic-syntax/language-syntax-comments.xml
docs/en/designers/language-basic-syntax/language-syntax-quotes.xml
docs/en/designers/language-modifiers/language-modifier-escape.xml:
Minor formatting and error correction
* docs/en/designers/language-builtin-functions/language-function-capture.xml
docs/en/designers/language-builtin-functions/language-function-php.xml
docs/en/designers/language-builtin-functions/language-function-section.xml:
minor formatting and changes
* docs/en/getting-started.xml:
Tidied up formatting so more readable, tidied up the install to the paths
are more clear (ta jj)
2006-10-09 Yannick Torres <[email protected]>
* docs/fr/designers/language-builtin-functions/language-function-section.xml:
sync with EN
2006-10-08 Yannick Torres <[email protected]>
* docs/fr/designers/language-builtin-functions/language-function-php.xml
docs/fr/designers/language-modifiers/language-modifier-escape.xml
docs/fr/designers/language-variables/language-variables-smarty.xml
docs/fr/programmers/api-variables/variable-request-use-auto-globals.xml:
fix build
* docs/fr/designers/language-builtin-functions/language-function-strip.xml
docs/fr/programmers/caching.xml
docs/fr/programmers/smarty-constants.xml
docs/fr/programmers/api-variables/variable-autoload-filters.xml
docs/fr/programmers/api-variables/variable-cache-dir.xml
docs/fr/programmers/api-variables/variable-cache-handler-func.xml
docs/fr/programmers/api-variables/variable-cache-lifetime.xml
docs/fr/programmers/api-variables/variable-cache-modified-check.xml
docs/fr/programmers/api-variables/variable-caching.xml
docs/fr/programmers/api-variables/variable-compile-check.xml
docs/fr/programmers/api-variables/variable-compile-dir.xml
docs/fr/programmers/api-variables/variable-compile-id.xml
docs/fr/programmers/api-variables/variable-compiler-class.xml
docs/fr/programmers/api-variables/variable-config-booleanize.xml
docs/fr/programmers/api-variables/variable-config-dir.xml
docs/fr/programmers/api-variables/variable-config-fix-newlines.xml
docs/fr/programmers/api-variables/variable-config-overwrite.xml
docs/fr/programmers/api-variables/variable-config-read-hidden.xml
docs/fr/programmers/api-variables/variable-debug-tpl.xml
docs/fr/programmers/api-variables/variable-debugging-ctrl.xml
docs/fr/programmers/api-variables/variable-debugging.xml