Import rng files

bzr revid: stephane@tinyerp.com-20081113111328-kf899dsp9as0aein
This commit is contained in:
Stephane Wirtel 2008-11-13 12:13:28 +01:00
parent a48a65e138
commit 6c92455cd7
1 changed files with 6 additions and 1 deletions

View File

@ -129,10 +129,15 @@ def data_files():
glob.glob(opj(add_path, 'report', '*sxw')) +
glob.glob(opj(add_path, 'report', '*xsl'))
),
( opj(addon_path, 'security'),
(
opj(addon_path, 'security'),
glob.glob(opj(add_path, 'security', '*csv')) +
glob.glob(opj(add_path, 'security', '*xml'))
),
(
opj(addon_path, 'rng'),
glob.glob(opj(add_path, 'rng', '*rng'))
)
]
files.extend(pathfiles)
return files