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
dedaecfd
Commit
dedaecfd
authored
Sep 24, 2015
by
LE GAC Renaud
Browse files
Bugs fixed.
parent
317eeb87
Changes
7
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
9 additions
and
9 deletions
+9
-9
modules/harvest_tools/notes.py
modules/harvest_tools/notes.py
+1
-1
modules/harvest_tools/preprints.py
modules/harvest_tools/preprints.py
+1
-1
modules/harvest_tools/proceedings.py
modules/harvest_tools/proceedings.py
+1
-1
modules/harvest_tools/reports.py
modules/harvest_tools/reports.py
+1
-1
modules/harvest_tools/talks.py
modules/harvest_tools/talks.py
+1
-1
modules/harvest_tools/thesis.py
modules/harvest_tools/thesis.py
+1
-1
modules/invenio_tools/checkandfix.py
modules/invenio_tools/checkandfix.py
+3
-3
No files found.
modules/harvest_tools/notes.py
View file @
dedaecfd
...
...
@@ -6,7 +6,7 @@ import traceback
from
automaton
import
Automaton
from
base
import
family_name_fr
,
MSG_CRASH
,
MSG_LOAD
from
base
import
family_name_fr
,
format_author_fr
,
MSG_CRASH
,
MSG_LOAD
from
invenio_tools
import
CheckException
from
plugin_dbui
import
UNDEF_ID
...
...
modules/harvest_tools/preprints.py
View file @
dedaecfd
...
...
@@ -6,7 +6,7 @@ import traceback
from
automaton
import
Automaton
from
base
import
family_name_fr
,
MSG_CRASH
,
MSG_LOAD
from
base
import
family_name_fr
,
format_author_fr
,
MSG_CRASH
,
MSG_LOAD
from
invenio_tools
import
CheckException
,
RecordConf
,
RecordThesis
from
plugin_dbui
import
UNDEF_ID
...
...
modules/harvest_tools/proceedings.py
View file @
dedaecfd
...
...
@@ -6,7 +6,7 @@ import traceback
from
automaton
import
Automaton
from
base
import
family_name_fr
,
MSG_CRASH
,
MSG_LOAD
from
base
import
family_name_fr
,
format_author_fr
,
MSG_CRASH
,
MSG_LOAD
from
invenio_tools
import
CheckException
from
plugin_dbui
import
get_id
,
UNDEF_ID
...
...
modules/harvest_tools/reports.py
View file @
dedaecfd
...
...
@@ -6,7 +6,7 @@ import traceback
from
automaton
import
Automaton
from
base
import
family_name_fr
,
MSG_CRASH
,
MSG_LOAD
from
base
import
family_name_fr
,
format_author_fr
,
MSG_CRASH
,
MSG_LOAD
from
invenio_tools
import
CheckException
from
plugin_dbui
import
get_id
,
UNDEF_ID
,
UNKNOWN
...
...
modules/harvest_tools/talks.py
View file @
dedaecfd
...
...
@@ -6,7 +6,7 @@ import traceback
from
automaton
import
Automaton
from
base
import
family_name_fr
,
MSG_CRASH
,
MSG_LOAD
from
base
import
family_name_fr
,
format_author_fr
,
MSG_CRASH
,
MSG_LOAD
from
invenio_tools
import
CheckException
from
plugin_dbui
import
get_id
,
UNDEF_ID
...
...
modules/harvest_tools/thesis.py
View file @
dedaecfd
...
...
@@ -7,7 +7,7 @@ import traceback
from
automaton
import
Automaton
from
base
import
family_name_fr
,
MSG_CRASH
,
MSG_LOAD
from
base
import
family_name_fr
,
format_author_fr
,
MSG_CRASH
,
MSG_LOAD
from
invenio_tools
import
CheckException
,
RecordThesis
from
plugin_dbui
import
get_id
,
UNDEF_ID
...
...
modules/invenio_tools/checkandfix.py
View file @
dedaecfd
...
...
@@ -197,14 +197,14 @@ class CheckAndFix(object):
return
[]
# caching
t
=
(
year
,
self
.
id_project
,
self
.
id_team
)
t
=
(
year
,
id_project
,
id_team
)
if
t
==
self
.
__par
:
return
self
.
__reference
# extract the list from the database
row
=
self
.
db
.
my_authors
(
year
=
year
,
id_projects
=
self
.
id_project
,
id_teams
=
self
.
id_team
)
id_projects
=
id_project
,
id_teams
=
id_team
)
if
row
:
self
.
__reference
=
row
[
'authors'
].
split
(
', '
)
...
...
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