forked from stephenmcd/mezzanine
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCHANGELOG
1482 lines (1338 loc) · 102 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
Version 1.0.8 (Mar 24, 2012)
----------------------------
* Fixed .navbar .container responsive width - Stephen McDonald
* Added default blank favicon and replace Bootstrap's collapse JS with all Bootstrap JS - Stephen McDonald
* Added nav dividers in primary menu - Stephen McDonald
* Fixed leftover tag loading in form response emails - Stephen McDonald
Version 1.0.7 (Mar 24, 2012)
----------------------------
* Added html5shiv for IE to recognise and style the HTML5 elements - Paolo Dina
* Fixed body_id block - Stephen McDonald
* Upgrade Bootstrap to 2.0.2 - Stephen McDonald
Version 1.0.6 (Mar 22, 2012)
----------------------------
* Fixed draft status for quick blog form in dashboard. Closes #172 - Stephen McDonald
* Format newlines in the quick blog form since the expected format is HTML - Stephen McDonald
* Markup validation improvements - Paolo Dina
* Added Paolo Dina to AUTHORS - Stephen McDonald
Version 1.0.5 (Mar 20, 2012)
----------------------------
* Fixed admin navigation showing in inline filebrowser popups when called from TinyMCE - Stephen McDonald
* Bump filebrowser_safe to 0.2.3 - Stephen McDonald
Version 1.0.4 (Mar 19, 2012)
----------------------------
* Bump dependencies - Stephen McDonald
Version 1.0.3 (Mar 19, 2012)
----------------------------
* Don't restrict image width in default css since it's now responsive - Stephen McDonald
* Updated templates_for_host to insert default templates after the associated custom template, rather than putting all defaults at the end - Josh Cartmell
* Updated templates_for_device to insert default templates after the associated custom template, rather than putting all defaults after all custom templates - Josh Cartmell
* Disable nav in popups. Closes #152 - Stephen McDonald
* Refactored model graph building in docs - call management command natively, and handle all the error conditions - Stephen McDonald
* Update mezzanine/forms/forms.py - Magic
* Update mezzanine/blog/locale/ru/LC_MESSAGES/django.po - Mikhail
* Update mezzanine/conf/locale/ru/LC_MESSAGES/django.po - Mikhail
* Internal refactoring of abstract models in mezzanine.core. Move admin_link from Displayable to Slugged, since it is more closely related to URLs. Move description_from_content from Slugged to MetaData, since it is more related to description on MetaData. Don't rely on title in description_from_content, just use string version of an instance, which is title anyway via Slugged - Stephen McDonald
* Fixed some comment typos - Stephen McDonald
* Added handling for having 'save' and 'save and continue' in SingletonAdmin - Stephen McDonald
* Make pillow an optional dependency, only used when PIL isn't installed - Stephen McDonald
* Added bootstrap's collapsible navbar, upgraded jQuery to 1.7, and added a setting JQUERY_FILENAME so that the jQuery file/version is stored in one place - Stephen McDonald
* Fix cyclic import in Django 1.4 - Stephen McDonald
* Don't abort on graph generation in docs build, since we can use the repo version of it - Stephen McDonald
* Pin exact versions in dependencies - Stephen McDonald
* Remove Django 1.4 from supported versions in README - Stephen McDonald
* Fix form export encoding - Stephen McDonald
* Added Tommy Wolber to AUTHORS - Stephen McDonald
* Update translations from transifex - Sebastián Ramírez Magrí
* Updated database settings to use prefixed formatunprefixed format removed from django 1.4. Added django.db.backends. tosettings.py and local_settings.py templates - Patrick Taylor
* Clean up db settings and remove helpers from mezzanine.utils.conf - Stephen McDonald
* Add vcs ignore files to project_template - Stephen McDonald
* Added Patrick Taylor to AUTHORS - Stephen McDonald
* Update translations from transifex adding nb - Sebastián Ramírez Magrí
* Added more info and examples of different homepage patterns in project_template/urls.py - Stephen McDonald
* Added FAQs section to docs - Stephen McDonald
* Skinned the docs to be in line with the Mezzanine project's homepage styling - Stephen McDonald
* Docs cleanup - Stephen McDonald
* Fixed formatting - Stephen McDonald
* Added storage API to thumbnail template tag, and zip upload for galleries - Stephen McDonald
* Fix use of with statement for Python 2.5 - Stephen McDonald
* Use django's conf at the module level in mezzanine.core.fields, so that fields can be loaded prior to mezzanine.conf being loaded - Stephen McDonald
* Exclude static dir from package - Stephen McDonald
* FAQs tweak - Stephen McDonald
* Added the collecttemplates management command, for copying all (or app specific) templates to a project - Stephen McDonald
* Fixed typo - Stephen McDonald
* Actual collecttemplates command - Stephen McDonald
* Added secure arg and default expiry seconds to mezzanine.utils.views.set_cookie - Stephen McDonald
* Added mezzanine.utils.email.send_mail_template for sending templated email, and integrated with mezzanine.forms. Closes #165 - Stephen McDonald
* Missing files - Stephen McDonald
* Fixed weird double-click bug in admin page tree - Stephen McDonald
* Fixed regression in orderable inlines from upgrading to latest jQuery - Stephen McDonald
* Fixed regression in keywords field from upgrading to latest jQuery - Stephen McDonald
* Fixed signature change in Django 1.4's admin change_view - Stephen McDonald
* Fixed admin login redirect for non-login view URLs - Stephen McDonald
* Fixed removed project_template setup in mezzanine-project. Closes #167 - Stephen McDonald
* Use operating system separator - Chris Trengove
* Bump dependencies - Stephen McDonald
Version 1.0.2 (Mar 06, 2012)
----------------------------
* Fix docstring typo in Displayable's save method - Michał Oleniec
* Update setup to exclude new dev db name - Stephen McDonald
Version 1.0.1 (Mar 06, 2012)
----------------------------
* Add a patch to the changelog generator for the versioning blunder - Stephen McDonald
* Added a new middleware which will serve templates from a theme, based upon the host accessing the site - Josh Cartmell
* Separated the logic a little more to make host_theme_path more reusable - Josh Cartmell
* Remove mention of site_media which no longer applies with staticfiles used - Stephen McDonald
* Avoid file-in-use exception when deleting (on Windows) - Chris Trengove
* Added quote by Antonio Rodriguez and one line bio for each of the quoters - Stephen McDonald
* Added Chris Trengove to AUTHORS - Stephen McDonald
* Fix typo in EXTRA_MODEL_FIELDS example - Michał Oleniec
* Fix a couple of test failures on Windows - Chris Trengove
* Fixed typo in content-arch docs - Chris Smith
* pep8 fixes and docstring cleanup - Stephen McDonald
* More pep8 fixes - unused imports - Stephen McDonald
* Added Chris Smith to AUTHORS - Stephen McDonald
Version 1.0.0 (Mar 03, 2012)
----------------------------
* Added www.diablo-news.com as web site using mezzanine - wesleyb
* Update README.rst - John Barham
* Added catalan translations - pokoli
* Added IJC Digital to sites in README - Stephen McDonald
* Fixed runserver arg parsing for grappelli media hosting. Closes #110 - Stephen McDonald
* Added a note to the docs about not subclassing RichTextPage - Stephen McDonald
* Raise a more meaningful error message when someone tries to subclass a custom content type, which isn't supported - Stephen McDonald
* Fixed missing translation import - Stephen McDonald
* Added Coopers to sites in README - Stephen McDonald
* Every model mixing Slugged in with a cyclical dependency fails with dumpdata in current Django (including a tree with a fix applied for Django ticket #14226). The natural key declared in Slugged is the culprit - derkaderka
* Added Kevin Levenstein to AUTHORS - Stephen McDonald
* Added category support - Josh
* Bookmarks are removed from grappelli_safe - Stephen McDonald
* Added Josh Batchelor to AUTHORS - Stephen McDonald
* Update translations - Sebastián Ramírez Magrí
* Fixed duplicate keyword handling regression and added support for automatically removing unused keywords. Closes #116 - Stephen McDonald
* Added patching of django.contrib.admin.site in mezzanine.boot to defer certains calls to unregister/register to work around some loading issues for custom model fields - Stephen McDonald
* Removed unused import - Stephen McDonald
* Don't use form email field as from address if FORMS_DISABLE_SEND_FROM_EMAIL_FIELD setting is True - John Barham
* Register FORMS_DISABLE_SEND_FROM_EMAIL_FIELD in mezzanine.conf - Stephen McDonald
* Fixed migration forms/0003 failure for Postgres - Luke Plant
* Fixed dependencies of migrations, so that './manage.py migrate' works even if starting from scratch - Luke Plant
* In README, clarified that use of 'createdb' is optional and 'syncdb' and 'migrate' can be used as normal - Luke Plant
* Added installation instructions for adding Mezzanine to an existing project - Luke Plant
* README formatting fix - Stephen McDonald
* Added a generic RSS blog importer - Stephen McDonald
* Added a type attribute to fields in mezzanine.forms.forms.FormForForm for use in styling, and removed CSS class assignments - Stephen McDonald
* Addedmezzanine.mobile commented out to INSTALLED_APPS in project_template.settings - Stephen McDonald
* Fixed authentication check in base admin template - Stephen McDonald
* Ported default templates from 960.gs to Twitter Bootstrap - Stephen McDonald
* Added Luke Plant to AUTHORS - Stephen McDonald
* Merge paging links settings into a single MAX_PAGING_LINKS setting - Stephen McDonald
* Cleaned up settings ordering - Stephen McDonald
* Stub out empty comment forms in the context for the comments test - Stephen McDonald
* Don't show help text for form fields with errors assigned, and show all errors rather than just the first - Stephen McDonald
* Added docs for the RSS importer - Stephen McDonald
* Update the docs copyright date and fix some warnings - Stephen McDonald
* Regenerated settings docs - Stephen McDonald
* Fix template path for cartridge hook - Stephen McDonald
* Added Number and URL field types to mezzanine.forms - Stephen McDonald
* Unicode fixes for MS Excel in forms export - Stephen McDonald
* Tweak footer formatting - Stephen McDonald
* Added Zdeněk Softič to AUTHORS - Stephen McDonald
* Moved setting cleanup into a single query - Stephen McDonald
* Added a work-around for performance issues with jQuery.ui.sortable and large page trees - Stephen McDonald
* Cleaned up whitespace - Stephen McDonald
* Add pillow as a dependency for getting PIL install properly - Stephen McDonald
* Added handling in PageAdmin for picking up any extra fields defined by subclasses of Page, when the admin class being used doesn't implement any fieldsets - Stephen McDonald
* Added a wrapper field mezzanine.core.fields.FileField for filebrowser's FileBrowseField, falling back to Django's FileField if unavailable - Stephen McDonald
* Changed the filebrowser urlpattern to match the admin menu name - Stephen McDonald
* Changed thumbnailing to use a separate directory defined by the setting THUMBNAILS_DIR_NAME - Stephen McDonald
* Added additional URL structureTo better mimic wordpress and other blogs URL I added a/year/month/slug url path - Josh
* Changing name of url pattern - Josh
* Added an image gallery app mezzanine.galleries - Stephen McDonald
* Give blog post with date urlpattern a unique name and correct regex - Stephen McDonald
* Added the setting BLOG_URLS_USE_DATE to control blog post url format - Stephen McDonald
* Added my site which has taken the fairly popular pixel theme from Wordpress and partially created it from the html5boilerplate. I'll be working on rounding it out even further - joejulian
* Fixed Joe Julian's site link - Stephen McDonald
* Device detection uses lowercase strings - Alvin Mites
* Added unique URLs for gallery photo overlays - Stephen McDonald
* Updated device checking based on conversation from Stephen McDonald - Alvin Mites
* Added Alvin Mites to AUTHORS - Stephen McDonald
* Added a num_children attribute to page objects in page menus - Stephen McDonald
* Updated translations from transifex - Sebastián Ramírez Magrí
* Changed LICENSE from 3-clause to 2-clause BSD - Stephen McDonald
* Updated ignore - Stephen McDonald
* Fixed unicode handling in gallery image description from name - Stephen McDonald
* Added gallery image tests - Stephen McDonald
* Added a replacement post_syncdb handler for the sites app that points to runserver's default host:port - Stephen McDonald
* Added demo fixtures for galleries - Stephen McDonald
* Add Blog Featured ImagesAdded featured images for blogs as well as settings to turn the featureon and off - Josh
* Migration file for Featured image and setting the field to null - Josh
* Updated page_menu and tree.html to avoid creating uls if no pages in the page_branch are in_navigation - Josh Cartmell
* Updated page_menu page_branch_in_navigation and page_branch_in_footer to be more concise. Updated tree.html and footer_tree.html not print out uls unless page_branch_in_navigation or page_branch_in_footer are set - Josh Cartmell
* Accidentally omitted if from tag - Josh Cartmell
* Updated footer.html to avoid unecessary uls - Josh Cartmell
* Rolling back as the previous change to footer.html did not work with 3rd level menus - Josh Cartmell
* Updated footer.html again to avoid unecessary uls - Josh Cartmell
* Updated footer.html identation to be more consistent - Josh Cartmell
* Refactored device handling to be based on TemplateResponse objects since dropping Django 1.1/1.2 support - Stephen McDonald
* Requirements version bumps - Stephen McDonald
* Use filebrowser field for blog feature image, and add template handling for it - Stephen McDonald
* Removed all uses of ifequal and ifnotequal templatetags - Stephen McDonald
* Added model graph to docs - Stephen McDonald
* Temp remove requirements - Stephen McDonald
* Change Displayable.status default to published - Stephen McDonald
* Create dest directories in mezzanine.utils.tests.copy_test_to_media - Stephen McDonald
* Prevent child pages being added to protected pages. Closes #131 - Stephen McDonald
* Added SSLMiddleware which redirects based on matching url prefixes. Updated defaults.py with new settings related to the middleware. Added deprecation warning if SHOP_SSL_ENABLED or SHOP_FORCE_HOST is found in settings - Josh Cartmell
* Updated deprecation warnings to work - Josh Cartmell
* Middleware now redirects back to non-secure if the request is secure but does not have a prefix from SITE_FORCE_SSL_URL_PREFIXES - Josh Cartmell
* Added fix for footer.html if a page is primary, in footer and the first in the loop - Josh Cartmell
* Removed cartridge checks from SITE_FORCE_SSL_URL_PREFIXES defaults. Moving to cartridge and using append - Josh Cartmell
* Restored mezzanine.core.AdminLoginInterfaceSelector and added a deprecation warning - Stephen McDonald
* Added the setting TINYMCE_SETUP_JS which controls the URL for the TinyMCE setup JavaScript file - Stephen McDonald
* Renamed SSL settings to begin with SSL and moved deprecation warnings to Cartridge - Stephen McDonald
* Moved account functionality from Cartridge into Mezzanine, and added data migrations for editable setting name changes - Stephen McDonald
* Make generated fields in mezzanine.generic (_string, _count, _average, etc) uneditable, to prevent them from appearing in admin change views that don't have explicit admin classes registered - Stephen McDonald
* Ensure generated fields in mezzanine.generic are unique instances - Stephen McDonald
* Only style the primary menu when it's in the top nav - Stephen McDonald
* Fixed branch clicking in admin page tree so that open/close for a branch doesn't toggle its children (Thanks Jason Kowaleski) - Stephen McDonald
* Changed admin dropdown menu to be injected into breadcrumb area, rather than floating on it, to allow for the breadcrumb background to wrap with menu items when the browser window is thin - Stephen McDonald
* Fixed admin page tree on reload.The problem occured when reloading a page after setting an open child branch'sparent as closed. When you reloaded a page the routine that wouldreopen previously opened child branches (that are currently hidden by a parent)was causing said child branch displaying both the show(+) and hide(-)icons side by side which could be seen when reopening the parent.It would also cause this said hidden, opened child branchto no longer be registered in the opened branch cookie. So if you were toreload the page again, this branch wouldn't be opened at all.The solution involves simply reopening all previously opened branches onreload without worrying about adding their ID's again to the cookie. It alsoavoids using the Jquery toggle() function which seemed to be the problemthat caused both the show(+) and hide(-) buttons to appear - Kowaleski, Jason
* Dummy commit - Stephen McDonald
* Refactored rating form and templatetag to remove hard-coded field name - Stephen McDonald
* Added sheerethic.com to sites - Stephen McDonald
* Raise exception if any of the generic fields are used multiple times on the same model, since we don't have access to the field being modified in the signals - Stephen McDonald
* Added saltlakemagazine.com and bocamag.com to sites - Stephen McDonald
* Add German and Italian translations from transifex - Sebastián Ramírez Magrí
* Added migrations for mezzanine.galleries - Stephen McDonald
* Fail silently and return an empty list for objects given without a KeywordsField - Stephen McDonald
* Refactored comment handling into its own view, and removed mezzanine.generic.utils.handle_comments - Stephen McDonald
* Revert previous change for removing hard-coded rating field name, and remove the hard-coded field name by simply finding the first RatingField for the given object, since there can only be one - Stephen McDonald
* Misc tweaks to static file names and locations in line with Django 1.4 - Stephen McDonald
* Fix logic in form export - Stephen McDonald
* Added photog.me to list of sites using mezzanine - Josh Cartmell
* In mezzanine.forms, allow FormEntry instances to be provided for FormForForm and handle loading and updating FieldEntry values - Stephen McDonald
* Move site links in README into inline links - Stephen McDonald
* Update packages docs and re-generate settings docs - Stephen McDonald
* Remove unnecessary time_format handling in SplitSelectDateTimeWidget which doesn't exist in Django 1.4 - Stephen McDonald
* Add missing messages context processor for Django 1.4 - Stephen McDonald
* Allow docs to build even if model graph can't be built - Stephen McDonald
* Allow BLOG_SLUG to be set to an empty string, in which case the catch-all urlpatterns belong to the blog, and page urlpatterns get their own URL prefix - Stephen McDonald
* Use a generic sqlite db name in local_settings.py - Stephen McDonald
* Upgrade to Bootstrap 2.0 - Stephen McDonald
* Added Javascript to show only pages with children in tree, and to update this after moving pages (via drag and drop) - Kowaleski, Jason
* Move bootstrap responsive into its own stylesheet, and use transparent panel backgrounds, for easier bootstrap theming - Stephen McDonald
* Tagline tweak - Stephen McDonald
* Add a bootstrap footer link and properly style footer separators - Stephen McDonald
* Added elephantjuicesoup.com and nationalpositions.co.uk to sites in README - Stephen McDonald
* Added Nicola Larosa to AUTHORS, and mezzanine-stackato to third party projects in README - Stephen McDonald
* Add fallback for blog title when blog page isn't available - Stephen McDonald
* Fix gallery overlay close handler - Stephen McDonald
* Add the missing viewport for the responsive layout to work correctly - Stephen McDonald
* Update dependency notes for Grappelli and Filebrowser in README. Closes #137 and #138 - Stephen McDonald
* Fix dependency links in README - Stephen McDonald
* Add Like Humans Do to sites using Mezzanine - scobuntu
* Updating doc for model customization, registering works better in admin.py - Ismail Dhorat
* README tweaks - Stephen McDonald
* More responsive footer - Stephen McDonald
* Change the template copying option in the mezzanine-project script to default to False - Stephen McDonald
* Create entries for empty fields, so that export filtering works correctly - Stephen McDonald
* Added travis config - Stephen McDonald
* Setup local_settings template when testing - Stephen McDonald
* Add pep8/pyflakes to ci build - Stephen McDonald
* Added build status badge to README - Stephen McDonald
* Updated -t help text to reflect that it is no longer the default - Josh Cartmell
* Updated the mezzanine-project command to have a -m option which must be specified to copy over mobile templates. The -t option now skips over mobile templates - Josh Cartmell
* Enabled inline styling to image elements in TinyMCE.Added inline_styles and set it to true.Also added style to the list of valid style elements - Anders Hofstee
* Removed the make_grappelli/filebrowser_safe scripts as they're no longer useful since we've customized those packages - Stephen McDonald
* pep8 fixes - Stephen McDonald
* Add Anders Hofstee to AUTHORS - Stephen McDonald
* Remove themes from feature list - Stephen McDonald
* Restore requirements - Stephen McDonald
* Version bump to 1.0 - Stephen McDonald
Version 0.12.4 (Dec 03, 2011)
-----------------------------
* pep8 fix - Stephen McDonald
* Update translations from transifex - Sebastián Ramírez Magrí
* Synchronize PO files with tip - Sebastián Ramírez Magrí
* Add new translations from transifex for Estonian, French and Polish - Sebastián Ramírez Magrí
* Synchronize PO files - Sebastián Ramírez Magrí
* Added a note to the documentation overview about assumed Django knowledge with a reference to the tutorial - Stephen McDonald
* Let messages fail silently for Django < 1.3 - stephenmcd
* Don't rely on version checking for adding cookie-based messaging - stephenmcd
* Added pyflakes ignore for dummy import for messaging handling - stephenmcd
Version 0.12.3 (Nov 23, 2011)
-----------------------------
* Fixed Disqus single-sign-on bug where message is overwritten to <message, timestamp> and returned incorrectly in payload - Brett Clouser
* Changed thumbnail test to remove test thumbnail even if test fails - Stephen McDonald
Version 0.12.2 (Nov 19, 2011)
-----------------------------
* Added the mezzanine.utils.html.TagCloser class that closes open tags in a string of HTML. Used in Displayable.description_from_content to ensure valid HTML is returned when extracting the first block/sentence. Fixes #100 - stephenmcd
Version 0.12.1 (Nov 19, 2011)
-----------------------------
* IDE config directory .idea added to .gitignore - Zdeněk Softič
* better try-except block (PEP8 compliant) - Zdeněk Softič
* possibility to insert fieldsets' fields in classes extended from DisplayableAdmin (was not possible, tuples are immutable) - Zdeněk Softič
* Add transifex setup and spanish .po files - Sebastián Ramírez Magrí
* Update translations from transifex - Sebastián Ramírez Magrí
* Added Sebastián Magrí to AUTHORS - stephenmcd
* Added handling in BaseGenericRelation for actual instance being deleted. Fixes #103 - stephenmcd
* Added testing for correct keyword string population on keyword removal - stephenmcd
Version 0.12 (Nov 05, 2011)
---------------------------
* added allow_comments flag to blog, and moved the site filed up the class hierarchy from Displayable to Slugged, plus migrations - legutierr
* fixes a typo bug - legutierr
* adds migration that attempts to deal with keywords that may be shared by related/assigned objects that exist on different sites - legutierr
* KeywordManager needs to subclass CurrentSiteManager in order to take advantage of multi-site capability added to Slugged - legutierr
* This is probably the most complex migration I have written. Read inline comments for more information - legutierr
* Fixed unicode handling in CSV export in the forms app - stephenmcd
* Fixed Django 1.3/1.4 feed handling - stephenmcd
* Added fallbacks for blog feed title and description for when the blog page doesn't exist - stephenmcd
* Added response tests for the blog feeds - stephenmcd
* Fixed comment formatting - stephenmcd
* Added handling for spaces in keywords - stephenmcd
* Removed debugging - stephenmcd
* Fixed meta keywords loading in blog post templates - stephenmcd
* Upgraded keyword handling in mobile templates - stephenmcd
* Changed keywords_for template tag to handle None being given as an instance - stephenmcd
* Ignore local_settings.py in syntax check tests - stephenmcd
* Cleaned up docstring formatting - stephenmcd
* Added support for using generic relations as order_with_respect_to on subclasses of Orderable, and applied to AssignedKeyword so that keyword order is maintained - stephenmcd
* Fixed check for generic relations in Orderable - stephenmcd
* Stringify secret_key because hmac hates unicode - Ken Bolton
* Fix issue #97. Add PNG support - Ken Bolton
* Remove logger code - Ken Bolton
* Renamed export related areas to entries in the forms app and added handling for deleting form entries - stephenmcd
* Added mezzanine.utils.messages module with fallbacks for the django.contrib.messages app - stephenmcd
* Added a count for the number of entries displayed in the admin for the forms app - stephenmcd
* Use css selectors rather than JS for injecting the count in the admin entries view for the forms app - stephenmcd
* Added a comment to the urlconf in project_template describing the importance of ordering in relation to mezzanine.pages urlpatterns when adding your own - stephenmcd
* Added the mezzanine.boot app which exists for handling setup code, and added the EXTRA_MODEL_FIELDS setting which is used by boot to inject extra fields onto any models required via the class_prepared signal - stephenmcd
* Use the DEV_SERVER setting when setting up Grappelli media hosting - stephenmcd
* Updated the EXTRA_MODEL_FIELDS example in settings.py - stephenmcd
* Added EXTRA_MODEL_FIELDS to mezzanine.conf.defaults - stephenmcd
* Added initial docs for model field customization - stephenmcd
* Restructured the docs into more logical paragraphs and added some missing modules to the packages docs - stephenmcd
* Allow for non-keyword args for fields in EXTRA_MODEL_FIELDS - stephenmcd
* Initial attempt at a subclassable MixinModel for injecting fields and methods into external models - stephenmcd
* Add png & gif thumbnailing. Support for filebrowser FileBrowseField thumbnailing - Ken Bolton
* Somehow, this didn't make it up to my repo - Ken Bolton
* Removing bad whitespace - Ken Bolton
* if setting in registry is no more registered, delete it from registry - btx
* Added a note about mezzanine-openshift to README - stephenmcd
* Added a note about branching requirements for contributions to README - stephenmcd
* Cleaned up mezzanine.utils.conf.set_dynamic_settings - stephenmcd
* Added sections to the model customizations docs about field injection caveats and exposing custom fields in the admin - stephenmcd
* Cleaned up whitespace - stephenmcd
* Removed invalid ignore file - stephenmcd
* Updated grappelli version requirement - stephenmcd
Version 0.11.10 (Sep 24, 2011)
------------------------------
* fix issue with the mouse loosing focus in dynamic inline fields. Affects Firefox usersadded an Italian translation message - Eli Spizzichino
* Upgraded pyflakes test to handle latest version of pyflakes - stephenmcd
* Added pep8 tests and removed import checks so that pyflakes/pep8 are always required for tests - stephenmcd
* Changed pep8 test approach to subclass its checker to obtain correct information - stephenmcd
* pep8 fixes - stephenmcd
* better fix by Stephen for dynamic inline fields focus issue - Eli Spizzichino
* More pep8 fixes - stephenmcd
* Changed install command to only fake migrations when South is installed - stephenmcd
* Renamed install command to createdb and added deprecation warning for install - stephenmcd
* Updated dependencies and install instructions in README - stephenmcd
Version 0.11.9 (Sep 22, 2011)
-----------------------------
* Added Melbourne Cup to sites in README - stephenmcd
* Added defaults for cookie messaging with Django >= 1.3 - stephenmcd
* Moved description and keywords fields out of Displayable and into their own MetaData abstract model - stephenmcd
* Cleaned up whitespace - stephenmcd
* Added handling for changes to the syndication app in Django 1.4 - stephenmcd
* Added feed imports to suppressed pyflakes warnings - stephenmcd
* Fixed typo in docstring - stephenmcd
* Removed fixtures from tests - stephenmcd
* Fixed device template test - stephenmcd
* Enable iframe, xhtmlxtras in tinymce - Ken Bolton
* Fix typo - Ken Bolton
* Bumped grappelli-safe version requirement - stephenmcd
Version 0.11.8 (Aug 24, 2011)
-----------------------------
* Fixed incorrect setting name in device handling docs - stephenmcd
* Use Django's simplejson - stephenmcd
Version 0.11.7 (Aug 19, 2011)
-----------------------------
* Upgraded DISQUS handling in the blog templates to properly use the generic app, as well as fixing DISQUS identifiers to be unique across different models - stephenmcd
Version 0.11.6 (Aug 13, 2011)
-----------------------------
* Added List G Barristers to sites in README - stephenmcd
* Decorate blog posts in blog_post_list with lists of categories and keywords - stephenmcd
* Added Tri-Cities Flower Farm to sites using Mezzanine in README - stephenmcd
* Added a has_childen helper to page objects in the page menus - stephenmcd
* Generic module translated to Russian - Alexey Makarenya
* Fixed styling of fixed footer in admin change form when Grappelli is not used - stephenmcd
* Added daon.ru to sites using Mezzanine in README - stephenmcd
* Full Russian translation for all Mezzanine modules - Alexey Makarenya
* Added autoindeks.ru and immiau.ru to sites in README - stephenmcd
* fixed quick blog size in russian translation - Alexey Makarenya
* Fixed migration of object_pk in Rating and AssignedKeyword - David Prusaczyk
* Added null defaults for generic migration fix - stephenmcd
* Added David Prusaczyk to AUTHORS - stephenmcd
* Created an install management command that combines syncdb and migrate --fake to correct the issue of initial migrations failing with multiple apps. As a result reverted USE_SOUTH default to True and removed the handling of south for fixture loading - stephenmcd
* Fixed a bug in orderable inlines where order fields would be wiped on inlines that only contain a file upload field - stephenmcd
* Fixed quick-blog form styling to be fluid - stephenmcd
* Added Alexey Makarenya to AUTHORS - stephenmcd
* Fixed bug with url field hiding logic - stephenmcd
* Added a custom slugify function to mezzanine.utils.urls that preserves unicode chars to support non-English URLs - stephenmcd
* Updated jquery-ui version. Fixes #80 - stephenmcd
* Add placeholders for dynamic inline sorting - stephenmcd
* Fixed login interface selector so that next param is ignored if not an admin URL when admin interface is selected - stephenmcd
* Fixed category decorator query in blog post list when there are no blog posts - stephenmcd
* merging pending changes to mezzanine trunk - legutierr
* Migration adding site field to dynamic settings needs to be split into separate schema and data migrations - legutierr
* Fixed slug calculation for pages so that actual parent slugs are used. Fixes #82 - stephenmcd
* fixed unicode encode error with cyrillic slugs in template loader - Andrew Grigrev
* switch to turn comments on blog posts on/off - Johnny Brown
* fixed unicode encode error with cyrillic slugs in template loader in other places - Andrew Grigrev
* bug fixed: outdated l10n caused KeyErrors in string formatting while rendering templates... updated&compiled messages - Andrew Grigrev
* changed google analytics js to what they gave me - Johnny Brown
* modified gitignore - Johnny Brown
* selectively load analytics - Johnny Brown
* Added ARA Consultants to site using Mezzanine - stephenmcd
* Added Boîte à Z'images to sites in README - stephenmcd
* Added link to sites gallery in README - stephenmcd
Version 0.11.5 (Jul 04, 2011)
-----------------------------
* Added new quote to README - stephenmcd
* Changed device test to use a page it creates itself - stephenmcd
* Updated old contentpage template in the mobile theme to richtextpage - stephenmcd
Version 0.11.4 (Jul 03, 2011)
-----------------------------
* fixes 500 error on mobile theme (bad template tag) - Owen Nelson
* Updated processor_for as exceptions received were TypeError get_model() takes at least 3 arguments (2 given) not a ValueError - Josh Cartmell
* Fixed some new pyflakes warnings - stephenmcd
* Only run thumbnail test when the test image is in the current project (eg Mezzanine dev) - stephenmcd
* Fixed tinyMCE setup to allow tables - Zeke Harris
* Added Zeke Harris to AUTHORS - stephenmcd
* Added third-party modules section to README - stephenmcd
* Fix allowing inline editing of form content on form pages by avoiding naming conflicts with the inline editing form - Josh Cartmell
* Update example settings. Fixes #70 - stephenmcd
* Don't use HTML5 required attributes on multiple checkboxes - stephenmcd
* Adding site FK to mezzanine.conf.models.Setting and read/write hooks to present content based on current_site - Ken Bolton
* Allow override of GRAPPELLI_ADMIN_HEADLINE and _TITLE in settings.py - Ken Bolton
* Proper setting of default values for GRAPPELLI_ADMIN_HEADLINE and _TITLE, to fix #74 - Ken Bolton
* Proper setting of default values for GRAPPELLI_ADMIN_HEADLINE and _TITLE - Ken Bolton
* Update the site for existing settings when migrating - stephenmcd
* italian translation for all app - Eli Spizzichino
* Added Ken Bolton to AUTHORS - stephenmcd
* Added Eli Spizzichino to AUTHORS - stephenmcd
* Added Ripe and Cotton On to sites using Mezzanine - stephenmcd
* minor tweaks to the italian translation - Eli Spizzichino
* added post_count to blog_categories tag - Michael Delaney
* Removed/ignored DSStore files - stephenmcd
* Added select_related for blog list view - stephenmcd
* Added Michael Delaney to AUTHORS - stephenmcd
Version 0.11.3 (Jun 09, 2011)
-----------------------------
* catches exception generated when trying to retrieve the admin url for a model that is not registered, to allow some Page models not to be registered in the admin - legutierr
* migration 0004 conflated a schema migration and a data migration, which was causing problems with MySQL. The two are now separated - legutierr
* pass all form media to the template - Owen Nelson
* implementing richtext_filter - Owen Nelson
* adding docs for RICHTEXT_FILTER setting - Owen Nelson
* updated docs on how to customize RICHTEXT_FILTER - Owen Nelson
* Added Owen Nelson to AUTHORS - stephenmcd
Version 0.11.2 (Jun 01, 2011)
-----------------------------
* compile language files, compiled blog, mobile, twitter language files - Alexey Makarenya
* Updated 960.gs to fluid version - stephenmcd
* Remove mezzanine from internal Mezzanine urls - stephenmcd
* Test to verify if thumbnail generation is working - Brent Hoover
* Added 500 handler view that adds MEDIA_URL to the context - stephenmcd
* Fixed unicode handling in KeywordsWidget rendering - stephenmcd
* Added pip requirments to project_template and use it to define Mezzanine's actual version number - stephenmcd
* Fixed thumbnail test - stephenmcd
* Added Brent Hoover to AUTHORS - stephenmcd
* Reverted change to storing version number to work with docs generation - stephenmcd
Version 0.11.1 (May 24, 2011)
-----------------------------
* Upgraded comment handling to work with new comment models in base blog importer. Fixes #59 - stephenmcd
* Only look for tags if it isn't going to throw an AtributeError - rich
* Only look for tags if it isn't going to throw an AttributeError - rich
* whoops! Reinserted line that I shouldn't have deleted - rich
* Added Rich Atkinson to AUTHORS - stephenmcd
* Added notes around contributing to README - stephenmcd
* Added donation notes to README - stephenmcd
* Fixed typo in README - stephenmcd
* Split ``mezzanine.core.admin.DynamicInlineAdmin`` out into ``TabularDynamicInlineAdmin`` and ``StackedDynamicInlineAdmin`` - stephenmcd
* Fixed missing media from dynamic admin form - stephenmcd
* Added the template filter is_installed which can be used to test for values in the INSTALLED_APPS setting from within templates - stephenmcd
* Added is_installed for blog app around feed urls in mobile base template - stephenmcd
* Added integration with django's sitemaps app - stephenmcd
* Added handling in KeywordsWidget for the keywords field not existing in the request. Fixes #64 - stephenmcd
* Fixed issue where admin.StackedInlines would not display in the admin - Josh Cartmell
* Cleaned up white-space - stephenmcd
* Updated tinymce_setup.js to only initialize when TinyMCE is available - stephenmcd
* Updated dynamic_inline.js to support StackedDynamicInlineAdmin - stephenmcd
* Reordered jQuery in base_site.html to avoid issues when Grappelli isn't installed - stephenmcd
* Added CSS classes to each of the comment fields - stephenmcd
* Addd better hanadling in the keyword widget for when no keyword field is in the request. Previous fix only corrected the field not existing in the form object - stephenmcd
* Fixed the version check for collapse_backport.js - stephenmcd
* Added Single-Sign-On support to Disqus templates - Brett Clouser
* Added handling for unauthenticated users and empty key settings for Disqus single sign-on - stephenmcd
* Updated auto-generated settings docs - stephenmcd
* Added Brett Clouser to AUTHORS - stephenmcd
* Added some sys.path fixing in manage.py to avoid some cron issues - stephenmcd
* Changed object_pk fields to integer fields in the generic app to resolve some issues with Postgres - stephenmcd
* Added migrations for object_pk change in generic. Fixes #66 - stephenmcd
* Fixed loading of blog posts for a tag - stephenmcd
Version 0.11 (Apr 30, 2011)
---------------------------
* Created a ``GRAPPELLI_INSTALLED`` setting that is dynamically set, and made it available to JavaScript in the admin so that this can be determined reliably without depending on Grappelli specific HTML/CSS - stephenmcd
* Made the default value for the ``DASHBOARD_TAGS`` setting dynamically created based on whether ``mezzanine.blog`` is in ``settings.INSTALLED_APPS`` - stephenmcd
* Added commented-out versions of some common Mezzanine settings to the project_template's settings module - stephenmcd
* French locale for all other apps - Dominique Guardiola
* Add Polish translation - Michał Oleniec
* Added Michał Oleniec to AUTHORS - stephenmcd
* Added a note to README about browser support - stephenmcd
* Added a heading to the browser info in README - stephenmcd
* Updated inline-editing docs to include a note about the tags already being provided by themes - stephenmcd
* Added setting for specifying the delimiter for CSV exports in the forms app - stephenmcd
* Added an option to view entries in a HTML table when exporting for the forms app - stephenmcd
* Fixed Page.get_absolute_url to use its static slug rather than dynamic get_slug. Fixes #45 - stephenmcd
* Making Query.value a varchar(300) to allow for larger queries - John Campbell
* make value length 140 instead of 300 since the max twitter query is 140 currently - John Campbell
* Added migration for twitter query length - stephenmcd
* Added John Campbell to AUTHORS - stephenmcd
* Converted blog categories to a ManyToManyField - stephenmcd
* Added migration scripts for blog categories - stephenmcd
* Added russian translation of blog app - Andrew Grigorev
* Updated russian translation for core app - Andrew Grigorev
* Updated russian translation for forms app - Andrew Grigorev
* Minor update in russian translation of blog: s/Кем написан/Написал(а)/ - Andrew Grigorev
* Added russian translation of mobile app - Andrew Grigorev
* Updated russian translation for pages app - Andrew Grigorev
* Added russian translation of twitter app - Andrew Grigorev
* Fixed a bug in russian translation of blog app - Andrew Grigorev
* Updated russian translations - Andrew Grigorev
* Added Andrew Grigorev to AUTHORS - stephenmcd
* Added quotes from Audrey Roy and John Campbell to README - stephenmcd
* Added equityadvance.com.au to sites in README - stephenmcd
* Fixed Polish translation for core app - Michał Oleniec
* Fixed forms app compiled message file for Polish translation - Michał Oleniec
* Added Polish translation for conf app - Michał Oleniec
* Added Head3 Interactive to sites in README - stephenmcd
* Updated link to John Campbell in README - stephenmcd
* whitespace - Tom von Schwerdtner
* not sure how there wasn't one of these already - Tom von Schwerdtner
* Added post counts to archive and author listings for blog posts - stephenmcd
* add a label to registered settings for a more human-friendly admin UI - Tom von Schwerdtner
* A meta title for the default project homepage - Tom von Schwerdtner
* add title/tagline to admin settings - Tom von Schwerdtner
* a (slightly) better default tagline... and make settings available to templates - Tom von Schwerdtner
* Move the ``LOGIN_URL`` default into the project's settings module so it can be modified - stephenmcd
* Modified the ``AdminLoginInterfaceSelector`` middleware to recognise ``next`` paramters in the querystring, and redirect to those regardless of the interface option selected on the login form - stephenmcd
* Added missing methods for the blog feed such as categories, authors and publish dates - stephenmcd
* Applied ``SITE_TITLE`` and ``SITE_TAGLINE`` to templates - stephenmcd
* Made description field for meta data into plain text - stephenmcd
* Added descriptions for new settings - stephenmcd
* Added styling for the blog tagline - stephenmcd
* Updated the auto-generated settings docs - stephenmcd
* Implemented initial version of custom per-page permissions - stephenmcd
* Added some template code to the gallery example in docs - stephenmcd
* Changed TinyMCE setup to properly support embed code - stephenmcd
* Integrated the SITE_TITLE and SITE_TAGLINE settings better into templates - stephenmcd
* Removed handling of HTML from ``Displayable.description`` - stephenmcd
* Updated the settings docs with the restored defaults for the SITE_TITLE and SITE_TAGLINE settings - stephenmcd
* Added a section to the admin customization docs about defining custom widget classes for HtmlField fields - stephenmcd
* Changed mezzanine-project script to exclude admin templates - stephenmcd
* Added note to deployment docs about setting up a cron job for Twitter feeds - stephenmcd
* Added embedded robots.txt to prevent spidering when DEBUG is enabled - stephenmcd
* Added more tweaks to tinymce_setup.js for better handling of embedded media - stephenmcd
* Fixed handling of anonymous comments in the Disqus API - stephenmcd
* Removed print debugging - stephenmcd
* Updated the mailing list link in README - stephenmcd
* Changed handling of editable settings to force unicode for settings with string defaults. Fixes #52 - stephenmcd
* Initial version of refactoring comments into Django's built-in comments, and moving them into the new generic package - stephenmcd
* Added multi-site capability and tests, updated jso page fixtures to include site reference - legutierr
* grammar - legutierr
* added migrations for the new site field on Displayable - legutierr
* Fixed bug in login redirect - was defaulting to /accounts/profile/ upon login before and showing the logged in user a 404 error. Now defaults to /admin/ - Audrey M Roy
* Added Audrey Roy to AUTHORS - stephenmcd
* Added migrate command to setup steps. Closes #54 - stephenmcd
* Fixed incorrect tag lib name in template - stephenmcd
* Added documentation regarding multi-site to the deployment page in the docs - legutierr
* Fixed mezzanine-project script where an error would occur when more than one project template with admin templates was used - stephenmcd
* Refactored the ``Keywords`` model to use generic relations and moved it and all related functionality into ``mezzanine.generic`` - stephenmcd
* Formatting fixes - stephenmcd
* Fixed a bug where ``django.conf.settings`` would override ``mezzanine.conf.settings`` - stephenmcd
* Added tests for keywords - stephenmcd
* Added migrations for keywords - stephenmcd
* Updated mezzanine/core/media/js/dynamic_inline.js to allow multiple DynamicInlineAdmins on a single admin page - Josh Cartmell
* Fixed a potential circular import bug - stephenmcd
* Added more error handling to the processor_for page processor decorator - stephenmcd
* Added delete links to the admin page tree - stephenmcd
* Changed some tabs to spaces - stephenmcd
* Added support for slug based page_processors. Adding slug=some_slug to the processor_for decorator will cause any specified content model to be ignored and the page_processor to only run for a page which matches the slug - Josh Cartmell
* Updated search to respect published status - Josh Cartmell
* Small fix to Keywords Field. Stops instance from saving if keyword data is empty - Osiloke Emoekpere
* Added pyladies.com to sites using Mezzanine in README - stephenmcd
* Removed ``DEV_SERVER`` setting from local_settings module template, since this is defined dynamically - stephenmcd
* Removed ``south`` from the ``OPTIONAL_APPS`` setting, since the addition of this to a project needs to be controlled manually, as the order of initial migrations for each app cannot be guarenteed and will break if used to create the tables for these apps. Added the ``USE_SOUTH`` boolean setting which can be defined to automatically have south added to ``INSTALLED_APPS`` when available. Fixes #53 - stephenmcd
* Removed trailing whitespace - stephenmcd
* Updated package docs - stephenmcd
* Added Josh Cartmell and Osiloke Emoekpere to AUTHORS - stephenmcd
* Removed handling of admin user for returning unpublished search results - stephenmcd
* Added test to ensure only published objects are returned as search results - stephenmcd
* Fixed bug where superclasses in concrete model inheritence chains would cause duplicate search results - stephenmcd
* Fixed bug where _order values were not being set for dynamic inlines - stephenmcd
* Added extra_context arg to mezzanine.pages.views.page - stephenmcd
* Refactored the page processor to only accept one argument since its behaviour is to only deal with one - stephenmcd
* Removed trailing whitespace from docs - stephenmcd
* Added note to docs about slug-based page processors - stephenmcd
* Cleaned up white-space - stephenmcd
* Removed migrate command from installation notes since south is no longer automatically configured - stephenmcd
* Re-sequenced the migrations for the ``Displayable.site`` field - stephenmcd
* Added Eduardo Gutierrez to AUTHORS - stephenmcd
* Applied workaround for unexplainable Django issue where certain signals get lost - stephenmcd
* Removed unused code - stephenmcd
* Made labels for settings translatable - stephenmcd
* Updated settings form template to have a submit row and error note consistent with other admin change forms - stephenmcd
* Reverted CSS formatting style in global.css to be consistent with the rest of the project - stephenmcd
* Added ratings to ``mezzanine.generic`` and applied to the blog app - stephenmcd
* Updated auto-generated settings docs - stephenmcd
* Added handling for page menus where parent page is explicitly provided. Fixes #58 - stephenmcd
* Renamed ``Content`` to ``RichText``, ``ContentPage`` to ``RichTextPage``, and ``HtmlField`` to ``RichTextField`` - stephenmcd
* Fixed handling of USE_SOUTH setting so that south is also removed when explicitly set to False - stephenmcd
* Updated template for RichTextPage - stephenmcd
* Reverted inline editing styles to the formatting that the rest of the project uses - stephenmcd
* Fixed toolbar styling for TinyMce inside the inline editing form - stephenmcd
Version 0.10.6 (Feb 14, 2011)
-----------------------------
* blog strings from html templates - Dominique Guardiola
* Added Dominique Guardiola Falco to AUTHORS - stephenmcd
* Apply the CSRF token to all AJAX posts in the admin - stephenmcd
Version 0.10.5 (Feb 11, 2011)
-----------------------------
* Updated mezzanine.utils.importing name in package docs - stephenmcd
* Changed cache handling to remove middleware classes if no cache backend specified - stephenmcd
* Formatting fixes - stephenmcd
* Refactored adding of optional apps so that it only occurs once, and the ordering of installed apps so that order is not modified unless necessary (eg grappelli) - stephenmcd
* Added alphaomegacontractors.com and senexcanis.com to sites using Mezzanine in README - stephenmcd
* Moved generation of docs/settings.rst and CHANGELOG from docs/conf.py into functions in ``mezzanine.utils.docs`` - stephenmcd
* Fixed admin fieldsets example in docs - stephenmcd
* Removed includes from mobile theme that replicated JavaScript common to all devices - stephenmcd
* Fixed JavaScript for Discus comments - include the absolute URL - stephenmcd
* Fixed module margin in admin dashboard - stephenmcd
* Fixed formatting/indentation in tests - stephenmcd
* Changed Google Anylatics code so that the main tracking args can be overridden via a block - stephenmcd
* Reverted Google Analytics block in favour of checking for an existing ``_gaq`` JavaScript var - stephenmcd
* fix for ajax in admin not using csrf token for forms. fix for django 1.2.5 - lexual
* fix up whitespace formatting for last js fix - lexual
* fix javascript syntax - lexual
Version 0.10.4 (Jan 29, 2011)
-----------------------------
* Fixed regression in cache defaults. Django defaults to a 5 minute memory cache which functions with Mezzanine's caching middleware installed by default. We now set the cache backend to dummy if no cache backend is defined in the project's settings module - stephenmcd
Version 0.10.3 (Jan 28, 2011)
-----------------------------
* Renamed the module mezzanine.utils.path to the more accurate mezzanine.utils.importing - stephenmcd
* Added the function ``mezzanine.utils.importing.import_dotted_path`` for importing via Python paths to names which are defined as string settings - stephenmcd
* Removed the cache defaults - stephenmcd
* Removed redundant import - stephenmcd
Version 0.10.2 (Jan 27, 2011)
-----------------------------
* Updated docs to describe approach for adding fieldsets to subclasses of PageAdmin - stephenmcd
* Added a depth arg for select_related in the recent comments panel of the admin dashboard - stephenmcd
* Restored depth arg for select_related in blog manager - stephenmcd
* Added deployment section to docs describing the various aliases required for serving media files, and added a management command which prints these out - stephenmcd
* Grammar fix in docs - stephenmcd
* Added lost password link to login template - stephenmcd
* Moved some of the settings tweaks into mezzanine.utils.conf.set_dynamic_settings and also restored all of the comments from Django's generated settings module. Fixes #37 - stephenmcd
* Fixed the handling for creating the default user when south is installed. Closes #34 - stephenmcd
Version 0.10.1 (Jan 13, 2011)
-----------------------------
* Added Josh de Blank to AUTHORS - stephenmcd
* Fixed bug in PageAdmin._maintain_parent where it was assumed a location header exists for a redirect, which isn't actually the case when the page is being edited via a popup window as a forgien key - stephenmcd
Version 0.10 (Dec 22, 2010)
---------------------------
* Renamed fixtures to not be installed with syncdb and added signal to install them when pages are first installed - stephenmcd
* Renamed example mobile template so that it won't be rendered by default - stephenmcd
* Updated device template test to only run when device templates exist - stephenmcd
* Added a setting for restricting setting available in templates - stephenmcd
* Fixed some CSS around inline editing - stephenmcd
* Added hook for third-party apps to extend existing settings - stephenmcd
* Fixed settings append hook - stephenmcd
* Backported inline editing helptext markup for Django <= 1.2 - stephenmcd
* Fixed settings append hook again - stephenmcd
* Added handling for variable template names in include tags - stephenmcd
* Cleaned up a ton of unused imports. Fixes #29 - stephenmcd
* Updated local_settings template - stephenmcd
* Updated docs with new settings and sites - stephenmcd
* Added initial south migrations for all apps - stephenmcd
* Added initial optional support for HTML5 with placeholder attributes in the forms app - stephenmcd
* Added support for HTML5 required attributes in the forms app - stephenmcd
* Refactored values for field types in the forms app to separate out classes and widgets - stephenmcd
* Added HTML5 field types to the forms app: date, datetime, email - stephenmcd
* Added note about HTML5 forms under features in README - stephenmcd
* Rename user variable to author in mezzanine.blog.views.blog_post_list to avoid clobbering Django's user context variable. Fixes #30 - stephenmcd
* Update to new author var in blog listing template - stephenmcd
* Reduced the width of text fields for field inlines in the form admin - stephenmcd
* Updated the layout for auto generated packages docs as well as adding new missing modules. Made a giant sweep of the code base adding and updating docstrings that appear in the packages docs - stephenmcd
* Removed unused admin template filter ``is_page_content_model`` - stephenmcd
* Fixed south compatibility with fixture loading - stephenmcd
* pep8: trailing whitespace deleted - lexual
* pep8 cleanups - lexual
* make save/delete buttons in admin, always visible at screen's bottom edge - lexual
* Added pyflakes test - stephenmcd
* Fixed pyflakes test - stephenmcd
* Removed unused imports - stephenmcd
* Added a CSS shadow to the inline editing form - stephenmcd
* Fixed missing hidden fields in the inline editing form - stephenmcd
* Added a split datetime widget with select fields for date parts in the inline editing form - stephenmcd
* Refactored ``mezzanine.utils`` module into a package - stephenmcd
* Moved pyflakes test runner into utils - stephenmcd
* Updated package docs layout with new utils package - stephenmcd
* Allow extra ignore strings to be passed to pyflakes testing - stephenmcd
* Added themes to the feature list in README - stephenmcd
* make static save buttons in admin, not affect admin login page - lexual
* Fixed path for serving of theme assets - stephenmcd
* Moved handling of serving assets during development from project's urlconf into ``mezzanine.urls`` - stephenmcd
* Removed favicon handling during development - stephenmcd
* Refactored urls so that ``mezzanine.urls`` becomes the main point for combining urls for all the different apps. Also moved homepage url into the project's ``urlconf`` as it's expected to be modified - stephenmcd
* Fixed typos in docstrings - stephenmcd
* Removed use of Django's ``LOGIN_FORM_KEY`` from Mezzanine's ``AdminLoginInterfaceSelector`` middleware since it was just removed from Django trunk and now breaks. Fixes #31 - stephenmcd
* Added a background gradient to pages in the admin page tree - stephenmcd
* Moved admin submit-row buttons CSS into base admin template - stephenmcd
* Fixed serving of media files outside of a theme when a theme is defined as in development - stephenmcd
* Removed debugging - stephenmcd
* Added support in the admin page tree for changing parents via dragging between branches - stephenmcd
* Fixed failures in Django's tests caused by automatically using a cache backend when available - stephenmcd
* Added handling for regenerating slugs when a page's parent changes - stephenmcd
* Fixed bug where editable settings were being loaded from the DB on every access - stephenmcd
* Updated each of Mezzanine's apps to use its version number as their own - stephenmcd
* Restored empty string as default ``TIME_ZONE`` value so Django uses the system timezone - stephenmcd
* use tinymce's cleanup functionality to fix dodgy html - lexual
* Moved the Grappelli/Filebrowser/caching setup into ``mezzanine.utils.conf`` - stephenmcd
* Updated pyflakes test to ignore version imports - stephenmcd
* Made ``editable`` template tag fail silently if None is given - stephenmcd
* Fixed overridden slugs changing on pages when their parent changes - stephenmcd
* Changed Page.overridden to be more reliable by not using get_absolute_url which can be incorrect without a permalink - stephenmcd
* change back cleanup config in tinymce - lexual
* tinymce: remove word styling when cutting and pasting. Remove unnecessary toolbar buttons - lexual
* remove more MS word paste junk from tinymce pasting - lexual
* Updated handling of post_syncdb signal to still execute when south is installed - stephenmcd
* Fixed unicode bug when non-ascii strings are used in the blog comment form and break when persisted to a cookie - stephenmcd
* Refactored out the widget for the HtmlField into its own widget that can then be replaced via the setting HTML_WIDGET_CLASS - stephenmcd
* Fixed bug in post_syncdb signal handler names - stephenmcd
* Added new hooks for page menus for determining whether a page is a child or sibling of the current page - jdeblank
* Added initial version of a mobile menu that only renders child page links - jdeblank
* Removed redundant setuptools requirement - stephenmcd
* Cleaned up unused imports - stephenmcd
* Fixed default settings ordering - stephenmcd
* Updated auto-generated settings docs - stephenmcd
* Fixed cache settings tweaks for Django's test cases - stephenmcd
* Admin style fixes for IE7 - jdeblank
* Fixed a pathing bug in creating themes on Windows - stephenmcd
* Added HTML5 form features to inline edit forms - stephenmcd
* Added a context-aware version of Django's ``inclusion_tag`` template tag - stephenmcd
* Moved assignment of menu helper page attributes into ``Page.set_menu_helpers`` and renamed some of them to be clearer in purpose - stephenmcd
* Refactored menu template tags into a single tag page_menu which accepts the name of the menu template to use - stephenmcd
* Added initial handling for overriding device in a cookie - stephenmcd
* Changed ``mezzanine.core.models.Displayble.set_searchable_keywords`` to only trigger a save when the keyword list changes - stephenmcd
* Moved the call to ``mezzanine.core.models.Displayble.set_searchable_keywords`` inside ``mezzanine.core.admin.DisplayableAdmin`` from ``save_form`` to ``save_model`` so that it is only triggered when the entire form including inline formsets are valid - stephenmcd
* Changed mezzanine.utils.conf.set_dynamic_settings to ensure debug_toolbar.middleware.DebugToolbarMiddleware is only ever added once when installed - stephenmcd
* Added a ``set_cookie`` function to save repeating seconds conversion and encoding - stephenmcd
* Changed the check for a device in cookies to only match if the value is a valid device - stephenmcd
* Added a ``set_device`` view for explictly requesting the site for a particular device via cookie - stephenmcd
* Mobile theme - jdeblank
* Moved mobile templates to mobile theme directory - stephenmcd
* Moved determining device from request into ``mezzanine.utils.device_from_request`` - stephenmcd
* Created a device aware version of Django's cache middleware that uses the device for the request as part of the cache key - stephenmcd
* Updated device section in docs to include a section about the ``mezzanine.mobile`` theme - stephenmcd
* Updated text for link to mobile site - stephenmcd
Version 0.9.1 (Nov 29, 2010)
----------------------------
* stop creation of empty p id="description" (Potentially needs refactoring) aka not too elegant - Lee Matos
* Fixed white-space in blog list template - stephenmcd
* Added Lee Matos to AUTHORS - stephenmcd
* Fixed branching of admin media hosting for Grappelli - stephenmcd
Version 0.9 (Nov 28, 2010)
--------------------------
* Change the logic around settings loading to avoid some untrappable errors creating the DB table - stephenmcd
* Style fix - stephenmcd
* Update setting names in docs - stephenmcd
* Update conf app name in packages docs - stephenmcd
* Remove redundant import - stephenmcd
* Move the various settings tweaks into ``mezzanine.utils.set_dynamic_settings()`` so that it can be called from the project's settings module and need not be duplicated in the settings modules of other project-based apps that leverage Mezzanine's settings module - stephenmcd
* Update to multiple DB settings - stephenmcd
* update to jquery 1.4.4 http://blog.jquery.com/2010/11/11/jquery-1-4-4-release-notes/ - lexual
* Fixed the blog_categories template tag so that it returns a list of categories without duplicates - Brad Montgomery
* Added a "get_recent_posts" template tag - Brad Montgomery
* Add Brad Montgomery to AUTHORS file - stephenmcd
* Update template loader and auth context processor names to newest versions with fallbacks for Django 1.1 - stephenmcd
* Update supported Django version in README and add new examples of sites using Mezzanine - stephenmcd
* Add south introspection rules for mezzanine.core.fields.HtmlField - stephenmcd
* allow definition lists in tinymce - lexual
* Modification of the importer script to be more streamlined. Moved importer to the blog module main and still to refactor the changes to the command line module.Can be run from a django shell and import blogger and word press - ajfisher
* Initial layout for themes - stephenmcd
* finished refactoring of importers module and wrote new import blog handler to import the various blog types into mezzanine. Also stripped down the params to be passed in on the word press blog - now treating any path as a url and dealing with it system side rather than user side - ajfisher
* Added documentation around blogger import stuff - ajfisher
* typo fix - ajfisher
* fixes to formatting of RST - ajfisher
* typos - ajfisher
* more typos - ajfisher
* Remove some old redundant template tag loading - stephenmcd
* Add admin change logging to inline editing - stephenmcd
* Allow newer versions of Django to determine full paths for templates in the start_theme command - stephenmcd
* Add ocrf.com.au to sites using Mezzanine in README - stephenmcd
* if image is already the right size, don't change it (fixes bug where image quality is degraded if same size.) - lexual
* Add copying of media files to start_theme command - stephenmcd
* Initial support for hosting a theme - stephenmcd
* Fix check for exact image size in thumbnail template tag - stephenmcd
* Make use of conf module's name within itself dynamic - stephenmcd
* Create a ``path_for_import`` utils function for calculating package/module paths - stephenmcd
* Add media hosting for a theme when defined - stephenmcd
* Further refactoring of the import process using a BaseImporterClass which is a Command and then setting up specific implementations for Wordpress and Blogger - ajfisher
* Modification to the docs in order to update the new structure of the commands and also how to implement a new importer class - ajfisher
* formatting changes - ajfisher
* removed all the now-superfluous files - ajfisher
* further formatting fixes - ajfisher
* final formatting - ajfisher
* Wrap lines in blog import docs - stephenmcd
* Modifications to make the class abstraction more tidy and clean up some other bits and pieces of code as well - ajfisher
* First round of edits for the blog import docs - stephenmcd
* Fix up constructor logic - stephenmcd
* Fix mezzanune_user reference in base blog importer - stephenmcd
* Move the output messages for blog importing into the base importer class - stephenmcd
* Add Andrew Fisher to AUTHORS file - stephenmcd
* Fix settings access for THEME in urls.py - stephenmcd
* Fix duplicate months in archive list for blog - stephenmcd
* Initial version of ``install_theme`` command - stephenmcd
* Add handling for ``interactive`` option in ``install_theme`` command - stephenmcd
* Rename scripts directory to bin for consistency with Django - stephenmcd
* Whitespace, grammar, punctuation fixes - stephenmcd
* Rename Blog importer ``convert`` method to ``handle_import`` and pass it options directly to mimic Django commands more closely - stephenmcd
* Clean up unused exceptions in Blog importer - stephenmcd
* Minor cleanups - stephenmcd
* Add a ``old_url`` arg for posts in base Blog importer for creating redirects - stephenmcd
* Upgrade ``import_tumblr`` command to use new importer base - stephenmcd
* Add handling in the ``import_tumblr`` command for more posts that a single call to Tumblr's API allows - stephenmcd
* Add handling for verbosity option in base Blog importer - stephenmcd
* Add handling for all post types in the ``import_tumblr`` command - stephenmcd
* Fix some errors and add Tumblr info to the blog importing doc - stephenmcd
* Move Google Analytics and ``editable_loader`` tag into their own include template ``footer_scripts.html`` - stephenmcd
* Add docs for themes - stephenmcd
* Fix a ton of typos in docs - stephenmcd
* Rename recent_posts blog template tag to be consistent with other tags - stephenmcd
* Add recent blog posts to filter_panel.html - stephenmcd
* js fix for ie bug with formbuilder - lexual
* Missing apostrophe - stephenmcd
* Modified the blog's filter_panel tempate so <ul> tags get closed properly - Brad Montgomery
* locale spanish - Carlos David Marrero
* search_results.html locale spanish - Carlos David Marrero
* better translate for ago in twitter - Carlos David Marrero
* Add translators to AUTHORS file - stephenmcd
* More robust handling for class-based views in mobile middleware. Closes #23 - stephenmcd
* Add thesource.com.au to sites using Mezzanine in README - stephenmcd
* add primary menu id to the UL for semantic and/or styling uses - Lee Matos
* Moved ``mezzanine.templates`` into a package - stephenmcd
* Add context-aware replacements for Django's ``render_to_response``, ``select_template``, ``get_template`` and template tags ``include`` and ``extend`` - stephenmcd
* Changed calls to ``select_template`` and ``render_to_response`` to use Mezzanine's context-aware versions - stephenmcd
* Deprecated ``mezzanine.core.middleware.MobileTemplate`` - stephenmcd
* Added main handling for device specific template directories - stephenmcd
* Added a context-aware replacement for Django's ``direct_to_template`` - stephenmcd
* Moved the test mobile homepage into its device specific subdirectory - stephenmcd
* Fixed renaming of node class in ``extends`` tag - stephenmcd
* Replaced mobile middleware test with device specific template test - stephenmcd
* Added "blog-post-tile" class for semantic/styling purposes - Lee Matos
* Added documentation for device specific template loading - stephenmcd
Version 0.8.5 (Nov 10, 2010)
----------------------------
* CSS update for default templates - stephenmcd
* Tag cleanup - stephenmcd
* Add more fine-grained error handling for tumblr_import management command - stephenmcd
* Change TinyMCE options to relax allowed HTML - stephenmcd
* More TinyMCE allowances - stephenmcd
* Fix formatting of multi-value fields for sending email in forms app - stephenmcd
* CSS updates to inline editing form - stephenmcd
* Initial version of admin dashboard plugin system with Quick Blog and Recent Comments implemented as dashboard widgets - stephenmcd
* Convert remaining dashboard sections into dashboard tags - app list and recent actions - stephenmcd
* Add the new screenshot - stephenmcd
* Add configurable dashboard to feature list in README - stephenmcd
* Add docstring to inline editing view - stephenmcd
* Add basic support for class-based views in mobile middleware and a more explicit check for unique mobile template names - stephenmcd
* Backed out changeset: c2ed0a189648 - stephenmcd
* Re-apply TINYMCE_URL setting, lost from merge - stephenmcd
* Move settings for forms app into main settings module - stephenmcd
* Fix ``filebrowser_safe`` generator script to add a dummy ``Image`` module which will prevent breaking when PIL isn't installed. Closes #15 - stephenmcd
* Give the ``ContentPage`` model a more descriptive name for the content type dropdown menu in the admin page tree - stephenmcd
* Add Toby White to AUTHORS - stephenmcd
* Add some missing translation calls - stephenmcd
* Convert ``mezzanine.settings`` into an app with values lazy loaded via DB - stephenmcd
* Add a default user when syncdb is called - stephenmcd
* Rewrite settings app to give more control over when settings are loaded so that fewer DB queries are used - stephenmcd
* Prevent settings from being loaded from DB during syncdb - stephenmcd
* Change settings from dicts into objects so they can be more easily identified when iterating through the ``mezzanine.settings.defaults`` module - stephenmcd
* Add admin view and form for editing all settings - stephenmcd
* Fix post_syncdb signal for demo user to work with Django 1.1 - stephenmcd
* Style and text updates to the settings form in admin - stephenmcd
* Fix casting of boolean settings from DB - stephenmcd
* Add a redirect on successful update of settings - stephenmcd
* Add tests for settings app - stephenmcd
* Fix custom field HTML for Django 1.1 - stephenmcd
* Add hook for apps to register their own settings - stephenmcd
* Refactor settings app - stephenmcd
* Update docs to use new settings app - stephenmcd
* Fix export for forms with deleted fields in forms app - stephenmcd
* Allow comma separated list of field choices to contain commas when quoted in forms app - stephenmcd
* Add a back button to the admin export view in the forms app - stephenmcd
* Fix bad copy - stephenmcd
* Fix missing import in forms export - stephenmcd
* Allow multiple fields to be used in a single editable tag - stephenmcd
* Update docs with information about grouping together fields for inline editing - stephenmcd
* Update creation of default user to only run with ``--noinput`` passed to ``syncdb`` - stephenmcd
* Add notes about default user to installation instructions in README - stephenmcd
* tree_menu_footer tag added. Exact same as "tree_menu" but checks if in footer not if in nav - lexual
* Hide the slug field and delete button in the admin for pages with an overridden urlpattern - stephenmcd
* Display list bullets and numbers in content - Eric Floehr
* Fix rendering editable fields when not authenticated - stephenmcd
* Add Eric Floehr to AUTHORS - stephenmcd
* Update ``mezzanine-project`` script to remove pyc files when creating new projects - stephenmcd
* Remove admin menu from popups - stephenmcd
* ignore some things - Tom von Schwerdtner
* ignore build dir - Tom von Schwerdtner
* Add ``mezzanine.core.templatetags.mezzanine_tags.thumbnail`` for image resizing - stephenmcd
* Add docs for the ``mezzanine.settings`` app - stephenmcd
* Strip newlines from commit messages in the auto-generated CHANGELOG - stephenmcd
* fixed typo, improved lists (indent), and added a style for block quotes, which previously didn't have one - Eric Floehr
* Fix typo in mezzanine-project script - stephenmcd
* Fix typo in docs - stephenmcd
* Improved default twitter feed style, more closely matching the way Twitter itself looks - Eric Floehr
* use export instead of checkout - Tom von Schwerdtner
* pep8 whitespace changes - Tom von Schwerdtner
* pep8 whitespace - Tom von Schwerdtner
* ignore dist - Tom von Schwerdtner
* Use svn export in grappelli/filebrowser scripts. Closes #16 - stephenmcd
* Fix split on commit author in automated CHANGELOG generator - stephenmcd
* removing tweet_timesince filter - Eric Floehr
* Fix unrequested settings being loaded from DB - stephenmcd
* Allow no names to be provided when calling editable_settings - stephenmcd
* Sort setting names for settings form in admin - stephenmcd
* Add Django as a dependency and remove import from project_template.settings in setup.py which depends on Django - stephenmcd
* Add some extra entries to .gitignore - stephenmcd
* Add Tom von Schwerdtner to AUTHORS - stephenmcd
* Remove redundant call to jQuery.noConflict since editable_loader is now at end of the document. Also check for an existing jQuery instance before including it - stephenmcd
* Fix isDirty() check for file fields in dynamic inlines - stephenmcd
* Fix inline editing for file uploads - stephenmcd
* Give each inline editable form field a unique ID to allow multiple TinyMCE editors to work correctly - stephenmcd
* add csrf_token to form for inline editing (django 1.2 fails without this.) - lexual
* admin now contains link back to site - lexual
* Move site link in admin to user-tools panel - stephenmcd
* move toolbar for editable inline to the right hand side - lexual
* Backed out changeset 50aa6171231d - lexual
* move inline editable toolbar to top right - lexual
* Make number of comments for a ``BlogPost`` available via ``BlogPostManager`` - stephenmcd
* Add ``mezzanine.utils.admin_url`` which handles reversing different admin URLs. Also rename ``admin_url`` template tag to ``try_url`` to better reflect its purpose - stephenmcd
* Add a (yet to be used) ``SingletonAdmin`` class for creating admin classes that manage models with a single instance - stephenmcd
* Clean up the dynamic inline hooks Django uses that get left behind by using Grappelli's inline template - stephenmcd