-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathChangeLog
1776 lines (1155 loc) · 92.8 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
2011-09-28 Tolleiv Nietsch <[email protected]>
* Fixed issue: #18291: Section index might be wrong if it's placed after an FCE (Thanks to Thomas Layh)
2011-08-27 Tolleiv Nietsch <[email protected]>
* Fixed issue: #18261: t3lib_div_int_from_ver is deprecated
* Fixed issue: #18147: Install as global should be possible
* Fixed bug: #18158: The requested URL /typo3conf/ext/templavoila/mod1/mod.php was not found on this server.
2011-05-12 Tolleiv Nietsch <[email protected]>
* Fixed bug: #18076: Page templates using Inherited language mode don't work properly on page module
* Fixed bug: #18134: Preview flag can't be overwritten within localproc XML
* Fixed bug: #1332: V 0.4.0 - The cache pages with referenced content elements is not cleared on change
2011-05-11 Tolleiv Nietsch <[email protected]>
* Fixed bug: #17929: delete not-used elements in custom workspace (Thanks to Riccardo De Contardi)
2011-05-10 Tolleiv Nietsch <[email protected]>
* Fixed bug: #18101: Preview icons missing in new page wizard if TYPO3 is installed in subdirectory of DocumentRoot (Thanks to Tobias Schaefer)
* Fixed bug: #18116: CE sitemap: Check if content ids exist (Thanks to Benjamin Mack)
* Fixed bug: #18098: Link to db_list.php is deprecated in Typo3 4.5 (Thanks to Daniel Minder)
* Fixed bug: #18100: One 4.2 hack left over in mod2/index.php (Thanks to Bjorn Pedersen)
2011-03-25 Tolleiv Nietsch <[email protected]>
* Fixed bug: #7617: Cannot create new records from "Other elements (non-content)" tab (Thanks to OlivierSC)
* Fixed bug: #17803: Versioning error after hide/unhide action
* Fxied bug: #18037: Mod2 icons lack proper tooltips
* Fixed bug: #18033: RANGE for "unnamed" elements exclude the current element
2011-03-12 Tolleiv Nietsch <[email protected]>
* Fixed bug: #17871: Use of deprecated function t3lib_div::view_array
2011-02-26 Tolleiv Nietsch <[email protected]>
* Fixed bug: #17781: Remove TYPO3 4.2 compatibility blocks
2011-02-24 Tolleiv Nietsch <[email protected]>
* Fixed bug: #17756: templavoila doesn't look nice in 4.6
2011-02-22 Tolleiv Nietsch <[email protected]>
* Fixed bug: #17582: Unmapped content areas are still processed (Thanks to Jeff Segars)
* Fixed bug: #16184: Section Index menu doesn't work with Templavoila (Thanks to Riccardo De Contardi)
* Fixed bug: #17696: Icon image tag with doubled alt attribute (and no title)
2011-02-18 Tolleiv Nietsch <[email protected]>
* Fixed bug: #17546: Allow new page wizard to show all fields from pages like in normal editing mode (Thanks to Andreas Kiessling)
2011-02-16 Tolleiv Nietsch <[email protected]>
* Fixed bug #17615: preview disable doesn't fully work for page-layouts
2011-02-14 Tolleiv Nietsch <[email protected]>
* Fixed bug: #16947: Incorrect error message in STATIC DS wizard
* Fixed bug: #17484: Missing JS in TV 1.5.3 with Typo3 4.2.17 (Thanks to Alexander Opitz)
* Fixed bug: #17467: CSRF security message on deleting content elements from non-used elements
2011-02-09 Tolleiv Nietsch <[email protected]>
* Fixed bug: #16520: Flags are gone in page module in TYPO3 4.5
* Followup-to: #17242: Possibility to disable some tabs / consistent naming and manual update
2011-01-25 Tolleiv Nietsch <[email protected]>
* Fixed bug: #16811: The pageTS config of templavoila. is not merged with userTS config
* Fixed bug: #17234: Copying an FCE into another place doesn't show them initially, this might confuse users
* Fixed bug: #17005: Adjust TCA setup for pages and tt_content to new 4.5 "style"
2011-01-24 Tolleiv Nietsch <[email protected]>
* Fixed bug: #16979: TemplaVoila 1.5.3 wizard error in src-4.4.6 site. (Thanks to Jonathan Krusy and Bodo Frommelt)
* Fixed bug: #17242: Possibility to disable some tabs (and to reorder them) (Thanks to Benjamin Mack)
2011-01-23 Tolleiv Nietsch <[email protected]>
* Fixed bug: #16886: Include Header parts - comments hack bug
2010-12-20 Tolleiv Nietsch <[email protected]>
* Fixed bug: #16791: language flag might indicate wrong visibility in workspaces (Thanks to Nikola Stojiljkovic)
2010-12-17 Tolleiv Nietsch <[email protected]>
* Fixed bug: #16700: mod2 broken in 1.5.3 when TOs are used / incorrect parameters for t3lib_div::array2xml (Thanks to Andreas Kiessling)
2010-12-05 Tolleiv Nietsch <[email protected]>
* Fixed bug: #16684: useless visual expansion of the nested section datapreview
* Fixed bug: #13822: Cut and paste in workspaces
* Fixed bug: #11359: When deleting versions of a CE record, page looses reference to the complete record
* Fixed bug: #16521: Localize FCEs from the page module (Thanks to Andreas Kiessling)
2010-11-28 Tolleiv Nietsch <[email protected]>
* Fixed bug: #16587: small typo - dataprot variable misspelled (Thanks to Andreas Lappe)
2010-11-27 Tolleiv Nietsch <[email protected]>
* Follow-up to: Fixed bug: #15927: Remove icon »Create new element« if user has no rights to edit the pages content
* Fixed issue: #16567: Static DS Conversion Wizard does not check if path is writable and has wrong page-path to check (Thanks to Andreas Lappe)
2010-11-22 Tolleiv Nietsch <[email protected]>
* Fixed issue: #15788: Copy content elements in classic page module
* Fixed issue: #16512: template->middle() - is not required and deprecated since TYPO3 3.6
* Fixed issue: #16270: Custom "rendertype" label are not display in TemplaVoilà Control Center
* Fixed issue: #11582: No more add icon, if maxitem is reached
* Fixed bug: #15927: Remove icon »Create new element« if user has no rights to edit the pages content
* Fixed bug: #15925: Buttons in docheader do not respect user rights for pages table
* Fixed issue: #16324: Let the auto value for TypoScriptObject path depend on field name (Thanks to Christian Mueller)
* Fixed issue: #16341: Get rid of the full plugin name
* Fixed issue: #16211: a hsc too much
2010-11-08 Tolleiv Nietsch <[email protected]>
* Fixued issue: #16243: no context menu for xml files and html files with xml declaration to start mapping process (Thanks to Andreas Kiessling)
2010-11-06 Tolleiv Nietsch <[email protected]>
* Fixued issue: #16212: templavoila floods deprecation log on current TYPO3 trunk (4.5) (Thanks to Andreas Kiessling)
2010-10-29 Tolleiv Nietsch <[email protected]>
* Follow-up to: #3450: Web->Page (TV) shows "fieldname" instead of "title" - </br> was supposed to be <br />
2010-10-23 Tolleiv Nietsch <[email protected]>
* Fixed issue: #16115: content-cells might be very slim
* Updated manual related to #8051: oldStyleColumnNumber of FCE overrides colPos of Page Template
* Fixed bug: #16083: Fatal error: mod2/index.php
2010-10-19 Tolleiv Nietsch <[email protected]>
* Fixued issue: #16070: Sitemap Section Index + TV => Internal Server Error 500, PHP Fatal error
* Follow-up to: #15924: nested_fields register content is not correct - duplicate code removed
* Fixed issue: #15924: nested_fields register content is not correct (Thanks to Frederik Rei)
* Fixed issue: #15896: Infection Warning by Avira AntiVir: HTML/Crypted.Gen
2010-10-17 Tolleiv Nietsch <[email protected]>
* Fixed issue: #15986: TYPO3_MODE check in localconf.php might break spriteCache
2010-10-12 Tolleiv Nietsch <[email protected]>
* Fixed bug: #15980: doktype of page is not respected during localizing of a page (Thanks to Andreas Kiessling)
2010-10-12 Tolleiv Nietsch <[email protected]>
* Generally updated several outdated parts of the manual
* Fixed issue: #15957: TV does not honour TCAdefaults from PageTSconfig or UserTSconfig
2010-10-11 Tolleiv Nietsch <[email protected]>
* Follow-up to: #15775: Avoid that browser-cache issues cause too much confusion during upgrade (debug-mode dragdrop.js caused 404)
2010-10-10 Tolleiv Nietsch <[email protected]>
* Fixed issue: #15946: version comparison doesn't work on dev version of TYPO3_4-4 branch
* Fixed bug: #15948: Content from PID message looks strange
2010-10-09 Tolleiv Nietsch <[email protected]>
* Fixed bug: #15908: access restriction for tv-objects in usergroup setting will be ignored
* Fixed issue: #15933: "Create new Template Object" puts new TOs on wrong page
* Fixed issue: #15943: tt_content move-to placeholder show up in the non-used CE list
2010-10-08 Tolleiv Nietsch <[email protected]>
* Fixed issue: #15498: Use Flash Messages in wizard (Thanks to Benjamin Mack)
2010-10-07 Tolleiv Nietsch <[email protected]>
* Fixed issue: #15878: current value is not given to etypesextraformfields hook
* Fixed issue: #15926: Make template folder configurable
* Fixed issue: #15921: tx_templavoila_datastructureRepository->getAll() does not handle scope properly
2010-10-06 Tolleiv Nietsch <[email protected]>
* Fixed issue: #15920: element icons don't show the id in their tooltips anymore
* Follow-up to: #15125: static DS not working in conjunction with TYPO3 caches - manual still contained some old references
* Fixed bug: #15890: Editor is getting false flash message for missing rights
* Fixed bug: #15918: co content found! mapping to root element lost
2010-10-03 Tolleiv Nietsch <[email protected]>
* Follow-up to: #15210: TemplaVoila should adjust it's look&feel to TYPO3 4.4 - translation-text color fixed
* Fixed issue: #15859: sectionIndex doesn't work as supposed when TemplaVoila is used (Thanks to Steffen Kamper)
2010-09-28 Tolleiv Nietsch <[email protected]>
* Fixed issue: #15837: % char in locallang label causes php warning
* Follow-up to: #13974: HTML5 tag support - added missing styles
* Follow-up to: #15670: content element preview in TV module for filelist can get very wide - wrong file inclusion fixed
* Fixed issue: #14285: FCE: No hook for BE preview on "unknown" fields (Thanks to Alexander Opitz)
* Fixed issue: #15775: Avoid that browser-cache issues cause too much confusion during upgrade
* Fixed issue: #15826: Non-admin fails to add new FCE to a page - pagemodule should show a warning
2010-09-23 Tolleiv Nietsch <[email protected]>
* Follow-up to: #14386: Static DS - Centralize access to datastructure / pt.4 - further refinement to hide useless elements
* Fixed issue: #15779: Hook to influence how the subelement areas are composed
* Fixed issue: #14330: Localizing labels in beLayout (Thanks to Andreas Kiessling)
* Fixed issue: #15777: Hook to restrict which elements are displayed
* Fixed issue: #12602: Sorting of template objects in page content
2010-09-22 Tolleiv Nietsch <[email protected]>
* Fixed issue: #15571: Fatal PHP Error when try to insert new CEs in Page Module
* Fixed issue: #15759: Section title and section fieldlabel are not through "$this->localizedFFLabel" (Thanks to KimPixel)
* Fixed issue: #15762: beLayout Template from external files does not work
2010-09-16 Tolleiv Nietsch <[email protected]>
* Follow-up to: #14386: Static DS - Centralize access to datastructure / pt.1 - workspace versions should not be selected in repositories
* Fixed bug: #15722: The create new template object-button is missing if there is no TO attached to a DS
* Fixed issue: #15723: Wrong TypoScript path in documentation (Thanks to Bernhard Kraft)
2010-09-15 Tolleiv Nietsch <[email protected]>
* Fixed issue: #15719: HTML5 <menu> element not styled (Thanks to Rafal Brzeski)
* Fixed issue: #15718: Long words might cause strange look in pagemodule
* Fixed issue: #15706: in trunk: not resolved template file names cause error in mod2/index.php (Thanks to Björn Pedersen)
* Fixed issue: #15695: Edit link not clickable with Drag n Drop enable with Internet Explorer (Thanks to Megaspoilt)
2010-09-14 Tolleiv Nietsch <[email protected]>
* Fixed issue: #13974: HTML5 tag support
* Fixed issue: #15125: static DS not working in conjunction with TYPO3 caches (f.e. TCA cache) (Thanks to Franz Koch)
2010-09-09 Tolleiv Nietsch <[email protected]>
* Fixed issue: #15670: content element preview in TV module for filelist can get very wide
* Fixed issue: #14314: beLayout does not work with Static Data Structures in Extensions
* Fixed issue: #15675: pagemodule resource "API" behaves inconsistent
2010-09-05 Tolleiv Nietsch <[email protected]>
* Fixed issue: #14386: Static DS - Centralize access to datastructure / pt.4 - mod2 uses proper objects now
2010-09-01 Tolleiv Nietsch <[email protected]>
* Fixed issue: #15614: Element warnings are inconsistent and lack information
2010-08-31 Tolleiv Nietsch <[email protected]>
* Fixed bug: #3813: Localization is not respected when migrating a traditional site using the "Functions" module (Thanks to Bernhard Kraft)
2010-08-30 Tolleiv Nietsch <[email protected]>
* Follow-up to: #15210: TemplaVoila should adjust it's look&feel to TYPO3 4.4 - special page padding fixed
* Fixed issue: #15411: Unmapped Elements of etype 'ce' / 'no_map' don't show in TV BE page module (Thanks to Marcel Greter)
* Fixed issue: #15568: Hardcoded added TS snipped crashes output
2010-08-09 Tolleiv Nietsch <[email protected]>
* Follow-up to: #15210: TemplaVoila should adjust it's look&feel to TYPO3 4.4 - usability adjustments
2010-08-06 Tolleiv Nietsch <[email protected]>
* Follow-up to: #14386: Static DS - Centralize access to datastructure / pt.1 - FE crash case removed
2010-08-04 Tolleiv Nietsch <[email protected]>
* Fixed issue: #15358: pagemodule ce title len limit should be configurable
* Fixed issue: #15357: pagemodule preview data limit should be configurable
2010-08-03 Tolleiv Nietsch <[email protected]>
* Follow-up to: #14140: TemplaVoila should use sprite icons / pt.3
* Follow-up to: #15217: new content wizard should use docHeader
2010-07-30 Tolleiv Nietsch <[email protected]>
* Fixed issue: #14590: use pagerenderer to output / integrate the header parts into the regular TYPO3 output
* Fixed issue: #15314: TYPO3 4.4 Version-selector doesn't fit into the current layout
* Fixed issue: #15276: tv page module title bar layout breaks, if too little space
2010-07-29 Tolleiv Nietsch <[email protected]>
* Follow-up to: #14140: TemplaVoila should use sprite icons / pt.2
* Fixed issue: #15293: enableDragDrop setting should be set by default
* Fixed issue: #15267: page icon is missing
2010-07-28 Tolleiv Nietsch <[email protected]>
* Fixed issue: #14641: TemplaVoila Page Module: Contextual menu disappears when mouse is over with Firefox 3.6
* Fixed bug: #13171: cm1::findingStorageFolderIds does not consider tx_templavoila.storagePid
* Follow-up to: #14694: FlashMessage should be used instead of individual message formats
* Fixed bug: #15266: mod2 "Template Files" uses wrong list-header styling
2010-07-25 Tolleiv Nietsch <[email protected]>
* Fixed bug: #15235: default preview container misses closing strong-tag
* Fixed bug: #14881: Mapping elements with multiple classes results in error: No placeholder found for path...
* Fixed bug: #15234: Exception in tceform if datastructure not found
* Fixed issue: #14140: TemplaVoila should use sprite icons / pt.3
* Fixed issue: #15233: TV should support mod.web_list.newContentWiz.overrideWithExtension
* Follow-up to: #15210: TemplaVoila should adjust it's look&feel to TYPO3 4.4 - hidden elements adjustments
2010-07-24 Tolleiv Nietsch <[email protected]>
* Fixed issue: #14140: TemplaVoila should use sprite icons / pt.2
* Follow-up to: #15210: TemplaVoila should adjust it's look&feel to TYPO3 4.4 - typo/whitespacefix
* Fixed issue: #14140: TemplaVoila should use sprite icons / pt.1
2010-07-23 Tolleiv Nietsch <[email protected]>
* Fixed issue: #15217: new content wizard should use docHeader
* Fixed issue: #10911: Design: non-used elements are too crowded
* Fixed issue: #15210: TemplaVoila should adjust it's look&feel to TYPO3 4.4
* Fixed issue: #15209: mod1 -> render_singleSheet uses html table for "styling"
2010-07-20 Tolleiv Nietsch <[email protected]>
* Fixed issue: #3903: ACL problem: "edit content" doesn't work (Thanks to Bernhard Kraft)
2010-07-19 Tolleiv Nietsch <[email protected]>
* Fixed issue: #13699: static Data Structures not listed in the TemplaVoilà Control Center
* Fixed issue: #15178: FCE editing forms should match built-in content elements (Thanks to Jeff Segars)
2010-07-17 Tolleiv Nietsch <[email protected]>
* Fixed issue: #15158: XCLASS inclusion inclass.tx_templavoila_label.php wrong
* Fixed issue: #15157: tx_staticdstools doesn't follow naming schema
* Fixed issue: #15124: bind detection for static DS scope to path and not to string '(fce)' in filename (Thanks to Franz Koch)
2010-07-14 Tolleiv Nietsch <[email protected]>
* Fixed issue: #14897: TV shows inconsistent in variours TYPO3 versions (Thanks to Christian Noelle)
* Fixed issue: #15063: Introduce seperate ajax responder to handle d&d calls (Thanks to Nikolas Hagelstein)
2010-07-13 Tolleiv Nietsch <[email protected]>
* Fixed bug: #15058: disableExplosivePreview doesn't disable Flexible Content preview +manual updated
2010-07-08 Tolleiv Nietsch <[email protected]>
* Fixed bug: #5780: Elements are shows as references
2010-07-06 Tolleiv Nietsch <[email protected]>
* Fixed issue: #15022: cm2 should use the common docHeader
* Fixed issue: #11594: "Create local copy" button of a content element isn't visible for users without write access
2010-07-05 Tolleiv Nietsch <[email protected]>
* Follow-up to: #14386: Static DS - Centralize access to datastructure / pt.1 - crash case removed
* Follow-up to: #13928: $calcPerms in mod1 needs to be recreated if grid's are referenced items - typo removed
* Fixed issue: #15008: mod2 and cm1 dynTab position shouldn't correspond
* Fixed issue: #13928: $calcPerms in mod1 needs to be recreated if grid's are referenced items
* Fixed issue: #6478: After linking a conentent element it should stay in the clipboard
* Fixed issue: #10757: Wrong color in the mapping interface
* Fixed issue: #14954: No 'Show outline' feature for non-admin users
* Fixed issue: #14962: Unlinked elements won't disappear if DragDrop is not enabled
* Fixed issue: #14951: [Click to translate FlexForm] harcoded /not translated
2010-06-24 Tolleiv Nietsch <[email protected]>
* Follow-up to: #14386: Static DS - Centralize access to datastructure / pt.1 - renamed one misspelled variable
* Fixed issue: #14839: mapping-module should use the common docHeader
2010-06-22 Tolleiv Nietsch <[email protected]>
* Fixed issue: #13706: can't create pages with a template object based on a static DS
2010-06-16 Tolleiv Nietsch <[email protected]>
* Fixed issue: #10753: Inconsistency: tab is not supported in the TS editor
* Fixed issue: #14571: Datastructure: meta > default doesn't work when using static datastructure files (Thanks to Aske Ertmann)
2010-06-12 Tolleiv Nietsch <[email protected]>
* Fixed bug: #4512: Would be nice: disallow save without title/name field
* Fixed issue: #14386: Static DS - Centralize access to datastructure / pt.1 (Thanks to Michael Klapper)
* Fixed issue: #14446: disable data preview for section elements
* Fixed issue: #3450: Web->Page (TV) shows "fieldname" instead of "title"
2010-06-10 Tolleiv Nietsch <[email protected]>
* Fixed issue: #13346: HTML Validator to indicate that mapping might not succeed
* Fixed bug: #14696: mapping module shows error in workspace
* Fixed issue: #5457: Clean XML doesn't save changes when using workspaces
* Fixed issue: #14694: FlashMessage should be used instead of individual message formats
* Fixed issue: #14579: Documentation states hook that has been removed in 2006
2010-05-31 Tolleiv Nietsch <[email protected]>
* Fixed issue: #14531: TOs Showing up in in other sites when not in their GRSP on multi-domain installation.
* Fixed issue: #14548: Call to undefined method tx_templavoila_template::getScope()
2010-05-30 Tolleiv Nietsch <[email protected]>
* Fixed issue: #13722: Typoscript Object Path gets lost when using Hook for eTypesExtraFormFields TypoScriptObject
* Fixed issue: #14226: Mapping TS always makes it HSC=1 // Review eType preset behaviour
* Fixed issue: #13950: Page TOs with static DSs show up in all sites and do not honor GRSP
2010-05-18 Tolleiv Nietsch <[email protected]>
* Fixed issue: #14346: External URL with no urltype not shown up (Thanks to Benjamin Mack)
* Fixed issue: #13079: Followup: Hooks to reprocess lKey and vKey.
2010-05-02 Tolleiv Nietsch <[email protected]>
* Fixed issue: #14253: Disable drag&drop feature on a per-user and a per-pagebranch basis
* Fixed issue: #12204: Missing clause in XHTML conditional comments like <!--[if lte IE 6]>
2010-04-29 Tolleiv Nietsch <[email protected]>
* Fixed issue: #14213: "To Top" checkbox is missing in FlexContent (Thanks to Patrick Gaumond)
* Fixed issue: #11842: mapping type RANGE not available when tag has both id and class attribute (Thanks to Jigal van Hemert)
2010-04-25 Tolleiv Nietsch <[email protected]>
* Fixed issue: #14162: Feature(tte): Make current field's name available as register (Thanks to Francois Suter)
* Fixed issue: #14056: static ds wizard error-handling improvement if conf is missing
* Fixed issue: #13936: noEditOnCreation don't work with static DS
* Fixed issue: #12950: Add an option to tt_content , for disabling drag/drop
2010-04-20 Tolleiv Nietsch <[email protected]>
* Fixed issue: #13975: hasElementForeignReferences might cause maximum execution time error
2010-04-17 Tolleiv Nietsch <[email protected]>
* Fixed issue: #14141: Drag&Drop should scroll automatically
* Fixed issue: #14136: JavaScript Problem - Drag and Drop (Thanks to Frank Hirsch)
2010-04-13 Tolleiv Nietsch <[email protected]>
* Fixed issue: #14083: global variable 'fileadminDir' not replaced by its value in help text under new site wizard
2010-04-12 Tolleiv Nietsch <[email protected]>
* Fixed issue: #14082: specialDoktype handling for doktype 2 obsolete
* Fixed issue: #14081: specialDoktype pages should use FlashMessages
* Fixed issue: #14080: "No Access" page should use FlashMessages
2010-04-11 Tolleiv Nietsch <[email protected]>
* Reverted changes for #10370: Implement new content element wizard
* Fixed issue: #7082: Configuration to handle inheritance DS like disabled
* Fixed bug: #14036: compat_version comparision is used wrong
2010-04-10 Tolleiv Nietsch <[email protected]>
* Fixed bug: #13873: TemplaVoila should use a docHeader as well (mod1)
2010-04-06 Michael Klapper <[email protected]>
* Follow up to bugfix: #0012257: New Feature: localizable title fields
2010-04-05 Tolleiv Nietsch <[email protected]>
* Fixed bug: #13864: Flags in non-used elements shouldn't be wrapped to next line (Thanks to Jerome Blum)
2010-03-30 Tolleiv Nietsch <[email protected]>
* Fixed bug: #13807: sorting CEs via list mode broken if translation 'diff' exists (Thanks to Jan Hacker)
* Fixed bug: #12805: Interferences TV and feeditadvanced
* Fixed bug: #13921: Browse and paste icons available if no edit rights (Thanks to Chris Müller)
* Fixed bug: #13930: HTML-Path is wrong in case of mapping-errors
2010-03-27 Tolleiv Nietsch <[email protected]>
* Fixed bug: #13929: Unlinking referenced item triggers JS-error in IE8
* Fixed bug: #13831: "Browse for records" doesn't work in IE8, JavaScript Error
2010-03-26 Tolleiv Nietsch <[email protected]>
* Fixed bug: #11550: "Create reference" button of a content element isn't visible for users without write access (Thanks to Stig Nørgaard Færch)
2010-03-25 Tolleiv Nietsch <[email protected]>
* Fixed bug: #13912: Handling of static DS is not compatible with DBAL/Oracle (Thanks to Xavier Perseguers)
* Fixed bug: #13914: PHP Syntax error in mod2/index.php (Thanks to Sascha Egerer)
2010-03-11 Tolleiv Nietsch <[email protected]>
* Fixed bug: #13783: Content Element Preview Should Show CType Label (Thanks to Jeff Segars)
* Fixed bug: #13052: New Content Element Wizard didn't load (Thanks to Jan Perdoch)
2010-03-09 Steffen Kamper <[email protected]>
* Fixed bug: #13776: Cannot unset HSC for input type Plain Input Field
* Fixed bug: #13764: Changing eType in mapping module remains HSC=1
2010-03-07 Tolleiv Nietsch <[email protected]>
* Fixed bug: #11912: usergroup options for disabling the "paste as reference"-Function, when copying a FCE
* Fixed bug: #13725: [pre-1.4.2] JavaScript errors when opening page module (in TYPO3 4.2)
* Fixed bug: #13756: Clicking the configuration tabs in mapping module scrolls windows
* Fixed bug: #13755: t3lib_BEfunc::getSetUpdateSignal() will be deprecated in TYPO3 4.5 (patch b)
* Fixed bug: #13762: Elements on New page -templateselector don't indicate clickability
2010-03-06 Tolleiv Nietsch <[email protected]>
* Fixed bug: #4931: SQL error with Templavoila/DBAL/PostgreSQL: Different language (Thanks to Mathias and Xavier)
2010-03-04 Tolleiv Nietsch <[email protected]>
* Fixed bug: #13724: misspelled enable.selectDataStructure in ext_conf_template.txt (Thanks to Darren Clark)
2010-02-27 Tolleiv Nietsch <[email protected]>
* Fixed bug: #12257: localizable ds/to title fields
2010-02-23 Tolleiv Nietsch <[email protected]>
* Fixed bug: #13594: Fatal error: Cannot use string offset as an array in class.tx_templavoila_pi1.php on line 509
2010-02-22 Steffen Kamper <[email protected]>
* Fixed bug: #13607: SelIcons for DS/TO are all rendered in one row
2010-02-22 Tolleiv Nietsch <[email protected]>
* Fixed bug: #13587: Selecting of template object in content element
* Fixed bug: #13606: BLOB is too small for large mappings
2010-02-13 Tolleiv Nietsch <[email protected]>
* Fixed bug: #13165: improve flexform reference-lists and workspace behaviour
* Fixed bug: #13533: DS/TO selectbox can't handle static datastructures from extensions.
* Fixed bug: #13527: Typoscript default should be better with Templavoila
2010-02-13 Steffen Kamper <[email protected]>
* Follow-up to bugfix #13392: "Update Mapping" isn't clear for new users
* Updated manual with new content element wizard configuration
* Fixed bug: #13526: selectbox for updating existing Data Structure / Template Object does wrong grouping if more sysfolders with the same name (Thanks to J�rg Winter)
* Fixed bug: #13052: New Content Element Wizard didn't load
2010-02-12 Steffen Kamper <[email protected]>
* Fixed bug: #13509: staticDS wizard doesn't deselect checkboxs, shoudn't render submit after last step
* Fixed bug: #13514: EM setting says "enable.selectDataSource" which is not understandable
* Fixed bug: #13483: Page Templates appear alongside FCEs in New Content Wizard when using Static Data Structures (Thanks to Jeff Segars)
* Fixed bug: #13521: New page wizard has wrong sql-query with staticDS
2010-02-11 Steffen Kamper <[email protected]>
* Fixed bug: #13482: Browse Links Popup for Template Object File Reference should only allow text files (Thanks to Jeff Segars)
2010-02-10 Steffen Kamper <[email protected]>
* Updated manual
* Follow-up to bugfix #13465: Edit link for referenced elements are inconsistent
* Fixed bug: #13066: New Site Wizard is broken
2010-02-08 Steffen Kamper <[email protected]>
* Fixed bug: #13469: New Page Wizard don't use previewIcon for default TO
* Fixed bug: #13465: Edit link for referenced elements are inconsistent
* Fixed bug: #13460: New created DS/TO has wrong save/save and exit after first saving
2010-02-07 Steffen Kamper <[email protected]>
* Fixed bug: #13454: Possible hide of "New Site Wizard"
* Fixed bug: #13413: When using translationParadigm=free there is no possibility to disable the copy for translation links
* Fixed bug: #13400: Selector for Subtemplates doesn't respect pageTS settings
2010-02-02 Tolleiv Nietsch <[email protected]>
* Fixed bug: #13397: Fatal error due to cloned class definitions in tempalvoila/classes/preview/* (Thanks to Peter Foerger)
2010-02-02 Steffen Kamper <[email protected]>
* Fixed bug: #13392: "Update Mapping" isn't clear for new users
2010-02-01 Steffen Kamper <[email protected]>
* Changed label "Mapping is up to date."
* Fixed bug: #13387: Object and Param tag cannot be mapped
2010-02-01 Tolleiv Nietsch <[email protected]>
* Fixed bug: #13382: ext_autoload.php missing
* Fixed bug: #8375: Tables entered via RTE break backend layout
2010-01-27 Steffen Kamper <[email protected]>
* Fixed bug: #13150: Allow edit of oldStyleColumnNumber in mapping module
2010-01-27 Tolleiv Nietsch <[email protected]>
* Fixed issue: #13235: Pre- & Postprocessing Hook for handleIncomingCommands
* Fixed bug: #13261: extension load order might prevent wizardItems from extensions
2010-01-22 Steffen Kamper <[email protected]>
* Fixed bug: #13328: Don't link to file_edit.php if staticDS comes from extension
* Fixed bug: #13256: Installing Mininews breaks database driven DS/TO handling
2010-01-20 Steffen Kamper <[email protected]>
* Fixed bug: #13286: mod2 is not localized
2010-01-19 Tolleiv Nietsch <[email protected]>
* Fixed bug: #13278: "New" and "Browse" buttons don't seem to work properly after Drag&Drop
* Fixed bug: #13276: makeLocalRecord pointer isn't updated during drag&drop
* Fixed bug: #13275: sortable_updatePasteButtons not needed anymore
* Fixed bug: #11520: DS Tag for Hiding Field Preview Data (part 2)
* Fixed bug: #13154: Deleting the last element from a section in an FCE crashes rendering
* Fixed bug: #3843: Unmapping does not hide ce field in page module
2010-01-18 Steffen Kamper <[email protected]>
* Follow-up to bugfix #13180: Sanitize returnUrl
* Corrected typo in extConf language file
2010-01-17 Tolleiv Nietsch <[email protected]>
* Fixed bug: #13274: delete icon carries wrong css-class
* Fixed bug: #4585: Wrond links for editing content stored in page flexform
* Fixed bug: #13268: ReturnURls after the sidebar was reloaded aren't correct
2010-01-13 Steffen Kamper <[email protected]>
* Follow-up to bugfix #13225: Cleanup invalid html in page module
* Fixed bug: #13225: Cleanup invalid html in page module
* Fixed bug: #13213: page module calls pagerenderer too early
2010-01-10 Steffen Kamper <[email protected]>
* Fixed bug: #13159: Render Button in version tab "Create version of this page" if no page version exists
2010-01-09 Tolleiv Nietsch <[email protected]>
* Fixed bug: #13174: Sub Page Datastructure Field missing (Part2)
2010-01-08 Steffen Kamper <[email protected]>
* Fixed bug: #13180: Sanitize returnUrl
2010-01-08 Tolleiv Nietsch <[email protected]>
* Fixed bug: #13174: Sub Page Datastructure Field missing
* Fixed issue: #13079: Hooks to reprocess lKey and vKey in pi1
* Fixed bug: #13001: new page wizard should respect TCEFORM.pages.* settings
2010-01-06 Steffen Kamper <[email protected]>
* Fixed bug: #11521: Allow include of javascript files in pagemodule
* Fixed bug: #13157: cm2 has no back functionality if returnUrl is given
* Fixed bug: #13158: Inconsistent Tabs
2010-01-05 Steffen Kamper <[email protected]>
* Fixed bug: #13149: Empty page after "Save and exit" of changing existing DS/TO
* Follow-up to bugfix #2081: Using static DSes for Page and FCE
* Fixed bug: #4171: New Record Wizard confusing selection -> Hidding 'Default template'
2010-01-04 Steffen Kamper <[email protected]>
* Fixed bug: #13105: Bugfix: Cut and paste element
* Fixed bug: #2081: Using static DSes for Page and FCE
2009-12-30 Steffen Kamper <[email protected]>
* Fixed bug: #13089: Mapping: when creating a field eType TyposcriptObjectPath, add and then change the objectPath will be written to DS
* Fixed bug: #13032: Inform if page use content_from_pid
* Fixed bug: #13083: Not possible to update TS Object PATH
2009-12-28 Steffen Kamper <[email protected]>
* Fixed bug: #6378: When mapping to <div class="some a"> TV thinks it's an <a> tag
2009-12-27 Steffen Kamper <[email protected]>
* Fixed bug: #13103: With beLayout in TO FCEs with Container for elements are rendered wrong
2009-12-26 Steffen Kamper <[email protected]>
* Fixed bug: #12933: Show create new field also if edit a field in mapping module
* Fixed bug: #13091: Bring buttons in mapping module back to the left
* Follow-up to bugfix #13067: Missing CSS classes in page module
2009-12-23 Steffen Kamper <[email protected]>
* Fixed bug: #6244: FCE backend-labels are not localized in the preview
* Fixed bug: #13082: New CSS... for beTemplateCell CLASS (Follow-up to #13067)
* Fixed bug: #9499: Simultanious edits not possible
* Fixed bug: #13077: Enable Header for FCE's (optional)
2009-12-20 Steffen Kamper <[email protected]>
* Fixed bug: #13067: Missing CSS classes in page module
* Fixed bug: #13040: HSC switch in Mapping editor doesn't save "0"
* Follow-up to bugfix #9980: Configurable eTypes for creating fields
2009-12-19 Tolleiv Nietsch <[email protected]>
* Fixed bug: #12802: Unlink element does not refresh pages
2009-12-17 Steffen Kamper <[email protected]>
* added blindIcons and debug to manual
* Fixed bug: #13058: Icons can't be blinded in page module
* Fixed bug: #13051: browse for records
2009-12-17 Tolleiv Nietsch <[email protected]>
* Fixed bug: #12949: A drag/drop cursor is shown on the TV Page object
* Fixed bug: #13054: Drag&Drop code is hard to maintain, works only for 4.3
2009-12-16 Steffen Kamper <[email protected]>
* Fixed bug: #9980: Configurable eTypes for creating fields
* Fixed bug: #4200: Shortcut page must show content when kb_tv_cont_slide in used
2009-12-10 Tolleiv Nietsch <[email protected]>
* Fixed bug: #8762: Links to edit page content in BE lead to tt_content elements instead of page elements (Thanks to Simon Tuck)
* Fixed bug: #12996: tx_templavoila_api class should use t3lib_beFunc::getModTSconfig
* Fixed bug: #11146: Page Wizard only looks for UserTSConfig, not for PageTSConfig
* Fixed bug: #12989: Cleanup: cm1/styles.css holds lots of duplicate code
2009-12-09 Steffen Kamper <[email protected]>
* Fixed bug: #12942: Bugfix: Section-"Flag" is lost during Modify DS/TO
* Fixed bug: #12973: Allow beLayout template file for TO and DS
2009-12-04 Tolleiv Nietsch <[email protected]>
* Fixed bug: #12916: Field name is not visible in BE module with detail view (thanks to Francois Suter)
2009-12-01 Tolleiv Nietsch <[email protected]>
* Fixed bug: #0012877: Missing semicolon in dragndrop.js (thanks to Sebastian Gebhard)
2009-12-01 Steffen Kamper <[email protected]>
* Fixed bug: #12868: The new media element will not show up in NewCeWizard because of wrong object path (Thanks to Uschi Renziehausen)
2009-11-28 Tolleiv Nietsch <[email protected]>
* Follow-up to bugfix #12564: Localization view overlaps labels and doesn't align
* Fixed bug: #12826: "TemplaVoilà " accent missing or wrong in some labels
* Fixed bug: #12819: Mapping module labels are messed up
* Fixed bug: #12804: Unlink icon doesn't hide the "unlinked" item
2009-11-27 Steffen Kamper <[email protected]>
* Fixed bug: #12797: Activating delete icon does not work
* Fixed bug: #10652: drag&drop of page contents not compatible with beLayout (Thanks to Marc Ehret)
2009-11-27 Steffen Kamper <[email protected]>
* Converted manual to the new template
2009-11-26 Dmitry Dulepov <[email protected]>
* Released version 1.4.1
2009-11-26 Steffen Kamper <[email protected]>
* Follow-up to bugfix #11180: New tag icons
2009-11-26 Dmitry Dulepov <[email protected]>
* Released version 1.4.0
2009-11-26 Steffen Kamper <[email protected]>
* Fixed bug: #11180: New tag icons
* Fixed bug: #12715: Use technique of 4.3 "New Content Element Wizard"
* Fixed bug: #12654: Allow custom "New Site Wizard Template"
2009-11-26 Tolleiv Nietsch <[email protected]>
* Fixed bug: #8353: Element is referenced instead of moved
* Fixed issue: #7263: New register for rendering of sections
* Fixed issue: #8759: Possibility to define startup language setting for FCEs instances
2009-11-25 Steffen Kamper <[email protected]>
* Fixed bug: #12564: Localization view overlaps labels and doesn't align
* Fixed bug: #12713: Unlink icon use garbage which is used for delete in core
2009-11-25 Tolleiv Nietsch <[email protected]>
* Fixed issue: #12599: Wrong function name in manual
* Fixed bug: #9071: Permisions are not calculated when in sub_elmenet view (thanks to Ingo Schmitt)
* Fixed bug: #9068: Edit Icon (pencel) is missing in sub_elmenet view (thanks to Ingo Schmitt)
* Fixed issue: #8079: possibility to skip TCEforms when adding a new FCE
* Fixed bug: #8924: processDatamap_afterDatabaseOperations won't properly work within workspaces (thanks to Jose Antonio Guerra)
* Fixed bug: #12586: delete icon isn't compatible with drag&drop
* Fixed bug: #12504: pagemodule drag'n'drop is broken when running on 4.3beta
2009-11-25 Dmitry Dulepov <[email protected]>
* Fixed bug #12752: [Safari] Bad icon positioning
* Fixed bug #10781: Allow user function to determine childTemplate
* Fixed bug #12753: Handle local TO processing better
* Fixed bug #12754: "Set" button appears twice in header parts
2009-11-24 Tolleiv Nietsch <[email protected]>
* Fixed bug: #12721: Cannot get TO with rendertype=print when using DBAL
2009-11-23 Steffen Kamper <[email protected]>
* Fixed bug: #12712: Add Hook renderElement_postProcessDataValues (Thanks to Jeff Segars)
2009-11-16 Steffen Kamper <[email protected]>
* Fixed bug: #12589: recordlist localization doesn't return to pagemodule
2009-11-14 Tolleiv Nietsch <[email protected]>
* Fixed bug: #10752: Cryptic text in the mapping interface ("Custom TCE")
* Fixed bug: #12488: Selection of Template Object in new FCE
2009-11-02 Tolleiv Nietsch <[email protected]>
* Fixed bug: #10983: Unserializing problems because of UTF-8
* Fixed issue: #12266: mod1 shows size of localprocessing two times
2009-10-19 Tolleiv Nietsch <[email protected]>
* Fixed issue #6869: $realDelete for templavoila
* Fixed bug #10756: Bad text ("TCE-Form")
2009-10-18 Tolleiv Nietsch <[email protected]>
* Fixed bug #10754: Wrong spelling of TypoScript within labels
2009-10-11 Tolleiv Nietsch <[email protected]>
* Fixed bug #10751: Abbreviations are not allowed ("only TS")
* Fixed bug #10775: Wrong spelling ("Data-Processing")
* Fixed bug #11997: modifications due to deprecated funcitons in PHP 5.3
* Fixed bug #7212: versioning-tab doesn't show up when logged in as non-admin
2009-10-01 Dmitry Dulepov <[email protected]>
* Fixed bug #11676: With PHP 5.3 clickmenu item "TemplaVoila" in File > List module isn't displayed
2009-08-09 Steffen Kamper <[email protected]>
* Added feature #9465: Disable languages for translation with mod.SHARED.disableLanguages
2009-08-15 Tolleiv Nietsch <[email protected]>
* Fixed issue #11520: DS Tag for Hiding Field Preview Data, updated documentation
* Fixed bug #11173: Unit tests utilize the Live-Database
2009-08-09 Tolleiv Nietsch <[email protected]>
* Fixed bug #11532: TV use makeInstanceClassName and fill the deprecation log
2009-08-05 Dmitry Dulepov <[email protected]>
* Fixed bug #11653: mergeFormDataIntoTemplateStructure incorrectly determines sections
2009-05-24 Tolleiv Nietsch <[email protected]>
* Fixed bug #3103: Unit tests not DBAL-ready
* Fixed bug #11174: test_localizeElement and test_localizeElement_workspaces if there is no sys_lang-record
* Fixed bug #11172: Unit test don't run within latest PHPUnit
2009-03-13 Steffen Kamper <[email protected]>
* Fixed bug #10615: Show sys_notes in Page Module
* Fixed bug #10643: Page and TO icons aren't shown anymore
* Fixed bug #10662: CREATE/UPDATE of DS/TO in TV wizard doesn't work (SVN rev. 17700)
* Fixed bug #10685: incorrect next_ds and next_to: workspace overlay missing in page module
* Fixed bug #10661: "Show XML" button doesn't work (SVN rev. 17700)
2009-03-09 Steffen Kamper <[email protected]>
* Fixed bug #10644: Links to "create" in Template Files (mod2) are broken
2009-03-08 Steffen Kamper <[email protected]>
* Fixed bug #10636: Show mapping-links and -commands while editing a field
2009-03-07 Steffen Kamper <[email protected]>
* Fixed bug #10633: cm1 need to be localized
2009-03-06 Steffen Kamper <[email protected]>
* Fixed bug #10618: Wrong returnUrl in record list
2009-03-04 Dmitry Dulepov <[email protected]>
* Moved code for getDynTabMenu in the new "New CE wizard" to be compatible with TYPO3 RFC #10601
2009-03-03 Steffen Kamper <[email protected]>
* Fixed bug #10593: External URLs of type https:// are not displayed correctly under the TV Page-Mod (thanks to Dirk Diebel)
2009-02-28 Steffen Kamper <[email protected]>
* Fixed bug #9931: Drag'n Drop patch carries destructive Sorting-Bug
* Fixed bug #7767: CSH help texts are missing (thanks to Benjamin Mack)
2009-02-27 Steffen Kamper <[email protected]>
* Fixed bug #10557: No resizing for previewIcons (DS and TO)
* Fixed bug #10553: Mapping Module loose Typoscript
2009-02-26 Steffen Kamper <[email protected]>
* Fixed bug #10548: Highlight storage folder in page tree when select a storage folder in templavoila module
* Fixed bug #10484: Add icon for hide/unhide record in page module
* Fixed bug #9529: Enhanced "Show-Details" + new DS-Editor (thanks to Niels Fröhling)
2009-02-14 Steffen Kamper <[email protected]>
* Fixed bug #9500: unable to map headerparts which are in conditional comments
2009-02-14 Steffen Kamper <[email protected]>
* Fixed bug #10446: Migration Wizzard references in just one DS_Column (typo, colpos should be colPos)
2009-02-14 Steffen Kamper <[email protected]>
* Fixed bug #10030: defined templatePath allows only one path
This allows using a commalist with "mod.web_txtemplavoilaM2.templatePath" to allow more than one path. The value gets a new default (set to "templates", was empty before). Doc change required.
* Fixed bug #10255: Use t3lib::fixed_lgd_cs instead of t3lib::fixed_lgd
* Fixed bug #10280: TEXT doesn't allow NOT NULL with Strict-mode
* Fixed bug #10026: beautify Template filelist
* Fixed bug #10436: Select Storage Folders - table is too small with more places
2009-02-06 Dmitry Dulepov <[email protected]>
* Fixed bug #10361: Remove translations from locallang files
* Fixed bug #10108: Replace t3lib_div::GPvar with t3lib_div::_GP
* Fixed bug #10362: t3lib_div::implodeParams is deprecated
* Added SVN properties
* Implementation of #10370: added initial work on new CE wizard
2009-01-27 Kasper SkŒrh¿j <[email protected]>
* Fixed a bug in the cleaner of unused elements which ignored some translations of content elements.
* Added cleaner option --excludePageIdList allowing to exclude certain pages.
* Added that language icon in Page module gets dimmed when no translation exists.
2009-01-26 Dmitry Dulepov <[email protected]>
* Fixed possible bug with "argument #1 is not an array"
2008-12-26 Dmitry Dulepov <[email protected]>
* Removed ext_php_api.dat
* Fixed bug #10020: Allow DS and TOs outside of GRSP
2008-12-19 Dmitry Dulepov <[email protected]>
* Require PHP 5.1 from now on
* Fixed bug #9985: Simplify template object selection for pages and FCE
2008-12-12 Dmitry Dulepov <[email protected]>
* Fixed bug #9564: Update PHP dependencies
* Fixed bug #9519: Feature: enable drag&drop in page module (original code by Nikolas Hagelstein from nh_tvdragndrop, adaptation by Steffen Kamper, optimisation by Dmitry Dulepov)
* Fixed bug #9930: TemplaVoila sites do not work in TYPO3 4.3
* Fixed bug #9510: Enhancement of "save to" select (thanks to Steffen Kamper)
* Fixed bug #9430: "Switch to list view"-link use absolute url
2008-08-21 Dmitry Dulepov <[email protected]>
* Added icon for FCE content element
2008-08-13 Dmitry Dulepov <[email protected]>
* Changed the order of header parts - now they appear as the first member of page.headerData
* Fixed bug #4703: On-page links gets prefixed with path to template
* Fixed bug #9118: Copy Icon not enabled if the user has no edit-rights
* Fixed bug #8858: TV does not honour TCAdefaults. from PageTSconfig
* Added header palette
* Fixed bug #4823: Remove 'Templavoila' - item in Click Menu of Filelist for editors
* Changed lockType to Local
* Release of version 1.3.7
2008-05-12 Dmitry Dulepov <[email protected]>
* RFC #8338: "Catchable fatal error" still exists
RELEASE OF TEMPLAVOILA 1.3.5
2008-04-13 Dmitry Dulepov <[email protected]>
* Added ability to hide FCE
2008-02-25 Dmitry Dulepov <[email protected]>