Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
TASTE
OpenGEODE
Commits
5c1da643
Commit
5c1da643
authored
Jul 22, 2015
by
Maxime Perrotin
Browse files
Use ASN1scc 3.2.x, improve robustness
parent
2027ff43
Changes
3
Hide whitespace changes
Inline
Side-by-side
README.md
View file @
5c1da643
...
...
@@ -148,10 +148,13 @@ The fonts are the fonts from Ubuntu, check licence in file FONT-LICENSE.TXT
Changelog
=========
1.
1.2 (07/2015)
1.
2.1 (07/2015)
-
Use version 3.2.x of the ASN1SCC compiler with new -renamePolicy flag
-
Improve robustness
1.
1.1 (07/2015)
-
Strongly report syntax errors with symbol location and warning if user
tries to save a model with syntax errors
-
Better robustness when loading in case of syntax errors
1.
1.0 (07/2015)
-
Write/Writeln procedure support enumerated types
...
...
opengeode/Asn1scc.py
View file @
5c1da643
...
...
@@ -93,7 +93,8 @@ def parse_asn1(*files, **options):
stg
=
asn1scc_root
+
os
.
sep
+
'python.stg'
args
=
[
arg0
,
'-customStgAstVerion'
,
str
(
ast_version
.
value
),
'-customStg'
,
stg
+
':'
+
filepath
]
+
list
(
*
files
)
'-customStg'
,
stg
+
'::'
+
filepath
,
'-renamePolicy'
,
'0'
]
+
list
(
*
files
)
asn1scc
=
QProcess
()
LOG
.
debug
(
os
.
getcwd
())
LOG
.
debug
(
binary
+
' '
+
' '
.
join
(
args
))
...
...
opengeode/opengeode.py
View file @
5c1da643
...
...
@@ -115,7 +115,7 @@ except ImportError:
__all__
=
[
'opengeode'
,
'SDL_Scene'
,
'SDL_View'
,
'parse'
]
__version__
=
'1.
1.2
'
__version__
=
'1.
2.1
'
if
hasattr
(
sys
,
'frozen'
):
# Detect if we are running on Windows (py2exe-generated)
...
...
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