adiwg-mdtranslator 2.20.0.pre.beta.10 → 2.21.0.pre.beta.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (80) hide show
  1. checksums.yaml +4 -4
  2. data/Gemfile.lock +1 -1
  3. data/lib/adiwg/mdtranslator/internal/internal_metadata_obj.rb +46 -7
  4. data/lib/adiwg/mdtranslator/readers/mdJson/modules/module_acquisition.rb +133 -0
  5. data/lib/adiwg/mdtranslator/readers/mdJson/modules/module_environment.rb +47 -0
  6. data/lib/adiwg/mdtranslator/readers/mdJson/modules/module_event.rb +88 -0
  7. data/lib/adiwg/mdtranslator/readers/mdJson/modules/module_instrument.rb +73 -0
  8. data/lib/adiwg/mdtranslator/readers/mdJson/modules/module_instrumentationEvent.rb +77 -0
  9. data/lib/adiwg/mdtranslator/readers/mdJson/modules/module_instrumentationEventList.rb +62 -0
  10. data/lib/adiwg/mdtranslator/readers/mdJson/modules/module_metadata.rb +11 -0
  11. data/lib/adiwg/mdtranslator/readers/mdJson/modules/module_objective.rb +104 -0
  12. data/lib/adiwg/mdtranslator/readers/mdJson/modules/module_operation.rb +119 -0
  13. data/lib/adiwg/mdtranslator/readers/mdJson/modules/module_pass.rb +53 -0
  14. data/lib/adiwg/mdtranslator/readers/mdJson/modules/module_plan.rb +80 -0
  15. data/lib/adiwg/mdtranslator/readers/mdJson/modules/module_platform.rb +87 -0
  16. data/lib/adiwg/mdtranslator/readers/mdJson/modules/module_requestedDate.rb +51 -0
  17. data/lib/adiwg/mdtranslator/readers/mdJson/modules/module_requirement.rb +98 -0
  18. data/lib/adiwg/mdtranslator/readers/mdJson/modules/module_revision.rb +50 -0
  19. data/lib/adiwg/mdtranslator/version.rb +1 -1
  20. data/lib/adiwg/mdtranslator/writers/html/sections/html_acquisition.rb +199 -0
  21. data/lib/adiwg/mdtranslator/writers/html/sections/html_body.rb +19 -0
  22. data/lib/adiwg/mdtranslator/writers/html/sections/html_environment.rb +58 -0
  23. data/lib/adiwg/mdtranslator/writers/html/sections/html_event.rb +121 -0
  24. data/lib/adiwg/mdtranslator/writers/html/sections/html_instrument.rb +98 -0
  25. data/lib/adiwg/mdtranslator/writers/html/sections/html_instrumentationEvent.rb +84 -0
  26. data/lib/adiwg/mdtranslator/writers/html/sections/html_instrumentationEventList.rb +90 -0
  27. data/lib/adiwg/mdtranslator/writers/html/sections/html_objective.rb +155 -0
  28. data/lib/adiwg/mdtranslator/writers/html/sections/html_operation.rb +178 -0
  29. data/lib/adiwg/mdtranslator/writers/html/sections/html_pass.rb +72 -0
  30. data/lib/adiwg/mdtranslator/writers/html/sections/html_plan.rb +93 -0
  31. data/lib/adiwg/mdtranslator/writers/html/sections/html_platform.rb +117 -0
  32. data/lib/adiwg/mdtranslator/writers/html/sections/html_requestedDate.rb +33 -0
  33. data/lib/adiwg/mdtranslator/writers/html/sections/html_requirement.rb +139 -0
  34. data/lib/adiwg/mdtranslator/writers/html/sections/html_revision.rb +55 -0
  35. data/lib/adiwg/mdtranslator/writers/iso19115_3/classes/class_acquisition.rb +103 -0
  36. data/lib/adiwg/mdtranslator/writers/iso19115_3/classes/class_environment.rb +82 -0
  37. data/lib/adiwg/mdtranslator/writers/iso19115_3/classes/class_event.rb +123 -0
  38. data/lib/adiwg/mdtranslator/writers/iso19115_3/classes/class_instrument.rb +92 -0
  39. data/lib/adiwg/mdtranslator/writers/iso19115_3/classes/class_instrumentationEvent.rb +83 -0
  40. data/lib/adiwg/mdtranslator/writers/iso19115_3/classes/class_instrumentationEventList.rb +73 -0
  41. data/lib/adiwg/mdtranslator/writers/iso19115_3/classes/class_mdMetadata.rb +11 -0
  42. data/lib/adiwg/mdtranslator/writers/iso19115_3/classes/class_objective.rb +121 -0
  43. data/lib/adiwg/mdtranslator/writers/iso19115_3/classes/class_operation.rb +131 -0
  44. data/lib/adiwg/mdtranslator/writers/iso19115_3/classes/class_pass.rb +63 -0
  45. data/lib/adiwg/mdtranslator/writers/iso19115_3/classes/class_plan.rb +76 -0
  46. data/lib/adiwg/mdtranslator/writers/iso19115_3/classes/class_platform.rb +102 -0
  47. data/lib/adiwg/mdtranslator/writers/iso19115_3/classes/class_requestedDate.rb +44 -0
  48. data/lib/adiwg/mdtranslator/writers/iso19115_3/classes/class_requirement.rb +111 -0
  49. data/lib/adiwg/mdtranslator/writers/iso19115_3/classes/class_revision.rb +55 -0
  50. data/lib/adiwg/mdtranslator/writers/mdJson/sections/mdJson_acquisition.rb +42 -0
  51. data/lib/adiwg/mdtranslator/writers/mdJson/sections/mdJson_environment.rb +28 -0
  52. data/lib/adiwg/mdtranslator/writers/mdJson/sections/mdJson_event.rb +37 -0
  53. data/lib/adiwg/mdtranslator/writers/mdJson/sections/mdJson_instrument.rb +35 -0
  54. data/lib/adiwg/mdtranslator/writers/mdJson/sections/mdJson_instrumentationEvent.rb +30 -0
  55. data/lib/adiwg/mdtranslator/writers/mdJson/sections/mdJson_instrumentationEventList.rb +32 -0
  56. data/lib/adiwg/mdtranslator/writers/mdJson/sections/mdJson_metadata.rb +2 -0
  57. data/lib/adiwg/mdtranslator/writers/mdJson/sections/mdJson_objective.rb +37 -0
  58. data/lib/adiwg/mdtranslator/writers/mdJson/sections/mdJson_operation.rb +34 -0
  59. data/lib/adiwg/mdtranslator/writers/mdJson/sections/mdJson_pass.rb +30 -0
  60. data/lib/adiwg/mdtranslator/writers/mdJson/sections/mdJson_plan.rb +32 -0
  61. data/lib/adiwg/mdtranslator/writers/mdJson/sections/mdJson_platform.rb +35 -0
  62. data/lib/adiwg/mdtranslator/writers/mdJson/sections/mdJson_requestedDate.rb +26 -0
  63. data/lib/adiwg/mdtranslator/writers/mdJson/sections/mdJson_requirement.rb +36 -0
  64. data/lib/adiwg/mdtranslator/writers/mdJson/sections/mdJson_revision.rb +28 -0
  65. data/lib/adiwg/mdtranslator/writers/simple_html/sections/html_acquisition.rb +195 -0
  66. data/lib/adiwg/mdtranslator/writers/simple_html/sections/html_body.rb +18 -2
  67. data/lib/adiwg/mdtranslator/writers/simple_html/sections/html_environment.rb +58 -0
  68. data/lib/adiwg/mdtranslator/writers/simple_html/sections/html_event.rb +121 -0
  69. data/lib/adiwg/mdtranslator/writers/simple_html/sections/html_instrument.rb +98 -0
  70. data/lib/adiwg/mdtranslator/writers/simple_html/sections/html_instrumentationEvent.rb +84 -0
  71. data/lib/adiwg/mdtranslator/writers/simple_html/sections/html_instrumentationEventList.rb +90 -0
  72. data/lib/adiwg/mdtranslator/writers/simple_html/sections/html_objective.rb +155 -0
  73. data/lib/adiwg/mdtranslator/writers/simple_html/sections/html_operation.rb +178 -0
  74. data/lib/adiwg/mdtranslator/writers/simple_html/sections/html_pass.rb +72 -0
  75. data/lib/adiwg/mdtranslator/writers/simple_html/sections/html_plan.rb +93 -0
  76. data/lib/adiwg/mdtranslator/writers/simple_html/sections/html_platform.rb +117 -0
  77. data/lib/adiwg/mdtranslator/writers/simple_html/sections/html_requestedDate.rb +33 -0
  78. data/lib/adiwg/mdtranslator/writers/simple_html/sections/html_requirement.rb +139 -0
  79. data/lib/adiwg/mdtranslator/writers/simple_html/sections/html_revision.rb +55 -0
  80. metadata +72 -2
