forked from smcmahon/Products.PloneFormGen
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CHANGES.txt
1657 lines (1140 loc) · 51.4 KB
/
CHANGES.txt
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
Change History
==============
1.7.17 (unreleased)
-------------------
- Nothing changed yet.
1.7.16 (2014-09-26)
-------------------
- Add support for the placeholder attribute for input fields.
Requires Plone >= 4.2, or Archetypes >= 1.7.14.
[thet]
- Mailer adapter looks for data grid fields that contain new File
columns and includes those files as attachments [tkimnguyen]
- Add/fix trove classifiers.
[smcmahon]
1.7.15 (2014-07-25)
-------------------
- Add Travis CI testing for Plone 4.2 and 4.3.
[smcmahon]
- Tell collective.cover that we act like a folder when dropped into a list tile.
[smcmahon]
- str() of form field value containing unicode characters causes UnicodeEncodeError.
Updating to safe_unicode per smcmahon.
[tsimkins]
- Update pt_BR translation
[ericof]
- Fix column headings not being included for server-side only fields
in saved data downloads.
[davidjb]
- Fixed issue that raise errors if gpg module is not found.
[keul]
1.7.14 (2014-01-26)
-------------------
- Packaging fix.
1.7.13 (2014-01-26)
-------------------
- Get TinyMCE working on rich text popup editing in quickeditor.
[smcmahon]
- Move most text files into package root. Eliminate version.txt. The
old locations were old Zope artifacts.
[smcmahon]
- Fixed type definition for FieldsetStart type
[naro]
- Handle unicode in gpg encrypt. Thanks, davidblewett.
[smcmahon]
- Don't show blockquote tag on thankspage if there are no fields for it.
Thanks, spereverde.
[smcmahon]
- Fix #82, "missing attribute REQUEST on copy & paste of a site containing a PFG form".
Thanks, tkimnguyen.
[smcmahon]
- Correct maxtextlength to avoid double counting of newlines. Thanks, mjfinney.
[smcmahon]
- Import folder for fieldsets from ATContentTypes rather than plone.app.folder
for LinguaPlone compatability. Thanks, Tom Gross.
[smcmahon]
- Depend on Products.CMFPlone instead of Plone.
[maurits]
1.7.12 (2013-06-20)
-------------------
- Fix exception in mailer if no recipient set. Thanks, dpc22.
[smcmahon]
- Don't fix position quickedit toolbox unless window is tall enough to display.
[smcmahon]
- Don't fail on install if the kupu tool doesn't have getPortalTypesForResourceType.
[smcmahon]
- Delete confirmation cleanup wasn't working; fixed.
[smcmahon]
- Edit/delete icons missing in quickeditor in 4.3. Fixed.
[smcmahon]
- QuickEdit toolbox covered by footer in sunburst 4.3. Fixed.
[smcmahon]
1.7.11 (2013-05-29)
-------------------
- Packaging fixes.
1.7.10 (brown bag)
-------------------
- Packaging fixes.
1.7.9 (2013-05-29)
------------------
- Remove doc string for @@gpg_services/encrypt. (Thanks, The Code Distillery)
[smcmahon]
- Clean up Popen handling in encryption, add some logging. (Thanks, The Code Distillery)
[smcmahon]
- Remove undesirable doc strings from custom script adapter methods. Add
private declarations.
(Thanks, The Code Distillery)
[smcmahon]
- Remove undesirable doc strings, set private on mail adapter's setBody_pt.
(Thanks, The Code Distillery)
[smcmahon]
- remove undesirable doc string from fgGetSuccessAction.
(Thanks, The Code Distillery)
[smcmahon]
- Add traversal hacks to block TTW reads of several text, template, tales and python
attributes.
(Thanks, The Code Distillery)
[smcmahon]
- remove undesirable doc string from onSuccess.
(Thanks, The Code Distillery)
[smcmahon]
- Protect "member*" convenience methods from traversal TTW.
(Thanks, The Code Distillery)
[smcmahon]
- Add plone.protect auth checks to quick editor AJAX functions.
(Thanks, The Code Distillery)
[smcmahon]
- Require authenticator for clearing form data TTW
[smcmahon]
1.7.8 2013-04-10
----------------
- Added zcml autoinclude. Looks like "Products" packages are no longer blessed.
[smcmahon
1.7.7 2013-03-18
----------------
- Added inline js to fg_base_viewp3.cpt to disable Plone 4.3's non-kss
inline validation for Archetypes. Note that this depends on a fix pushed
to 4.3.x after 4.3rc1. Without that fix, inline validation will be
attempted anyway; it's invisible except for log entries.
[smcmahon]
- Fix incompatability of localtime formatting for datetime fields
with Plone 4.3.
[lewicki]
- types with spaces in their ids should work with quickedit
[datakurre]
- fix problem where multiple rating scales on one page
would all have the same title. Will have to re-create
rating scale fields to fix existing.
[vangheem]
- Add the calendar javascripts needed to display correctly
the calendar widget in a portlet
[sgeulette]
- add new ccOverride field
[znbn]
- toolbar position is now fixed
[vangheem]
- fix quickedit not working when using form as default view.
[vangheem]
- use full name when getting a default to address
of the form.
[vangheem]
- add plone.belowcontenttitle viewlet
[vangheem]
- Removed backwards compatibility. The 1.7 series requires Plone 4.1.
[maurits]
- If an active action adapter is renamed, keep it active.
[maurits]
1.7.6 2012-12-06
----------------
- 1.7.5 Accidentally reverted the "Do not explicitly set the MIME-Version" change
from 1.7.3. Fixed. [smcmahon]
- Add field selection to save data adapter so that some fields can
be ommitted if desired, like in the email adapter.
[cguardia]
1.7.5 2012-11-30
----------------
- i18n support updated, added some missing strings, Italian translation updated
[giacomos]
- Change some i18n strings not to have duplicates, regenerated po files and
basque translation. [erral]
- 4.3 import compatability fix. [tomgross]
- Fix FileField compatibility with latest Archetypes [do3cc]
1.7.4 2012-11-04
----------------
- Add a browser view for encryption so that it may be used a bit
more generally.
[smcmahon]
- Clean up encryption error handling.
[smcmahon]
1.7.3 2012-10-23
----------------
- Get encryption working with Python 2.6.
[smcmahon]
- Do not explicitly set the MIME-Version as this would lead to a
duplicate header, which can give problems with some mail servers.
[maurits]
1.7.2 2012-08-16
----------------
- Make the dragging hook in the quickeditor order column show
a move cursor.
[smcmahon]
- quickedit.js had a case where "$" was used as an unguarded
alias for jQuery. This interacted with a kss.core bug to kill
all quickedit js functionality on IE 8. Fixed.
[smcmahon]
- Fix selectors to work with latest jquery
[vangheem]
1.7.1 2012-02-13
----------------
- Fix override disabling of fields with vocabularies.
- Fix issue #20: "email validation text is wrong," which would also
affect several other error strings. Thanks, sunew!
- Fix issue #22: "RichLabel Widget displays '1' instead of label text
after submitting form whith not all required fields provided."
Thanks, ksuess!
- Partially Fixed issue #18 (new, github tracker): "BadRequest after
adding a new thanks page if link integrity checking is enabled" by
removing link from default nosubmit message. A fix that will allow
importing, cutting and pasting of old versions will need work. Thanks,
datakurre!
1.7.0 2011-11-16
----------------
- Add archetypes viewlet manger in forms before & after fieldsets
[jfroche]
1.7rc1 2011-11-08
-----------------
- Add accordion for widgets in quick edit mode.
[smcmahon]
1.7b7 unreleased
----------------
- Some validation messages were partially untranslatable. Github issue
"Validation error of isEmail validator is not translated," thanks markvl.
[smcmahon]
- Eradicate rounded corners in quick edit toolbox.
General quick editor style cleanup.
[smcmahon]
- Updated Catalan (ca) and Spanish (es) translation
[arielvb]
- Fixed a test that changed the working directory, but failed to change it
back to the original. This was resulting in zero test results when using
collective.xmltestreport. [pumazi]
- Added dependencies Plone and Products.Archetypes.
[pumazi]
- Created the test extra requirement to pull in collective.funkload for tests.
[pumazi]
- Updated basque (eu) translation
[erral]
- Provide compatibility with DateTime 3.
[hannosch]
1.7b6 2011-10-17
----------------
- Declare dependency on CMFCore's configuration to make sure that its
permissions are loaded early enough in Plone 4.1.
[davisagli]
- Grant the Site Administrator role most of the PloneFormGen-related permissions
by default.
[davisagli]
- More accurately identify validation errors in Google Analytics tracking.
[yomatters]
- Re-add ability to override edit macros like for other Archetypes content types
1.7.9 (unreleased)
- Nothing changed yet.
1.7.8 (2013-04-10)
[davisagli]
- change i18n domain of quickedit template from plone to ploneformgen
[toutpt]
- locales rebuild & update french translations
[toutpt]
1.7b5 2011-07-03
----------------
- Disable right and left columns in QuickEdit.
[smcmahon]
- Fix to problem viewing form fields independently was inadequate if prologue
or epilogue actually existed. Thanks, Eggert Ehmke.
[smcmahon]
1.7b4 2011-06-16
----------------
- Move fieldset markers into a separate part of quickedit toolbox.
[smcmahon]
- Fix popen2 deprecation warning by using subprocess
[toutpt]
1.7b3 2011-06-14
----------------
- Add fieldset begin/end markers; these will replace fieldset folders going
forward so that fieldsets may work better with the quickeditor. Fieldset
folders will still work, but will not be addable by default.
[smcmahon]
- Fix German translation of RangeValidator
[fRiSi]
1.7b2 2011-06-05
----------------
- In quickedit, normalize required markers to Plone 4 style (after the label)
so that we can use the same js for p4 and p4.1.
[smcmahon]
- Drag and drop stopped working in 4.1 due to loss of id context in
placeholder. Fixed.
[smcmahon]
- Previous fix to duplicate action adapters did not preserve order of
execution. Fixed.
[smcmahon]
- Fix misleading failure in attachments tests. Test didn't account for
quick editor changes.
[smcmahon]
- Form fields could not be independently viewed in Plone 4/4.1.
[smcmahon]
- Fixed issue with image captions not displaying in form prologue/epilogue
[dextermilo]
1.7b1 2011-05-21
----------------
- Load ZCML for collective.js.jqueryui.
[davisagli]
- Add collective.portlet.itemview integration.
[toutpt]
- Use sets to avoid duplicate action adapters in form.py. Fixes
http://plone.org/products/ploneformgen/issues/263
[tkimnguyen]
1.7a2 2011-03-26
----------------
- Add confirm dialog for clearing saved data. The dialog text should
be translatable with msgid clear-saved-input-confirm.
[stevem]
- Add plone.protect tests to saver's clearSavedFormInput.
[stevem]
- Get quickedit's drag and drop working with actions as well as fields.
[stevem]
- Use collective.js.jqueryui instead of an embeded version custom of jqueryui.
make it easy to integrate with other add-ons.
Switch profile version from the egg version to an integer to increase with
each changes done on the profile.
[toutpt]
- Add Norwegian translations
[mj]
1.7a1 2010-12-28
----------------
- Move quickedit functionality into a separate view rather than a
JavaScript manipulation of the standard view.
[stevem]
- Put the css, especially extra css for specific fields, into the
style_slot.
Fixes http://plone.org/products/ploneformgen/issues/299
[maurits]
- Added simple translation layer for messages embedded in JS.
[stevem]
- Remove 2.5 support setup profile and templates. 2.5 hasn't been supported since
1.6. Stripped all the "not HAS_PLONE30" code.
[stevem]
- Get validator.js from plone.app.jquerytools. This requires plone.app.jquerytools>=1.2dev.
1.2dev is available as p.a.jqt's svn trunk at this moment.
[stevem]
- Move some of the .js and .css resources into a browser resource directory
to begin cutting down on the namespace clutter.
[stevem]
- Merged Manca's GSOC branch (-r 118406:123569)
[stevem]
- javascript based validator using "validator" plugin for jQueryTools
(Manca)
- added widgets manager pane in quick edit mode
(Manca)
- new styles for form and widgets manager
(Manca)
- Fixed Thanks pages radio buttons, where all inputs had their own forms, instead of only one
(Manca)
- Fixed ordering of fields in edit mode. Another request was sent to server when the "exit edit mode" button was pressed
(Manca)
- Implemented jQuery UI plugin for better sorting, dragging and dropping fields
(Manca)
- On the fly editing Field Titles (by double clicking on its label)
(Manca)
- Ajax feedback image for all the ajax based actions (near Widgets Manager header)
(Manca)
- Edit and Delete table columns merged under one called "Actions"
(Manca)
- Added on the fly toggling of required attribute for available fields
(Manca)
- Optimized code for ajax requests
(Manca)
- Widgets in widget manager stylized
(Manca)
- Added tooltip for each widget to show its description
(Manca)
- Widgets can be dragged to sortable list
(Manca)
1.6.0b4 (unreleased)
--------------------
- Make the setPrefix and setAction methods of the embedded view callable
from restricted Python (so they can be used in templates).
[davisagli]
- Make sure the fgTDefault expression gets evaluated with the field object
as its expression context object when the field is viewed directly.
(The field object is used when evaluating fgTDefault when viewing the entire
form, but the form object was previously used when evaluating it when viewing
the field, which was a problematic inconsistency.)
[davisagli]
1.6.0
-----
- Declare downloadSavedInput as z3 permission to be able to use it as
browser view permission in another package.
[naro]
- Avoid deprecation warnings for InitializeClass in Plone 4.
[hannosch]
- Fixed LinguaPlone compatibility in Plone 4. The form folder was missing
the required base classes. This closes
http://plone.org/products/ploneformgen/issues/301.
[hannosch]
- Switch to a more realistic request for the functional tests to avoid
translation errors during validation in p4.
[stevem]
- Define 'portal' variable in fg_base_view_p3. If portal is not defined,
widget javascript is not found and thus not loaded.
[naro]
- Fixed "NameError: global name 'none' is not defined" in save data
adapter when using LinguaPlone.
[maurits]
- fixed LikertField having invalid fields in it's get and set methods.
[vangheem]
1.6.0b4
-------
- Update all schemas to use message factory instead of _msgid. Now it is
i18ndude compatible, so you can use rebuild pot script.
[toutpt]
- Clean up quick edit visuals; make the drag and drop look like Plone 4.
[stevem]
- Quick Edit reload after delete or other change wasn't working (at least in
firefox) as the browser wasn't reloading if there was a hash tag.
[stevem]
- Fix FormSaveDataAdapter to transparently
migrate storage to LOBTree introduced in 1.6.0b4
This closes http://plone.org/products/ploneformgen/issues/295
[hplocher]
- Updated exportimport to use five.formlib.
[vangheem]
- Add form tracking plugin for collective.googleanalytics. (Matt Yoder)
- Switch to using a hash rather than a query string for indicating
quick edit mode. More stable since the browser doesn't care.
(Steve McMahon)
- fieldset.py: fixed missing import
- action adapter interface: fix indention
[seletz]
1.6.0b3
-------
- Add infrastructure for upgrade steps. (David Glick)
- Form prologues and epilogues weren't showing for anon users.
Thanks, Ricardo! (Steve)
- Fix styling of quick edit for P4; also header injection. (Steve)
- Fix preferences panel. (Steve McMahon)
- Make sure the non-default profiles don't show up when creating a new site in
Plone 4. (David Glick)
- Use an LOBTree to store results in the saved data adapter when available
(i.e. with ZODB>=3.8.x), allowing us to stop keeping track of the result
count in the _inputItems attribute, thereby greatly reducing the number of
write conflicts under load. (David Glick)
1.6.0b2
-------
- Adjust ScriptableFields version requirements.
1.6.0b1
-------
- Accept Canadian postal codes with lowercase letters. (David Glick)
- Fix issue where the saved data adapter did not save data when using an
embedded form whose action on success is to traverse to another page.
(Thomas Buchberger, David Glick)
- Plone 4 Compatibility.
- Save Data Adapter now checks for existence of LinguaPlone canonical
language form's adapter before trying to use it.
Thanks, Jean-Pascal Houde. Fixes #270.
1.5.5
-----
- Add infrastructure for upgrade steps for the GenericSetup profile.
(David Glick)
1.5.4
-----
- Restoring tests to the distribution restored the Windows install problem.
Yuck. Reverted deletion of MANIFEST.in. Those needing to run the tests
should check out PFG from svn. (Steve)
1.5.3
-----
- Don't try to get the recipient e-mail from the owner of the form folder if
the user no longer exists. (David Glick)
- Add a 'show_text' option for fg_embedded_view_p3 which causes the prologue
and epilogue to be displayed. (David Glick)
- Restore tests pruned in 1.5rc2, hoping using zip rather than tgz will fix.
(SteveM)
1.5.2
-----
- Fix for #262, File Field does not send attachment.
(David Glick; thanks, Melnychuk Taras)
- Fix for #261, PFG misbehaves on hidden fields.
(Thanks, Ralf Hemmecke)
- Changed the wording of the postal code validator to say "postal code"
instead of "zip code," since the former is understandable in both the US and
Canada. (David Glick)
1.5.1
-----
- Adjusted the isZipCode string validator to also accept Canadian postal
codes. (David Glick)
- Fixed embedded forms so that traversal to a thank you page works properly
with VirtualHostMonster URLs. (David Glick)
- The mail adapter field selection wasn't working with attachments.
(Fixes #256, thanks Angela Wong)
1.5.0
------
- We weren't using the fg_thankspage_view_p3 view with Plone3+, an error in
the switch to GS. (Fixes #252, thanks Matthew Sital-Singh)
- Fixed fieldset settings 'Show Title as Legend'
(Radim Novotny)
- Boolean (checkbox) required field behavior was not as advertised. Probably due
to a change in archetypes at some point. Making a checkbox required will now do
nothing but show the required indicator. (Fixes #202, thanks Dylan Jay)
1.5rc2
------
- Pruned tests directory from the Python Package. Installation had been failing
on some Windows machines while copying the deeply nested tests. We're guessing
that path length restrictions were exceeded. Those needing to run the tests
should check out PFG from svn. (Steve)
- Factored action adapter processing out of the fgvalidate method of the form
folder, and added a 'skip_action_adapters' parameter to fgvalidate (default:
False), so it's possible to validate without calling the action adapters, or
vice versa. (David Glick)
1.5rc1
------
- Add "action" to form tags for quick editor to be more XHTML compliant.
(Thanks: jonstahl, #248)
- Fix bad numbering of savedata_tabview
(gotcha)
- Prevent the automatic action adapter activation handler from
duplicating an adapter that is already activated. (Fixes #247)
(David Glick)
- Prevent creation of sample content when forms are imported from
.zexp or schemas are recreated. (Fixes #218; Thanks Marie Robichon)
- Added warning on startup if PFGCaptchaField is still installed.
(David Glick)
- The captcha field edit should not show default, length ...
fields that are not relevant. (Steve)
- If mail adapter received a UTF-8 subject where it expected unicode,
a unicode decode error would result. Fixed. (Thanks, javimansilla)
(merge from 1.2-Maintenance branch)
- Corrected URL for audio captcha icon. (David Glick)
- Added the CHANGES.txt to the long_description so that it show up on
pypi, Hello World! Also cleaned up the reST so that it will render
properly (claytron)
1.5b5
-----
- Fix bad eggification of 1.5b4.
1.5b4
-----
- Changed a few field titles to friendlier names: boolean -> checkbox,
integer -> whole number, fixed-point -> decimal number. (Steve McMahon)
- Merged branches/davisagli-captcha, providing a CAPTCHA field utilizing
either collective.captcha or collective.recaptcha. (Thanks, David Glick!)
- Reworked install strategy for allowed content types for form folders and
fieldsets to determine what's allowed by interfaces rather than GS profile.
This makes it much easier to add fields, adapters and thanks pages from
outside. (Steve McMahon)
- Fixed a problem with boolean fields in later Zope/Archetypes. (Tracker
#244)
- QuickEdit got mixed up with fields that themselves contain
tables. Fixed. (Steve McMahon)
- When using Zope 2.9.10 and Plone 2.5.x, form validation would produce an
Unauthorized error in fgvalidate_base. Fixed.
(Tracker #233; Thanks, Jean-Pascal Houde)
- Moved PFGDataGrid from examples/ to be a separate product.
(Steve McMahon)
- Make uninstall work cleanly even if Kupu has bad linkable types.
(Steve McMahon)
- Make the mailer subject variable substitution use the same method as for
the other fields so it's easier to override. (David Glick)
- Prevent embedded forms from hijacking the portal status messages unless the
form was actually submitted. (David Glick)
- Add hooks for configuring form unload protection and auto-focus, and disable
them for embedded forms by default. (David Glick)
- Fixed issue where submission of an embedded PFG form could cause processing
of a standalone PFG form later in the page. (David Glick)
- Fixed issue with embedded forms where the form would get processed again
after a Retry if the form was also embedded on the thank you page. (David
Glick)
- Patched plone.app.portlets to not catch the Retry exception, which was
causing problems when submitting forms embedded in portlets. (David Glick)
1.5b3
-----
- Fixed the link spam validator for text fields, which wasn't working
properly. (David Glick)
- Merged CAPTCHA field implementation from PFGCaptchaField (thanks Thomas
Buchberger), and added collective.recaptcha as a dependency.
collective.captcha will be used instead if it is present in the Python
environment.
(David Glick)
- Fixed check for CSRF protection support, so that PFG doesn't break on
Plone 3.0 if PloneHotfixCVE20080164 isn't installed. (David Glick)
- Creating a new data saver could under obscure circumstances cause an
exception "AttributeError: SavedFormInput" in some old compatibility code.
Removed the offending code. (Steve McMahon)
- Add some protection against trying to save old, unusable content types
back to kupu's linkable's resource. (Steve McMahon)
- guess_content_type, used in htmlValue in the file field, needs the same
import protection used in the save data adapter, or it will fail in
later Zopes. (Thanks, Tom Gross)
1.5b2
-----
- Support for export/import of PloneFormGen form folders via generic setup
profiles and the portal_setup tool as well as contextual form (i.e. on an
individual form basis) export/import. Feature aimed at improving the
development capabilities of PloneFormGen and simplifying the lives of
integrators. Feature considered experimental. Use with care and test
thoroughly. (Andrew Burkhalter)
- Make sure server-side only fields can supply a value via the default override.
(David Glick)
- Don't break old forms that are missing some of the new fields. (David Glick)
- Add quick edit mode for forms. (Steve McMahon)
1.5b1
-----
- Added 'Server-Side Variable' override so that you can make an expression
available to action adapters without passing it in a hidden field.
(Fulvio Casali, Alex Tokar, David Glick)
- Add ${key} style substitution from form dictionary
for mailer subject, prologue, epilogue and footer. Also,
ThanksPage prologue and epilogue. (Steve McMahon)
- Add CSRF protection option (on by default). [Plone 3 only] (Steve McMahon)
- Added support for choosing an alternate csv text delimiter for Save Data
Adapters. (Jesse Snyder)
- Adapters are now activated when pasted into form folders. (Jesse Snyder)
- Added 'force SSL' option for form folders. (David Glick)
- Removed validator from the form action override field. This allows
relative urls in the override. (Michael Dunlap)
- Add Bcc override for mailer. (Steve McMahon)
- Validator for multiple comma separated email addresses is now an
option for string fields. (Paul Bugni)
- Added "Include Empties" flag to mailer. On by default. Similar to
thanks page. (Steve McMahon)
- Wrap rendered rich label fields in div with selectors similar to
other Archetypes widgets. (Steve McMahon)
- The default view of all form fields is now base_edit. There's a
UI problem left that the "view" tab is selected on initial jump
into the field even though you're seeing the edit view.
(Steve McMahon)
- Link spam prevention is now an option for string and text fields.
(Jon Baldivieso)
- Allow use of any string field for mailer recipient choice. A bit
scary until we get captchas built in. (Steve McMahon)
- Mailer now has an option to select among available fields those
which should be included in the e-mail. Interface is identical to
thanks page. (Steve McMahon)
- Added support for embedding PFG forms into other templates. See
README_EMBEDDING.txt for details. [Plone 3 only] (David Glick)
- Clean out 2.1 compatibility code. Ahhhh! (Steve McMahon)
- Pulling out removeSkinLayer for arg PloneFormGenPlone3, since
this appears to have not existed and certainly is unnecessary
currently (Andrew Burkhalter)
- Removed unneeded and unused legacy typesonly profile directory
(Andrew Burkhalter)
- Installation process is entirely based upon GenericSetup extension
profiles to the level that is pragmatic for support of Plone 2.5.x
up to version Plone 3.x. In brief, this means that we have an install
method so that we appear installable with the portal_quickinstaller
tool in Plone 2.5.x and that we run relevant profiles in portal_setup
upon install (Jesse Snyder, Andrew Burkhalter)
1.2.5
-----
- Integrate Portugese translation from Nuno Cruz.
- Form submission should not be disabled when the form is locked for
editing.
- Fixed bug where 3rd-party additions to the list of types allowed
within a form folder were purged on PFG reinstall.
This closes http://plone.org/products/ploneformgen/issues/210
(David Glick)
- Fixed bug where install failed if portal_factory still references
any types that no longer exist in portal_types.
(David Glick)
1.2.4
-----
- Added Rating-Scale Field based on Titus Anderson's LikertField.
Thanks to Titus and the University of Louisville.
- Add delete capabilities to Andreas' record editor. Added escaping
for multi-line fields. Guarded editing with ModifyPortalContent
rather than the download permission.
- Save adapter: stored records can now be edited through the Plone UI
via the data saver's tabular view.
The edit UI is pretty basic and provides only a text field per
stored value. No fancy widgets, no validation.
(Andreas Jung)
1.2.3
-----
- Created egg framework, moved svn trunk to
collective/Products.PloneFormGen/trunk.
- Some change around Plone 3.1 caused a problem where minor version
updates of PFG would cause the formgen_tool to be created inside the
portal_quickinstaller, thoroughly fouling it up. Yuck. Fixed.
(Tracker #205; Thanks, Wouter Vanden Hove)
1.2.2
-----
- The PicklistWidget used to pick ThanksPage fields doesn't respect the
order of the value it's supplied, so let's always sort the values
into the same order as the form. (Thanks, Lucia Colombo)
- Adapt more public page templates to have Plone 3+ -specific versions.
(Tracker: 189; Thanks, Max Bloechle)
- Mailer "None" radio button choices for to_field and replyto_field
should be selected when appropriate. (Tracker 190)
- Hide useless "properties" and "references" tabs in Plone 3+.
(Thanks, ddurham)
- Added 'Contributor' to default roles allowed to create Form Folders.
(Tracker #199; thanks, Marc Nieper-Wißkirchen)
- Values in password fields were being lost whenever a form didn't
validate. While this might make sense in other contexts, it doesn't
match the common use case in PFG. Fixed. (Tracker #200)
- Mailer body prepend and append fields were showing unnecessary
and misleading text format selection boxes. (Tracker #185; Same
problem as #173)
1.2.1
-----
- Using non-ascii chars in the title of a required field would provoke a
UnicodeDecodeError on failed validation. Fixed. (Tracker #174; Thanks,
Daniel Kraft)