Skip to content

Commit

Permalink
Merge pull request #34 from plone/gforcada-patch-2
Browse files Browse the repository at this point in the history
Add coding header
  • Loading branch information
gforcada authored Oct 3, 2016
2 parents 8733c14 + cc87cf7 commit c058e41
Show file tree
Hide file tree
Showing 38 changed files with 39 additions and 3 deletions.
4 changes: 2 additions & 2 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ New features:

Bug fixes:

- *add item here*

- Add coding header on python files.
[gforcada]

3.2.2 (2016-09-14)
------------------
Expand Down
1 change: 1 addition & 0 deletions plone/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# -*- coding: utf-8 -*-
# See http://peak.telecommunity.com/DevCenter/setuptools#namespace-packages
try:
__import__('pkg_resources').declare_namespace(__name__)
Expand Down
1 change: 1 addition & 0 deletions plone/app/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# -*- coding: utf-8 -*-
# See http://peak.telecommunity.com/DevCenter/setuptools#namespace-packages
try:
__import__('pkg_resources').declare_namespace(__name__)
Expand Down
1 change: 1 addition & 0 deletions plone/app/iterate/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# -*- coding: utf-8 -*-
##################################################################
#
# (C) Copyright 2006 ObjectRealms, LLC
Expand Down
1 change: 1 addition & 0 deletions plone/app/iterate/archiver.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# -*- coding: utf-8 -*-
##################################################################
#
# (C) Copyright 2006-2007 ObjectRealms, LLC
Expand Down
1 change: 1 addition & 0 deletions plone/app/iterate/browser/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
# -*- coding: utf-8 -*-
#
1 change: 1 addition & 0 deletions plone/app/iterate/browser/cancel.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# -*- coding: utf-8 -*-
##################################################################
#
# (C) Copyright 2006 ObjectRealms, LLC
Expand Down
1 change: 1 addition & 0 deletions plone/app/iterate/browser/checkin.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# -*- coding: utf-8 -*-
##################################################################
#
# (C) Copyright 2006 ObjectRealms, LLC
Expand Down
1 change: 1 addition & 0 deletions plone/app/iterate/browser/checkout.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# -*- coding: utf-8 -*-
##################################################################
#
# (C) Copyright 2006 ObjectRealms, LLC
Expand Down
1 change: 1 addition & 0 deletions plone/app/iterate/browser/control.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# -*- coding: utf-8 -*-
##################################################################
#
# (C) Copyright 2006 ObjectRealms, LLC
Expand Down
1 change: 1 addition & 0 deletions plone/app/iterate/browser/diff.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# -*- coding: utf-8 -*-
"""
$Id: diff.py 1807 2007-02-06 06:52:46Z hazmat $
"""
Expand Down
1 change: 1 addition & 0 deletions plone/app/iterate/browser/info.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# -*- coding: utf-8 -*-
"""
$Id: base.py 1808 2007-02-06 11:39:11Z hazmat $
"""
Expand Down
1 change: 1 addition & 0 deletions plone/app/iterate/containers.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# -*- coding: utf-8 -*-
##################################################################
#
# (C) Copyright 2006 ObjectRealms, LLC
Expand Down
1 change: 1 addition & 0 deletions plone/app/iterate/copier.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# -*- coding: utf-8 -*-
##################################################################
#
# (C) Copyright 2006-2007 ObjectRealms, LLC
Expand Down
1 change: 1 addition & 0 deletions plone/app/iterate/dexterity/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
# -*- coding: utf-8 -*-

