Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
LQDN Adminsys
amendments
Commits
1cbe8a7a
Commit
1cbe8a7a
authored
Mar 31, 2013
by
Michael Witrant
Browse files
option to parse specific amendment
parent
0d4cd3ca
Changes
1
Hide whitespace changes
Inline
Side-by-side
extract_amendments.rb
View file @
1cbe8a7a
...
...
@@ -9,11 +9,13 @@ require 'nokogiri'
xml_dump_path
=
nil
def
debug
(
values
)
end
parse_only_one
=
false
parse_only_one
=
false
parse_only_num
=
nil
extra_args
=
cli
'--xml-dump'
=>
lambda
{
|
path
|
xml_dump_path
=
path
},
'-d --debug'
=>
lambda
{
def
debug
(
values
)
p
values
;
end
},
'-1 --one'
=>
lambda
{
parse_only_one
=
true
}
extra_args
=
cli
'--xml-dump'
=>
lambda
{
|
path
|
xml_dump_path
=
path
},
'-d --debug'
=>
lambda
{
def
debug
(
values
)
p
values
;
end
},
'-1 --one'
=>
lambda
{
parse_only_one
=
true
},
'-n --number'
=>
lambda
{
|
num
|
parse_only_num
=
num
}
opendocument_path
=
extra_args
.
first
raise
"usage: #$0 <OpenDocument file>"
unless
opendocument_path
...
...
@@ -55,11 +57,14 @@ amendments = []
amend_nodes
.
each
do
|
nodes
|
amend_text
=
nodes
.
map
(
&
:text
).
join
debug
amend_text:
amend_text
debug
amend_text:
amend_text
unless
parse_only_num
amend_doc
=
Nokogiri
::
XML
::
Document
.
parse
(
amend_text
)
num_am
=
amend_doc
.
xpath
(
"//NumAm"
).
first
.
text
next
if
parse_only_num
and
num_am
!=
parse_only_num
doc_amend
=
amend_doc
.
xpath
(
"//DocAmend"
).
first
.
text
article
=
amend_doc
.
xpath
(
"//Article"
).
first
.
text
...
...
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