@@ -0,0 +1,98 @@
1
+ require_relative 'html_identifier'
2
+ require_relative 'html_platform'
3
+ require_relative 'html_instrumentationEventList'
4
+
5
+ module ADIWG
6
+ module Mdtranslator
7
+ module Writers
8
+ module Simple_html
9
+ class Html_Instrument
10
+ def initialize(html)
11
+ @html = html
12
+ end
13
+
14
+ def writeHtml(hInstrument)
15
+ identifierClass = Html_Identifier.new(@html)
16
+ platformClass = Html_Platform.new(@html)
17
+ instrumentationEventListClass = Html_InstrumentationEventList.new(@html)
18
+
19
+ # instrumentId
20
+ unless hInstrument[:instrumentId].nil?
21
+ @html.em('Instrument ID: ')
22
+ @html.text!(hInstrument[:instrumentId])
23
+ @html.br
24
+ end
25
+
26
+ # identifier
27
+ unless hInstrument[:identifier].empty?
28
+ @html.div(:class => 'block') do
29
+ @html.div do
30
+ @html.summary('Identifier', {'class' => 'h4'})
31
+ @html.div(:class => 'block') do
32
+ identifierClass.writeHtml(hInstrument[:identifier])
33
+ end
34
+ end
35
+ end
36
+ end
37
+
38
+ # instrumentType
39
+ unless hInstrument[:instrumentType].nil?
40
+ @html.em('Instrument Type: ')
41
+ @html.text!(hInstrument[:instrumentType])
42
+ @html.br
43
+ end
44
+
45
+ # description
46
+ unless hInstrument[:description].nil?
47
+ @html.em('Description: ')
48
+ @html.text!(hInstrument[:description])
49
+ @html.br
50
+ end
51
+
52
+ # mountedOn
53
+ unless hInstrument[:mountedOn].empty?
54
+ @html.div(:class => 'block') do
55
+ @html.div do
56
+ @html.summary('Mounted On', {'class' => 'h4'})
57
+ @html.div(:class => 'block') do
58
+ platformClass.writeHtml(hInstrument[:mountedOn])
59
+ end
60
+ end
61
+ end
62
+ end
63
+
64
+ # history
65
+ unless hInstrument[:histories].empty?
66
+ @html.div(:class => 'block') do
67
+ @html.div do
68
+ @html.summary('Histories', {'class' => 'h4'})
69
+ hInstrument[:histories].each do |instrumentationEventList|
70
+ @html.div(:class => 'block') do
71
+ @html.div do
72
+ @html.summary('Instrumentation Event List', {'class' => 'h5'})
73
+ instrumentationEventListClass.writeHtml(instrumentationEventList)
74
+ end
75
+ end
76
+ end
77
+ end
78
+ end
79
+ end
80
+
81
+ # hostId
82
+ unless hInstrument[:hostId].empty?
83
+ @html.div(:class => 'block') do
84
+ @html.div do
85
+ @html.summary('Host ID', {'class' => 'h4'})
86
+ @html.div(:class => 'block') do
87
+ identifierClass.writeHtml(hInstrument[:hostId])
88
+ end
89
+ end
90
+ end
91
+ end
92
+
93
+ end # writeHtml
94
+ end # Html_Instrument
95
+ end
96
+ end
97
+ end
98
+ end
@@ -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 Simple_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.div(:class => 'block') do
22
+ @html.div do
23
+ @html.summary('Citations', {'class' => 'h4'})
24
+ hInstrumentationEvent[:citations].each do |citation|
25
+ @html.div(:class => 'block') do
26
+ @html.div 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.div(:class => 'block') do
46
+ @html.div do
47
+ @html.summary('Extent', {'class' => 'h4'})
48
+ @html.div(: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.div(:class => 'block') do
65
+ @html.div do
66
+ @html.summary('Revision History', {'class' => 'h4'})
67
+ hInstrumentationEvent[:revisionHistories].each do |revision|
68
+ @html.div(:class => 'block') do
69
+ @html.div 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 Simple_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.div(:class => 'block') do
24
+ @html.div do
25
+ @html.summary('Citation', {'class' => 'h4'})
26
+ @html.div(: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.div(:class => 'block') do
43
+ @html.div do
44
+ @html.summary('Locale', {'class' => 'h4'})
45
+ @html.div(: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.div(:class => 'block') do
55
+ @html.div do
56
+ @html.summary('Constraints', {'class' => 'h4'})
57
+ hInstrumentationEventList[:constraints].each do |constraint|
58
+ @html.div(:class => 'block') do
59
+ @html.div 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.div(:class => 'block') do
72
+ @html.div do
73
+ @html.summary('Instrumentation Events', {'class' => 'h4'})
74
+ hInstrumentationEventList[:instrumentationEvents].each do |instrumentationEvent|
75
+ @html.div(:class => 'block') do
76
+ @html.div 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 Simple_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.div(:class => 'block') do
33
+ @html.div do
34
+ @html.summary('Identifiers', {'class' => 'h4'})
35
+ hObjective[:identifiers].each do |identifier|
36
+ @html.div(:class => 'block') do
37
+ @html.div 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.div(:class => 'block') do
57
+ @html.div 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.div(:class => 'block') do
71
+ @html.div 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.div(:class => 'block') do
85
+ @html.div do
86
+ @html.summary('Extents', {'class' => 'h4'})
87
+ hObjective[:extents].each do |extent|
88
+ @html.div(:class => 'block') do
89
+ @html.div 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.div(:class => 'block') do
102
+ @html.div do
103
+ @html.summary('Occurrences', {'class' => 'h4'})
104
+ hObjective[:occurrences].each do |occurrence|
105
+ @html.div(:class => 'block') do
106
+ @html.div 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.div(:class => 'block') do
119
+ @html.div do
120
+ @html.summary('Passes', {'class' => 'h4'})
121
+ hObjective[:passes].each do |pass|
122
+ @html.div(:class => 'block') do
123
+ @html.div 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.div(:class => 'block') do
136
+ @html.div do
137
+ @html.summary('Sensing Instruments', {'class' => 'h4'})
138
+ hObjective[:sensingInstruments].each do |instrument|
139
+ @html.div(:class => 'block') do
140
+ @html.div 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 Simple_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.div(:class => 'block') do
45
+ @html.div do
46
+ @html.summary('Citation', {'class' => 'h4'})
47
+ @html.div(: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.div(:class => 'block') do
57
+ @html.div do
58
+ @html.summary('Identifier', {'class' => 'h4'})
59
+ @html.div(: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.div(:class => 'block') do
83
+ @html.div do
84
+ @html.summary('Objectives', {'class' => 'h4'})
85
+ hOperation[:objectives].each do |objective|
86
+ @html.div(:class => 'block') do
87
+ @html.div 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.div(:class => 'block') do
100
+ @html.div do
101
+ @html.summary('Parent Operation', {'class' => 'h4'})
102
+ @html.div(: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.div(:class => 'block') do
112
+ @html.div do
113
+ @html.summary('Child Operations', {'class' => 'h4'})
114
+ hOperation[:childOperations].each do |operation|
115
+ @html.div(:class => 'block') do
116
+ @html.div 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.div(:class => 'block') do
129
+ @html.div do
130
+ @html.summary('Plan', {'class' => 'h4'})
131
+ @html.div(: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.div(:class => 'block') do
141
+ @html.div do
142
+ @html.summary('Platforms', {'class' => 'h4'})
143
+ hOperation[:platforms].each do |platform|
144
+ @html.div(:class => 'block') do
145
+ @html.div 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.div(:class => 'block') do
158
+ @html.div do
159
+ @html.summary('Significant Events', {'class' => 'h4'})
160
+ hOperation[:significantEvents].each do |event|
161
+ @html.div(:class => 'block') do
162
+ @html.div 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 Simple_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.div(:class => 'block') do
29
+ @html.div do
30
+ @html.summary('Identifier', {'class' => 'h4'})
31
+ @html.div(: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.div(:class => 'block') do
41
+ @html.div do
42
+ @html.summary('Extent', {'class' => 'h4'})
43
+ @html.div(: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.div(:class => 'block') do
53
+ @html.div do
54
+ @html.summary('Related Events', {'class' => 'h4'})
55
+ hPass[:relatedEvents].each do |event|
56
+ @html.div(:class => 'block') do
57
+ @html.div 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