forked from plone/plone.app.layout
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CHANGES.txt
1050 lines (726 loc) · 27.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
Changelog
=========
2.2.6 (unreleased)
------------------
- Move .row and .cell styles from footer.pt to Sunburst main_template.
Fixes https://dev.plone.org/ticket/12156
[agnogueira]
- Add link targets for all action based links. The target can be
configured on a per-action basis.
[rpatterson]
2.2.5 (2012-01-26)
------------------
- Slightly changed the whitespace in sitemap.xml.gz.
[maurits]
- Use the link_target attribute (e.g. ``_target``) of user actions in
the personal bar, if set.
Fixes http://dev.plone.org/ticket/11609
[maurits]
- Added a page as a not-js fallback for the user dropdown menu
[giacomos]
2.2.4 (2011-12-03)
------------------
- Add the ability for the navtree strategy to suppliment the query.
Fixes a problem where the listing of default pages in navigation
trees could no longer be enabled.
[rossp]
2.2.3 (2011-10-17)
------------------
- Make Keyword viewlet link to the new p.a.search view, as well as respect
navigation root.
Fixes http://dev.plone.org/plone/ticket/12231
- Added on body a class related to subsite.
The class is named site-x where x is navigation root object id.
[thomasdesvenain]
- Treat aliases to the ``(Default)`` view of a content type also as a
view template (providing IViewView).
Fixes http://dev.plone.org/plone/ticket/8198
[maurits]
- Fix possible ZCML load order issue by explicitly loading CMF permissions.
Fixes http://dev.plone.org/plone/ticket/11869
[davisagli]
- Fix bug where getNavigationRootObject goes into infinite loop if context is
None.
Fixes http://dev.plone.org/plone/ticket/12186
[anthonygerrard]
2.2.2 (2011-08-23)
------------------
- Accessibility: Added a title and alt tag to the logo.
This fixes http://dev.plone.org/plone/ticket/11689
[fulv]
- Switching 'Skip to navigation' to be linked to the global navigation instead
of the navigation portlet.
This fixes http://dev.plone.org/plone/ticket/11728
[spliter]
2.2.1 - 2011-08-08
------------------
- Refactor getNavigationRoot to make it simpler, fixing issues when
relativeRoot is specified.
[gotcha]
- 'placeholder' attribute for the searchbox instead of the custom JS handling
of the same functionality.
[spliter]
2.2 - 2011-07-19
----------------
- Fixed validation of the personal bar for anonymous user.
[spliter]
- Replaced obsolete in HTML5 <acronym> element with <abbr>.
References http://dev.plone.org/plone/ticket/11300.
[spliter]
- Set the search form to submit to @@search in order to use the new
search results page.
[elvix]
- Updated the BaseIcon to return its html tag when called.
[elvix]
- Updated search link in <head> to link to @@search - updated search results
view.
[spliter]
- Updated searchbox.pt to be linked to updated search results view.
[spliter]
2.1.9 - unreleased
------------------
- Switching 'Skip to navigation' to be linked to the global navigation instead
of the navigation portlet.
This fixes http://dev.plone.org/plone/ticket/11728
[spliter]
2.1.8 - 2011-07-04
------------------
- Show 'Manage portlets' fallback viewlet for all ILocalPortletAssignables, not
just ATContentTypes items. This fixes
http://code.google.com/p/dexterity/issues/detail?id=183
[davisagli]
2.1.7 - 2011-06-30
------------------
- Footer viewlet have all viewlet base API (site_url, navigation_root_url, etc).
[thomasdesvenain]
- Make the bodyClass play more nice with ZopeViewPageTemplateFile.
This fixes https://dev.plone.org/plone/ticket/11825
[WouterVH]
2.1.6 - 2011-06-02
------------------
- Use getPhysicalPath instead of absolute_url_path to handle correctly
virtual hosting.
This fixes http://dev.plone.org/plone/ticket/8787
[encolpe]
2.1.5 - 2011-05-12
------------------
- Page title and logo image title are related to navigation root.
Refs http://dev.plone.org/plone/ticket/9175.
Added navigation_root_title to portal_state view.
[thomasdesvenain]
- Fix missing workflow history entry for content creation. Closes #11305.
[rossp]
- Respect typesUseViewActionInListings in sitemap.xml.
[elro]
- Use the parent url for default pages in sitemap.xml.
[elro]
- Exclude types_not_searched from sitemap.xml.
This fixes http://dev.plone.org/plone/ticket/7145
[elro]
- Reduce whitespace in sitemap.xml.
[elro]
- sitemap.xml.gz support for INavigationRoot.
[elro]
- Add MANIFEST.in.
[WouterVH]
- Make ``getNavigationRoot`` behave correctly in ``INavigationRoot``-folders
where a ``relativeRoot`` is specified.
This fixes https://dev.plone.org/plone/ticket/8787
[WouterVH]
2.1.4 - 2011-04-03
------------------
- Make the body `section-` class based on the navigation root instead of the
site root.
[elro]
- Added navigation_root to plone_portal_state.
[elro]
2.1.3 - 2011-03-02
------------------
- Fixed i18n of the "Log in to add comments" button. It was a regression
since 2.0. This fixes http://dev.plone.org/plone/ticket/11525
[vincentfretin]
2.1.2 - 2011-02-10
------------------
- Add div#content wrapper to @@contenthistorypopup. This is the only popup
that has its own template, and it needs a #content id for xdv configurations
like that of plone.org.
[smcmahon]
- Enable managing portlets of default pages.
This fixes http://dev.plone.org/plone/ticket/10672
[fRiSi]
2.1.1 - 2011-02-04
------------------
- Do not show personaltools if there aren't any user actions.
This fixes https://dev.plone.org/plone/ticket/11460
[fRiSi]
2.1 - 2011-01-13
----------------
- Update test to check for ``login`` instead of ``login_form``.
[elro]
- Remove login redirect alias. As of Plone 4.1 there is a login script.
[elro]
2.0.10 - 2011-06-02
-------------------
- Use getPhysicalPath instead of absolute_url_path to handle correctly virtual
hosting. This fixes http://dev.plone.org/plone/ticket/8787
[encolpe]
2.0.9 - 2011-05-12
------------------
- Make getNavigationRoot behave correctly in INavigationRoot-folders where a
relativeRoot is specified. This fixes http://dev.plone.org/plone/ticket/8787
[WouterVH]
2.0.8 - 2011-04-01
------------------
- Enable managing portlets of default pages. This fixes
http://dev.plone.org/plone/ticket/10672
[fRiSi]
2.0.7 - 2011-02-25
------------------
- Fixed i18n of the "Log in to add comments" button. It was a regression since
2.0. This fixes http://dev.plone.org/plone/ticket/11525
[vincentfretin]
2.0.6 - 2011-01-03
------------------
- Depend on ``Products.CMFPlone`` instead of ``Plone``.
[elro]
- Avoid creating persistent DiscussionItemContainers prematurely when items
are viewed that have commenting enabled but no actual comments yet.
[davisagli]
- Don't cache navigation_root_path and navigation_root_url contextless
http://dev.plone.org/plone/ticket/11291
[tom_gross]
- Add ids to links personal_bar when rendered as anonymous so they can be
styled. This makes behavior consistent with the authenticated personal_bar.
http://dev.plone.org/plone/ticket/10850
[eleddy]
2.0.5 - 2010-11-15
------------------
- Fix presentation view when headings have HTML attributes (such as headings
translated from reStructured Text). This fixes
http://dev.plone.org/plone/ticket/10689
[davisagli]
- Removed unnecessary memoization of the presentation view; turned its tests
into unit tests.
[davisagli]
- XHTML 1.0 Strict searchbox.pt.
This fixes http://dev.plone.org/plone/ticket/11007
[kiorky]
2.0.4 - 2010-09-28
------------------
- Fixed @@plone_context_state.view_template_id handling of content that does
not implement IBrowserDefault (Products.CMFDynamicViewFTI). It was possible
for this code to raise Unauthorized even when the user had permission to
access the default view of the current context.
[mj]
- Avoid conflict in selected tabs when the id of an excluded item starts with the
same id of an existing tab.
Fixes http://dev.plone.org/plone/ticket/11140
[WouterVH]
2.0.3 - 2010-09-15
------------------
- Translate comment messages on history
[tdesvenain]
- 'Compare' link is not available
if content type is not registered in portal_diff.
Fixes http://dev.plone.org/plone/ticket/11107.
[tdesvenain]
- Added icons to related items viewlet for file types
Fixes http://dev.plone.org/plone/ticket/10866
[cwainwright]
2.0.2 - 2010-08-03
------------------
- Use "index" instead of "render" to ease customization of next/prev and rss
viewlets.
[esteele]
- Use unicode double arrows for next/previous links instead of right/left arrow
images.
[esteele]
- Correct CSS class attribute for next/previous links.
[esteele]
2.0.1 - 2010-07-18
------------------
- Update license to GPL version 2 only.
[hannosch]
2.0 - 2010-07-01
----------------
- Removed notice about registered trademark from the footer, that's what (R)
means anyway.
[limi]
- Make sure the presentation mode warning (if the document has no headings)
displays properly. Fixes http://dev.plone.org/plone/ticket/10689.
[davisagli]
- Adding "deactivated" class to menus by default, so they won't flicker on load.
This fixes http://dev.plone.org/plone/ticket/10470.
[limi]
- Determine whether to show the history link in the byline viewlet based on
whether the user has the 'CMFEditions: Access previous versions'
permission, rather than based on whether the user is anonymous or not.
Fixes http://dev.plone.org/plone/ticket/10640.
[davisagli]
- Add an 'icons-on' class to the body when icons are enabled, so that icons
applied via CSS can also be controlled.
[davisagli]
2.0b8 - 2010-06-03
------------------
- Only show the history link in the byline on the default view. This avoids
having the links in folder listing views.
[hannosch]
- The condition on the author link in the byline was reversed.
[rossp]
- Document byline should not show history link to anonymous users.
[elro]
2.0b7 - 2010-05-03
------------------
- Fixed personal_bar.pt to not repeat the UL tag for each user action.
This fixes http://dev.plone.org/plone/ticket/10481
[xMartin, dunlapm]
- Fixed CMFContentIcon to not return a url if the getIcon lookup fails
in the same way that brain-based icons do. This fixes
http://dev.plone.org/plone/ticket/10466
[dunlapm]
- Cleaned up content history viewlets and overlays by eliminating
superfluous div tags from the output.
[dunlapm]
- Added apple-touch-icon (iPhone/iPad home screen icon) definition to
favicon.pt
[limi]
2.0b6 - 2010-04-07
------------------
- The catalog brains icon return no icon if the type's icon_expr is
empty.
[rossp]
- Extend the have_portlets check to make it possible to force a portlet column
to be enabled even if there are no portlets.
[davisagli]
- Simplified Related Items to use a definition list instead of a fieldset -
it's really not a form.
[limi]
- Change keyword/tag viewlet to be independent of the surrounding language,
and to have a class on the separator, so it can be removed when the styling
requires it.
[limi]
- Update viewlets so that this package now defines the viewlet configuration
required by the Sunburst theme, and plonetheme.classic overrides that to
achieve the old viewlet positions.
[davisagli]
2.0b5 - 2010-03-05
------------------
- Make icon descriptions' lookup of portal_type title less brittle for missing
portal_types (fall back to the portal_type id).
[davisagli]
- Further optimize the related_items view by avoiding an algorithm with
quadratic complexity.
[hannosch]
2.0b4 - 2010-02-18
------------------
- Updated history_view.pt to the recent markup conventions.
References http://dev.plone.org/old/plone/ticket/9981
[spliter]
2.0b3 - 2010-02-17
------------------
- Speed up related items viewlet by returning catalog brains instead of
full objects.
[stefan]
- Updated dashboard.pt to follow recent markup conventions.
References http://dev.plone.org/old/plone/ticket/9981
[spliter]
- Moved condition for .contentViews and .contentActions to div#edit-bar to not
include #edit-bar in tabs should not be rendered.
[spliter]
- Disabled columns in dashboard.pt with REQUEST variables according to the
recent conventions.
[spliter]
- Removing redundant .documentContent markup.
This refs http://dev.plone.org/plone/ticket/10231.
[limi]
- Moved the prepareObjectTabs method from the @@plone view to the contentviews
viewlet and introduced a class for the viewlet.
[hannosch]
- Introduce a new @@plone_layout globals view, which contains methods from the
@@plone view and which were commonly overridden to change layout policies.
[hannosch]
- Moved the history link back into the byline. This refs
http://dev.plone.org/plone/ticket/10102.
[hannosch]
- Add html id to personal bar actions.
[paul_r]
- Created several modifications of the content history viewlet to act as
standalone history page and simple popup. Old collapsible history viewlet
is still in place, ready to be wired in with zcml for anyone who needs the
old behavior.
[smcmahon]
- Fixed broken reference to portal_workflow in document_relateditems-viewlet
[tom_gross]
2.0b2 - 2010-01-31
------------------
- Use the same designation for "Plone" in the portal footer and the
colophon.
Fixes http://dev.plone.org/plone/ticket/9741.
[dukebody]
2.0b1 - 2010-01-25
------------------
- Micro-optimization for skip_links viewlet.
[hannosch]
- Update presentation fullscreen view to match current main_template's.
[hannosch]
- Simplify the TAL of the dublin core viewlet.
[hannosch]
- Avoid the overhead of a DateTime class in the footer.
[hannosch]
- Optimized the related items viewlet.
[hannosch]
- Avoid looking a "request/SearchableText|nothing" expression. Looking things
up in the entire request which aren't there most of the time is actually
somewhat slow.
[hannosch]
- Optimized the content history viewlet.
[hannosch]
- Optimize TAL code of the byline viewlet.
[hannosch]
- Registered new viewlet for related items instead of using a macro.
References http://dev.plone.org/plone/ticket/9985.
[spliter]
- Always return an id to ensure searchbox viewlet produces valid HTML
when livesearch is disabled.
Fixes http://dev.plone.org/plone/ticket/9405 - thanks saily.
[pelle]
2.0a5 - 2009-12-27
------------------
- Use the getIconExprObject method of the FTI instead of the deprecated
getIcon method.
[hannosch]
- Specified package dependencies.
[hannosch]
- Use the correct ViewPageTemplateFile from Five for the links viewlets.
[hannosch]
2.0a4 - 2009-12-16
------------------
- Do not let the homelink in the personal bar viewlet point to the
author page but to the personalize_form (or dashboard).
Fixes http://dev.plone.org/plone/ticket/8707
[maurits]
- ``plone.htmlhead.title`` was not editable TTW. This closes
http://dev.plone.org/plone/ticket/9488.
[hannosch]
2.0a3 - 2009-12-02
------------------
- Properly placed path bar above the content.
http://dev.plone.org/plone/ticket/9860
[spliter]
- plone.manage_portlets_fallback viewlet's implementation
http://dev.plone.org/plone/ticket/9808
[spliter]
- Only show diff and revert buttons for most recent version if it
differs from the working copy.
http://dev.plone.org/plone/ticket/9803
[alecm]
- Remove review_state from version history info, it's not always there
and we weren't using it.
http://dev.plone.org/plone/ticket/9816
[alecm]
- Pass the creator id to /author/ as a parameter if it contains a '/', such
as openid users.
[matthewwilkes]
- Portal logo has to have 'title' attribute for better accessibility.
[spliter]
2.0a2 - 2009-11-15
------------------
- Package metadata cleanup.
[hannosch]
- Avoid calling lots of Python scripts from inside the content history viewlet
and use methods on the view instead.
[hannosch]
2.0a1 - 2009-11-15
------------------
- Moved plone.path_bar to the plone.abovecontenttitle viewlet
manager, breadcrumbs should be close to the title of the current document.
[limi]
- It's no longer the dashboard's responsibility to supply prefs/profile links
now that they are located in the user menu.
The code uses the "group" terminology here though, so I'm wondering if this is
related to group dashboards. If I broke anything, let me know.
[limi]
- Micro-optimize the icons views.
[hannosch]
- Merged the ``selectedTabs`` Python script into the GlobalSectionsViewlet.
[hannosch]
- Take advantage of icons being found on the actions themselves now instead
and avoid the getIconFor indirection.
[hannosch]
- Removed the special default page and translation handling. LinguaPlone uses
a content language negotiator per default instead.
[hannosch]
- Add a viewlet to display the Dublin Core metadata added in
http://dev.plone.org/plone/ticket9272
[esteele]
- Added support for group dashboards to the dashboard view.
[optilude]
- Greatly simplify the default colophon, so it stands a chance of staying on
actual sites. We cannot claim any standards support for public sites, only
for Plone itself.
[hannosch]
- Changed the is_rtl method of the portal state view not to rely on the locale
but use a much simpler test based on the language code. This avoids setting
up the expensive request.locale.
[hannosch]
- Fixed the portal state view to look for uppercase language in the request,
since that is set by PloneLanguageTool. This closes
http://dev.plone.org/plone/ticket/8342.
[hannosch]
- "Log in to add comments" button is now a link and respects the login URL
specified in portal_actions. Closes http://dev.plone.org/plone/ticket/9071.
[erikrose]
- Fixed is_rtl test to work with new locale based approach.
[hannosch]
- Removed memoizing for things which are only used once in a page.
[hannosch]
- Replaced direct invocations of interfaces with queryAdapter calls. The
former does a suboptimal getattr call internally.
[hannosch]
- Sanitized the actions handling on the context state view. You can pass in
an action category into the action method now, which is the preferred way.
This allows us to avoid evaluating all actions in the current context if
we are only interested in some of the categories.
[hannosch]
- Since Zope 2.11 the locale is available on the request. Removed our special
code from the portal state view and rely directly on the request.
[hannosch]
- Changed ViewletBase so viewlets can be registered as zope.contentproviders.
This closes http://dev.plone.org/plone/ticket/7868.
[hannosch]
- Purge old zope2 Interface interfaces for Zope 2.12 compatibility.
[elro]
1.2.5 - 2009-08-01
------------------
- In the history viewlet, moved again the arrows inside a span, it's really needed to apply a style.
[vincentfretin]
1.2.4 - 2009-07-04
------------------
- In the history viewlet, internationalized the Compare link and replaced
icons by plain text. The revert link is now a POST button. This closes
http://dev.plone.org/plone/ticket/9064
[limi, vincentfretin]
1.2.3 - 2009-06-12
------------------
- Fix issue when dealing with empty version histories in history viewlet.
[alecm]
1.2.2 - 2009-06-11
------------------
- Make ContentHistoryViewlet use new metadata only history method to
speed up listing.
[alecm]
- Make ContentHistoryViewlet check if context isVersionable.
[elro]
1.2.1 - 2009-05-20
------------------
- Changed the search and author header links to respect the navigation root.
[hannosch]
1.2 - 2009-05-16
----------------
- Filter not-interesting history entries in content history viewlet. This
prevents an empty history viewlet from being shown.
[wichert]
- Add a new content history viewlet which combines the full workflow history
and content versions. Render this instead of the workflow history viewlet.
[wichert]
- Fixed querystring in CSS validation link in viewlets/colophon.pt
There was an ampersand where the leading "?" should have been.
http://dev.plone.org/plone/ticket/9054
[siebo]
- Fixed "region-content" id twice in dashboard.pt, replaced one by "content".
Fixes http://dev.plone.org/plone/ticket/8932
[vincentfretin]
- Author link tag should follow same rules as byline viewlet.
[elro]
1.2rc1 - 2009-03-20
-------------------
- Fixed i18n in content_history template.
There were two nested msgids and dynamic content.
[vincentfretin]
- Removed stray span tags in the comment byline.
[limi]
1.2b1 - 2009-03-07
------------------
- Added navigation_root_url to the common viewlets base class. Adjusted the
various viewlets templates to use the new attribute. Changed the dashboard
view to be available on an INavigationRoot.
This implements http://plone.org/products/plone/roadmap/234
[calvinhp]
- Default to using the content history viewlet instead of the workflow history
viewlet.
[wichert]
- Add options to show differences between consecutive versions, and revert to
and preview older revisions to the content history viewlet.
[wichert]
- Use the new history view from CMFEditions instead of the crufty old form.
[wichert]
1.1.8 - 2009-03-07
------------------
- Adjust the caching of sitemap.xml.gz. We only cache for anonymous users. That
fixes a bug where a cached sitemap.xml.gz is delivered with information that
only an user with more privilegs is allowed to see. We also make sure that
the cached file was build with a current catalog by adding the catalog
counter to the cache key. Based on a patch by stxnext. Fixes
http://dev.plone.org/plone/ticket/8402
[stxnext, csenger]
- Added time_only for use with toLocalizedTime so that event_view now localizes
the start/end times if the start/end dates are the same. Closes
http://dev.plone.org/plone/ticket/8607
[jnelson, calvinhp]
- Fixed Plone 3.1 backward compatibility of above.
[stefan]
1.1.7 - 2008-12-15
------------------
- Modified user profile item on the dashboard to use an image tag
instead of a background image. This makes it more consistent with
the other list items and easier to style for RTL scripts.
[emanlove]
1.1.6 - 2008-11-21
------------------
- Avoid a test failure caused by test interdependencies.
[hannosch]
- Fixed tests for the language method of the portal state view.
[hannosch]
- Fixed keywords.pt to properly encode ampersands in its links. This closes
http://dev.plone.org/plone/ticket/8509
[younga3, dunlapm]
- Fixed site_icon so that we would have flipped icon in case of RTL.
This closes http://dev.plone.org/plone/ticket/4576
[spliter]
- Fixed generation of links to author.cpt for user IDs that are a URL
(OpenID users, e.g.). This closes http://dev.plone.org/plone/ticket/8040
[davisagli]
- Add some tests on private contents for sitemap.xml.gz generation. This
closes http://dev.plone.org/plone/ticket/8402
[encolpe]
1.1.5 - 2008-08-18
------------------
- Fixed an invalid message id for the dashboard. This closes
http://dev.plone.org/plone/ticket/7758.
[hannosch]
- Fixed comments.pt to pass the title of the comment you are replying to into
the discussion_reply_form. This closes
http://dev.plone.org/plone/ticket/8323
[calvinhp]
- Refactor default_page: move all logic out of the view to separate methods
so they can be called without a request (which is not used at all).
Deprecate parameters which were not in the interface and were never used.
[wichert]
- Added note that Javascript is required for presentation mode. This closes
http://dev.plone.org/plone/ticket/7575 and
http://dev.plone.org/plone/ticket/7573
[limi]
- Fixed plone_context_state's view_url method to work with contexts that don't
have a portal_type. This closes http://dev.plone.org/plone/ticket/8028.
[davisagli]
- Changed IContentIcon to expose users to the title of the FTI instead of the
portal_type. This closes http://dev.plone.org/plone/ticket/8246.
[hannosch]
- Adjusted deprecation warnings to point to Plone 4.0 instead of Plone 3.5
since we changed the version numbering again.
[hannosch]
1.1.3 - 2008-07-07
------------------
- Made PersonalBarViewlet tolerate users who don't have a Plone user object, as
when using OpenID or apachepas. This fixes
http://dev.plone.org/plone/ticket/7296.
[erikrose]
- Use 'index' attribute rather than 'render' for setting viewlet templates, so
that they can be overridden using the 'template' ZCML attribute.
[davisagli]
1.1.0 - 2008-04-20
------------------
- Applied patch from http://dev.plone.org/plone/ticket/7942 to ensure that the
'currentParent' marker is not True for items that have a path that is a
substring of the true path.
[optilude]
- Displaying 'Anonymous User' also when the comment creator is an empty
string. This fixes http://dev.plone.org/plone/ticket/7712.
[rsantos]
- Allow the use of the icon attribute on action directly instead of using the
actionicons tool.
[hannosch]
- Fix invalid leading space in all 'Up to Site Setup' links.
[wichert]
- Fixed permission in workflow history viewlet. This closes
http://dev.plone.org/plone/ticket/5507.
[hannosch]
- Made handling of self.context in portal.py consistent.
[hannosch]
- Rename the portal_url instance variable to site_url in the ViewletBase
class. This prevents getToolByName(..., 'portal_url') from returning
the URL string instead of the portal_url tool, which can causes unexpected
and subtle breakage. portal_url is still available but produces a deprecation
warning. It will be removed in Plone 4.
[wichert]
- Added viewlet for RSS link.
[fschulze]
- Added dependency on plone.app.viewletmanager.
[fschulze]
- Make viewlet managers in head section order- and filterable.
[fschulze]
1.0.6 - 2008-09-10
------------------
- Added i18n markup to nextprevious.pt.
This closes http://dev.plone.org/plone/ticket/7537.
[hannosch]
- Catch KeyError for presentation or tableContents when document
has an out-of-date schema. Can happen when migrating from Plone
2.5 to 3.0. Fall back to False for those attributes then.
[maurits]
1.0.5 - 2008-01-03
------------------
- Do not create an empty <ul> in the personal actions bar if there are
no items in it. This fixes an XHTML syntax error.
[wichert]
1.0.4 - 2007-12-06
------------------
- Added i18n domain to comment.pt.
[martior]
- Allow non ascii characters in webstats_js code.
Fixes http://dev.plone.org/plone/ticket/7359
[naro]
- Fixed workflow history viewlet to handle entries with
usernames that don't exist any more (deleted users) and
also anonymous users.
This fixes http://dev.plone.org/plone/ticket/7250.
[rsantos]
1.0.3 - 2007-11-09
------------------
- Made getIcon urls relative to portal root.
[tesdal]