Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
cubicweb
cubes
person
Commits
b8a5bb294179
Commit
47e18ba2
authored
Sep 01, 2009
by
Nicolas Chauvat
Browse files
backport stable branch
parents
7bf756c99ddd
5fec8191e5ee
Changes
4
Hide whitespace changes
Inline
Side-by-side
.hgtags
View file @
b8a5bb29
...
...
@@ -2,3 +2,5 @@
21cb3add5ad3d5f208ae1a8238e022e6506db05c cubicweb-person-debian-version-1_3_0-1
629d91971958945f63bbddf7bc1df2f0e0555254 cubicweb-person-version-1_4_0
259b06fe28045c4f3b3dfa3feadc1ae33580dca1 cubicweb-person-debian-version-1_4_0-1
98757d40e6b96080410b489bcd026ea2b88fb3bd cubicweb-person-version-1_5_0
ac2dbe5928ec7daa1ab60da9d12ff9b539d270e2 cubicweb-person-debian-version-1_5_0-1
__init__.py
View file @
b8a5bb29
"""
package __init__
"""
"""
cubicweb-person
"""
__pkginfo__.py
View file @
b8a5bb29
# pylint: disable-msg=W0622
"""cubicweb-person packaging information"""
dist
name
=
"cubicweb-
person
"
mod
name
=
distname
.
split
(
'-'
,
1
)[
1
]
mod
name
=
'
person
'
dist
name
=
"cubicweb-%s"
%
modname
numversion
=
(
1
,
5
,
0
)
version
=
'.'
.
join
(
str
(
num
)
for
num
in
numversion
)
...
...
@@ -15,42 +15,45 @@ author = "Logilab"
author_email
=
"contact@logilab.fr"
web
=
'http://www.cubicweb.org/project/%s'
%
distname
short_desc
=
"Person support for the CubicWeb framework"
long_desc
=
"""CubicWeb is a entities / relations bases knowledge management system
developped at Logilab.
.
This package provides base schema and views to store persons in cubicweb applications.
.
short_desc
=
"person component for the CubicWeb framework"
long_desc
=
"""This CubicWeb component models person (firstname, lastname,
email address and optional postal address).
CubicWeb is a semantic web application framework, see http://www.cubicweb.org
"""
classifiers
=
[
'Environment :: Web Environment'
,
'Framework :: CubicWeb'
,
'Programming Language :: Python'
,
'Programming Language :: JavaScript'
,
]
__depends_cubes__
=
{}
__depends__
=
{
'cubicweb'
:
None
}
__use__
=
()
__recommend__
=
(
'addressbook'
,)
# packaging ###
from
os
import
listdir
from
os.path
import
join
CUBE
S
_DIR
=
join
(
'share'
,
'cubicweb'
,
'cubes'
)
THIS_
CUBE_DIR
=
join
(
'share'
,
'cubicweb'
,
'cubes'
,
'person'
)
try
:
data_files
=
[
[
join
(
CUBE
S
_DIR
,
'person'
),
[
THIS_
CUBE_DIR
,
[
fname
for
fname
in
listdir
(
'.'
)
if
fname
.
endswith
(
'.py'
)
and
fname
!=
'setup.py'
]],
[
join
(
CUBE
S
_DIR
,
'person'
,
'data'
),
[
join
(
THIS_
CUBE_DIR
,
'data'
),
[
join
(
'data'
,
fname
)
for
fname
in
listdir
(
'data'
)]],
[
join
(
CUBE
S
_DIR
,
'person'
,
'i18n'
),
[
join
(
THIS_
CUBE_DIR
,
'i18n'
),
[
join
(
'i18n'
,
fname
)
for
fname
in
listdir
(
'i18n'
)]],
[
join
(
CUBE
S
_DIR
,
'person'
,
'migration'
),
[
join
(
THIS_
CUBE_DIR
,
'migration'
),
[
join
(
'migration'
,
fname
)
for
fname
in
listdir
(
'migration'
)]],
]
except
OSError
:
# we are in an installed directory
pass
cube_eid
=
20342
# used packages
__use__
=
()
__recommend__
=
(
'addressbook'
,)
classifiers
=
[
'Environment :: Web Environment'
,
'Framework :: CubicWeb'
,
'Programming Language :: Python'
,
'Programming Language :: JavaScript'
,
]
debian/control
View file @
b8a5bb29
...
...
@@ -5,14 +5,15 @@ Maintainer: Logilab Packaging Team <contact@logilab.fr>
Uploaders: Sylvain Thenault <sylvain.thenault@logilab.fr>
Build-Depends: debhelper (>= 5.0.37.1), python (>=2.4), python-dev (>=2.4)
Standards-Version: 3.8.0
Homepage: http://www.cubicweb.org/project/cubicweb-person
Package: cubicweb-person
Architecture: all
Conflicts: erudi-person, erudi-person-server, erudi-person-client, erudi-person-comp
Replaces: erudi-person, erudi-person-server, erudi-person-client, erudi-person-comp
Depends: cubicweb-common (>= 3.2.0)
Description: Person support for the CubicWeb framework
CubicWeb is a semantic web application framework.
Description: person component for the CubicWeb framework
This CubicWeb component models person (firstname, lastname,
email address and optional postal address).
.
This package provides base schema and views to store persons in cubicweb
applications.
CubicWeb is a semantic web application framework, see http://www.cubicweb.org
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