adiwg-mdtranslator 2.20.0.pre.beta.3 → 2.21.0.pre.beta.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.github/workflows/test.yml +1 -1
- data/Gemfile.lock +12 -10
- data/README.md +0 -21
- data/Rakefile +0 -1
- data/adiwg-mdtranslator.gemspec +2 -2
- data/lib/adiwg/mdtranslator/internal/internal_metadata_obj.rb +45 -7
- data/lib/adiwg/mdtranslator/readers/fgdc/modules/module_dataQuality.rb +103 -59
- data/lib/adiwg/mdtranslator/readers/mdJson/modules/module_acquisition.rb +133 -0
- data/lib/adiwg/mdtranslator/readers/mdJson/modules/module_conformanceResult.rb +5 -0
- data/lib/adiwg/mdtranslator/readers/mdJson/modules/module_coverageResult.rb +4 -0
- data/lib/adiwg/mdtranslator/readers/mdJson/modules/module_dataQuality.rb +7 -0
- data/lib/adiwg/mdtranslator/readers/mdJson/modules/module_descriptiveResult.rb +4 -0
- data/lib/adiwg/mdtranslator/readers/mdJson/modules/module_environment.rb +47 -0
- data/lib/adiwg/mdtranslator/readers/mdJson/modules/module_event.rb +88 -0
- data/lib/adiwg/mdtranslator/readers/mdJson/modules/module_instrument.rb +73 -0
- data/lib/adiwg/mdtranslator/readers/mdJson/modules/module_instrumentationEvent.rb +77 -0
- data/lib/adiwg/mdtranslator/readers/mdJson/modules/module_instrumentationEventList.rb +62 -0
- data/lib/adiwg/mdtranslator/readers/mdJson/modules/module_metadata.rb +11 -0
- data/lib/adiwg/mdtranslator/readers/mdJson/modules/module_objective.rb +104 -0
- data/lib/adiwg/mdtranslator/readers/mdJson/modules/module_operation.rb +119 -0
- data/lib/adiwg/mdtranslator/readers/mdJson/modules/module_pass.rb +53 -0
- data/lib/adiwg/mdtranslator/readers/mdJson/modules/module_plan.rb +80 -0
- data/lib/adiwg/mdtranslator/readers/mdJson/modules/module_platform.rb +87 -0
- data/lib/adiwg/mdtranslator/readers/mdJson/modules/module_quantitativeResult.rb +4 -0
- data/lib/adiwg/mdtranslator/readers/mdJson/modules/module_requestedDate.rb +51 -0
- data/lib/adiwg/mdtranslator/readers/mdJson/modules/module_requirement.rb +98 -0
- data/lib/adiwg/mdtranslator/readers/mdJson/modules/module_revision.rb +50 -0
- data/lib/adiwg/mdtranslator/version.rb +1 -1
- data/lib/adiwg/mdtranslator/writers/fgdc/classes/class_dataQuality.rb +101 -31
- data/lib/adiwg/mdtranslator/writers/html/sections/html_acquisition.rb +199 -0
- data/lib/adiwg/mdtranslator/writers/html/sections/html_body.rb +19 -0
- data/lib/adiwg/mdtranslator/writers/html/sections/html_dataQuality.rb +17 -1
- data/lib/adiwg/mdtranslator/writers/html/sections/html_dataQualityReport.rb +28 -0
- data/lib/adiwg/mdtranslator/writers/html/sections/html_environment.rb +58 -0
- data/lib/adiwg/mdtranslator/writers/html/sections/html_event.rb +121 -0
- data/lib/adiwg/mdtranslator/writers/html/sections/html_instrument.rb +98 -0
- data/lib/adiwg/mdtranslator/writers/html/sections/html_instrumentationEvent.rb +84 -0
- data/lib/adiwg/mdtranslator/writers/html/sections/html_instrumentationEventList.rb +90 -0
- data/lib/adiwg/mdtranslator/writers/html/sections/html_objective.rb +155 -0
- data/lib/adiwg/mdtranslator/writers/html/sections/html_operation.rb +178 -0
- data/lib/adiwg/mdtranslator/writers/html/sections/html_pass.rb +72 -0
- data/lib/adiwg/mdtranslator/writers/html/sections/html_plan.rb +93 -0
- data/lib/adiwg/mdtranslator/writers/html/sections/html_platform.rb +117 -0
- data/lib/adiwg/mdtranslator/writers/html/sections/html_requestedDate.rb +33 -0
- data/lib/adiwg/mdtranslator/writers/html/sections/html_requirement.rb +139 -0
- data/lib/adiwg/mdtranslator/writers/html/sections/html_revision.rb +55 -0
- data/lib/adiwg/mdtranslator/writers/iso19115_3/classes/class_dataIdentification.rb +29 -0
- data/lib/adiwg/mdtranslator/writers/iso19115_3/classes/class_dataQualityReport.rb +1 -1
- data/lib/adiwg/mdtranslator/writers/iso19115_3/classes/class_gcoDateTime.rb +10 -1
- data/lib/adiwg/mdtranslator/writers/mdJson/sections/mdJson_acquisition.rb +42 -0
- data/lib/adiwg/mdtranslator/writers/mdJson/sections/mdJson_conformanceResult.rb +6 -5
- data/lib/adiwg/mdtranslator/writers/mdJson/sections/mdJson_coverageResult.rb +1 -0
- data/lib/adiwg/mdtranslator/writers/mdJson/sections/mdJson_descriptiveResult.rb +1 -0
- data/lib/adiwg/mdtranslator/writers/mdJson/sections/mdJson_environment.rb +28 -0
- data/lib/adiwg/mdtranslator/writers/mdJson/sections/mdJson_event.rb +37 -0
- data/lib/adiwg/mdtranslator/writers/mdJson/sections/mdJson_instrument.rb +35 -0
- data/lib/adiwg/mdtranslator/writers/mdJson/sections/mdJson_instrumentationEvent.rb +30 -0
- data/lib/adiwg/mdtranslator/writers/mdJson/sections/mdJson_instrumentationEventList.rb +32 -0
- data/lib/adiwg/mdtranslator/writers/mdJson/sections/mdJson_metadata.rb +2 -0
- data/lib/adiwg/mdtranslator/writers/mdJson/sections/mdJson_objective.rb +37 -0
- data/lib/adiwg/mdtranslator/writers/mdJson/sections/mdJson_onlineResource.rb +1 -1
- data/lib/adiwg/mdtranslator/writers/mdJson/sections/mdJson_operation.rb +34 -0
- data/lib/adiwg/mdtranslator/writers/mdJson/sections/mdJson_pass.rb +30 -0
- data/lib/adiwg/mdtranslator/writers/mdJson/sections/mdJson_plan.rb +32 -0
- data/lib/adiwg/mdtranslator/writers/mdJson/sections/mdJson_platform.rb +35 -0
- data/lib/adiwg/mdtranslator/writers/mdJson/sections/mdJson_quantitativeResult.rb +6 -5
- data/lib/adiwg/mdtranslator/writers/mdJson/sections/mdJson_requestedDate.rb +26 -0
- data/lib/adiwg/mdtranslator/writers/mdJson/sections/mdJson_requirement.rb +36 -0
- data/lib/adiwg/mdtranslator/writers/mdJson/sections/mdJson_resourceInfo.rb +1 -1
- data/lib/adiwg/mdtranslator/writers/mdJson/sections/mdJson_revision.rb +28 -0
- data/lib/adiwg/mdtranslator/writers/sbJson/sections/sbJson_citation.rb +9 -26
- data/lib/adiwg/mdtranslator/writers/simple_html/sections/html_dataQuality.rb +1 -1
- data/lib/adiwg/mdtranslator_cli.rb +1 -1
- metadata +48 -39
- data/DCAT-US.md +0 -67
- data/lib/adiwg/mdtranslator/writers/dcat_us/dcat_us_writer.rb +0 -98
- data/lib/adiwg/mdtranslator/writers/dcat_us/readme.md +0 -10
- data/lib/adiwg/mdtranslator/writers/dcat_us/sections/dcat_us_access_level.rb +0 -55
- data/lib/adiwg/mdtranslator/writers/dcat_us/sections/dcat_us_access_url.rb +0 -17
- data/lib/adiwg/mdtranslator/writers/dcat_us/sections/dcat_us_accrualPeriodicity.rb +0 -45
- data/lib/adiwg/mdtranslator/writers/dcat_us/sections/dcat_us_bureau_code.rb +0 -33
- data/lib/adiwg/mdtranslator/writers/dcat_us/sections/dcat_us_contact_point.rb +0 -29
- data/lib/adiwg/mdtranslator/writers/dcat_us/sections/dcat_us_dcat_us.rb +0 -104
- data/lib/adiwg/mdtranslator/writers/dcat_us/sections/dcat_us_described_by.rb +0 -29
- data/lib/adiwg/mdtranslator/writers/dcat_us/sections/dcat_us_described_by_type.rb +0 -33
- data/lib/adiwg/mdtranslator/writers/dcat_us/sections/dcat_us_description.rb +0 -19
- data/lib/adiwg/mdtranslator/writers/dcat_us/sections/dcat_us_distribution.rb +0 -59
- data/lib/adiwg/mdtranslator/writers/dcat_us/sections/dcat_us_download_url.rb +0 -17
- data/lib/adiwg/mdtranslator/writers/dcat_us/sections/dcat_us_identifier.rb +0 -29
- data/lib/adiwg/mdtranslator/writers/dcat_us/sections/dcat_us_is_part_of.rb +0 -27
- data/lib/adiwg/mdtranslator/writers/dcat_us/sections/dcat_us_issued.rb +0 -19
- data/lib/adiwg/mdtranslator/writers/dcat_us/sections/dcat_us_keyword.rb +0 -19
- data/lib/adiwg/mdtranslator/writers/dcat_us/sections/dcat_us_landing_page.rb +0 -27
- data/lib/adiwg/mdtranslator/writers/dcat_us/sections/dcat_us_language.rb +0 -23
- data/lib/adiwg/mdtranslator/writers/dcat_us/sections/dcat_us_license.rb +0 -18
- data/lib/adiwg/mdtranslator/writers/dcat_us/sections/dcat_us_media_type.rb +0 -17
- data/lib/adiwg/mdtranslator/writers/dcat_us/sections/dcat_us_modified.rb +0 -29
- data/lib/adiwg/mdtranslator/writers/dcat_us/sections/dcat_us_primaryITInvestmentUII.rb +0 -19
- data/lib/adiwg/mdtranslator/writers/dcat_us/sections/dcat_us_program_code.rb +0 -33
- data/lib/adiwg/mdtranslator/writers/dcat_us/sections/dcat_us_publisher.rb +0 -74
- data/lib/adiwg/mdtranslator/writers/dcat_us/sections/dcat_us_references.rb +0 -50
- data/lib/adiwg/mdtranslator/writers/dcat_us/sections/dcat_us_rights.rb +0 -32
- data/lib/adiwg/mdtranslator/writers/dcat_us/sections/dcat_us_spatial.rb +0 -32
- data/lib/adiwg/mdtranslator/writers/dcat_us/sections/dcat_us_system_of_records.rb +0 -28
- data/lib/adiwg/mdtranslator/writers/dcat_us/sections/dcat_us_temporal.rb +0 -40
- data/lib/adiwg/mdtranslator/writers/dcat_us/sections/dcat_us_theme.rb +0 -28
- data/lib/adiwg/mdtranslator/writers/dcat_us/version.rb +0 -14
@@ -0,0 +1,84 @@
|
|
1
|
+
require_relative 'html_citation'
|
2
|
+
require_relative 'html_extent'
|
3
|
+
require_relative 'html_revision'
|
4
|
+
|
5
|
+
module ADIWG
|
6
|
+
module Mdtranslator
|
7
|
+
module Writers
|
8
|
+
module Html
|
9
|
+
class Html_InstrumentationEvent
|
10
|
+
def initialize(html)
|
11
|
+
@html = html
|
12
|
+
end
|
13
|
+
|
14
|
+
def writeHtml(hInstrumentationEvent)
|
15
|
+
citationClass = Html_Citation.new(@html)
|
16
|
+
extentClass = Html_Extent.new(@html)
|
17
|
+
revisionClass = Html_Revision.new(@html)
|
18
|
+
|
19
|
+
# citation
|
20
|
+
unless hInstrumentationEvent[:citations].empty?
|
21
|
+
@html.section(:class => 'block') do
|
22
|
+
@html.details do
|
23
|
+
@html.summary('Citations', {'class' => 'h4'})
|
24
|
+
hInstrumentationEvent[:citations].each do |citation|
|
25
|
+
@html.section(:class => 'block') do
|
26
|
+
@html.details do
|
27
|
+
@html.summary('Citation', {'class' => 'h5'})
|
28
|
+
citationClass.writeHtml(citation)
|
29
|
+
end
|
30
|
+
end
|
31
|
+
end
|
32
|
+
end
|
33
|
+
end
|
34
|
+
end
|
35
|
+
|
36
|
+
# description
|
37
|
+
unless hInstrumentationEvent[:description].nil?
|
38
|
+
@html.em('Description: ')
|
39
|
+
@html.text!(hInstrumentationEvent[:description])
|
40
|
+
@html.br
|
41
|
+
end
|
42
|
+
|
43
|
+
# extent
|
44
|
+
unless hInstrumentationEvent[:extent].empty?
|
45
|
+
@html.section(:class => 'block') do
|
46
|
+
@html.details do
|
47
|
+
@html.summary('Extent', {'class' => 'h4'})
|
48
|
+
@html.section(:class => 'block') do
|
49
|
+
extentClass.writeHtml(hInstrumentationEvent[:extent])
|
50
|
+
end
|
51
|
+
end
|
52
|
+
end
|
53
|
+
end
|
54
|
+
|
55
|
+
# eventType
|
56
|
+
unless hInstrumentationEvent[:eventType].nil?
|
57
|
+
@html.em('Event Type: ')
|
58
|
+
@html.text!(hInstrumentationEvent[:eventType])
|
59
|
+
@html.br
|
60
|
+
end
|
61
|
+
|
62
|
+
# revisionHistory
|
63
|
+
unless hInstrumentationEvent[:revisionHistories].empty?
|
64
|
+
@html.section(:class => 'block') do
|
65
|
+
@html.details do
|
66
|
+
@html.summary('Revision History', {'class' => 'h4'})
|
67
|
+
hInstrumentationEvent[:revisionHistories].each do |revision|
|
68
|
+
@html.section(:class => 'block') do
|
69
|
+
@html.details do
|
70
|
+
@html.summary('Revision', {'class' => 'h5'})
|
71
|
+
revisionClass.writeHtml(revision)
|
72
|
+
end
|
73
|
+
end
|
74
|
+
end
|
75
|
+
end
|
76
|
+
end
|
77
|
+
end
|
78
|
+
|
79
|
+
end
|
80
|
+
end
|
81
|
+
end
|
82
|
+
end
|
83
|
+
end
|
84
|
+
end
|
@@ -0,0 +1,90 @@
|
|
1
|
+
require_relative 'html_citation'
|
2
|
+
require_relative 'html_locale'
|
3
|
+
require_relative 'html_constraint'
|
4
|
+
require_relative 'html_instrumentationEvent'
|
5
|
+
|
6
|
+
module ADIWG
|
7
|
+
module Mdtranslator
|
8
|
+
module Writers
|
9
|
+
module Html
|
10
|
+
class Html_InstrumentationEventList
|
11
|
+
def initialize(html)
|
12
|
+
@html = html
|
13
|
+
end
|
14
|
+
|
15
|
+
def writeHtml(hInstrumentationEventList)
|
16
|
+
citationClass = Html_Citation.new(@html)
|
17
|
+
localeClass = Html_Locale.new(@html)
|
18
|
+
constraintClass = Html_Constraint.new(@html)
|
19
|
+
instrumentationEventClass = Html_InstrumentationEvent.new(@html)
|
20
|
+
|
21
|
+
# citation
|
22
|
+
unless hInstrumentationEventList[:citation].empty?
|
23
|
+
@html.section(:class => 'block') do
|
24
|
+
@html.details do
|
25
|
+
@html.summary('Citation', {'class' => 'h4'})
|
26
|
+
@html.section(:class => 'block') do
|
27
|
+
citationClass.writeHtml(hInstrumentationEventList[:citation])
|
28
|
+
end
|
29
|
+
end
|
30
|
+
end
|
31
|
+
end
|
32
|
+
|
33
|
+
# desctiption
|
34
|
+
unless hInstrumentationEventList[:description].nil?
|
35
|
+
@html.em('Description: ')
|
36
|
+
@html.text!(hInstrumentationEventList[:description])
|
37
|
+
@html.br
|
38
|
+
end
|
39
|
+
|
40
|
+
# locale
|
41
|
+
unless hInstrumentationEventList[:locale].empty?
|
42
|
+
@html.section(:class => 'block') do
|
43
|
+
@html.details do
|
44
|
+
@html.summary('Locale', {'class' => 'h4'})
|
45
|
+
@html.section(:class => 'block') do
|
46
|
+
localeClass.writeHtml(hInstrumentationEventList[:locale])
|
47
|
+
end
|
48
|
+
end
|
49
|
+
end
|
50
|
+
end
|
51
|
+
|
52
|
+
# constraints
|
53
|
+
unless hInstrumentationEventList[:constraints].empty?
|
54
|
+
@html.section(:class => 'block') do
|
55
|
+
@html.details do
|
56
|
+
@html.summary('Constraints', {'class' => 'h4'})
|
57
|
+
hInstrumentationEventList[:constraints].each do |constraint|
|
58
|
+
@html.section(:class => 'block') do
|
59
|
+
@html.details do
|
60
|
+
@html.summary('Constraint', {'class' => 'h5'})
|
61
|
+
constraintClass.writeHtml(constraint)
|
62
|
+
end
|
63
|
+
end
|
64
|
+
end
|
65
|
+
end
|
66
|
+
end
|
67
|
+
end
|
68
|
+
|
69
|
+
# instrumentationEvent
|
70
|
+
unless hInstrumentationEventList[:instrumentationEvents].empty?
|
71
|
+
@html.section(:class => 'block') do
|
72
|
+
@html.details do
|
73
|
+
@html.summary('Instrumentation Events', {'class' => 'h4'})
|
74
|
+
hInstrumentationEventList[:instrumentationEvents].each do |instrumentationEvent|
|
75
|
+
@html.section(:class => 'block') do
|
76
|
+
@html.details do
|
77
|
+
@html.summary('Instrumentation Event', {'class' => 'h5'})
|
78
|
+
instrumentationEventClass.writeHtml(instrumentationEvent)
|
79
|
+
end
|
80
|
+
end
|
81
|
+
end
|
82
|
+
end
|
83
|
+
end
|
84
|
+
end
|
85
|
+
end
|
86
|
+
end
|
87
|
+
end
|
88
|
+
end
|
89
|
+
end
|
90
|
+
end
|
@@ -0,0 +1,155 @@
|
|
1
|
+
require_relative 'html_identifier'
|
2
|
+
require_relative 'html_extent'
|
3
|
+
require_relative 'html_event'
|
4
|
+
require_relative 'html_pass'
|
5
|
+
require_relative 'html_instrument'
|
6
|
+
|
7
|
+
module ADIWG
|
8
|
+
module Mdtranslator
|
9
|
+
module Writers
|
10
|
+
module Html
|
11
|
+
class Html_Objective
|
12
|
+
def initialize(html)
|
13
|
+
@html = html
|
14
|
+
end
|
15
|
+
|
16
|
+
def writeHtml(hObjective)
|
17
|
+
identifierClass = Html_Identifier.new(@html)
|
18
|
+
extentClass = Html_Extent.new(@html)
|
19
|
+
eventClass = Html_Event.new(@html)
|
20
|
+
passClass = Html_Pass.new(@html)
|
21
|
+
instrumentClass = Html_Instrument.new(@html)
|
22
|
+
|
23
|
+
# objectiveId
|
24
|
+
unless hObjective[:objectiveId].nil?
|
25
|
+
@html.em('Objective ID: ')
|
26
|
+
@html.text!(hObjective[:objectiveId])
|
27
|
+
@html.br
|
28
|
+
end
|
29
|
+
|
30
|
+
# identifier
|
31
|
+
unless hObjective[:identifiers].empty?
|
32
|
+
@html.section(:class => 'block') do
|
33
|
+
@html.details do
|
34
|
+
@html.summary('Identifiers', {'class' => 'h4'})
|
35
|
+
hObjective[:identifiers].each do |identifier|
|
36
|
+
@html.section(:class => 'block') do
|
37
|
+
@html.details do
|
38
|
+
@html.summary('Identifier', {'class' => 'h5'})
|
39
|
+
identifierClass.writeHtml(identifier)
|
40
|
+
end
|
41
|
+
end
|
42
|
+
end
|
43
|
+
end
|
44
|
+
end
|
45
|
+
end
|
46
|
+
|
47
|
+
# priority
|
48
|
+
unless hObjective[:priority].nil?
|
49
|
+
@html.em('Priority: ')
|
50
|
+
@html.text!(hObjective[:priority])
|
51
|
+
@html.br
|
52
|
+
end
|
53
|
+
|
54
|
+
# objectiveType
|
55
|
+
unless hObjective[:objectiveTypes].empty?
|
56
|
+
@html.section(:class => 'block') do
|
57
|
+
@html.details do
|
58
|
+
@html.summary('Objective Types', {'class' => 'h4'})
|
59
|
+
hObjective[:objectiveTypes].each do |type|
|
60
|
+
@html.em('Type: ')
|
61
|
+
@html.text!(type)
|
62
|
+
@html.br
|
63
|
+
end
|
64
|
+
end
|
65
|
+
end
|
66
|
+
end
|
67
|
+
|
68
|
+
# function
|
69
|
+
unless hObjective[:functions].empty?
|
70
|
+
@html.section(:class => 'block') do
|
71
|
+
@html.details do
|
72
|
+
@html.summary('Functions', {'class' => 'h4'})
|
73
|
+
hObjective[:functions].each do |function|
|
74
|
+
@html.em('Function: ')
|
75
|
+
@html.text!(function)
|
76
|
+
@html.br
|
77
|
+
end
|
78
|
+
end
|
79
|
+
end
|
80
|
+
end
|
81
|
+
|
82
|
+
# extent
|
83
|
+
unless hObjective[:extents].empty?
|
84
|
+
@html.section(:class => 'block') do
|
85
|
+
@html.details do
|
86
|
+
@html.summary('Extents', {'class' => 'h4'})
|
87
|
+
hObjective[:extents].each do |extent|
|
88
|
+
@html.section(:class => 'block') do
|
89
|
+
@html.details do
|
90
|
+
@html.summary('Extent', {'class' => 'h5'})
|
91
|
+
extentClass.writeHtml(extent)
|
92
|
+
end
|
93
|
+
end
|
94
|
+
end
|
95
|
+
end
|
96
|
+
end
|
97
|
+
end
|
98
|
+
|
99
|
+
# Occurrence
|
100
|
+
unless hObjective[:occurrences].empty?
|
101
|
+
@html.section(:class => 'block') do
|
102
|
+
@html.details do
|
103
|
+
@html.summary('Occurrences', {'class' => 'h4'})
|
104
|
+
hObjective[:occurrences].each do |occurrence|
|
105
|
+
@html.section(:class => 'block') do
|
106
|
+
@html.details do
|
107
|
+
@html.summary('Occurrence', {'class' => 'h5'})
|
108
|
+
eventClass.writeHtml(occurrence)
|
109
|
+
end
|
110
|
+
end
|
111
|
+
end
|
112
|
+
end
|
113
|
+
end
|
114
|
+
end
|
115
|
+
|
116
|
+
# pass
|
117
|
+
unless hObjective[:passes].empty?
|
118
|
+
@html.section(:class => 'block') do
|
119
|
+
@html.details do
|
120
|
+
@html.summary('Passes', {'class' => 'h4'})
|
121
|
+
hObjective[:passes].each do |pass|
|
122
|
+
@html.section(:class => 'block') do
|
123
|
+
@html.details do
|
124
|
+
@html.summary('Pass', {'class' => 'h5'})
|
125
|
+
passClass.writeHtml(pass)
|
126
|
+
end
|
127
|
+
end
|
128
|
+
end
|
129
|
+
end
|
130
|
+
end
|
131
|
+
end
|
132
|
+
|
133
|
+
# sensingInstrument
|
134
|
+
unless hObjective[:sensingInstruments].empty?
|
135
|
+
@html.section(:class => 'block') do
|
136
|
+
@html.details do
|
137
|
+
@html.summary('Sensing Instruments', {'class' => 'h4'})
|
138
|
+
hObjective[:sensingInstruments].each do |instrument|
|
139
|
+
@html.section(:class => 'block') do
|
140
|
+
@html.details do
|
141
|
+
@html.summary('Instrument', {'class' => 'h5'})
|
142
|
+
instrumentClass.writeHtml(instrument)
|
143
|
+
end
|
144
|
+
end
|
145
|
+
end
|
146
|
+
end
|
147
|
+
end
|
148
|
+
end
|
149
|
+
end # writeHtml
|
150
|
+
|
151
|
+
end # Html_Requirement
|
152
|
+
end
|
153
|
+
end
|
154
|
+
end
|
155
|
+
end
|
@@ -0,0 +1,178 @@
|
|
1
|
+
require_relative 'html_citation'
|
2
|
+
require_relative 'html_identifier'
|
3
|
+
require_relative 'html_objective'
|
4
|
+
require_relative 'html_operation'
|
5
|
+
require_relative 'html_plan'
|
6
|
+
require_relative 'html_platform'
|
7
|
+
require_relative 'html_event'
|
8
|
+
|
9
|
+
module ADIWG
|
10
|
+
module Mdtranslator
|
11
|
+
module Writers
|
12
|
+
module Html
|
13
|
+
class Html_Operation
|
14
|
+
def initialize(html)
|
15
|
+
@html = html
|
16
|
+
end
|
17
|
+
|
18
|
+
def writeHtml(hOperation)
|
19
|
+
citationClass = Html_Citation.new(@html)
|
20
|
+
identifierClass = Html_Identifier.new(@html)
|
21
|
+
objectiveClass = Html_Objective.new(@html)
|
22
|
+
operationClass = Html_Operation.new(@html)
|
23
|
+
planClass = Html_Plan.new(@html)
|
24
|
+
platformClass = Html_Platform.new(@html)
|
25
|
+
eventClass = Html_Event.new(@html)
|
26
|
+
|
27
|
+
|
28
|
+
# operationId
|
29
|
+
unless hOperation[:operationId].nil?
|
30
|
+
@html.em('Operation ID: ')
|
31
|
+
@html.text!(hOperation[:operationId])
|
32
|
+
@html.br
|
33
|
+
end
|
34
|
+
|
35
|
+
# description
|
36
|
+
unless hOperation[:description].nil?
|
37
|
+
@html.em('Description: ')
|
38
|
+
@html.text!(hOperation[:description])
|
39
|
+
@html.br
|
40
|
+
end
|
41
|
+
|
42
|
+
# citation
|
43
|
+
unless hOperation[:citation].empty?
|
44
|
+
@html.section(:class => 'block') do
|
45
|
+
@html.details do
|
46
|
+
@html.summary('Citation', {'class' => 'h4'})
|
47
|
+
@html.section(:class => 'block') do
|
48
|
+
citationClass.writeHtml(hOperation[:citation])
|
49
|
+
end
|
50
|
+
end
|
51
|
+
end
|
52
|
+
end
|
53
|
+
|
54
|
+
# identifier
|
55
|
+
unless hOperation[:identifier].empty?
|
56
|
+
@html.section(:class => 'block') do
|
57
|
+
@html.details do
|
58
|
+
@html.summary('Identifier', {'class' => 'h4'})
|
59
|
+
@html.section(:class => 'block') do
|
60
|
+
identifierClass.writeHtml(hOperation[:identifier])
|
61
|
+
end
|
62
|
+
end
|
63
|
+
end
|
64
|
+
end
|
65
|
+
|
66
|
+
# status
|
67
|
+
unless hOperation[:status].nil?
|
68
|
+
@html.em('Status: ')
|
69
|
+
@html.text!(hOperation[:status])
|
70
|
+
@html.br
|
71
|
+
end
|
72
|
+
|
73
|
+
# operationType
|
74
|
+
unless hOperation[:operationType].nil?
|
75
|
+
@html.em('Operation Type: ')
|
76
|
+
@html.text!(hOperation[:operationType])
|
77
|
+
@html.br
|
78
|
+
end
|
79
|
+
|
80
|
+
# objective
|
81
|
+
unless hOperation[:objectives].empty?
|
82
|
+
@html.section(:class => 'block') do
|
83
|
+
@html.details do
|
84
|
+
@html.summary('Objectives', {'class' => 'h4'})
|
85
|
+
hOperation[:objectives].each do |objective|
|
86
|
+
@html.section(:class => 'block') do
|
87
|
+
@html.details do
|
88
|
+
@html.summary('Objective', {'class' => 'h5'})
|
89
|
+
objectiveClass.writeHtml(objective)
|
90
|
+
end
|
91
|
+
end
|
92
|
+
end
|
93
|
+
end
|
94
|
+
end
|
95
|
+
end
|
96
|
+
|
97
|
+
# parentOperation
|
98
|
+
unless hOperation[:parentOperation].empty?
|
99
|
+
@html.section(:class => 'block') do
|
100
|
+
@html.details do
|
101
|
+
@html.summary('Parent Operation', {'class' => 'h4'})
|
102
|
+
@html.section(:class => 'block') do
|
103
|
+
operationClass.writeHtml(hOperation[:parentOperation])
|
104
|
+
end
|
105
|
+
end
|
106
|
+
end
|
107
|
+
end
|
108
|
+
|
109
|
+
# childOperation
|
110
|
+
unless hOperation[:childOperations].empty?
|
111
|
+
@html.section(:class => 'block') do
|
112
|
+
@html.details do
|
113
|
+
@html.summary('Child Operations', {'class' => 'h4'})
|
114
|
+
hOperation[:childOperations].each do |operation|
|
115
|
+
@html.section(:class => 'block') do
|
116
|
+
@html.details do
|
117
|
+
@html.summary('Operation', {'class' => 'h5'})
|
118
|
+
operationClass.writeHtml(operation)
|
119
|
+
end
|
120
|
+
end
|
121
|
+
end
|
122
|
+
end
|
123
|
+
end
|
124
|
+
end
|
125
|
+
|
126
|
+
# plan
|
127
|
+
unless hOperation[:plan].empty?
|
128
|
+
@html.section(:class => 'block') do
|
129
|
+
@html.details do
|
130
|
+
@html.summary('Plan', {'class' => 'h4'})
|
131
|
+
@html.section(:class => 'block') do
|
132
|
+
planClass.writeHtml(hOperation[:plan])
|
133
|
+
end
|
134
|
+
end
|
135
|
+
end
|
136
|
+
end
|
137
|
+
|
138
|
+
# platform
|
139
|
+
unless hOperation[:platforms].empty?
|
140
|
+
@html.section(:class => 'block') do
|
141
|
+
@html.details do
|
142
|
+
@html.summary('Platforms', {'class' => 'h4'})
|
143
|
+
hOperation[:platforms].each do |platform|
|
144
|
+
@html.section(:class => 'block') do
|
145
|
+
@html.details do
|
146
|
+
@html.summary('Platform', {'class' => 'h5'})
|
147
|
+
platformClass.writeHtml(platform)
|
148
|
+
end
|
149
|
+
end
|
150
|
+
end
|
151
|
+
end
|
152
|
+
end
|
153
|
+
end
|
154
|
+
|
155
|
+
# significantEvent
|
156
|
+
unless hOperation[:significantEvents].empty?
|
157
|
+
@html.section(:class => 'block') do
|
158
|
+
@html.details do
|
159
|
+
@html.summary('Significant Events', {'class' => 'h4'})
|
160
|
+
hOperation[:significantEvents].each do |event|
|
161
|
+
@html.section(:class => 'block') do
|
162
|
+
@html.details do
|
163
|
+
@html.summary('Event', {'class' => 'h5'})
|
164
|
+
eventClass.writeHtml(event)
|
165
|
+
end
|
166
|
+
end
|
167
|
+
end
|
168
|
+
end
|
169
|
+
end
|
170
|
+
end
|
171
|
+
|
172
|
+
end # writeHtml
|
173
|
+
|
174
|
+
end # Html_Operation
|
175
|
+
end
|
176
|
+
end
|
177
|
+
end
|
178
|
+
end
|
@@ -0,0 +1,72 @@
|
|
1
|
+
require_relative 'html_identifier'
|
2
|
+
require_relative 'html_extent'
|
3
|
+
require_relative 'html_event'
|
4
|
+
|
5
|
+
module ADIWG
|
6
|
+
module Mdtranslator
|
7
|
+
module Writers
|
8
|
+
module Html
|
9
|
+
class Html_Pass
|
10
|
+
def initialize(html)
|
11
|
+
@html = html
|
12
|
+
end
|
13
|
+
|
14
|
+
def writeHtml(hPass)
|
15
|
+
identifierClass = Html_Identifier.new(@html)
|
16
|
+
extentClass = Html_Extent.new(@html)
|
17
|
+
eventClass = Html_Event.new(@html)
|
18
|
+
|
19
|
+
# passId
|
20
|
+
unless hPass[:passId].nil?
|
21
|
+
@html.em('Pass ID: ')
|
22
|
+
@html.text!(hPass[:passId])
|
23
|
+
@html.br
|
24
|
+
end
|
25
|
+
|
26
|
+
# identifier
|
27
|
+
unless hPass[:identifier].empty?
|
28
|
+
@html.section(:class => 'block') do
|
29
|
+
@html.details do
|
30
|
+
@html.summary('Identifier', {'class' => 'h4'})
|
31
|
+
@html.section(:class => 'block') do
|
32
|
+
identifierClass.writeHtml(hPass[:identifier])
|
33
|
+
end
|
34
|
+
end
|
35
|
+
end
|
36
|
+
end
|
37
|
+
|
38
|
+
# extent
|
39
|
+
unless hPass[:extent].empty?
|
40
|
+
@html.section(:class => 'block') do
|
41
|
+
@html.details do
|
42
|
+
@html.summary('Extent', {'class' => 'h4'})
|
43
|
+
@html.section(:class => 'block') do
|
44
|
+
extentClass.writeHtml(hPass[:extent])
|
45
|
+
end
|
46
|
+
end
|
47
|
+
end
|
48
|
+
end
|
49
|
+
|
50
|
+
# relatedEvent
|
51
|
+
unless hPass[:relatedEvents].empty?
|
52
|
+
@html.section(:class => 'block') do
|
53
|
+
@html.details do
|
54
|
+
@html.summary('Related Events', {'class' => 'h4'})
|
55
|
+
hPass[:relatedEvents].each do |event|
|
56
|
+
@html.section(:class => 'block') do
|
57
|
+
@html.details do
|
58
|
+
@html.summary('Event', {'class' => 'h5'})
|
59
|
+
eventClass.writeHtml(event)
|
60
|
+
end
|
61
|
+
end
|
62
|
+
end
|
63
|
+
end
|
64
|
+
end
|
65
|
+
end
|
66
|
+
|
67
|
+
end # writeHtml
|
68
|
+
end # Html_Pass
|
69
|
+
end
|
70
|
+
end
|
71
|
+
end
|
72
|
+
end
|
@@ -0,0 +1,93 @@
|
|
1
|
+
require_relative 'html_citation'
|
2
|
+
require_relative 'html_operation'
|
3
|
+
require_relative 'html_requirement'
|
4
|
+
|
5
|
+
module ADIWG
|
6
|
+
module Mdtranslator
|
7
|
+
module Writers
|
8
|
+
module Html
|
9
|
+
class Html_Plan
|
10
|
+
def initialize(html)
|
11
|
+
@html = html
|
12
|
+
end
|
13
|
+
|
14
|
+
def writeHtml(hPlan)
|
15
|
+
citationClass = Html_Citation.new(@html)
|
16
|
+
operationClass = Html_Operation.new(@html)
|
17
|
+
requirementClass = Html_Requirement.new(@html)
|
18
|
+
planClass = Html_Plan.new(@html)
|
19
|
+
|
20
|
+
# planId
|
21
|
+
unless hPlan[:planId].empty?
|
22
|
+
@html.em('Plan ID: ')
|
23
|
+
@html.text!(hPlan[:planId])
|
24
|
+
@html.br
|
25
|
+
end
|
26
|
+
|
27
|
+
# planType
|
28
|
+
unless hPlan[:planType].empty?
|
29
|
+
@html.em('Type: ')
|
30
|
+
@html.text!(hPlan[:planType])
|
31
|
+
@html.br
|
32
|
+
end
|
33
|
+
|
34
|
+
# status
|
35
|
+
unless hPlan[:status].empty?
|
36
|
+
@html.em('Status: ')
|
37
|
+
@html.text!(hPlan[:status])
|
38
|
+
@html.br
|
39
|
+
end
|
40
|
+
|
41
|
+
# citation
|
42
|
+
unless hPlan[:citation].empty?
|
43
|
+
@html.section(:class => 'block') do
|
44
|
+
@html.details do
|
45
|
+
@html.summary('Citation', {'class' => 'h4'})
|
46
|
+
@html.section(:class => 'block') do
|
47
|
+
citationClass.writeHtml(hPlan[:citation])
|
48
|
+
end
|
49
|
+
end
|
50
|
+
end
|
51
|
+
end
|
52
|
+
|
53
|
+
# planOperation
|
54
|
+
unless hPlan[:planOperations].empty?
|
55
|
+
@html.section(:class => 'block') do
|
56
|
+
@html.details do
|
57
|
+
@html.summary('Operations', {'class' => 'h4'})
|
58
|
+
hPlan[:planOperations].each do |operation|
|
59
|
+
@html.section(:class => 'block') do
|
60
|
+
@html.details do
|
61
|
+
@html.summary('Operation', {'class' => 'h5'})
|
62
|
+
operationClass.writeHtml(operation)
|
63
|
+
end
|
64
|
+
end
|
65
|
+
end
|
66
|
+
end
|
67
|
+
end
|
68
|
+
end
|
69
|
+
|
70
|
+
# satisfiedRequirement
|
71
|
+
unless hPlan[:satisfiedRequirements].empty?
|
72
|
+
@html.section(:class => 'block') do
|
73
|
+
@html.details do
|
74
|
+
@html.summary('Requirements', {'class' => 'h4'})
|
75
|
+
hPlan[:satisfiedRequirements].each do |requirement|
|
76
|
+
@html.section(:class => 'block') do
|
77
|
+
@html.details do
|
78
|
+
@html.summary('Requirement', {'class' => 'h5'})
|
79
|
+
requirementClass.writeHtml(requirement)
|
80
|
+
end
|
81
|
+
end
|
82
|
+
end
|
83
|
+
end
|
84
|
+
end
|
85
|
+
end
|
86
|
+
|
87
|
+
end # writeHtml
|
88
|
+
|
89
|
+
end # Html_Plan
|
90
|
+
end
|
91
|
+
end
|
92
|
+
end
|
93
|
+
end
|