origen 0.0.1 → 0.0.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (336) hide show
  1. checksums.yaml +4 -4
  2. data/bin/ctags +0 -0
  3. data/bin/origen +165 -1
  4. data/bin/rgen +2 -0
  5. data/config/application.rb +141 -0
  6. data/config/commands.rb +72 -0
  7. data/config/development.rb +7 -0
  8. data/config/environment.rb +0 -0
  9. data/config/rgen.policy +7 -0
  10. data/config/rubocop/easy.yml +620 -0
  11. data/config/rubocop/easy_disabled.yml +271 -0
  12. data/config/rubocop/easy_enabled.yml +731 -0
  13. data/config/rubocop/strict.yml +620 -0
  14. data/config/rubocop/strict_disabled.yml +247 -0
  15. data/config/rubocop/strict_enabled.yml +755 -0
  16. data/config/users.rb +20 -0
  17. data/config/version.rb +1 -1
  18. data/helpers/url.rb +68 -0
  19. data/lib/c99/doc_interface.rb +56 -0
  20. data/lib/c99/j750_interface.rb +85 -0
  21. data/lib/c99/nvm.rb +89 -0
  22. data/lib/c99/target/mock2.rb +1 -0
  23. data/lib/c99/target/subdir/mock3.rb +1 -0
  24. data/lib/option_parser/optparse.rb +12 -0
  25. data/lib/origen/acronyms.rb +60 -0
  26. data/lib/origen/application/command_dispatcher.rb +12 -0
  27. data/lib/origen/application/configuration.rb +206 -0
  28. data/lib/origen/application/configuration_manager.rb +78 -0
  29. data/lib/origen/application/deployer.rb +367 -0
  30. data/lib/origen/application/environment.rb +186 -0
  31. data/lib/origen/application/lsf.rb +145 -0
  32. data/lib/origen/application/lsf_manager.rb +657 -0
  33. data/lib/origen/application/plugins_manager.rb +280 -0
  34. data/lib/origen/application/release.rb +359 -0
  35. data/lib/origen/application/runner.rb +246 -0
  36. data/lib/origen/application/statistics.rb +191 -0
  37. data/lib/origen/application/target.rb +374 -0
  38. data/lib/origen/application/version_tracker.rb +59 -0
  39. data/lib/origen/application/workspace_manager.rb +151 -0
  40. data/lib/origen/application.rb +746 -0
  41. data/lib/origen/bugs/bug.rb +36 -0
  42. data/lib/origen/bugs.rb +45 -0
  43. data/lib/origen/callbacks.rb +35 -0
  44. data/lib/origen/chip_mode.rb +118 -0
  45. data/lib/origen/chip_package.rb +461 -0
  46. data/lib/origen/client.rb +87 -0
  47. data/lib/origen/code_generators/actions.rb +258 -0
  48. data/lib/origen/code_generators/base.rb +57 -0
  49. data/lib/origen/code_generators/bundler.rb +17 -0
  50. data/lib/origen/code_generators/gem_setup.rb +49 -0
  51. data/lib/origen/code_generators/rake.rb +13 -0
  52. data/lib/origen/code_generators/rspec.rb +12 -0
  53. data/lib/origen/code_generators/semver.rb +39 -0
  54. data/lib/origen/code_generators/timever.rb +37 -0
  55. data/lib/origen/code_generators.rb +111 -0
  56. data/lib/origen/commands/add.rb +12 -0
  57. data/lib/origen/commands/compile.rb +62 -0
  58. data/lib/origen/commands/ctags.rb +9 -0
  59. data/lib/origen/commands/dispatch.rb +22 -0
  60. data/lib/origen/commands/environment.rb +11 -0
  61. data/lib/origen/commands/fetch.rb +63 -0
  62. data/lib/origen/commands/generate.rb +130 -0
  63. data/lib/origen/commands/interactive.rb +73 -0
  64. data/lib/origen/commands/lint.rb +82 -0
  65. data/lib/origen/commands/lsf.rb +93 -0
  66. data/lib/origen/commands/merge.rb +55 -0
  67. data/lib/origen/commands/modifications.rb +12 -0
  68. data/lib/origen/commands/new.rb +113 -0
  69. data/lib/origen/commands/plugin.rb +105 -0
  70. data/lib/origen/commands/program.rb +70 -0
  71. data/lib/origen/commands/rc.rb +442 -0
  72. data/lib/origen/commands/save.rb +56 -0
  73. data/lib/origen/commands/target.rb +27 -0
  74. data/lib/origen/commands/time.rb +127 -0
  75. data/lib/origen/commands/version.rb +17 -0
  76. data/lib/origen/commands/web.rb +221 -0
  77. data/lib/origen/commands.rb +272 -0
  78. data/lib/origen/commands_global.rb +76 -0
  79. data/lib/origen/controller.rb +94 -0
  80. data/lib/origen/core_ext/array.rb +23 -0
  81. data/lib/origen/core_ext/bignum.rb +36 -0
  82. data/lib/origen/core_ext/enumerable.rb +76 -0
  83. data/lib/origen/core_ext/fixnum.rb +46 -0
  84. data/lib/origen/core_ext/hash.rb +52 -0
  85. data/lib/origen/core_ext/module.rb +14 -0
  86. data/lib/origen/core_ext/numeric.rb +126 -0
  87. data/lib/origen/core_ext/object.rb +13 -0
  88. data/lib/origen/core_ext/range.rb +7 -0
  89. data/lib/origen/core_ext/string.rb +124 -0
  90. data/lib/origen/core_ext.rb +10 -0
  91. data/lib/origen/database/key_value_store.rb +111 -0
  92. data/lib/origen/database/key_value_stores.rb +108 -0
  93. data/lib/origen/database.rb +6 -0
  94. data/lib/origen/encodings.rb +102 -0
  95. data/lib/origen/features/feature.rb +22 -0
  96. data/lib/origen/features.rb +104 -0
  97. data/lib/origen/file_handler.rb +429 -0
  98. data/lib/origen/generator/comparator.rb +56 -0
  99. data/lib/origen/generator/compiler.rb +277 -0
  100. data/lib/origen/generator/flow.rb +49 -0
  101. data/lib/origen/generator/job.rb +131 -0
  102. data/lib/origen/generator/pattern.rb +356 -0
  103. data/lib/origen/generator/pattern_finder.rb +155 -0
  104. data/lib/origen/generator/pattern_iterator.rb +55 -0
  105. data/lib/origen/generator/renderer.rb +113 -0
  106. data/lib/origen/generator/resources.rb +40 -0
  107. data/lib/origen/generator/stage.rb +89 -0
  108. data/lib/origen/generator.rb +85 -0
  109. data/lib/origen/global_methods.rb +205 -0
  110. data/lib/origen/import_manager.rb +596 -0
  111. data/lib/origen/location/base.rb +116 -0
  112. data/lib/origen/location/map.rb +83 -0
  113. data/lib/origen/location.rb +6 -0
  114. data/lib/origen/log.rb +217 -0
  115. data/lib/origen/logger_methods.rb +56 -0
  116. data/lib/origen/mode.rb +61 -0
  117. data/lib/origen/model.rb +267 -0
  118. data/lib/origen/model_initializer.rb +45 -0
  119. data/lib/origen/nvm/block_array.rb +72 -0
  120. data/lib/origen/nvm.rb +6 -0
  121. data/lib/origen/parameters/live.rb +22 -0
  122. data/lib/origen/parameters/missing.rb +28 -0
  123. data/lib/origen/parameters/set.rb +144 -0
  124. data/lib/origen/parameters.rb +107 -0
  125. data/lib/origen/pdm.rb +218 -0
  126. data/lib/origen/pins/function_proxy.rb +36 -0
  127. data/lib/origen/pins/ground_pin.rb +6 -0
  128. data/lib/origen/pins/pin.rb +860 -0
  129. data/lib/origen/pins/pin_bank.rb +349 -0
  130. data/lib/origen/pins/pin_clock.rb +124 -0
  131. data/lib/origen/pins/pin_collection.rb +492 -0
  132. data/lib/origen/pins/pin_common.rb +206 -0
  133. data/lib/origen/pins/port.rb +268 -0
  134. data/lib/origen/pins/power_pin.rb +30 -0
  135. data/lib/origen/pins.rb +696 -0
  136. data/lib/origen/registers/bit.rb +562 -0
  137. data/lib/origen/registers/bit_collection.rb +787 -0
  138. data/lib/origen/registers/container.rb +288 -0
  139. data/lib/origen/registers/domain.rb +16 -0
  140. data/lib/origen/registers/reg.rb +1406 -0
  141. data/lib/origen/registers/reg_collection.rb +24 -0
  142. data/lib/origen/registers.rb +652 -0
  143. data/lib/origen/regression_manager.rb +251 -0
  144. data/lib/origen/remote_manager.rb +340 -0
  145. data/lib/origen/revision_control/base.rb +257 -0
  146. data/lib/origen/revision_control/design_sync.rb +276 -0
  147. data/lib/origen/revision_control/git.rb +243 -0
  148. data/lib/origen/revision_control/subversion.rb +6 -0
  149. data/lib/origen/revision_control.rb +44 -0
  150. data/lib/origen/ruby_version_check.rb +131 -0
  151. data/lib/origen/site_config.rb +61 -0
  152. data/lib/origen/specs/checkers.rb +103 -0
  153. data/lib/origen/specs/creation_info.rb +17 -0
  154. data/lib/origen/specs/doc_resource.rb +91 -0
  155. data/lib/origen/specs/exhibit.rb +17 -0
  156. data/lib/origen/specs/mode_select.rb +16 -0
  157. data/lib/origen/specs/note.rb +17 -0
  158. data/lib/origen/specs/override.rb +21 -0
  159. data/lib/origen/specs/power_supply.rb +13 -0
  160. data/lib/origen/specs/spec.rb +226 -0
  161. data/lib/origen/specs/version_history.rb +14 -0
  162. data/lib/origen/specs.rb +552 -0
  163. data/lib/origen/sub_blocks.rb +298 -0
  164. data/lib/origen/tester/api.rb +277 -0
  165. data/lib/origen/tester/bdm/bdm.rb +25 -0
  166. data/lib/origen/tester/command_based_tester.rb +46 -0
  167. data/lib/origen/tester/doc/doc.rb +226 -0
  168. data/lib/origen/tester/doc/generator/flow.rb +71 -0
  169. data/lib/origen/tester/doc/generator/flow_line.rb +203 -0
  170. data/lib/origen/tester/doc/generator/test.rb +68 -0
  171. data/lib/origen/tester/doc/generator/test_group.rb +66 -0
  172. data/lib/origen/tester/doc/generator/tests.rb +47 -0
  173. data/lib/origen/tester/doc/generator.rb +126 -0
  174. data/lib/origen/tester/doc/model.rb +162 -0
  175. data/lib/origen/tester/generator/flow_control_api.rb +606 -0
  176. data/lib/origen/tester/generator/identity_map.rb +25 -0
  177. data/lib/origen/tester/generator/placeholder.rb +13 -0
  178. data/lib/origen/tester/generator/test_numberer.rb +25 -0
  179. data/lib/origen/tester/generator.rb +271 -0
  180. data/lib/origen/tester/interface.rb +154 -0
  181. data/lib/origen/tester/j750/files.rb +45 -0
  182. data/lib/origen/tester/j750/generator/flow.rb +123 -0
  183. data/lib/origen/tester/j750/generator/flow_line.rb +288 -0
  184. data/lib/origen/tester/j750/generator/patgroup.rb +111 -0
  185. data/lib/origen/tester/j750/generator/patgroups.rb +41 -0
  186. data/lib/origen/tester/j750/generator/patset.rb +111 -0
  187. data/lib/origen/tester/j750/generator/patsets.rb +41 -0
  188. data/lib/origen/tester/j750/generator/templates/flow.txt.erb +9 -0
  189. data/lib/origen/tester/j750/generator/templates/instances.txt.erb +16 -0
  190. data/lib/origen/tester/j750/generator/templates/patgroups.txt.erb +8 -0
  191. data/lib/origen/tester/j750/generator/templates/patsets.txt.erb +10 -0
  192. data/lib/origen/tester/j750/generator/test_instance.rb +846 -0
  193. data/lib/origen/tester/j750/generator/test_instance_group.rb +60 -0
  194. data/lib/origen/tester/j750/generator/test_instances.rb +182 -0
  195. data/lib/origen/tester/j750/generator.rb +203 -0
  196. data/lib/origen/tester/j750/j750.rb +845 -0
  197. data/lib/origen/tester/j750/j750_hpt.rb +35 -0
  198. data/lib/origen/tester/j750/parser/ac_spec.rb +11 -0
  199. data/lib/origen/tester/j750/parser/ac_specs.rb +0 -0
  200. data/lib/origen/tester/j750/parser/dc_spec.rb +36 -0
  201. data/lib/origen/tester/j750/parser/dc_specs.rb +50 -0
  202. data/lib/origen/tester/j750/parser/descriptions.rb +340 -0
  203. data/lib/origen/tester/j750/parser/flow.rb +111 -0
  204. data/lib/origen/tester/j750/parser/flow_line.rb +207 -0
  205. data/lib/origen/tester/j750/parser/flows.rb +23 -0
  206. data/lib/origen/tester/j750/parser/pattern_set.rb +94 -0
  207. data/lib/origen/tester/j750/parser/pattern_sets.rb +33 -0
  208. data/lib/origen/tester/j750/parser/test_instance.rb +322 -0
  209. data/lib/origen/tester/j750/parser/test_instances.rb +26 -0
  210. data/lib/origen/tester/j750/parser/timeset.rb +15 -0
  211. data/lib/origen/tester/j750/parser/timesets.rb +0 -0
  212. data/lib/origen/tester/j750/parser.rb +104 -0
  213. data/lib/origen/tester/jlink/jlink.rb +33 -0
  214. data/lib/origen/tester/parser/description_lookup.rb +64 -0
  215. data/lib/origen/tester/parser/searchable_array.rb +32 -0
  216. data/lib/origen/tester/parser/searchable_hash.rb +32 -0
  217. data/lib/origen/tester/parser.rb +24 -0
  218. data/lib/origen/tester/time.rb +338 -0
  219. data/lib/origen/tester/timing.rb +253 -0
  220. data/lib/origen/tester/ultraflex/files.rb +45 -0
  221. data/lib/origen/tester/ultraflex/generator/flow.rb +119 -0
  222. data/lib/origen/tester/ultraflex/generator/flow_line.rb +269 -0
  223. data/lib/origen/tester/ultraflex/generator/patgroup.rb +111 -0
  224. data/lib/origen/tester/ultraflex/generator/patgroups.rb +41 -0
  225. data/lib/origen/tester/ultraflex/generator/patset.rb +111 -0
  226. data/lib/origen/tester/ultraflex/generator/patsets.rb +41 -0
  227. data/lib/origen/tester/ultraflex/generator/templates/flow.txt.erb +9 -0
  228. data/lib/origen/tester/ultraflex/generator/templates/instances.txt.erb +16 -0
  229. data/lib/origen/tester/ultraflex/generator/templates/patgroups.txt.erb +8 -0
  230. data/lib/origen/tester/ultraflex/generator/templates/patsets.txt.erb +10 -0
  231. data/lib/origen/tester/ultraflex/generator/test_instance.rb +622 -0
  232. data/lib/origen/tester/ultraflex/generator/test_instance_group.rb +60 -0
  233. data/lib/origen/tester/ultraflex/generator/test_instances.rb +174 -0
  234. data/lib/origen/tester/ultraflex/generator.rb +200 -0
  235. data/lib/origen/tester/ultraflex/parser/ac_spec.rb +11 -0
  236. data/lib/origen/tester/ultraflex/parser/ac_specs.rb +0 -0
  237. data/lib/origen/tester/ultraflex/parser/dc_spec.rb +36 -0
  238. data/lib/origen/tester/ultraflex/parser/dc_specs.rb +50 -0
  239. data/lib/origen/tester/ultraflex/parser/descriptions.rb +342 -0
  240. data/lib/origen/tester/ultraflex/parser/flow.rb +111 -0
  241. data/lib/origen/tester/ultraflex/parser/flow_line.rb +207 -0
  242. data/lib/origen/tester/ultraflex/parser/flows.rb +23 -0
  243. data/lib/origen/tester/ultraflex/parser/pattern_set.rb +94 -0
  244. data/lib/origen/tester/ultraflex/parser/pattern_sets.rb +33 -0
  245. data/lib/origen/tester/ultraflex/parser/test_instance.rb +262 -0
  246. data/lib/origen/tester/ultraflex/parser/test_instances.rb +26 -0
  247. data/lib/origen/tester/ultraflex/parser/timeset.rb +15 -0
  248. data/lib/origen/tester/ultraflex/parser/timesets.rb +0 -0
  249. data/lib/origen/tester/ultraflex/parser.rb +104 -0
  250. data/lib/origen/tester/ultraflex/ultraflex.rb +759 -0
  251. data/lib/origen/tester/v93k/generator/flow.rb +63 -0
  252. data/lib/origen/tester/v93k/generator/flow_node/print.rb +10 -0
  253. data/lib/origen/tester/v93k/generator/flow_node.rb +17 -0
  254. data/lib/origen/tester/v93k/generator/pattern.rb +16 -0
  255. data/lib/origen/tester/v93k/generator/pattern_master.rb +54 -0
  256. data/lib/origen/tester/v93k/generator/templates/_test_method.txt.erb +6 -0
  257. data/lib/origen/tester/v93k/generator/templates/_test_suite.txt.erb +11 -0
  258. data/lib/origen/tester/v93k/generator/templates/template.flow.erb +121 -0
  259. data/lib/origen/tester/v93k/generator/templates/template.pmfl.erb +9 -0
  260. data/lib/origen/tester/v93k/generator/test_function.rb +103 -0
  261. data/lib/origen/tester/v93k/generator/test_functions.rb +79 -0
  262. data/lib/origen/tester/v93k/generator/test_method.rb +46 -0
  263. data/lib/origen/tester/v93k/generator/test_methods.rb +75 -0
  264. data/lib/origen/tester/v93k/generator/test_suite.rb +54 -0
  265. data/lib/origen/tester/v93k/generator/test_suites.rb +65 -0
  266. data/lib/origen/tester/v93k/generator.rb +80 -0
  267. data/lib/origen/tester/v93k/v93k.rb +420 -0
  268. data/lib/origen/tester/vector.rb +86 -0
  269. data/lib/origen/tester/vector_generator.rb +633 -0
  270. data/lib/origen/tester/vector_pipeline.rb +150 -0
  271. data/lib/origen/tester.rb +56 -0
  272. data/lib/origen/top_level.rb +134 -0
  273. data/lib/origen/users/ldap.rb +65 -0
  274. data/lib/origen/users/user.rb +149 -0
  275. data/lib/origen/users.rb +30 -0
  276. data/lib/origen/utility/block_args.rb +93 -0
  277. data/lib/origen/utility/csv_data.rb +110 -0
  278. data/lib/origen/utility/design_sync.rb +494 -0
  279. data/lib/origen/utility/diff.rb +158 -0
  280. data/lib/origen/utility/input_capture.rb +121 -0
  281. data/lib/origen/utility/mailer.rb +143 -0
  282. data/lib/origen/utility/s_record.rb +205 -0
  283. data/lib/origen/utility/time_and_date.rb +30 -0
  284. data/lib/origen/utility.rb +12 -0
  285. data/lib/origen/version_checker.rb +117 -0
  286. data/lib/origen/version_string.rb +356 -0
  287. data/lib/origen.rb +648 -0
  288. data/lib/tasks/gem.rake +27 -22
  289. data/origen_site_config.yml +36 -0
  290. data/source_setup +17 -0
  291. data/spec/format/rgen_formatter.rb +14 -0
  292. data/templates/api_doc/README.txt.erb +24 -0
  293. data/templates/code_generators/gemfile_app.rb +4 -0
  294. data/templates/code_generators/gemfile_plugin.rb +6 -0
  295. data/templates/code_generators/gemspec.rb +33 -0
  296. data/templates/code_generators/rakefile.rb +10 -0
  297. data/templates/code_generators/spec_helper.rb +49 -0
  298. data/templates/code_generators/version.rb +8 -0
  299. data/templates/code_generators/version_time.rb +3 -0
  300. data/templates/git/gitignore.erb +33 -0
  301. data/templates/j750/_vt_flow.txt.erb +8 -0
  302. data/templates/j750/_vt_instances.txt.erb +4 -0
  303. data/templates/j750/program_sheet.txt.erb +9 -0
  304. data/templates/nanoc/Rules +74 -0
  305. data/templates/nanoc/config.yaml +77 -0
  306. data/templates/nanoc/content/favicon.ico +0 -0
  307. data/templates/nanoc/layouts/bootstrap.html.erb +63 -0
  308. data/templates/nanoc/layouts/bootstrap3.html.erb +71 -0
  309. data/templates/nanoc/layouts/freescale.html.erb +79 -0
  310. data/templates/nanoc/lib/bootstrap_filter.rb +49 -0
  311. data/templates/nanoc/lib/codeblocks_filter.rb +41 -0
  312. data/templates/nanoc/lib/default.rb +2 -0
  313. data/templates/nanoc/lib/gzip_filter.rb +16 -0
  314. data/templates/nanoc/lib/haml_code_filter.rb +41 -0
  315. data/templates/nanoc/lib/helpers.rb +1 -0
  316. data/templates/nanoc/lib/search_filter.rb +62 -0
  317. data/templates/nanoc_dynamic/content/search.js.erb +92 -0
  318. data/templates/shared/web/_logo.html +10 -0
  319. data/templates/test/_inline_sub.txt.erb +2 -0
  320. data/templates/test/environment.txt.erb +1 -0
  321. data/templates/test/inline.txt.erb +11 -0
  322. data/templates/test/inspections.txt.erb +19 -0
  323. data/templates/test/set1/_sub1.txt.erb +12 -0
  324. data/templates/test/set1/_sub4.txt.erb +1 -0
  325. data/templates/test/set1/_sub5.txt.erb +1 -0
  326. data/templates/test/set1/main.txt.erb +53 -0
  327. data/templates/test/set1/sub_dir/_sub2.txt.erb +20 -0
  328. data/templates/test/set1/sub_dir/_sub3.txt.erb +12 -0
  329. data/templates/test/set1/sub_dir/main2.txt.erb +4 -0
  330. data/templates/test/set2/template_with_no_erb_1.txt +9 -0
  331. data/templates/test/set2/template_with_no_erb_2.txt +9 -0
  332. data/templates/test/set3/_layout.html.erb +4 -0
  333. data/templates/test/set3/content.html.erb +6 -0
  334. data/templates/time/filter.rb.erb +15 -0
  335. data/templates/time/rules.rb.erb +45 -0
  336. metadata +639 -5
