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
common/test/data/migration/0.1.0_web.py
View file @
606923df
"""web only"""
"""web only
: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.2_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
common/test/data/server_migration/bootstrapmigration_repository.py
View file @
606923df
"""allways executed before all others in server migration"""
"""allways executed before all others in server migration
: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/unittest_mail.py
View file @
606923df
# -*- coding: utf-8 -*-
"""unit tests for module cubicweb.common.mail"""
"""unit tests for module cubicweb.common.mail
: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
"""
import
os
import
pwd
...
...
common/test/unittest_migration.py
View file @
606923df
"""cubicweb.common.migration unit tests"""
"""cubicweb.common.migration unit tests
: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
"""
from
os.path
import
abspath
from
logilab.common.testlib
import
TestCase
,
unittest_main
...
...
common/test/unittest_mixins.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
"""
from
logilab.common.testlib
import
unittest_main
from
cubicweb.devtools.apptest
import
EnvBasedTC
...
...
common/test/unittest_uilib.py
View file @
606923df
# -*- coding: utf-8 -*-
"""unittests for cubicweb.common.uilib"""
"""unittests for cubicweb.common.uilib
: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
"""
__docformat__
=
"restructuredtext en"
...
...
common/uilib.py
View file @
606923df
...
...
@@ -4,8 +4,9 @@
contains some functions designed to help implementation of cubicweb user interface
: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
:license: GNU Lesser General Public License, v2.1 - http://www.gnu.org/licenses
"""
__docformat__
=
"restructuredtext en"
...
...
common/utils.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
from
warnings
import
warn
warn
(
'moved to cubicweb.utils'
,
DeprecationWarning
,
stacklevel
=
2
)
...
...
common/view.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
from
warnings
import
warn
warn
(
'moved to cubicweb.view'
,
DeprecationWarning
,
stacklevel
=
2
)
...
...
cwconfig.py
View file @
606923df
...
...
@@ -2,13 +2,14 @@
"""common configuration utilities for cubicweb
: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
.. envvar:: CW_CUBES_PATH
Augments the default search path for cubes
:license: GNU Lesser General Public License, v2.1 - http://www.gnu.org/licenses
"""
__docformat__
=
"restructuredtext en"
_
=
unicode
...
...
cwctl.py
View file @
606923df
"""%%prog %s [options] %s
CubicWeb main applications controller.
:license: GNU Lesser General Public License, v2.1 - http://www.gnu.org/licenses
%s"""
import
sys
...
...
cwvreg.py
View file @
606923df
"""extend the generic VRegistry with some cubicweb specific stuff
: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
:license: GNU Lesser General Public License, v2.1 - http://www.gnu.org/licenses
"""
__docformat__
=
"restructuredtext en"
_
=
unicode
...
...
dbapi.py
View file @
606923df
...
...
@@ -5,8 +5,9 @@ Take a look at http://www.python.org/peps/pep-0249.html
(most parts of this document are reported here in docstrings)
: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
:license: GNU Lesser General Public License, v2.1 - http://www.gnu.org/licenses
"""
__docformat__
=
"restructuredtext en"
...
...
devtools/__init__.py
View file @
606923df
"""Test tools for cubicweb
: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
:license: GNU Lesser General Public License, v2.1 - http://www.gnu.org/licenses
"""
__docformat__
=
"restructuredtext en"
...
...
devtools/_apptest.py
View file @
606923df
"""Hidden internals for the devtools.apptest module
: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
:license: GNU Lesser General Public License, v2.1 - http://www.gnu.org/licenses
"""
__docformat__
=
"restructuredtext en"
...
...
devtools/apptest.py
View file @
606923df
"""This module provides misc utilities to test applications
: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
:license: GNU Lesser General Public License, v2.1 - http://www.gnu.org/licenses
"""
__docformat__
=
"restructuredtext en"
...
...
devtools/cwtwill.py
View file @
606923df
"""cubicweb extensions for twill
: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
:license: GNU Lesser General Public License, v2.1 - http://www.gnu.org/licenses
"""
import
re
...
...
devtools/devctl.py
View file @
606923df
...
...
@@ -2,8 +2,9 @@
cubes development
: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
:license: GNU Lesser General Public License, v2.1 - http://www.gnu.org/licenses
"""
__docformat__
=
"restructuredtext en"
...
...
devtools/fake.py
View file @
606923df
"""Fake objects to ease testing of cubicweb without a fully working environment
: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
:license: GNU Lesser General Public License, v2.1 - http://www.gnu.org/licenses
"""
__docformat__
=
"restructuredtext en"
...
...
Prev
1
2
3
4
5
6
…
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