Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
cubicweb
cubicweb
Commits
606923dff11b
Commit
ddb4161c
authored
May 28, 2009
by
Adrien Di Mascio
Browse files
big bunch of copyright / docstring update
parent
851e08142873
Changes
352
Hide whitespace changes
Inline
Side-by-side
__init__.py
View file @
606923df
...
@@ -2,7 +2,7 @@
...
@@ -2,7 +2,7 @@
relations between entitites.
relations between entitites.
:organization: Logilab
:organization: Logilab
:copyright: 2001-2009 LOGILAB S.A. (Paris, FRANCE),
all rights reserved
.
:copyright: 2001-2009 LOGILAB S.A. (Paris, FRANCE),
license is LGPL v2
.
:contact: http://www.logilab.fr/ -- mailto:contact@logilab.fr
:contact: http://www.logilab.fr/ -- mailto:contact@logilab.fr
:license: Library General Public License version 2 - http://www.gnu.org/licenses
:license: Library General Public License version 2 - http://www.gnu.org/licenses
"""
"""
...
...
__pkginfo__.py
View file @
606923df
# pylint: disable-msg=W0622,C0103
# pylint: disable-msg=W0622,C0103
"""cubicweb global packaging information for the cubicweb knowledge management
"""cubicweb global packaging information for the cubicweb knowledge management
software
software
:license: GNU Lesser General Public License, v2.1 - http://www.gnu.org/licenses
"""
"""
distname
=
"cubicweb"
distname
=
"cubicweb"
...
...
_exceptions.py
View file @
606923df
...
@@ -2,8 +2,9 @@
...
@@ -2,8 +2,9 @@
:organization: Logilab
:organization: Logilab
:copyright: 2001-2009 LOGILAB S.A. (Paris, FRANCE),
all rights reserved
.
:copyright: 2001-2009 LOGILAB S.A. (Paris, FRANCE),
license is LGPL v2
.
:contact: http://www.logilab.fr/ -- mailto:contact@logilab.fr
:contact: http://www.logilab.fr/ -- mailto:contact@logilab.fr
:license: GNU Lesser General Public License, v2.1 - http://www.gnu.org/licenses
"""
"""
__docformat__
=
"restructuredtext en"
__docformat__
=
"restructuredtext en"
...
...
appobject.py
View file @
606923df
"""Base class for dynamically loaded objects manipulated in the web interface
"""Base class for dynamically loaded objects manipulated in the web interface
:organization: Logilab
:organization: Logilab
:copyright: 2001-2009 LOGILAB S.A. (Paris, FRANCE),
all rights reserved
.
:copyright: 2001-2009 LOGILAB S.A. (Paris, FRANCE),
license is LGPL v2
.
:contact: http://www.logilab.fr/ -- mailto:contact@logilab.fr
:contact: http://www.logilab.fr/ -- mailto:contact@logilab.fr
:license: GNU Lesser General Public License, v2.1 - http://www.gnu.org/licenses
"""
"""
__docformat__
=
"restructuredtext en"
__docformat__
=
"restructuredtext en"
...
...
common/__init__.py
View file @
606923df
...
@@ -2,8 +2,9 @@
...
@@ -2,8 +2,9 @@
hg stserver side and on the client side
hg stserver side and on the client side
:organization: Logilab
:organization: Logilab
:copyright: 2001-2009 LOGILAB S.A. (Paris, FRANCE),
all rights reserved
.
:copyright: 2001-2009 LOGILAB S.A. (Paris, FRANCE),
license is LGPL v2
.
:contact: http://www.logilab.fr/ -- mailto:contact@logilab.fr
:contact: http://www.logilab.fr/ -- mailto:contact@logilab.fr
:license: GNU Lesser General Public License, v2.1 - http://www.gnu.org/licenses
"""
"""
from
logilab.common.adbh
import
FunctionDescr
from
logilab.common.adbh
import
FunctionDescr
...
...
common/appobject.py
View file @
606923df
"""pre 3.2 bw compat"""
"""pre 3.2 bw compat
:organization: Logilab
:copyright: 2001-2009 LOGILAB S.A. (Paris, FRANCE), license is LGPL v2.
:contact: http://www.logilab.fr/ -- mailto:contact@logilab.fr
:license: GNU Lesser General Public License, v2.1 - http://www.gnu.org/licenses
"""
# pylint: disable-msg=W0614,W0401
# pylint: disable-msg=W0614,W0401
from
warnings
import
warn
from
warnings
import
warn
warn
(
'moved to cubicweb.appobject'
,
DeprecationWarning
,
stacklevel
=
2
)
warn
(
'moved to cubicweb.appobject'
,
DeprecationWarning
,
stacklevel
=
2
)
...
...
common/entity.py
View file @
606923df
"""pre 3.2 bw compat"""
"""pre 3.2 bw compat
:organization: Logilab
:copyright: 2001-2009 LOGILAB S.A. (Paris, FRANCE), license is LGPL v2.
:contact: http://www.logilab.fr/ -- mailto:contact@logilab.fr
:license: GNU Lesser General Public License, v2.1 - http://www.gnu.org/licenses
"""
# pylint: disable-msg=W0614,W0401
# pylint: disable-msg=W0614,W0401
from
warnings
import
warn
from
warnings
import
warn
warn
(
'moved to cubicweb.entity'
,
DeprecationWarning
,
stacklevel
=
2
)
warn
(
'moved to cubicweb.entity'
,
DeprecationWarning
,
stacklevel
=
2
)
...
...
common/i18n.py
View file @
606923df
"""Some i18n/gettext utilities.
"""Some i18n/gettext utilities.
:organization: Logilab
:organization: Logilab
:copyright: 2001-2009 LOGILAB S.A. (Paris, FRANCE),
all rights reserved
.
:copyright: 2001-2009 LOGILAB S.A. (Paris, FRANCE),
license is LGPL v2
.
:contact: http://www.logilab.fr/ -- mailto:contact@logilab.fr
:contact: http://www.logilab.fr/ -- mailto:contact@logilab.fr
:license: GNU Lesser General Public License, v2.1 - http://www.gnu.org/licenses
"""
"""
__docformat__
=
"restructuredtext en"
__docformat__
=
"restructuredtext en"
...
...
common/mail.py
View file @
606923df
"""Common utilies to format / semd emails.
"""Common utilies to format / semd emails.
:organization: Logilab
:organization: Logilab
:copyright: 2001-2009 LOGILAB S.A. (Paris, FRANCE),
all rights reserved
.
:copyright: 2001-2009 LOGILAB S.A. (Paris, FRANCE),
license is LGPL v2
.
:contact: http://www.logilab.fr/ -- mailto:contact@logilab.fr
:contact: http://www.logilab.fr/ -- mailto:contact@logilab.fr
:license: GNU Lesser General Public License, v2.1 - http://www.gnu.org/licenses
"""
"""
__docformat__
=
"restructuredtext en"
__docformat__
=
"restructuredtext en"
...
...
common/migration.py
View file @
606923df
...
@@ -2,8 +2,9 @@
...
@@ -2,8 +2,9 @@
version
version
:organization: Logilab
:organization: Logilab
:copyright: 2001-2009 LOGILAB S.A. (Paris, FRANCE),
all rights reserved
.
:copyright: 2001-2009 LOGILAB S.A. (Paris, FRANCE),
license is LGPL v2
.
:contact: http://www.logilab.fr/ -- mailto:contact@logilab.fr
:contact: http://www.logilab.fr/ -- mailto:contact@logilab.fr
:license: GNU Lesser General Public License, v2.1 - http://www.gnu.org/licenses
"""
"""
__docformat__
=
"restructuredtext en"
__docformat__
=
"restructuredtext en"
...
...
common/mixins.py
View file @
606923df
...
@@ -2,8 +2,9 @@
...
@@ -2,8 +2,9 @@
:organization: Logilab
:organization: Logilab
:copyright: 2001-2009 LOGILAB S.A. (Paris, FRANCE),
all rights reserved
.
:copyright: 2001-2009 LOGILAB S.A. (Paris, FRANCE),
license is LGPL v2
.
:contact: http://www.logilab.fr/ -- mailto:contact@logilab.fr
:contact: http://www.logilab.fr/ -- mailto:contact@logilab.fr
:license: GNU Lesser General Public License, v2.1 - http://www.gnu.org/licenses
"""
"""
__docformat__
=
"restructuredtext en"
__docformat__
=
"restructuredtext en"
...
...
common/mttransforms.py
View file @
606923df
"""mime type transformation engine for cubicweb, based on mtconverter
"""mime type transformation engine for cubicweb, based on mtconverter
:organization: Logilab
:organization: Logilab
:copyright: 2001-2009 LOGILAB S.A. (Paris, FRANCE),
all rights reserved
.
:copyright: 2001-2009 LOGILAB S.A. (Paris, FRANCE),
license is LGPL v2
.
:contact: http://www.logilab.fr/ -- mailto:contact@logilab.fr
:contact: http://www.logilab.fr/ -- mailto:contact@logilab.fr
:license: GNU Lesser General Public License, v2.1 - http://www.gnu.org/licenses
"""
"""
__docformat__
=
"restructuredtext en"
__docformat__
=
"restructuredtext en"
...
...
common/schema.py
View file @
606923df
"""pre 3.0 bw compat"""
"""pre 3.0 bw compat
:organization: Logilab
:copyright: 2001-2009 LOGILAB S.A. (Paris, FRANCE), license is LGPL v2.
:contact: http://www.logilab.fr/ -- mailto:contact@logilab.fr
:license: GNU Lesser General Public License, v2.1 - http://www.gnu.org/licenses
"""
# pylint: disable-msg=W0614,W0401
# pylint: disable-msg=W0614,W0401
from
warnings
import
warn
from
warnings
import
warn
warn
(
'moved to cubicweb.schema'
,
DeprecationWarning
,
stacklevel
=
2
)
warn
(
'moved to cubicweb.schema'
,
DeprecationWarning
,
stacklevel
=
2
)
...
...
common/selectors.py
View file @
606923df
"""pre 3.2 bw compat"""
"""pre 3.2 bw compat
:organization: Logilab
:copyright: 2001-2009 LOGILAB S.A. (Paris, FRANCE), license is LGPL v2.
:contact: http://www.logilab.fr/ -- mailto:contact@logilab.fr
:license: GNU Lesser General Public License, v2.1 - http://www.gnu.org/licenses
"""
# pylint: disable-msg=W0614,W0401
# pylint: disable-msg=W0614,W0401
from
warnings
import
warn
from
warnings
import
warn
warn
(
'moved to cubicweb.selectors'
,
DeprecationWarning
,
stacklevel
=
2
)
warn
(
'moved to cubicweb.selectors'
,
DeprecationWarning
,
stacklevel
=
2
)
...
...
common/tags.py
View file @
606923df
"""helper classes to generate simple (X)HTML tags
"""helper classes to generate simple (X)HTML tags
:organization: Logilab
:organization: Logilab
:copyright: 2009 LOGILAB S.A. (Paris, FRANCE),
all rights reserved
.
:copyright: 2009 LOGILAB S.A. (Paris, FRANCE),
license is LGPL v2
.
:contact: http://www.logilab.fr/ -- mailto:contact@logilab.fr
:contact: http://www.logilab.fr/ -- mailto:contact@logilab.fr
:license: GNU Lesser General Public License, v2.1 - http://www.gnu.org/licenses
"""
"""
__docformat__
=
"restructuredtext en"
__docformat__
=
"restructuredtext en"
...
...
common/test/data/migration/0.0.3_Any.py
View file @
606923df
"""
:organization: Logilab
:copyright: 2001-2009 LOGILAB S.A. (Paris, FRANCE), license is LGPL v2.
:contact: http://www.logilab.fr/ -- mailto:contact@logilab.fr
:license: GNU Lesser General Public License, v2.1 - http://www.gnu.org/licenses
"""
coucou
coucou
common/test/data/migration/0.0.4_Any.py
View file @
606923df
"""
:organization: Logilab
:copyright: 2001-2009 LOGILAB S.A. (Paris, FRANCE), license is LGPL v2.
:contact: http://www.logilab.fr/ -- mailto:contact@logilab.fr
:license: GNU Lesser General Public License, v2.1 - http://www.gnu.org/licenses
"""
coucou
coucou
common/test/data/migration/0.1.0_Any.py
View file @
606923df
"""
:organization: Logilab
:copyright: 2001-2009 LOGILAB S.A. (Paris, FRANCE), license is LGPL v2.
:contact: http://www.logilab.fr/ -- mailto:contact@logilab.fr
:license: GNU Lesser General Public License, v2.1 - http://www.gnu.org/licenses
"""
coucou
coucou
common/test/data/migration/0.1.0_common.py
View file @
606923df
"""common to all configuration"""
"""common to all configuration
:organization: Logilab
:copyright: 2001-2009 LOGILAB S.A. (Paris, FRANCE), license is LGPL v2.
:contact: http://www.logilab.fr/ -- mailto:contact@logilab.fr
:license: GNU Lesser General Public License, v2.1 - http://www.gnu.org/licenses
"""
common/test/data/migration/0.1.0_repository.py
View file @
606923df
"""repository specific"""
"""repository specific
:organization: Logilab
:copyright: 2001-2009 LOGILAB S.A. (Paris, FRANCE), license is LGPL v2.
:contact: http://www.logilab.fr/ -- mailto:contact@logilab.fr
:license: GNU Lesser General Public License, v2.1 - http://www.gnu.org/licenses
"""
Prev
1
2
3
4
5
…
18
Next
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment