Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
limbra
limbra
Commits
14aba998
Commit
14aba998
authored
Oct 09, 2017
by
LE GAC Renaud
Browse files
Update the controller wizards/harvester to fix bugs related to authors.
parent
cec9a21b
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
2 deletions
+3
-2
controllers/wizards.py
controllers/wizards.py
+3
-2
No files found.
controllers/wizards.py
View file @
14aba998
...
...
@@ -350,13 +350,14 @@ def harvester():
collection
.
append
(
"cn %s"
%
collaboration
)
else
:
collection
.
append
(
"(a %s)"
%
" or "
.
join
(
rvars
.
people
))
authors
=
[
"a %s"
%
elt
for
elt
in
rvars
.
people
]
collection
.
append
(
" or "
.
join
(
authors
))
if
automaton
==
"articles"
:
collection
.
append
(
"tc p and not tc c"
)
elif
automaton
==
"proceedings"
:
collection
.
append
(
"tc
p and tc
c"
)
collection
.
append
(
"tc c"
)
values
.
collections
=
"find %s"
%
" and "
.
join
(
collection
)
...
...
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