ITERATE_RELATION_NAME = 'iterate-working-copy'
1 change: 1 addition & 0 deletions plone/app/iterate/dexterity/copier.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# -*- coding: utf-8 -*-
from Acquisition import aq_inner, aq_parent
from Products.CMFCore.utils import getToolByName
from Products.DCWorkflow.DCWorkflow import DCWorkflowDefinition
Expand Down
1 change: 1 addition & 0 deletions plone/app/iterate/dexterity/interfaces.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# -*- coding: utf-8 -*-
from plone.app.iterate.interfaces import IIterateAware
from zope.interface import Attribute
from z3c.relationfield.interfaces import IRelationValue
Expand Down
1 change: 1 addition & 0 deletions plone/app/iterate/dexterity/policy.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# -*- coding: utf-8 -*-
from plone.app import iterate
from plone.app.iterate.dexterity.utils import get_baseline
from plone.app.iterate.dexterity.utils import get_checkout_relation
Expand Down
1 change: 1 addition & 0 deletions plone/app/iterate/dexterity/relation.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# -*- coding: utf-8 -*-
from plone.app.iterate.dexterity.interfaces import IStagingRelationValue
from z3c.relationfield import relation
from zc.relation.interfaces import ICatalog
Expand Down
1 change: 1 addition & 0 deletions plone/app/iterate/dexterity/utils.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# -*- coding: utf-8 -*-
from Acquisition import aq_inner, aq_base
from plone.app.iterate.dexterity import ITERATE_RELATION_NAME
from zc.relation.interfaces import ICatalog
Expand Down
1 change: 1 addition & 0 deletions plone/app/iterate/event.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# -*- coding: utf-8 -*-
##################################################################
#
# (C) Copyright 2006 ObjectRealms, LLC
Expand Down
1 change: 1 addition & 0 deletions plone/app/iterate/interfaces.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# -*- coding: utf-8 -*-
##################################################################
#
# (C) Copyright 2006 ObjectRealms, LLC
Expand Down
1 change: 1 addition & 0 deletions plone/app/iterate/lock.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# -*- coding: utf-8 -*-
##################################################################
#
# (C) Copyright 2006 ObjectRealms, LLC
Expand Down
1 change: 1 addition & 0 deletions plone/app/iterate/permissions.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# -*- coding: utf-8 -*-
##################################################################
#
# (C) Copyright 2006 ObjectRealms, LLC
Expand Down
1 change: 1 addition & 0 deletions plone/app/iterate/policy.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# -*- coding: utf-8 -*-
##################################################################
#
# (C) Copyright 2006-2007 ObjectRealms, LLC
Expand Down
1 change: 1 addition & 0 deletions plone/app/iterate/relation.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# -*- coding: utf-8 -*-
##################################################################
#
# (C) Copyright 2006 ObjectRealms, LLC
Expand Down
1 change: 1 addition & 0 deletions plone/app/iterate/subscribers/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
# -*- coding: utf-8 -*-
# $Id: __init__.py 1808 2007-02-06 11:39:11Z hazmat $
1 change: 1 addition & 0 deletions plone/app/iterate/subscribers/locking.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# -*- coding: utf-8 -*-
##################################################################
#
# (C) Copyright 2006-2007 ObjectRealms, LLC
Expand Down
1 change: 1 addition & 0 deletions plone/app/iterate/subscribers/marker.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# -*- coding: utf-8 -*-
##################################################################
#
# (C) Copyright 2006-2007 ObjectRealms, LLC
Expand Down
1 change: 1 addition & 0 deletions plone/app/iterate/subscribers/metadata.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# -*- coding: utf-8 -*-
##################################################################
#
# (C) Copyright 2006-2007 ObjectRealms, LLC
Expand Down
1 change: 1 addition & 0 deletions plone/app/iterate/subscribers/versioning.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# -*- coding: utf-8 -*-
##################################################################
#
# (C) Copyright 2006-2007 ObjectRealms, LLC
Expand Down
1 change: 1 addition & 0 deletions plone/app/iterate/subscribers/workflow.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# -*- coding: utf-8 -*-
##################################################################
#
# (C) Copyright 2006-2007 ObjectRealms, LLC
Expand Down
2 changes: 1 addition & 1 deletion plone/app/iterate/testing.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
"""Testing setup for integration and functional tests."""
# -*- coding: utf-8 -*-
"""Testing setup for integration and functional tests."""
from plone.app.contenttypes.testing import PloneAppContenttypes
from plone.app.testing import PLONE_FIXTURE
from plone.app.testing import PloneSandboxLayer
Expand Down
1 change: 1 addition & 0 deletions plone/app/iterate/tests/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
# -*- coding: utf-8 -*-
#
1 change: 1 addition & 0 deletions plone/app/iterate/tests/test_interfaces.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# -*- coding: utf-8 -*-
from plone.app.iterate.interfaces import IBaseline
from plone.app.iterate.interfaces import ICheckinCheckoutPolicy
from plone.app.iterate.interfaces import IIterateAware
Expand Down
1 change: 1 addition & 0 deletions plone/app/iterate/tests/test_iterate.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# -*- coding: utf-8 -*-
##################################################################
#
# (C) Copyright 2006 ObjectRealms, LLC
Expand Down
1 change: 1 addition & 0 deletions plone/app/iterate/util.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# -*- coding: utf-8 -*-
##################################################################
#
# (C) Copyright 2006-2007 ObjectRealms, LLC
Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# -*- coding: utf-8 -*-
"""Setup plone.app.iterate."""
from setuptools import setup, find_packages

Expand Down

0 comments on commit c058e41

Please sign in to comment.