@@ -0,0 +1,36 @@
1
+ # GEM SETUP
2
+
3
+ # Where user's local gems will be installed
4
+ gem_install_dir: ~/.origen/gems
5
+ # If your company has an internal gem server enter it here
6
+ #gem_server: http://gems.company.net:9292
7
+ # If build switches/options are required to build specific gems in your environment
8
+ # you can define them here
9
+ #gem_build_switches:
10
+ # - nokogiri --use-system-libraries=true --with-xml2-include=/path/to/libxml2
11
+ # - other_gem --some_build_switch
12
+
13
+ # USERS AND LDAP
14
+
15
+ # Adding an email domain will allow email addresses for users to be automatically
16
+ # generated from their ID e.g.
17
+ #
18
+ # # With email_domain specified
19
+ # User.new("ax1234").email # => "ax1234@company.com"
20
+ #
21
+ # # Without email_domain specified
22
+ # User.new("ax1234@company.com").email # => "ax1234@company.com"
23
+ #email_domain: company.com
24
+ #email_server: remotesmtp.company.net
25
+ #email_port: 25
26
+
27
+ # Required parameters to connect to your company's LDAP system
28
+ #ldap_username: cn=manager,dc=example,dc=com
29
+ #ldap_password: opensesame
30
+ #ldap_host: ids.company.net
31
+ #ldap_port: 636
32
+ #ldap_base_dn: ou=people,ou=intranet,dc=com
33
+ # Optional to override the name given to the user ID attribute on the LDAP system ('id' by default)
34
+ #ldap_user_id_attribute: uid
35
+
36
+ # LSF
data/source_setup ADDED
@@ -0,0 +1,17 @@
1
+ #!/bin/tcsh
2
+ #
3
+ # This script will update the user's path to make their current terminal session use
4
+ # the origen executable from the local workspace containing this script, rather than
5
+ # the default version from elsewhere.
6
+ #
7
+ # > source source_setup
8
+ #
9
+ set called=($_)
10
+
11
+ set called_dir = $PWD # Directory from which this script was called
12
+ set relative_path = $called[2] # Relative path from there to this file
13
+ set origen_install = `dirname $called_dir/$relative_path`
14
+ set origen_bin = $origen_install/bin
15
+
16
+ # Add the origen bin dirs to the user's path as highest priority
17
+ setenv PATH ./lbin\:$origen_bin\:$PATH
@@ -0,0 +1,14 @@
1
+ require 'rspec/core/formatters/base_formatter'
2
+
3
+ class OrigenFormatter < RSpec::Core::Formatters::BaseFormatter
4
+
5
+ def dump_summary(duration, example_count, failure_count, pending_count)
6
+ if failure_count > 0
7
+ Origen.app.stats.report_fail
8
+ else
9
+ Origen.app.stats.report_pass
10
+ end
11
+ super(duration, example_count, failure_count, pending_count)
12
+ end
13
+
14
+ end
@@ -0,0 +1,24 @@
1
+ = \RGen (<%= RGen.version %>)
2
+ {Choose another version}[http://rgen.freescale.net]
3
+
4
+ Here are some shortcuts to common locations, alternatively search or browse
5
+ for the code of interest:
6
+
7
+ === Tester Methods
8
+
9
+ * {Common}[<%= url "/api" %>/RGen/Tester/API.html]
10
+ * {Common Timing Related}[<%= url "/api" %>/RGen/Tester/Timing.html]
11
+ * {J750}[<%= url "/api" %>/RGen/Tester/J750.html]
12
+
13
+ === Pins and Ports
14
+
15
+ * {Pins Module (include this to add pins/ports to your class)}[<%= url "/api" %>/RGen/Pins.html]
16
+ * {Pin}[<%= url "/api" %>/RGen/Pins/Pin.html]
17
+ * {Port}[<%= url "/api" %>/RGen/Pins/Port.html]
18
+
19
+ === Registers and Bits
20
+
21
+ * {Registers Module (include this to add registers to your class)}[<%= url "/api" %>/RGen/Registers.html]
22
+ * {Register}[<%= url "/api" %>/RGen/Registers/Reg.html]
23
+ * {Bit}[<%= url "/api" %>/RGen/Registers/Bit.html]
24
+ * {BitCollection (these methods can be called on all registers and bits)}[<%= url "/api" %>/RGen/Registers/BitCollection.html]
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+ source 'http://origen-hub.am.freescale.net:9292'
3
+
4
+ gem "origen_core", ">= <%= Origen.version %>"
@@ -0,0 +1,6 @@
1
+ source 'https://rubygems.org'
2
+ source 'http://origen-hub.am.freescale.net:9292'
3
+
4
+ # Specify your gem's dependencies in <%= Origen.app.name %>.gemspec
5
+ gemspec
6
+
@@ -0,0 +1,33 @@
1
+ # coding: utf-8
2
+ config = File.expand_path('../config', __FILE__)
3
+ require "#{config}/version"
4
+
5
+ Gem::Specification.new do |spec|
6
+ spec.name = "<%= Origen.app.name %>"
7
+ spec.version = <%= Origen.app.namespace %>::VERSION
8
+ spec.authors = ["<%= User.current.name %>"]
9
+ spec.email = ["<%= User.current.email %>"]
10
+ spec.summary = "<%= @summary %>"
11
+ <% if Origen.app.config.web_domain -%>
12
+ spec.homepage = "<%= Origen.app.config.web_domain %>"
13
+ <% end -%>
14
+
15
+ spec.required_ruby_version = '>= 1.9.3'
16
+ spec.required_rubygems_version = '>= 1.8.11'
17
+
18
+ # Only the files that are hit by these wildcards will be included in the
19
+ # packaged gem, the default should hit everything in most cases but this will
20
+ # need to be added to if you have any custom directories
21
+ spec.files = Dir["lib/**/*.rb", "templates/**/*", "config/**/*.rb",
22
+ "bin/*", "lib/tasks/**/*.rake", "pattern/**/*.rb",
23
+ "program/**/*.rb"
24
+ ]
25
+ spec.executables = []
26
+ spec.require_paths = ["lib"]
27
+
28
+ # Add any gems that your plugin needs to run within a host application
29
+ spec.add_runtime_dependency "origen_core", ">= <%= Origen.version %>"
30
+
31
+ # Add any gems that your plugin needs for its development environment only
32
+ #spec.add_development_dependency "doc_helpers", ">= 1.7.0"
33
+ end
@@ -0,0 +1,10 @@
1
+ # Add your own tasks in files placed in lib/tasks ending in .rake,
2
+ # for example lib/tasks/app_tasks.rake, and they will automatically be available to Rake.
3
+
4
+ # Any task files found in lib/tasks/shared/*.rake will be available to other apps that
5
+ # include this app as a plugin
6
+
7
+ require "bundler/setup"
8
+ require "origen"
9
+
10
+ Origen.app.load_tasks
@@ -0,0 +1,49 @@
1
+ $VERBOSE=nil # Don't care about world writable dir warnings and the like
2
+
3
+ require 'pathname'
4
+ if File.exist? File.expand_path("../Gemfile", Pathname.new(__FILE__).realpath)
5
+ require 'rubygems'
6
+ require 'bundler/setup'
7
+ else
8
+ # If running on windows, can't use Origen helpers 'till we load it...
9
+ if RUBY_PLATFORM == 'i386-mingw32'
10
+ `where origen`.split("\n").find do |match|
11
+ match =~ /(.*)\\bin\\origen$/
12
+ end
13
+ origen_top = $1.gsub("\\", "/")
14
+ else
15
+ origen_top = `which origen`.strip.sub("/bin/origen", "")
16
+ end
17
+
18
+ $LOAD_PATH.unshift "#{origen_top}/lib"
19
+ end
20
+
21
+ require "origen"
22
+
23
+ require "rspec/legacy_formatters"
24
+ require "#{Origen.top}/spec/format/origen_formatter"
25
+
26
+ if RUBY_VERSION >= '2.0.0'
27
+ require "byebug"
28
+ else
29
+ require 'debugger'
30
+ end
31
+ require 'pry'
32
+
33
+ def load_target(target="default")
34
+ Origen.target.switch_to target
35
+ Origen.target.load!
36
+ end
37
+
38
+ RSpec.configure do |config|
39
+ config.formatter = OrigenFormatter
40
+ # rspec-expectations config goes here. You can use an alternate
41
+ # assertion/expectation library such as wrong or the stdlib/minitest
42
+ # assertions if you prefer.
43
+ config.expect_with :rspec do |expectations|
44
+ # Enable only the newer, non-monkey-patching expect syntax.
45
+ # For more details, see:
46
+ # - http://myronmars.to/n/dev-blog/2012/06/rspecs-new-expectation-syntax
47
+ expectations.syntax = :should
48
+ end
49
+ end
@@ -0,0 +1,8 @@
1
+ module <%= Origen.app.namespace %>
2
+ MAJOR = <%= @version.major %>
3
+ MINOR = <%= @version.minor %>
4
+ BUGFIX = <%= @version.bugfix %>
5
+ DEV = <%= @version.pre || "nil" %>
6
+
7
+ VERSION = [MAJOR, MINOR, BUGFIX].join(".") + (DEV ? ".pre#{DEV}" : '')
8
+ end
@@ -0,0 +1,3 @@
1
+ module <%= Origen.app.namespace %>
2
+ VERSION = '<%= @version %>'
3
+ end
@@ -0,0 +1,33 @@
1
+ # Editor cruft
2
+ *.swp
3
+ *.swo
4
+ *~
5
+
6
+ # RGen local files
7
+ /.bundle
8
+ /target/.default
9
+ /environment/.default
10
+ /release_note.txt
11
+ /pkg
12
+ /lbin
13
+ /.bin
14
+ /list/referenced.list
15
+ /tags
16
+ /.ref
17
+ /.ws
18
+ /.lsf
19
+ /.db
20
+ /log
21
+ /output
22
+ /web
23
+ /coverage
24
+ /.ref
25
+ /.yardoc
26
+ /.collection
27
+ /.bin
28
+ /.session
29
+ /.pdm/pi_attributes.txt
30
+
31
+ # Cruft from other revision control systems
32
+ .SYNC
33
+ .svn
@@ -0,0 +1,8 @@
1
+ data_collection Test nvm_allflash_vsgdist ErsSatVsg None
2
+ % if options[:include_fw]
3
+ data_collection Test nvm_allflash_vsgdist_fw ErsSatVsgFW None
4
+ % end
5
+ % if options[:include_tifr]
6
+ data_collection Test nvm_allflash_vsgdist_tifr ErsSatVsgTIFR None
7
+ % end
8
+ data_collection Test nvm_allflash_vsgdist_uifr ErsSatVsgUIFR None
@@ -0,0 +1,4 @@
1
+ nvm_allflash_vsgdist IG-XL Template Empty_T Excel Macro NVM Typ Spec Default Tim Lvl TfsC90InterposeFunc VtDist SetHRAMForRead,32 ArgData:0,1,15,1,vsg,array
2
+ nvm_allflash_vsgdist_fw IG-XL Template Empty_T Excel Macro NVM Typ Spec Default Tim Lvl TfsC90InterposeFunc VtDist SetHRAMForRead,32 ArgData:0,1,15,1,vsg,fw
3
+ nvm_allflash_vsgdist_uifr IG-XL Template Empty_T Excel Macro NVM Typ Spec Default Tim Lvl TfsC90InterposeFunc VtDist SetHRAMForRead,32 ArgData:0,1,15,1,vsg,uifr
4
+ nvm_allflash_vsgdist_tifr IG-XL Template Empty_T Excel Macro NVM Typ Spec Default Tim Lvl TfsC90InterposeFunc VtDist SetHRAMForRead,32 ArgData:0,1,15,1,vsg,tifr
@@ -0,0 +1,9 @@
1
+ This is some test program sheet or other.
2
+
3
+ The test compile has:
4
+
5
+ % if options[:passed_param]
6
+ PASSED!
7
+ % else
8
+ FAILED!
9
+ % end
@@ -0,0 +1,74 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ # A few helpful tips about the Rules file:
4
+ #
5
+ # * The string given to #compile and #route are matching patterns for
6
+ # identifiers--not for paths. Therefore, you cant match on extension.
7
+ #
8
+ # * The order of rules is important: for each item, only the first matching
9
+ # rule is applied.
10
+ #
11
+ # * Item identifiers start and end with a slash (e.g. /about/ for the file
12
+ # content/about.html). To select all children, grandchildren, of an
13
+ # item, use the pattern /about/*/; /about/* will also select the parent,
14
+ # because * matches zero or more characters.
15
+
16
+ compile '/stylesheet/' do
17
+ # dont filter or layout
18
+ end
19
+
20
+
21
+ compile '*' do
22
+ if item.binary?
23
+ # dont filter binary items
24
+ else
25
+ case item[:extension]
26
+ when "md"
27
+ # Create HTML from markdown:
28
+ filter :kramdown, coderay_line_numbers: nil, entity_output: :as_input
29
+ filter :codeblocks
30
+ when "haml"
31
+ filter :haml
32
+ when "html"
33
+ filter :colorize_syntax,
34
+ default_colorizer: :coderay,
35
+ coderay: {css: :style}
36
+ filter :codeblocks
37
+ end
38
+ unless ["xml", "js"].include?(item[:extension])
39
+ if item[:layout] == "bootstrap"
40
+ filter :bootstrap
41
+ layout 'bootstrap'
42
+ elsif item[:layout] == "bootstrap3"
43
+ filter :bootstrap
44
+ layout 'bootstrap3'
45
+ elsif item[:layout] != "none"
46
+ layout 'freescale'
47
+ end
48
+ filter :search
49
+ end
50
+ if item[:zip] || item[:gzip]
51
+ filter :gzip
52
+ end
53
+ end
54
+ end
55
+
56
+ route '/stylesheet/' do
57
+ '/style.css'
58
+ end
59
+
60
+ route '*' do
61
+ if item.binary? || ["xml", "js"].include?(item[:extension])
62
+ # Write item with identifier /foo/ to /foo.ext
63
+ item.identifier.chop + '.' + item[:extension]
64
+ else
65
+ # Write item with identifier /foo/ to /foo/index.html
66
+ if item[:zip] || item[:gzip]
67
+ item.identifier + 'index.html.gz'
68
+ else
69
+ item.identifier + 'index.html'
70
+ end
71
+ end
72
+ end
73
+
74
+ layout '*', :erb
@@ -0,0 +1,77 @@
1
+ # A list of file extensions that nanoc will consider to be textual rather than
2
+ # binary. If an item with an extension not in this list is found, the file
3
+ # will be considered as binary.
4
+ text_extensions: [ 'css', 'erb', 'haml', 'htm', 'html', 'js', 'less', 'markdown', 'md', 'php', 'rb', 'sass', 'scss', 'txt', 'xhtml', 'xml', 'coffee' ]
5
+
6
+ # The path to the directory where all generated files will be written to. This
7
+ # can be an absolute path starting with a slash, but it can also be path
8
+ # relative to the site directory.
9
+ output_dir: output
10
+
11
+ # A list of index filenames, i.e. names of files that will be served by a web
12
+ # server when a directory is requested. Usually, index files are named
13
+ # index.html, but depending on the web server, this may be something else,
14
+ # such as default.htm. This list is used by nanoc to generate pretty URLs.
15
+ index_filenames: [ 'index.html' ]
16
+
17
+ # Whether or not to generate a diff of the compiled content when compiling a
18
+ # site. The diff will contain the differences between the compiled content
19
+ # before and after the last site compilation.
20
+ enable_output_diff: false
21
+
22
+ prune:
23
+ # Whether to automatically remove files not managed by nanoc from the output
24
+ # directory. For safety reasons, this is turned off by default.
25
+ auto_prune: false
26
+
27
+ # Which files and directories you want to exclude from pruning. If you version
28
+ # your output directory, you should probably exclude VCS directories such as
29
+ # .git, .svn etc.
30
+ exclude: [ '.git', '.hg', '.svn', 'CVS', '.SYNC' ]
31
+
32
+ # The data sources where nanoc loads its data from. This is an array of
33
+ # hashes; each array element represents a single data source. By default,
34
+ # there is only a single data source that reads data from the content/ and
35
+ # layout/ directories in the site directory.
36
+ data_sources:
37
+ -
38
+ # The type is the identifier of the data source. By default, this will be
39
+ # `filesystem_unified`.
40
+ type: filesystem_unified
41
+
42
+ # The path where items should be mounted (comparable to mount points in
43
+ # Unix-like systems). This is / by default, meaning that items will have
44
+ # / prefixed to their identifiers. If the items root were /en/
45
+ # instead, an item at content/about.html would have an identifier of
46
+ # /en/about/ instead of just /about/.
47
+ items_root: /
48
+
49
+ # The path where layouts should be mounted. The layouts root behaves the
50
+ # same as the items root, but applies to layouts rather than items.
51
+ layouts_root: /
52
+
53
+ # Whether to allow periods in identifiers. When turned off, everything
54
+ # past the first period is considered to be the extension, and when
55
+ # turned on, only the characters past the last period are considered to
56
+ # be the extension. For example, a file named content/about.html.erb
57
+ # will have the identifier /about/ when turned off, but when turned on
58
+ # it will become /about.html/ instead.
59
+ allow_periods_in_identifiers: false
60
+
61
+ # Configuration for the watch command, which watches a site for changes and
62
+ # recompiles if necessary.
63
+ watcher:
64
+ # A list of directories to watch for changes. When editing this, make sure
65
+ # that the output/ and tmp/ directories are _not_ included in this list,
66
+ # because recompiling the site will cause these directories to change, which
67
+ # will cause the site to be recompiled, which will cause these directories
68
+ # to change, which will cause the site to be recompiled again, and so on.
69
+ dirs_to_watch: [ 'content', 'layouts', 'lib' ]
70
+
71
+ # A list of single files to watch for changes. As mentioned above, dont put
72
+ # any files from the output/ or tmp/ directories in here.
73
+ files_to_watch: [ 'config.yaml', 'Rules' ]
74
+
75
+ # When to send notifications (using Growl or notify-send).
76
+ notify_on_compilation_success: true
77
+ notify_on_compilation_failure: true
Binary file
@@ -0,0 +1,63 @@
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="utf-8">
5
+ <title><%= @item[:title] %></title>
6
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
7
+ <% if @item[:description] %>
8
+ <meta name="description" content="<%= @item[:description] %>">
9
+ <% end %>
10
+ <% if @item[:author] %>
11
+ <meta name="author" content="<%= @item[:author] %>">
12
+ <% end %>
13
+
14
+ <!-- Le styles -->
15
+ <link href="http://rgen.freescale.net/css/bootstrap.min.css" rel="stylesheet">
16
+ <link href="http://rgen.freescale.net/css/bootstrap_custom.css" rel="stylesheet">
17
+ <link href="http://maxcdn.bootstrapcdn.com/font-awesome/4.1.0/css/font-awesome.min.css" rel="stylesheet">
18
+
19
+ <!-- HTML5 shim, for IE6-8 support of HTML5 elements -->
20
+ <!--[if lt IE 9]>
21
+ <script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
22
+ <![endif]-->
23
+
24
+ <!-- Fav and touch icons -->
25
+ <link rel="shortcut icon" href="http://rgen.freescale.net/favicon.ico"/>
26
+ <link rel="icon" type="image/ico" href="http://rgen.freescale.net/favicon.ico"/>
27
+ <script src="http://rgen.freescale.net/js/jquery.min.js"></script>
28
+ <script src="http://rgen.freescale.net/js/bootstrap.min.js"></script>
29
+ </head>
30
+
31
+ <body class="freescale">
32
+
33
+ <div id="wrap">
34
+ <div id="wrapper">
35
+ <div class="container" id="top-level-container">
36
+ <% if @item[:yammer_share].nil? || @item[:yammer_share] %>
37
+ <div id="yj-share-button"></div>
38
+ <% end %>
39
+ <%= yield %>
40
+ </div>
41
+
42
+ <div id="push"></div>
43
+ </div>
44
+ </div>
45
+
46
+ <div id=footer>
47
+ <div class="container" style="padding-top:20px">
48
+ <p class="pull-left">
49
+ Freescale Internal Use Only
50
+ </p>
51
+ <p class="pull-right">&copy; Copyright <%= Time.now.year %> Freescale, Inc. All Rights Reserved</p>
52
+ </div>
53
+ <div>
54
+
55
+ <script src="http://rgen.freescale.net/js/lunr.min.js"></script>
56
+ <script src="http://rgen.freescale.net/js/highlight.js"></script>
57
+ <script src="http://rgen.freescale.net/js/custom.js"></script>
58
+ <% if @item[:yammer_share].nil? || @item[:yammer_share] %>
59
+ <script type="text/javascript" src="https://c64.assets-yammer.com/assets/platform_social_buttons.min.js"></script>
60
+ <script type="text/javascript">yam.platform.yammerShare();</script>
61
+ <% end %>
62
+ </body>
63
+ </html>
@@ -0,0 +1,71 @@
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="utf-8">
5
+ <meta http-equiv="X-UA-Compatible" content="IE=edge">
6
+ <meta name="viewport" content="width=device-width, initial-scale=1">
7
+
8
+ <title><%= @item[:title] %></title>
9
+ <% if @item[:description] %>
10
+ <meta name="description" content="<%= @item[:description] %>">
11
+ <% end %>
12
+ <% if @item[:author] %>
13
+ <meta name="author" content="<%= @item[:author] %>">
14
+ <% end %>
15
+
16
+ <!-- Le styles -->
17
+ <link href="http://rgen.freescale.net/bootstrap/3.2.0/css/bootstrap.min.css" rel="stylesheet">
18
+ <link href="http://rgen.freescale.net/css/bootstrap_custom.css" rel="stylesheet">
19
+ <link href="http://maxcdn.bootstrapcdn.com/font-awesome/4.1.0/css/font-awesome.min.css" rel="stylesheet">
20
+
21
+ <!--[if lt IE 9]>
22
+ <script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
23
+ <script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
24
+ <![endif]-->
25
+ <!-- Fav and touch icons -->
26
+ <link rel="shortcut icon" href="http://rgen.freescale.net/favicon.ico"/>
27
+ <link rel="icon" type="image/ico" href="http://rgen.freescale.net/favicon.ico"/>
28
+ </head>
29
+
30
+ <body class="freescale">
31
+
32
+ <div id="wrap">
33
+ <div id="wrapper">
34
+ <% if @item[:full_width] %>
35
+ <% if @item[:yammer_share].nil? || @item[:yammer_share] %>
36
+ <div id="yj-share-button"></div>
37
+ <% end %>
38
+ <%= yield %>
39
+ <% else %>
40
+ <div class="container" id="top-level-container">
41
+ <% if @item[:yammer_share].nil? || @item[:yammer_share] %>
42
+ <div id="yj-share-button"></div>
43
+ <% end %>
44
+ <%= yield %>
45
+ </div>
46
+ <% end %>
47
+
48
+ <div id="push"></div>
49
+ </div>
50
+ </div>
51
+
52
+ <div id=footer>
53
+ <div class="container" style="padding-top:20px">
54
+ <p class="pull-left">
55
+ Freescale Internal Use Only
56
+ </p>
57
+ <p class="pull-right">&copy; Copyright <%= Time.now.year %> Freescale, Inc. All Rights Reserved</p>
58
+ </div>
59
+ <div>
60
+
61
+ <script src="http://rgen.freescale.net/js/jquery.min.js"></script>
62
+ <script src="http://rgen.freescale.net/bootstrap/3.2.0/js/bootstrap.min.js"></script>
63
+ <script src="http://rgen.freescale.net/js/lunr.min.js"></script>
64
+ <script src="http://rgen.freescale.net/js/highlight.js"></script>
65
+ <script src="http://rgen.freescale.net/js/custom.js"></script>
66
+ <% if @item[:yammer_share].nil? || @item[:yammer_share] %>
67
+ <script type="text/javascript" src="https://c64.assets-yammer.com/assets/platform_social_buttons.min.js"></script>
68
+ <script type="text/javascript">yam.platform.yammerShare();</script>
69
+ <% end %>
70
+ </body>
71
+ </html>
@@ -0,0 +1,79 @@
1
+ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
2
+ "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
3
+ <html xmlns="http://www.w3.org/1999/xhtml">
4
+ <head>
5
+ <title><%= @item[:title] %></title>
6
+ <% if @item[:description] %>
7
+ <meta name="description" content="<%= @item[:description] %>">
8
+ <% end %>
9
+ <% if @item[:author] %>
10
+ <meta name="author" content="<%= @item[:author] %>">
11
+ <% end %>
12
+ <link rel="shortcut icon" href="http://rgen.freescale.net/favicon.ico"/>
13
+ <link rel="icon" type="image/ico" href="http://rgen.freescale.net/favicon.ico"/>
14
+ <link href="http://swo.freescale.net/css/fsl.css" rel="stylesheet"
15
+ type="text/css" />
16
+ <link href="http://swo.freescale.net/css/leftnav.css" rel=
17
+ "stylesheet" type="text/css" />
18
+ <script language="JavaScript" src=
19
+ "http://swo.freescale.net/jscripts/FSLHeader.js" type=
20
+ "text/javascript">
21
+ </script>
22
+
23
+ <!-- Le HTML5 shim, for IE6-8 support of HTML elements -->
24
+ <!--[if lt IE 9]>
25
+ <script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
26
+ <![endif]-->
27
+
28
+ <link href="http://rgen.freescale.net/css/fsl.css" rel="stylesheet" type="text/css" media="all">
29
+ </head>
30
+
31
+ <body>
32
+ <a name="top" id="top"></a>
33
+ <script language="JavaScript" type="text/javascript">
34
+ HideDropDowns = true;
35
+ WriteFSHeader();
36
+ </script>
37
+ <table width="100%">
38
+ <tr>
39
+ <td valign="top"><!-- BEGIN LEFT NAVIGATION, IF DESIRED -->
40
+ </td>
41
+
42
+ <td width="100%" valign="top">
43
+ <% if false %>
44
+ <div class="breadcrumbs">
45
+ <a href="index.htm">Home Page</a>
46
+ This Page
47
+ </div>
48
+ <% end %>
49
+ <!-- Page Header -->
50
+ <table width="100%">
51
+ <tr>
52
+ <td>
53
+ <h1><%= @item[:title] %></h1>
54
+ </td>
55
+ </tr>
56
+ </table>
57
+
58
+ <table width="100%">
59
+ <tr><!-- Begin Left Column -->
60
+ <td valign="top">
61
+ <%= yield %>
62
+ </td>
63
+ </tr>
64
+ </table>
65
+
66
+ </td>
67
+ </tr>
68
+ </table>
69
+ <div>
70
+ <p>Generated with <a href="http://rgen.freescale.net" target="_blank" title="RGen">RGen</a>
71
+ </p>
72
+ </div>
73
+ <script language="JavaScript" type="text/javascript">
74
+ Contact = 'mailto:stephen.mcginty@freescale.com';
75
+ POPI = "FIUO"
76
+ WriteFooter();
77
+ </script>
78
+ </body>
79
+ </html>