Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
protokollsystem
proto3
Commits
c160a9d0
Commit
c160a9d0
authored
Mar 02, 2017
by
Administrator
Browse files
Fixed errors connected to importing the legacy
parent
ac091dbd
Changes
3
Show whitespace changes
Inline
Side-by-side
legacy.py
View file @
c160a9d0
...
...
@@ -62,10 +62,10 @@ def import_old_protocols(sql_text):
deleted
,
sent
,
document_id
)
in
_split_insert_line
(
protocol_line
):
date
=
datetime
.
strptime
(
date
,
"%Y-%m-%d"
)
handle
=
type_id_to_handle
[
int
(
old_type_id
)]
type
=
ProtocolType
.
query
.
filter
(
ProtocolType
.
short_name
.
ilike
(
handle
)).
first
()
if
type
is
None
:
protocol
type
=
ProtocolType
.
query
.
filter
(
ProtocolType
.
short_name
.
ilike
(
handle
)).
first
()
if
protocol
type
is
None
:
raise
KeyError
(
"No protocoltype for handle '{}'."
.
format
(
handle
))
protocol
=
Protocol
(
type
.
id
,
date
,
source
=
source
)
protocol
=
Protocol
(
protocol
type
.
id
,
date
,
source
=
source
)
db
.
session
.
add
(
protocol
)
db
.
session
.
commit
()
import
tasks
...
...
@@ -73,6 +73,7 @@ def import_old_protocols(sql_text):
for
protocol
in
sorted
(
protocols
,
key
=
lambda
p
:
p
.
date
):
print
(
protocol
.
date
)
tasks
.
parse_protocol
(
protocol
)
print
(
"done importing"
)
def
import_old_todos
(
sql_text
):
...
...
@@ -106,7 +107,7 @@ def import_old_todos(sql_text):
for
old_id
,
protocol_id
,
who
,
what
,
start_time
,
end_time
,
done
in
_split_insert_line
(
todo_line
):
protocol_id
=
int
(
protocol_id
)
if
protocol_id
not
in
protocol_id_to_key
:
print
(
"Missing protocol with ID {} for Todo {}"
.
format
(
protocol_id
,
what
))
#
print("Missing protocol with ID {} for Todo {}".format(protocol_id, what))
continue
todo
=
OldTodo
(
old_id
=
old_id
,
who
=
who
,
description
=
what
,
protocol_key
=
protocol_id_to_key
[
protocol_id
])
...
...
server.py
View file @
c160a9d0
...
...
@@ -86,8 +86,8 @@ def import_legacy():
"""Import the old todos and protocols from an sql dump"""
filename
=
prompt
(
"SQL-file"
)
#filename = "legacy.sql"
with
open
(
filename
,
"r"
)
as
sqlfile
:
content
=
sqlfile
.
read
()
with
open
(
filename
,
"r
b
"
)
as
sqlfile
:
content
=
sqlfile
.
read
()
.
decode
(
"utf-8"
)
import_old_todos
(
content
)
import_old_protocols
(
content
)
...
...
templates/decision.tex
View file @
c160a9d0
...
...
@@ -27,7 +27,7 @@
{
\bf
Datum:
}
&
\VAR
{
protocol.date|datify
_
long|escape
_
tex
}
\\
\ENV
{
endif
}
\ENV
{
for meta in protocol.metas
}
{
\bf
\
ENV
{
meta.name|escape
_
tex
}
:
}
&
\VAR
{
meta.value|escape
_
tex
}
\\
{
\bf
\
VAR
{
meta.name|escape
_
tex
}
:
}
&
\VAR
{
meta.value|escape
_
tex
}
\\
\ENV
{
endfor
}
\end{tabular}
\normalsize
...
...
Write
Preview
Supports
Markdown
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