Skip to content

Commit

Permalink
Merge branch 'master' of github.com:plone/plone.app.discussion
Browse files Browse the repository at this point in the history
Conflicts:
	plone/app/discussion/locales/ja/LC_MESSAGES/plone.app.discussion.po
  • Loading branch information
terapyon committed Apr 29, 2015
2 parents b868b44 + 8843d8d commit b235f74
Show file tree
Hide file tree
Showing 127 changed files with 8,363 additions and 5,250 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,15 @@
/build
/dist
/local.cfg
.coverage
/*.egg-info
/*.egg
/.installed.cfg
*.pyc
/.Python
/include
/lib
/local
/.project
/.pydevproject
/.mr.developer.cfg
Expand Down
19 changes: 19 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
language: python
python: "2.7"
sudo: false
cache:
directories:
- eggs
before_install:
- pip install http://effbot.org/downloads/Imaging-1.1.7.tar.gz
install:
- mkdir -p buildout-cache/eggs
- mkdir -p buildout-cache/downloads
- python bootstrap-buildout.py --setuptools-version=8.3 -c travis.cfg
- bin/buildout -N -t 3 -c travis.cfg
script:
- bin/code-analysis
# - bin/test-coverage
#after_success:
# - pip install -q coveralls
# - coveralls
268 changes: 267 additions & 1 deletion CHANGES.txt → CHANGES.rst
Original file line number Diff line number Diff line change
@@ -1,9 +1,275 @@
Changelog
=========

2.2.1 (unreleased)
2.4.2 (unreleased)
------------------

- Nothing changed yet.


2.4.1 (2015-03-26)
------------------

- i18n for ICaptcha interface.
[davidjb]


2.4.0 (2015-03-12)
------------------

- use requirejs if available
[vangheem]

- Rename @@discussion-settings to @@discussion-controlpanel
[maartenkling]

- Add permission to allow comment authors to delete their own comments if
there are no replies yet.
[gaudenz]

- Updated portuguese pt-br translation.
[jtmolon]

- Read mail settings from new (Plone 5) registry.
[timo]

- Remove @property from Conversation.total_comments as @property and
Acquisition don't play well together.
[gforcada]


2.3.3 (2014-10-23)
------------------

- Don't execute createReplyForm js if there is no in_reply_to button.
[vincentfretin]

- Register events as Content Rules Event Types if plone.contentrules is present
[avoinea]

- Trigger custom events on comment add/remove/reply
[avoinea]

- Replace $.live with $.on for jQuery >= 1.9 compatibility. This works on
jQuery >= 1.7 (Plone 4.3 onwards).
[gaudenz]

- Update Traditional Chinese translations.
[marr]

- Make comments editable.
[pjstevns, gyst]

- Provide 'Delete comments' permission to handle comments deletion
[cekk]

- Fixed Italian translations [cekk]


2.3.2 (2014-04-05)
------------------

- bugfix: according to IDiscussionSettings.anonymous_email_enabled (cite):
"If selected, anonymous user will have to give their email." - But field
was not required. Now it is.
[jensens]

- bugfix: anonymous email field was never saved.
[jensens]

- updated german translations: added some missing msgstr.
[jensens]

- added i18ndude and a script ``update_translations`` to buildout in order
to make translation updates simpler.
[jensens]

- Fix reindexObject for content_object in moderation views.
Now reindex only "total_comments" index and not all the indexes
[cekk]

- Fix comments Title if utf-8 characters in author_name
[huub_bouma]

- use member.getId as author_username, so membrane users having different id
then username still have there picture shown and author path is correct.
[maartenkling]


2.3.1 (2014-02-22)
------------------

- 2.3.0 was a brown bag release.
[timo]


2.3.0 (2014-02-22)
------------------

- Remove DL's from portal message in templates.
https://github.com/plone/Products.CMFPlone/issues/153
[khink]

- Execute the proper workflow change when using the moderation buttons instead
of hardcoding the workflow action to always publish
[omiron]

- Corrections and additions to the Danish translation
[aputtu]


2.2.12 (2014-01-13)
-------------------

- Show author email to Moderator when it is available in anonymous comment.
[gotcha, smoussiaux]

- Put defaultUser.png instead of old defaultUser.gif
[bsuttor]

- Remove bbb directory. bbb was never really implemented.
[timo]

- Replace deprecated test assert statements.
[timo]

- Remove portal_discussion tool.
[timo]

- Refactor tests to use the PLONE_APP_CONTENTTYPES_FIXTURE instead of
PLONE_FIXTURE.
[timo]

- Fix ownership of comments.
[toutpt]


2.2.10 (2013-09-24)
-------------------

- Revert "Refactor tests to use the PLONE_APP_CONTENTTYPES_FIXTURE instead of
the PLONE_FIXTURE." that has been accidentially introduced into the 2.2.9
release.
[timo]


2.2.9 (2013-09-24)
------------------

- Portuguese translation added.
[Rui Silva]

- Rename CHANGES.txt to CHANGES.rst.
[timo]

- Fix ajax form submit for delete comment action: add 'data' to the request.
[toutpt]


2.2.8 (2013-08-20)
------------------

- Re-release 2.2.7 with .mo files. Seems like 2.2.7 has been released twice on
two different dates. The first release seems to be made without a github
push.
[timo]

- Fix comments viewlet's get_replies for non-annotatable objects.
[witsch]


2.2.7 (2013-07-04)
------------------

- making sure .mo files are present at release
[garbas]

- Revert change that silently added mime_type attribute values
to old discussion items that had none.
[pjstevns]


2.2.6 (2013-05-23)
------------------

- Fix migration to not fail when member has been deleted.
[datakurre]


2.2.5 (2013-04-06)
------------------

- Update pt_BR translation [ericof]

- Do not raise an error when no workflow is assigned to the comment type.
[timo]

- Add a conversation property public_commentators that only lists
commentators of comments that are public.
The commentators indexer indexes this field now.
The behavior of the conversation property commentators is
unchanged.
[do3cc]

- The last comment date now only returns the date of the newest
published comment.
[do3cc]


2.2.4 (2013-03-05)
------------------

- Check for 'checked' attribute in a way that work also for jQuery 1.7
[ichimdav]

- Better fix for #13037 by removing submit event trigger altogether
[ichimdav]

- Added Romanian translation
[ichimdav]

- Updated Ukrainian translation
[kroman0]


2.2.3 (2013-01-13)
------------------

- add anonymous_email_enabled settings to really let integrator activate
the email field on comment add form when anonymous.
[toutpt]


2.2.2 (2012-11-16)
------------------

- first check if captcha is installed before we open browsers zcml
files that depend on these packages, fixes #12118 and #12774
[maartenkling]


2.2.1 (2012-11-16)
------------------

- Make conversation view not break when comment-id cannot be converted to
long. This fixes #13327
[khink]

- fix insufficient privileges when trying to view
the RSS feed of a comment collection
[maartenkling]

- removed inline border=0 and move it to css
[maartenkling]

- For migrations of comments without a valid old_status, apply the 'published'
state.
[thet]

- Re-apply eleddy's "Revert modification date since this is fixed in
p.a.caching now." as her commit was lost later on due to some git magic.
[thet]

- Remove submitting the controlpanel form again after removing disabled tags
fixes #13037 and #12357
[maartenkling]
Expand Down
1 change: 1 addition & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
include *.txt
include *.rst

recursive-include docs *
recursive-include plone *
Expand Down
8 changes: 5 additions & 3 deletions README.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
Introduction
============


plone.app.discussion replaces the old commenting system in Plone 4.1 and is also
available as an add-on product for Plone 3 and 4. It was initially developed as
part of the Google Summer of Code 2009 by Timo Stollenwerk (student) and Martin
Expand Down Expand Up @@ -28,8 +29,8 @@ Requirements
Plone 3.3 or later.


Plone 3.x Buildout Installation
===============================
Plone 3.3.x Buildout Installation
=================================

To install plone.app.discussion, add the following code to your buildout.cfg::

Expand All @@ -55,7 +56,7 @@ To install plone.app.discussion, add the following code to your buildout.cfg::
...


Plone 4.x Buildout Installation
Plone 4.0 Buildout Installation
===============================

To install plone.app.discussion, add the following code to your buildout.cfg::
Expand Down Expand Up @@ -144,3 +145,4 @@ Many thanks to:
- Hanno Schlichting (for making p.a.d work with Zope 2.12)
- Alan Hoey (for providing fixes)
- Maik Roeder (for providing and setting up a buildbot)

Loading

0 comments on commit b235f74

Please sign in to comment.