visjs-rails 4.16.1.0 → 4.21.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (388) hide show
  1. checksums.yaml +5 -5
  2. data/README.md +19 -19
  3. data/example/.gitignore +26 -0
  4. data/example/.ruby-version +1 -0
  5. data/example/Gemfile +64 -0
  6. data/example/Gemfile.lock +224 -0
  7. data/example/README.md +24 -0
  8. data/example/Rakefile +6 -0
  9. data/example/app/assets/config/manifest.js +3 -0
  10. data/example/app/assets/images/.keep +0 -0
  11. data/example/app/assets/javascripts/application.js +20 -0
  12. data/example/app/assets/javascripts/cable.js +13 -0
  13. data/example/app/assets/javascripts/channels/.keep +0 -0
  14. data/example/app/assets/javascripts/welcome.coffee +6 -0
  15. data/example/app/assets/stylesheets/application.scss +3 -0
  16. data/example/app/assets/stylesheets/welcome.scss +3 -0
  17. data/example/app/channels/application_cable/channel.rb +4 -0
  18. data/example/app/channels/application_cable/connection.rb +4 -0
  19. data/example/app/controllers/application_controller.rb +2 -0
  20. data/example/app/controllers/concerns/.keep +0 -0
  21. data/example/app/controllers/welcome_controller.rb +4 -0
  22. data/example/app/helpers/application_helper.rb +2 -0
  23. data/example/app/helpers/welcome_helper.rb +2 -0
  24. data/example/app/jobs/application_job.rb +2 -0
  25. data/example/app/mailers/application_mailer.rb +4 -0
  26. data/example/app/models/application_record.rb +3 -0
  27. data/example/app/models/concerns/.keep +0 -0
  28. data/example/app/views/layouts/application.html.erb +15 -0
  29. data/example/app/views/layouts/mailer.html.erb +13 -0
  30. data/example/app/views/layouts/mailer.text.erb +1 -0
  31. data/example/app/views/welcome/index.html.erb +48 -0
  32. data/example/bin/bundle +3 -0
  33. data/example/bin/rails +9 -0
  34. data/example/bin/rake +9 -0
  35. data/example/bin/setup +36 -0
  36. data/example/bin/spring +17 -0
  37. data/example/bin/update +31 -0
  38. data/example/bin/yarn +11 -0
  39. data/example/config.ru +5 -0
  40. data/example/config/application.rb +19 -0
  41. data/example/config/boot.rb +4 -0
  42. data/example/config/cable.yml +10 -0
  43. data/example/config/credentials.yml.enc +1 -0
  44. data/example/config/database.yml +85 -0
  45. data/example/config/environment.rb +5 -0
  46. data/example/config/environments/development.rb +61 -0
  47. data/example/config/environments/production.rb +94 -0
  48. data/example/config/environments/test.rb +46 -0
  49. data/example/config/initializers/application_controller_renderer.rb +8 -0
  50. data/example/config/initializers/assets.rb +14 -0
  51. data/example/config/initializers/backtrace_silencers.rb +7 -0
  52. data/example/config/initializers/content_security_policy.rb +25 -0
  53. data/example/config/initializers/cookies_serializer.rb +5 -0
  54. data/example/config/initializers/filter_parameter_logging.rb +4 -0
  55. data/example/config/initializers/inflections.rb +16 -0
  56. data/example/config/initializers/mime_types.rb +4 -0
  57. data/example/config/initializers/wrap_parameters.rb +14 -0
  58. data/example/config/locales/en.yml +33 -0
  59. data/example/config/puma.rb +34 -0
  60. data/example/config/routes.rb +5 -0
  61. data/example/config/spring.rb +6 -0
  62. data/example/config/storage.yml +34 -0
  63. data/example/db/seeds.rb +7 -0
  64. data/example/lib/assets/.keep +0 -0
  65. data/example/lib/tasks/.keep +0 -0
  66. data/example/log/.keep +0 -0
  67. data/example/package.json +5 -0
  68. data/example/public/404.html +67 -0
  69. data/example/public/422.html +67 -0
  70. data/example/public/500.html +66 -0
  71. data/example/public/apple-touch-icon-precomposed.png +0 -0
  72. data/example/public/apple-touch-icon.png +0 -0
  73. data/example/public/favicon.ico +0 -0
  74. data/example/public/robots.txt +1 -0
  75. data/example/test/application_system_test_case.rb +5 -0
  76. data/example/test/controllers/.keep +0 -0
  77. data/example/test/controllers/welcome_controller_test.rb +9 -0
  78. data/example/test/fixtures/.keep +0 -0
  79. data/example/test/fixtures/files/.keep +0 -0
  80. data/example/test/helpers/.keep +0 -0
  81. data/example/test/integration/.keep +0 -0
  82. data/example/test/mailers/.keep +0 -0
  83. data/example/test/models/.keep +0 -0
  84. data/example/test/system/.keep +0 -0
  85. data/example/test/test_helper.rb +10 -0
  86. data/example/tmp/.keep +0 -0
  87. data/example/vendor/.keep +0 -0
  88. data/examples_for_vis/graph2d/01_basic.html +71 -0
  89. data/examples_for_vis/graph2d/02_bars.html +80 -0
  90. data/examples_for_vis/graph2d/03_groups.html +112 -0
  91. data/examples_for_vis/graph2d/04_rightAxis.html +126 -0
  92. data/examples_for_vis/graph2d/05_bothAxis.html +228 -0
  93. data/examples_for_vis/graph2d/06_interpolation.html +160 -0
  94. data/examples_for_vis/graph2d/07_scrollingAndSorting.html +74 -0
  95. data/examples_for_vis/graph2d/08_performance.html +194 -0
  96. data/examples_for_vis/graph2d/09_external_legend.html +452 -0
  97. data/examples_for_vis/graph2d/10_barsSideBySide.html +75 -0
  98. data/examples_for_vis/graph2d/11_barsSideBySideGroups.html +181 -0
  99. data/examples_for_vis/graph2d/12_customRange.html +92 -0
  100. data/examples_for_vis/graph2d/13_localization.html +65 -0
  101. data/examples_for_vis/graph2d/14_toggleGroups.html +145 -0
  102. data/examples_for_vis/graph2d/15_streaming_data.html +122 -0
  103. data/examples_for_vis/graph2d/16_bothAxisTitles.html +201 -0
  104. data/examples_for_vis/graph2d/17_dynamicStyling.html +281 -0
  105. data/examples_for_vis/graph2d/18_scatterplot.html +63 -0
  106. data/examples_for_vis/graph2d/19_labels.html +213 -0
  107. data/examples_for_vis/graph2d/20_shading.html +218 -0
  108. data/examples_for_vis/graph2d/21_barsWithEnd.html +76 -0
  109. data/examples_for_vis/graph2d/default.css +87 -0
  110. data/examples_for_vis/graph3d/01_basics.html +71 -0
  111. data/examples_for_vis/graph3d/02_camera.html +110 -0
  112. data/examples_for_vis/graph3d/03_filter_data.html +64 -0
  113. data/examples_for_vis/graph3d/04_animation.html +70 -0
  114. data/examples_for_vis/graph3d/05_line.html +60 -0
  115. data/examples_for_vis/graph3d/06_moving_dots.html +78 -0
  116. data/examples_for_vis/graph3d/07_dot_cloud_colors.html +72 -0
  117. data/examples_for_vis/graph3d/08_dot_cloud_size.html +69 -0
  118. data/examples_for_vis/graph3d/09_mobile.html +79 -0
  119. data/examples_for_vis/graph3d/10_styling.html +121 -0
  120. data/examples_for_vis/graph3d/11_tooltips.html +132 -0
  121. data/examples_for_vis/graph3d/12_custom_labels.html +116 -0
  122. data/examples_for_vis/graph3d/default.css +87 -0
  123. data/examples_for_vis/graph3d/playground/csv2array.js +120 -0
  124. data/examples_for_vis/graph3d/playground/csv2datatable.html +80 -0
  125. data/examples_for_vis/graph3d/playground/datasource.html +173 -0
  126. data/examples_for_vis/graph3d/playground/datasource.php +155 -0
  127. data/examples_for_vis/graph3d/playground/index.html +196 -0
  128. data/examples_for_vis/graph3d/playground/playground.css +91 -0
  129. data/examples_for_vis/graph3d/playground/playground.js +550 -0
  130. data/examples_for_vis/graph3d/playground/prettify/lang-apollo.js +2 -0
  131. data/examples_for_vis/graph3d/playground/prettify/lang-css.js +2 -0
  132. data/examples_for_vis/graph3d/playground/prettify/lang-hs.js +2 -0
  133. data/examples_for_vis/graph3d/playground/prettify/lang-lisp.js +2 -0
  134. data/examples_for_vis/graph3d/playground/prettify/lang-lua.js +2 -0
  135. data/examples_for_vis/graph3d/playground/prettify/lang-ml.js +2 -0
  136. data/examples_for_vis/graph3d/playground/prettify/lang-proto.js +1 -0
  137. data/examples_for_vis/graph3d/playground/prettify/lang-scala.js +2 -0
  138. data/examples_for_vis/graph3d/playground/prettify/lang-sql.js +2 -0
  139. data/examples_for_vis/graph3d/playground/prettify/lang-vb.js +2 -0
  140. data/examples_for_vis/graph3d/playground/prettify/lang-vhdl.js +3 -0
  141. data/examples_for_vis/graph3d/playground/prettify/lang-wiki.js +2 -0
  142. data/examples_for_vis/graph3d/playground/prettify/lang-yaml.js +2 -0
  143. data/examples_for_vis/graph3d/playground/prettify/prettify.css +1 -0
  144. data/examples_for_vis/graph3d/playground/prettify/prettify.js +33 -0
  145. data/examples_for_vis/network/basicUsage.html +87 -0
  146. data/examples_for_vis/network/data/datasets.html +196 -0
  147. data/examples_for_vis/network/data/dotLanguage/data/cellular_automata.gv.txt +23 -0
  148. data/examples_for_vis/network/data/dotLanguage/data/computer_network.gv.txt +19 -0
  149. data/examples_for_vis/network/data/dotLanguage/data/simple.gv.txt +15 -0
  150. data/examples_for_vis/network/data/dotLanguage/dotEdgeStyles.html +197 -0
  151. data/examples_for_vis/network/data/dotLanguage/dotLanguage.html +22 -0
  152. data/examples_for_vis/network/data/dotLanguage/dotPlayground.html +216 -0
  153. data/examples_for_vis/network/data/dotLanguage/graphvizGallery/fsm.gv.txt +20 -0
  154. data/examples_for_vis/network/data/dotLanguage/graphvizGallery/hello.gv.txt +1 -0
  155. data/examples_for_vis/network/data/dotLanguage/graphvizGallery/process.gv.txt +15 -0
  156. data/examples_for_vis/network/data/dotLanguage/graphvizGallery/screenshots/fsm.png +0 -0
  157. data/examples_for_vis/network/data/dotLanguage/graphvizGallery/screenshots/hello.png +0 -0
  158. data/examples_for_vis/network/data/dotLanguage/graphvizGallery/screenshots/softmaint.png +0 -0
  159. data/examples_for_vis/network/data/dotLanguage/graphvizGallery/screenshots/traffic_lights.png +0 -0
  160. data/examples_for_vis/network/data/dotLanguage/graphvizGallery/siblings.gv.txt +512 -0
  161. data/examples_for_vis/network/data/dotLanguage/graphvizGallery/softmaint.gv.txt +377 -0
  162. data/examples_for_vis/network/data/dotLanguage/graphvizGallery/traffic_lights.gv.txt +29 -0
  163. data/examples_for_vis/network/data/dotLanguage/graphvizGallery/transparency.gv.txt +105 -0
  164. data/examples_for_vis/network/data/dotLanguage/graphvizGallery/twopi2.gv.txt +2212 -0
  165. data/examples_for_vis/network/data/dotLanguage/graphvizGallery/unix.gv.txt +55 -0
  166. data/examples_for_vis/network/data/dotLanguage/graphvizGallery/world.gv.txt +67 -0
  167. data/examples_for_vis/network/data/dynamicData.html +266 -0
  168. data/examples_for_vis/network/data/importingFromGephi.html +174 -0
  169. data/examples_for_vis/network/data/scalingCustom.html +86 -0
  170. data/examples_for_vis/network/data/scalingNodesEdges.html +79 -0
  171. data/examples_for_vis/network/data/scalingNodesEdgesLabels.html +85 -0
  172. data/examples_for_vis/network/datasources/WorldCup2014.js +9970 -0
  173. data/examples_for_vis/network/datasources/WorldCup2014.json +1 -0
  174. data/examples_for_vis/network/datasources/largeHierarchicalDataset.js +2 -0
  175. data/examples_for_vis/network/edgeStyles/arrowTypes.html +103 -0
  176. data/examples_for_vis/network/edgeStyles/arrows.html +61 -0
  177. data/examples_for_vis/network/edgeStyles/colors.html +71 -0
  178. data/examples_for_vis/network/edgeStyles/dashes.html +57 -0
  179. data/examples_for_vis/network/edgeStyles/smooth.html +78 -0
  180. data/examples_for_vis/network/edgeStyles/smoothWorldCup.html +97 -0
  181. data/examples_for_vis/network/events/interactionEvents.html +132 -0
  182. data/examples_for_vis/network/events/physicsEvents.html +73 -0
  183. data/examples_for_vis/network/events/renderEvents.html +83 -0
  184. data/examples_for_vis/network/exampleApplications/disassemblerExample.html +24 -0
  185. data/examples_for_vis/network/exampleApplications/disassemblerExample.js +53 -0
  186. data/examples_for_vis/network/exampleApplications/lesMiserables.html +396 -0
  187. data/examples_for_vis/network/exampleApplications/loadingBar.html +504 -0
  188. data/examples_for_vis/network/exampleApplications/neighbourhoodHighlight.html +162 -0
  189. data/examples_for_vis/network/exampleApplications/nodeLegend.html +163 -0
  190. data/examples_for_vis/network/exampleApplications/worldCupPerformance.html +98 -0
  191. data/examples_for_vis/network/exampleUtil.js +133 -0
  192. data/examples_for_vis/network/imageSelected/broken-image.png +0 -0
  193. data/examples_for_vis/network/imageSelected/imageSelected.html +82 -0
  194. data/examples_for_vis/network/imageSelected/selected.svg +53 -0
  195. data/examples_for_vis/network/imageSelected/unselected.svg +6 -0
  196. data/examples_for_vis/network/img/indonesia/1.png +0 -0
  197. data/examples_for_vis/network/img/indonesia/10.png +0 -0
  198. data/examples_for_vis/network/img/indonesia/11.png +0 -0
  199. data/examples_for_vis/network/img/indonesia/12.png +0 -0
  200. data/examples_for_vis/network/img/indonesia/13.png +0 -0
  201. data/examples_for_vis/network/img/indonesia/14.png +0 -0
  202. data/examples_for_vis/network/img/indonesia/2.png +0 -0
  203. data/examples_for_vis/network/img/indonesia/3.png +0 -0
  204. data/examples_for_vis/network/img/indonesia/4.png +0 -0
  205. data/examples_for_vis/network/img/indonesia/5.png +0 -0
  206. data/examples_for_vis/network/img/indonesia/6.png +0 -0
  207. data/examples_for_vis/network/img/indonesia/7.png +0 -0
  208. data/examples_for_vis/network/img/indonesia/8.png +0 -0
  209. data/examples_for_vis/network/img/indonesia/9.png +0 -0
  210. data/examples_for_vis/network/img/refresh-cl/Hardware-Fax-icon.png +0 -0
  211. data/examples_for_vis/network/img/refresh-cl/Hardware-Laptop-1-icon.png +0 -0
  212. data/examples_for_vis/network/img/refresh-cl/Hardware-Mobile-Phone-icon.png +0 -0
  213. data/examples_for_vis/network/img/refresh-cl/Hardware-My-Computer-3-icon.png +0 -0
  214. data/examples_for_vis/network/img/refresh-cl/Hardware-My-PDA-02-icon.png +0 -0
  215. data/examples_for_vis/network/img/refresh-cl/Hardware-My-PDA-04-icon.png +0 -0
  216. data/examples_for_vis/network/img/refresh-cl/Hardware-My-PDA-05-icon.png +0 -0
  217. data/examples_for_vis/network/img/refresh-cl/Hardware-My-Phone-Picture-icon.png +0 -0
  218. data/examples_for_vis/network/img/refresh-cl/Hardware-Printer-Blue-icon.png +0 -0
  219. data/examples_for_vis/network/img/refresh-cl/Misc-Scanner-default-icon.png +0 -0
  220. data/examples_for_vis/network/img/refresh-cl/Network-Drive-icon.png +0 -0
  221. data/examples_for_vis/network/img/refresh-cl/Network-Internet-Connection-icon.png +0 -0
  222. data/examples_for_vis/network/img/refresh-cl/Network-Pipe-icon.png +0 -0
  223. data/examples_for_vis/network/img/refresh-cl/System-Firewall-2-icon.png +0 -0
  224. data/examples_for_vis/network/img/refresh-cl/System-Globe-icon.png +0 -0
  225. data/examples_for_vis/network/img/refresh-cl/license.txt +14 -0
  226. data/examples_for_vis/network/img/soft-scraps-icons/Document-icon24.png +0 -0
  227. data/examples_for_vis/network/img/soft-scraps-icons/Document-icon32.png +0 -0
  228. data/examples_for_vis/network/img/soft-scraps-icons/Document-icon48.png +0 -0
  229. data/examples_for_vis/network/img/soft-scraps-icons/Email-icon24.png +0 -0
  230. data/examples_for_vis/network/img/soft-scraps-icons/Email-icon32.png +0 -0
  231. data/examples_for_vis/network/img/soft-scraps-icons/Email-icon48.png +0 -0
  232. data/examples_for_vis/network/img/soft-scraps-icons/Folder-icon24.png +0 -0
  233. data/examples_for_vis/network/img/soft-scraps-icons/Folder-icon32.png +0 -0
  234. data/examples_for_vis/network/img/soft-scraps-icons/Folder-icon48.png +0 -0
  235. data/examples_for_vis/network/img/soft-scraps-icons/Folder-icon64.png +0 -0
  236. data/examples_for_vis/network/img/soft-scraps-icons/Smiley-Angry-icon.png +0 -0
  237. data/examples_for_vis/network/img/soft-scraps-icons/Smiley-Grin-icon.png +0 -0
  238. data/examples_for_vis/network/img/soft-scraps-icons/User-Administrator-Blue-icon.png +0 -0
  239. data/examples_for_vis/network/img/soft-scraps-icons/User-Administrator-Green-icon.png +0 -0
  240. data/examples_for_vis/network/img/soft-scraps-icons/User-Coat-Blue-icon.png +0 -0
  241. data/examples_for_vis/network/img/soft-scraps-icons/User-Coat-Green-icon.png +0 -0
  242. data/examples_for_vis/network/img/soft-scraps-icons/User-Coat-Red-icon.png +0 -0
  243. data/examples_for_vis/network/img/soft-scraps-icons/User-Executive-Green-icon.png +0 -0
  244. data/examples_for_vis/network/img/soft-scraps-icons/User-Preppy-Blue-icon.png +0 -0
  245. data/examples_for_vis/network/img/soft-scraps-icons/User-Preppy-Red-icon.png +0 -0
  246. data/examples_for_vis/network/img/soft-scraps-icons/license.txt +12 -0
  247. data/examples_for_vis/network/labels/labelAlignment.html +70 -0
  248. data/examples_for_vis/network/labels/labelBackground.html +57 -0
  249. data/examples_for_vis/network/labels/labelColorAndSize.html +61 -0
  250. data/examples_for_vis/network/labels/labelMargins.html +63 -0
  251. data/examples_for_vis/network/labels/labelMultifont.html +115 -0
  252. data/examples_for_vis/network/labels/labelStroke.html +61 -0
  253. data/examples_for_vis/network/labels/multilineText.html +52 -0
  254. data/examples_for_vis/network/layout/demo.jsonp +1894 -0
  255. data/examples_for_vis/network/layout/demo_big.jsonp +3762 -0
  256. data/examples_for_vis/network/layout/hierarchicalLayout.html +114 -0
  257. data/examples_for_vis/network/layout/hierarchicalLayoutBigUserDefined.html +46 -0
  258. data/examples_for_vis/network/layout/hierarchicalLayoutMethods.html +108 -0
  259. data/examples_for_vis/network/layout/hierarchicalLayoutUserdefined.html +152 -0
  260. data/examples_for_vis/network/layout/hierarchicalLayoutWithoutPhysics.html +111 -0
  261. data/examples_for_vis/network/layout/randomSeed.html +60 -0
  262. data/examples_for_vis/network/nodeStyles/HTMLInNodes.html +83 -0
  263. data/examples_for_vis/network/nodeStyles/circularImages.html +219 -0
  264. data/examples_for_vis/network/nodeStyles/colors.html +140 -0
  265. data/examples_for_vis/network/nodeStyles/customGroups.html +132 -0
  266. data/examples_for_vis/network/nodeStyles/groups.html +119 -0
  267. data/examples_for_vis/network/nodeStyles/icons.html +196 -0
  268. data/examples_for_vis/network/nodeStyles/images.html +82 -0
  269. data/examples_for_vis/network/nodeStyles/imagesWithBorders.html +105 -0
  270. data/examples_for_vis/network/nodeStyles/shadows.html +119 -0
  271. data/examples_for_vis/network/nodeStyles/shapes.html +73 -0
  272. data/examples_for_vis/network/nodeStyles/shapesWithDashedBorders.html +61 -0
  273. data/examples_for_vis/network/nodeStyles/widthHeight.html +121 -0
  274. data/examples_for_vis/network/other/animationShowcase.html +279 -0
  275. data/examples_for_vis/network/other/changingClusteredEdgesNodes.html +107 -0
  276. data/examples_for_vis/network/other/chosen.html +466 -0
  277. data/examples_for_vis/network/other/clustering.html +141 -0
  278. data/examples_for_vis/network/other/clusteringByZoom.html +160 -0
  279. data/examples_for_vis/network/other/clustersOfclusters.html +88 -0
  280. data/examples_for_vis/network/other/configuration.html +83 -0
  281. data/examples_for_vis/network/other/cursorChange.html +140 -0
  282. data/examples_for_vis/network/other/manipulation.html +193 -0
  283. data/examples_for_vis/network/other/manipulationEditEdgeNoDrag.html +255 -0
  284. data/examples_for_vis/network/other/navigation.html +135 -0
  285. data/examples_for_vis/network/other/onLoadAnimation.html +85 -0
  286. data/examples_for_vis/network/other/performance.html +91 -0
  287. data/examples_for_vis/network/other/saveAndLoad.html +202 -0
  288. data/examples_for_vis/network/physics/physicsConfiguration.html +85 -0
  289. data/examples_for_vis/timeline/basicUsage.html +45 -0
  290. data/examples_for_vis/timeline/dataHandling/dataSerialization.html +123 -0
  291. data/examples_for_vis/timeline/dataHandling/loadExternalData.html +61 -0
  292. data/examples_for_vis/timeline/editing/customSnappingOfItems.html +76 -0
  293. data/examples_for_vis/timeline/editing/editingItems.html +109 -0
  294. data/examples_for_vis/timeline/editing/editingItemsCallbacks.html +172 -0
  295. data/examples_for_vis/timeline/editing/individualEditableItems.html +131 -0
  296. data/examples_for_vis/timeline/editing/itemsAlwaysDraggable.html +44 -0
  297. data/examples_for_vis/timeline/editing/overrideEditingItems.html +166 -0
  298. data/examples_for_vis/timeline/editing/tooltipOnItemChange.html +133 -0
  299. data/examples_for_vis/timeline/editing/updateDataOnEvent.html +87 -0
  300. data/examples_for_vis/timeline/groups/groups.html +79 -0
  301. data/examples_for_vis/timeline/groups/groupsEditable.html +2001 -0
  302. data/examples_for_vis/timeline/groups/groupsOrdering.html +117 -0
  303. data/examples_for_vis/timeline/groups/nestedGroups.html +113 -0
  304. data/examples_for_vis/timeline/groups/subgroups.html +326 -0
  305. data/examples_for_vis/timeline/groups/verticalItemsHide.html +196 -0
  306. data/examples_for_vis/timeline/interaction/animateWindow.html +143 -0
  307. data/examples_for_vis/timeline/interaction/clickToUse.html +107 -0
  308. data/examples_for_vis/timeline/interaction/eventListeners.html +166 -0
  309. data/examples_for_vis/timeline/interaction/limitMoveAndZoom.html +70 -0
  310. data/examples_for_vis/timeline/interaction/navigationMenu.html +121 -0
  311. data/examples_for_vis/timeline/interaction/rollingMode.html +50 -0
  312. data/examples_for_vis/timeline/interaction/setSelection.html +223 -0
  313. data/examples_for_vis/timeline/items/backgroundAreas.html +92 -0
  314. data/examples_for_vis/timeline/items/backgroundAreasWithGroups.html +123 -0
  315. data/examples_for_vis/timeline/items/expectedVsActualTimesItems.html +136 -0
  316. data/examples_for_vis/timeline/items/htmlContents.html +109 -0
  317. data/examples_for_vis/timeline/items/itemOrdering.html +88 -0
  318. data/examples_for_vis/timeline/items/pointItems.html +124 -0
  319. data/examples_for_vis/timeline/items/rangeOverflowItem.html +88 -0
  320. data/examples_for_vis/timeline/items/tooltip.html +120 -0
  321. data/examples_for_vis/timeline/items/visibleFrameTemplateContent.html +67 -0
  322. data/examples_for_vis/timeline/other/customTimeBars.html +99 -0
  323. data/examples_for_vis/timeline/other/customTimeBarsTooltip.html +105 -0
  324. data/examples_for_vis/timeline/other/dataAttributes.html +79 -0
  325. data/examples_for_vis/timeline/other/dataAttributesAll.html +78 -0
  326. data/examples_for_vis/timeline/other/drag&drop.html +201 -0
  327. data/examples_for_vis/timeline/other/functionLabelFormats.html +147 -0
  328. data/examples_for_vis/timeline/other/groupsPerformance.html +124 -0
  329. data/examples_for_vis/timeline/other/hidingPeriods.html +92 -0
  330. data/examples_for_vis/timeline/other/horizontalScroll.html +77 -0
  331. data/examples_for_vis/timeline/other/localization.html +81 -0
  332. data/examples_for_vis/timeline/other/performance.html +79 -0
  333. data/examples_for_vis/timeline/other/requirejs/requirejs_example.html +17 -0
  334. data/examples_for_vis/timeline/other/requirejs/scripts/main.js +19 -0
  335. data/examples_for_vis/timeline/other/requirejs/scripts/require.js +35 -0
  336. data/examples_for_vis/timeline/other/rtl.html +82 -0
  337. data/examples_for_vis/timeline/other/stressPerformance.html +66 -0
  338. data/examples_for_vis/timeline/other/timezone.html +98 -0
  339. data/examples_for_vis/timeline/other/usingReact.html +68 -0
  340. data/examples_for_vis/timeline/other/verticalScroll.html +91 -0
  341. data/examples_for_vis/timeline/resources/data/basic.json +34 -0
  342. data/examples_for_vis/timeline/resources/data/wk2014.json +152 -0
  343. data/examples_for_vis/timeline/resources/img/Hardware-Mobile-Phone-icon.png +0 -0
  344. data/examples_for_vis/timeline/resources/img/attachment-icon.png +0 -0
  345. data/examples_for_vis/timeline/resources/img/blog-post-edit-icon.png +0 -0
  346. data/examples_for_vis/timeline/resources/img/comments-icon.png +0 -0
  347. data/examples_for_vis/timeline/resources/img/community-users-icon.png +0 -0
  348. data/examples_for_vis/timeline/resources/img/license.txt +17 -0
  349. data/examples_for_vis/timeline/resources/img/license_aesthetica-2.txt +36 -0
  350. data/examples_for_vis/timeline/resources/img/license_refresh-cl.txt +26 -0
  351. data/examples_for_vis/timeline/resources/img/mail-icon.png +0 -0
  352. data/examples_for_vis/timeline/resources/img/notes-edit-icon.png +0 -0
  353. data/examples_for_vis/timeline/resources/img/product-icon.png +0 -0
  354. data/examples_for_vis/timeline/resources/img/truck-icon.png +0 -0
  355. data/examples_for_vis/timeline/styling/axisOrientation.html +113 -0
  356. data/examples_for_vis/timeline/styling/customCss.html +128 -0
  357. data/examples_for_vis/timeline/styling/gridStyling.html +80 -0
  358. data/examples_for_vis/timeline/styling/itemClassNames.html +125 -0
  359. data/examples_for_vis/timeline/styling/itemTemplates.html +264 -0
  360. data/examples_for_vis/timeline/styling/weekStyling.html +129 -0
  361. data/lib/visjs/rails/version.rb +1 -1
  362. data/vendor/assets/images/network/acceptDeleteIcon.png +0 -0
  363. data/vendor/assets/images/network/addNodeIcon.png +0 -0
  364. data/vendor/assets/images/network/backIcon.png +0 -0
  365. data/vendor/assets/images/network/connectIcon.png +0 -0
  366. data/vendor/assets/images/network/cross.png +0 -0
  367. data/vendor/assets/images/network/cross2.png +0 -0
  368. data/vendor/assets/images/network/deleteIcon.png +0 -0
  369. data/vendor/assets/images/network/downArrow.png +0 -0
  370. data/vendor/assets/images/network/editIcon.png +0 -0
  371. data/vendor/assets/images/network/leftArrow.png +0 -0
  372. data/vendor/assets/images/network/minus.png +0 -0
  373. data/vendor/assets/images/network/plus.png +0 -0
  374. data/vendor/assets/images/network/rightArrow.png +0 -0
  375. data/vendor/assets/images/network/upArrow.png +0 -0
  376. data/vendor/assets/images/network/zoomExtends.png +0 -0
  377. data/vendor/assets/javascripts/vis-graph3d.min.js +9 -12
  378. data/vendor/assets/javascripts/vis-network.min.js +9 -20
  379. data/vendor/assets/javascripts/vis-timeline-graph2d.min.js +9 -18
  380. data/vendor/assets/javascripts/vis.js +53293 -39579
  381. data/vendor/assets/javascripts/vis.min.js +26 -23
  382. data/vendor/assets/stylesheets/vis-network.min.css +1 -0
  383. data/vendor/assets/stylesheets/vis-timeline-graph2d.min.css +1 -0
  384. data/vendor/assets/stylesheets/{vis.scss → vis.css} +764 -640
  385. data/vendor/assets/stylesheets/vis.min.css +1 -0
  386. metadata +365 -6
  387. data/vendor/assets/images/timeline/delete.png +0 -0
  388. data/vendor/assets/stylesheets/vis.min.scss +0 -1
@@ -0,0 +1,377 @@
1
+ digraph G {
2
+ size="7,10"
3
+ page="8.5,11"
4
+ center=""
5
+ node[width=.25,height=.375,fontsize=9]
6
+ fcfpr1_1_2t_17 -> 341411;
7
+ fcfpr1_1t_1 -> 341411;
8
+ rdlfpr2_0_rdlt_4 -> 341411;
9
+ fpfpr1_0_1t_1 -> 341411;
10
+ fpfpr1_1_2t_11 -> 341411;
11
+ rtafpr1_1_2t_28 -> 341411;
12
+ rtafpr1_1_3t_6 -> 341411;
13
+ rdlfpr1_1t_1 -> 358866;
14
+ rtafpr1_1_3t_6 -> 358866;
15
+ tmfpr1_1_3t_5 -> 358930;
16
+ fcfpr1_1_3t_9 -> 358930;
17
+ pcfpr1_1_3t_7 -> 358930;
18
+ fpfpr1_1_3g_1 -> 358930;
19
+ fpfpr1_1_3t_1 -> 358930;
20
+ aufpr1_1_3t_1 -> 358930;
21
+ rtafpr1_0_3g_1 -> 358930;
22
+ rtafpr1_1_3t_6 -> 358930;
23
+ msgfpr1_1_1g_12 -> 371943;
24
+ rtafpr1_1_1g_8 -> 371943;
25
+ rtafpr1_1_1t_35 -> 371943;
26
+ rtafpr1_1_1t_45 -> 371943;
27
+ rtafpr1_1_3t_6 -> 371943;
28
+ tlfpr2_0_rdlg_2 -> 374300;
29
+ fcfpr1_1_3t_8 -> 374300;
30
+ fcfpr1_1_3t_9 -> 374300;
31
+ rtafpr1_1_3t_6 -> 374300;
32
+ fcfpr1_0_5g_1 -> 371942;
33
+ fcfpr1_1_1t_19 -> 371942;
34
+ fcfpr1_1_3t_9 -> 371942;
35
+ fcfpr1_1_3t_9 -> 374700;
36
+ tymsgfpr1_1_3t_3 -> 374700;
37
+ fpfpr1_1_3t_1 -> 374700;
38
+ rtafpr1_1_3t_7 -> 374700;
39
+ fcfpr1_1_3g_2 -> 374741;
40
+ fcfpr1_1_3t_9 -> 374741;
41
+ fpfpr1_1_3t_1 -> 374741;
42
+ rtafpr1_1_3t_7 -> 374741;
43
+ fcfpr1_1_1t_18 -> 374886;
44
+ fcfpr1_1_3t_9 -> 374886;
45
+ fpfpr1_1_3t_1 -> 374886;
46
+ rtafpr1_1_3t_7 -> 374886;
47
+ fcfpr1_1_3t_9 -> 375039;
48
+ fpfpr1_1_3t_1 -> 375039;
49
+ fcfpr1_1_3t_42 -> 375507;
50
+ fcfpr1_1_3t_9 -> 375507;
51
+ rdlfpr2_0_rdlt_158 -> 375507;
52
+ rtafpr1_1_3t_7 -> 375507;
53
+ rtafpr1_1_3t_71 -> 375507;
54
+ dbfpr1_1_3t_2 -> 375507;
55
+ fcfpr1_1_3t_9 -> 375508;
56
+ rdlfpr1_1g_13 -> 375508;
57
+ rtafpr1_1_3t_7 -> 375508;
58
+ rtafpr2_1_rdlg_1 -> 375508;
59
+ dbfpr1_1_3t_2 -> 375508;
60
+ fcfpr1_1_3t_9 -> 375519;
61
+ fpfpr1_1_3g_1 -> 375519;
62
+ fpfpr1_1_3t_1 -> 375519;
63
+ fcfpr1_1_3t_9 -> 377380;
64
+ rdlfpr1_1g_16 -> 377380;
65
+ rdlfpr1_1t_100 -> 377380;
66
+ fcfpr1_0_2g_1 -> 377719;
67
+ fcfpr1_1_3t_10 -> 377719;
68
+ fcfpr1_1_3t_7 -> 377719;
69
+ fcfpr1_1_3t_9 -> 377719;
70
+ rdlfpr2_0_rdlg_12 -> 377719;
71
+ rdlfpr2_0_rdlt_108 -> 377719;
72
+ rdlfpr2_0_rdlt_27 -> 377719;
73
+ rdlfpr2_0_rdlt_30 -> 377719;
74
+ fcfpr1_1_3t_9 -> 377763;
75
+ fcfpr1_1_3t_9 -> 379848;
76
+ fpfpr1_1_3t_1 -> 379848;
77
+ fcfpr1_1_3t_9 -> 380571;
78
+ fcfpr1_1_3t_9 -> 380604;
79
+ fpfpr1_1_3t_1 -> 380604;
80
+ fcfpr1_1_3t_9 -> 381211;
81
+ fpfpr1_1_3t_1 -> 381211;
82
+ fcfpr1_1_3t_9 -> 381835;
83
+ fcfpr1_1_3t_9 -> 381897;
84
+ fcfpr1_1_3t_9 -> 381901;
85
+ fpfpr1_1_3t_1 -> 381901;
86
+ fcfpr1_1_3t_9 -> 382103;
87
+ rtafpr1_1_3t_7 -> 382103;
88
+ fcfpr1_1_3t_9 -> 382161;
89
+ fcfpr1_1_3t_9 -> 383174;
90
+ fpfpr1_1_3t_1 -> 383174;
91
+ rtafpr1_1_3t_7 -> 383174;
92
+ fpfpr1_1_3g_1 -> 352010;
93
+ fpfpr1_1_3t_1 -> 352010;
94
+ fpfpr1_1_3t_1 -> 382409;
95
+ fpfpr1_1_3t_1 -> 382827;
96
+ fpfpr1_1_3t_1 -> 382928;
97
+ rtafpr1_1_3t_7 -> 382928;
98
+ tlfpr1_1_1t_5 -> 358224;
99
+ tymsgfpr1_1_1t_23 -> 358224;
100
+ tymsgfpr1_1_3t_3 -> 358224;
101
+ rcfpr0_0_1t_9 -> 358224;
102
+ rcfpr1_1_1t_5 -> 358224;
103
+ odfpr0_0_1t_8 -> 358224;
104
+ odfpr1_1_1t_6 -> 358224;
105
+ ecdsgfpr1_1_1t_4 -> 358224;
106
+ tymsgfpr1_1_1t_18 -> 358900;
107
+ tymsgfpr1_1_3t_3 -> 358900;
108
+ rcfpr1_1_1t_100 -> 358900;
109
+ rcfpr1_1_1t_22 -> 358900;
110
+ rcfpr1_1_1t_37 -> 358900;
111
+ odfpr1_1_1t_21 -> 358900;
112
+ tymsgfpr1_1_3t_3 -> 372568;
113
+ rcfpr1_1_1t_30 -> 372568;
114
+ odfpr1_1_1t_31 -> 372568;
115
+ tlfpr1_1_1t_20 -> 375557;
116
+ tymsgfpr1_1_1t_24 -> 375557;
117
+ tymsgfpr1_1_3t_3 -> 375557;
118
+ rcfpr1_1_1t_11 -> 375557;
119
+ odfpr1_1_1t_9 -> 375557;
120
+ ecdsgfpr1_1_1t_19 -> 375557;
121
+ rtafpr1_1_1g_14 -> 376956;
122
+ rtafpr1_1_1t_64 -> 376956;
123
+ rtafpr1_1_2t_18 -> 376956;
124
+ rtafpr1_1_3t_30 -> 376956;
125
+ rtafpr1_1_3t_7 -> 376956;
126
+ rtafpr1_1_3t_7 -> 379339;
127
+ rtafpr1_1_1t_14 -> 379422;
128
+ rtafpr1_1_1t_20 -> 379422;
129
+ rtafpr1_1_3t_7 -> 379422;
130
+ rtafpr1_1_3t_7 -> 383039;
131
+ fcfpr1_1_1t_18 -> 359471;
132
+ fcfpr2_0_1t_1 -> 359471;
133
+ fcfpr2_0_1t_2 -> 359471;
134
+ ccsfpr2_0_1t_99 -> 359471;
135
+ fcfpr1_1_3t_42 -> 384096;
136
+ rtafpr1_1_3t_71 -> 384096;
137
+ tlfpr1_0_4g_4 -> 354290;
138
+ rcfpr0_0_1t_9 -> 354290;
139
+ odfpr0_0_1t_8 -> 354290;
140
+ pagfpr1_1_1t_23 -> 354290;
141
+ rcfpr1_1_1t_5 -> 379864;
142
+ rcfpr1_1_1t_100 -> 382574;
143
+ rcfpr1_1_1t_22 -> 382574;
144
+ rcfpr1_1_1t_37 -> 382574;
145
+ rcfpr1_1_1t_30 -> 370706;
146
+ rcfpr1_1_1t_30 -> 377908;
147
+ rcfpr1_1_1t_30 -> 377924;
148
+ rcfpr1_1_1t_30 -> 377971;
149
+ rcfpr1_1_1t_30 -> 377980;
150
+ odfpr1_1_1t_31 -> 377980;
151
+ rcfpr1_1_1t_30 -> 378362;
152
+ rcfpr1_1_1t_30 -> 378656;
153
+ rcfpr1_1_1t_30 -> 378666;
154
+ rcfpr1_1_1t_30 -> 379169;
155
+ odfpr1_1_1t_31 -> 379169;
156
+ rcfpr1_1_1t_110 -> 379341;
157
+ rcfpr1_1_1t_30 -> 379341;
158
+ rcfpr1_1_1t_62 -> 379341;
159
+ odfpr1_1_1t_31 -> 379341;
160
+ rcfpr1_1_1t_30 -> 379972;
161
+ rcfpr1_1_1t_30 -> 380298;
162
+ rcfpr1_1_1t_30 -> 380448;
163
+ rcfpr1_1_1t_30 -> 380475;
164
+ odfpr1_1_1t_31 -> 380475;
165
+ rcfpr1_1_1t_30 -> 380526;
166
+ odfpr1_1_1t_31 -> 357430;
167
+ rcfpr1_1_1t_11 -> 379968;
168
+ odfpr1_1_1t_9 -> 379968;
169
+ ccsfpr2_0_1t_99 -> 359100;
170
+ ccsfpr2_0_1t_99 -> 376529;
171
+ ccsfpr2_0_1t_99 -> 377801;
172
+ ccsfpr2_0_1t_99 -> 379126;
173
+ ccsfpr2_0_1t_99 -> 379212;
174
+ ccsfpr2_0_1t_99 -> 380285;
175
+ ccsfpr2_0_1t_99 -> 380963;
176
+ ccsfpr2_0_1t_99 -> 384909;
177
+ tlfpr1_0_4g_4 -> 358471;
178
+ odfpr0_0_1t_7 -> 358471;
179
+ odfpr1_0_1t_36 -> 358471;
180
+ odfpr1_0_3t_18 -> 358471;
181
+ odfpr1_0_3t_21 -> 358471;
182
+ tlfpr1_0_4g_4 -> 375024;
183
+ tlfpr1_0_4g_4 -> 375027;
184
+ rcfpr1_1_1t_110 -> 381710;
185
+ rcfpr1_1_1t_62 -> 381710;
186
+ rcfpr1_1_1t_110 -> 381775;
187
+ rcfpr1_1_1t_62 -> 381775;
188
+ rcfpr1_1_1t_110 -> 382436;
189
+ fcfpr1_1_3t_34 -> 382528;
190
+ rcfpr1_1_1t_110 -> 382528;
191
+ rtafpr1_1_3t_48 -> 382528;
192
+ rcfpr1_1_1t_110 -> 382566;
193
+ rcfpr1_1_1t_110 -> 382572;
194
+ odfpr0_0_1t_7 -> 353506;
195
+ rcfpr1_0_1t_35 -> 370509;
196
+ odfpr0_0_1t_7 -> 370509;
197
+ odfpr0_0_1t_7 -> 370510;
198
+ odfpr1_0_1t_38 -> 370510;
199
+ tlfpr1_0_4g_5 -> 354546;
200
+ rcfpr1_1_1t_61 -> 354546;
201
+ odfpr1_0_3t_18 -> 354546;
202
+ odfpr1_0_3t_20 -> 354546;
203
+ odfpr1_0_3t_18 -> 354757;
204
+ odfpr1_0_3t_20 -> 354757;
205
+ odfpr1_0_3t_18 -> 354766;
206
+ odfpr1_0_3t_20 -> 354766;
207
+ odfpr1_0_3t_18 -> 354771;
208
+ odfpr1_0_3t_20 -> 354771;
209
+ odfpr1_0_3t_18 -> 354785;
210
+ odfpr1_0_3t_23 -> 354785;
211
+ odfpr1_0_3t_24 -> 354785;
212
+ odfpr1_0_3t_18 -> 354878;
213
+ odfpr1_0_3t_23 -> 354878;
214
+ odfpr1_0_3t_24 -> 354878;
215
+ odfpr1_0_3t_18 -> 355080;
216
+ odfpr1_0_3t_23 -> 355080;
217
+ odfpr1_0_3t_24 -> 355080;
218
+ odfpr1_0_3t_18 -> 355288;
219
+ odfpr1_0_3t_23 -> 355288;
220
+ odfpr1_0_3t_24 -> 355288;
221
+ odfpr2_0_03t_13 -> 355288;
222
+ odfpr1_0_3t_18 -> 355800;
223
+ odfpr1_0_3t_21 -> 355800;
224
+ odfpr1_0_3t_18 -> 356116;
225
+ odfpr1_0_3t_21 -> 356116;
226
+ odfpr1_0_3t_18 -> 356741;
227
+ odfpr1_0_3t_21 -> 356741;
228
+ odfpr1_0_3t_18 -> 357340;
229
+ odfpr1_0_3t_21 -> 357340;
230
+ odfpr1_0_3t_18 -> 357538;
231
+ odfpr1_0_3t_21 -> 357538;
232
+ odfpr1_0_3t_18 -> 357769;
233
+ odfpr1_0_3t_21 -> 357769;
234
+ odfpr1_0_3t_18 -> 357793;
235
+ odfpr1_0_3t_21 -> 357793;
236
+ odfpr1_0_3t_18 -> 358155;
237
+ odfpr1_0_3t_21 -> 358155;
238
+ odfpr1_0_3t_18 -> 358157;
239
+ odfpr1_0_3t_21 -> 358157;
240
+ odfpr1_0_3t_18 -> 358159;
241
+ odfpr1_0_3t_21 -> 358159;
242
+ odfpr1_0_3t_18 -> 358584;
243
+ odfpr1_0_3t_21 -> 358584;
244
+ odfpr1_0_3t_18 -> 360104;
245
+ odfpr1_0_3t_21 -> 360104;
246
+ odfpr1_0_3t_18 -> 360144;
247
+ odfpr1_0_3t_21 -> 360144;
248
+ odfpr1_0_3t_18 -> 360672;
249
+ odfpr1_0_3t_21 -> 360672;
250
+ odfpr1_0_3t_5 -> 360672;
251
+ odfpr1_0_3t_18 -> 360839;
252
+ odfpr1_0_3t_21 -> 360839;
253
+ odfpr1_0_3t_18 -> 371187;
254
+ tlfpr1_0_3g_5 -> 373300;
255
+ odfpr1_0_3t_12 -> 373300;
256
+ odfpr1_0_3t_18 -> 373300;
257
+ odfpr1_0_3t_18 -> 375134;
258
+ odfpr1_0_5t_18 -> 375134;
259
+ rcfpr0_0_1t_10 -> 375319;
260
+ odfpr1_0_3t_18 -> 375319;
261
+ odfpr1_0_3t_36 -> 375319;
262
+ odfpr1_0_5t_17 -> 375319;
263
+ odfpr1_0_5t_19 -> 375319;
264
+ odfpr1_0_3t_18 -> 375499;
265
+ odfpr1_0_3t_18 -> 377220;
266
+ odfpr1_0_5t_21 -> 377220;
267
+ tlfpr1_0_3g_7 -> 377562;
268
+ tlfpr1_1_1t_3 -> 377562;
269
+ odfpr1_0_3t_18 -> 377562;
270
+ odfpr1_0_3t_36 -> 377562;
271
+ odfpr1_0_5t_20 -> 377562;
272
+ odfpr1_0_3t_18 -> 378108;
273
+ odfpr1_0_3t_6 -> 378108;
274
+ odfpr1_0_5t_20 -> 354221;
275
+
276
+ odfpr0_0_1t_7 [label="",shape=circle,height=0.12,width=0.12,fontsize=1];
277
+ tlfpr1_0_3g_5 [label="",shape=circle,height=0.12,width=0.12,fontsize=1];
278
+ odfpr0_0_1t_8 [label="",shape=circle,height=0.12,width=0.12,fontsize=1];
279
+ rcfpr1_1_1t_61 [label="",shape=circle,height=0.12,width=0.12,fontsize=1];
280
+ fcfpr1_1t_1 [label="",shape=circle,height=0.12,width=0.12,fontsize=1];
281
+ odfpr1_0_3t_18 [label="",shape=circle,height=0.12,width=0.12,fontsize=1];
282
+ tlfpr1_0_3g_7 [label="",shape=circle,height=0.12,width=0.12,fontsize=1];
283
+ rcfpr1_1_1t_62 [label="",shape=circle,height=0.12,width=0.12,fontsize=1];
284
+ ccsfpr2_0_1t_99 [label="",shape=circle,height=0.12,width=0.12,fontsize=1];
285
+ tymsgfpr1_1_3t_3 [label="",shape=circle,height=0.12,width=0.12,fontsize=1];
286
+ rcfpr0_0_1t_9 [label="",shape=circle,height=0.12,width=0.12,fontsize=1];
287
+ rtafpr1_1_1t_14 [label="",shape=circle,height=0.12,width=0.12,fontsize=1];
288
+ rtafpr1_1_3t_30 [label="",shape=circle,height=0.12,width=0.12,fontsize=1];
289
+ rcfpr1_1_1t_110 [label="",shape=circle,height=0.12,width=0.12,fontsize=1];
290
+ dbfpr1_1_3t_2 [label="",shape=circle,height=0.12,width=0.12,fontsize=1];
291
+ rtafpr1_1_1g_8 [label="",shape=circle,height=0.12,width=0.12,fontsize=1];
292
+ rcfpr1_1_1t_30 [label="",shape=circle,height=0.12,width=0.12,fontsize=1];
293
+ tlfpr1_1_1t_20 [label="",shape=circle,height=0.12,width=0.12,fontsize=1];
294
+ rtafpr1_1_1t_64 [label="",shape=circle,height=0.12,width=0.12,fontsize=1];
295
+ tlfpr2_0_rdlg_2 [label="",shape=circle,height=0.12,width=0.12,fontsize=1];
296
+ rtafpr1_1_2t_28 [label="",shape=circle,height=0.12,width=0.12,fontsize=1];
297
+ tlfpr1_1_1t_3 [label="",shape=circle,height=0.12,width=0.12,fontsize=1];
298
+ odfpr1_1_1t_6 [label="",shape=circle,height=0.12,width=0.12,fontsize=1];
299
+ fpfpr1_1_3t_1 [label="",shape=circle,height=0.12,width=0.12,fontsize=1];
300
+ aufpr1_1_3t_1 [label="",shape=circle,height=0.12,width=0.12,fontsize=1];
301
+ fcfpr1_1_3t_34 [label="",shape=circle,height=0.12,width=0.12,fontsize=1];
302
+ rcfpr1_1_1t_5 [label="",shape=circle,height=0.12,width=0.12,fontsize=1];
303
+ fcfpr1_1_1t_18 [label="",shape=circle,height=0.12,width=0.12,fontsize=1];
304
+ odfpr1_0_3t_36 [label="",shape=circle,height=0.12,width=0.12,fontsize=1];
305
+ tlfpr1_1_1t_5 [label="",shape=circle,height=0.12,width=0.12,fontsize=1];
306
+ fcfpr1_1_1t_19 [label="",shape=circle,height=0.12,width=0.12,fontsize=1];
307
+ odfpr1_1_1t_9 [label="",shape=circle,height=0.12,width=0.12,fontsize=1];
308
+ fcfpr1_1_3t_7 [label="",shape=circle,height=0.12,width=0.12,fontsize=1];
309
+ rcfpr1_1_1t_37 [label="",shape=circle,height=0.12,width=0.12,fontsize=1];
310
+ fcfpr1_1_3t_8 [label="",shape=circle,height=0.12,width=0.12,fontsize=1];
311
+ odfpr1_1_1t_21 [label="",shape=circle,height=0.12,width=0.12,fontsize=1];
312
+ fcfpr1_1_3t_9 [label="",shape=circle,height=0.12,width=0.12,fontsize=1];
313
+ rdlfpr2_0_rdlt_27 [label="",shape=circle,height=0.12,width=0.12,fontsize=1];
314
+ fcfpr1_1_3g_2 [label="",shape=circle,height=0.12,width=0.12,fontsize=1];
315
+ rtafpr1_1_1t_35 [label="",shape=circle,height=0.12,width=0.12,fontsize=1];
316
+ odfpr1_0_5t_20 [label="",shape=circle,height=0.12,width=0.12,fontsize=1];
317
+ fpfpr1_1_3g_1 [label="",shape=circle,height=0.12,width=0.12,fontsize=1];
318
+ odfpr1_0_5t_21 [label="",shape=circle,height=0.12,width=0.12,fontsize=1];
319
+ fpfpr1_1_2t_11 [label="",shape=circle,height=0.12,width=0.12,fontsize=1];
320
+ ecdsgfpr1_1_1t_19 [label="",shape=circle,height=0.12,width=0.12,fontsize=1];
321
+ odfpr1_0_1t_36 [label="",shape=circle,height=0.12,width=0.12,fontsize=1];
322
+ rtafpr1_1_1g_14 [label="",shape=circle,height=0.12,width=0.12,fontsize=1];
323
+ tymsgfpr1_1_1t_23 [label="",shape=circle,height=0.12,width=0.12,fontsize=1];
324
+ tymsgfpr1_1_1t_24 [label="",shape=circle,height=0.12,width=0.12,fontsize=1];
325
+ odfpr1_0_1t_38 [label="",shape=circle,height=0.12,width=0.12,fontsize=1];
326
+ fcfpr1_0_2g_1 [label="",shape=circle,height=0.12,width=0.12,fontsize=1];
327
+ rdlfpr1_1t_1 [label="",shape=circle,height=0.12,width=0.12,fontsize=1];
328
+ rcfpr0_0_1t_10 [label="",shape=circle,height=0.12,width=0.12,fontsize=1];
329
+ rcfpr1_1_1t_100 [label="",shape=circle,height=0.12,width=0.12,fontsize=1];
330
+ rdlfpr2_0_rdlt_108 [label="",shape=circle,height=0.12,width=0.12,fontsize=1];
331
+ pcfpr1_1_3t_7 [label="",shape=circle,height=0.12,width=0.12,fontsize=1];
332
+ odfpr1_0_3t_20 [label="",shape=circle,height=0.12,width=0.12,fontsize=1];
333
+ ecdsgfpr1_1_1t_4 [label="",shape=circle,height=0.12,width=0.12,fontsize=1];
334
+ tmfpr1_1_3t_5 [label="",shape=circle,height=0.12,width=0.12,fontsize=1];
335
+ odfpr1_0_3t_21 [label="",shape=circle,height=0.12,width=0.12,fontsize=1];
336
+ fpfpr1_0_1t_1 [label="",shape=circle,height=0.12,width=0.12,fontsize=1];
337
+ odfpr1_0_3t_23 [label="",shape=circle,height=0.12,width=0.12,fontsize=1];
338
+ rcfpr1_1_1t_22 [label="",shape=circle,height=0.12,width=0.12,fontsize=1];
339
+ pagfpr1_1_1t_23 [label="",shape=circle,height=0.12,width=0.12,fontsize=1];
340
+ rtafpr1_1_3t_71 [label="",shape=circle,height=0.12,width=0.12,fontsize=1];
341
+ rtafpr1_1_2t_18 [label="",shape=circle,height=0.12,width=0.12,fontsize=1];
342
+ rdlfpr2_0_rdlt_158 [label="",shape=circle,height=0.12,width=0.12,fontsize=1];
343
+ rtafpr1_1_3t_6 [label="",shape=circle,height=0.12,width=0.12,fontsize=1];
344
+ odfpr1_0_3t_24 [label="",shape=circle,height=0.12,width=0.12,fontsize=1];
345
+ rtafpr1_1_3t_7 [label="",shape=circle,height=0.12,width=0.12,fontsize=1];
346
+ rtafpr1_0_3g_1 [label="",shape=circle,height=0.12,width=0.12,fontsize=1];
347
+ rtafpr1_1_1t_20 [label="",shape=circle,height=0.12,width=0.12,fontsize=1];
348
+ rdlfpr1_1g_13 [label="",shape=circle,height=0.12,width=0.12,fontsize=1];
349
+ rcfpr1_0_1t_35 [label="",shape=circle,height=0.12,width=0.12,fontsize=1];
350
+ fcfpr1_1_2t_17 [label="",shape=circle,height=0.12,width=0.12,fontsize=1];
351
+ rtafpr2_1_rdlg_1 [label="",shape=circle,height=0.12,width=0.12,fontsize=1];
352
+ rdlfpr2_0_rdlt_4 [label="",shape=circle,height=0.12,width=0.12,fontsize=1];
353
+ rdlfpr1_1g_16 [label="",shape=circle,height=0.12,width=0.12,fontsize=1];
354
+ fcfpr2_0_1t_1 [label="",shape=circle,height=0.12,width=0.12,fontsize=1];
355
+ fcfpr2_0_1t_2 [label="",shape=circle,height=0.12,width=0.12,fontsize=1];
356
+ rdlfpr1_1t_100 [label="",shape=circle,height=0.12,width=0.12,fontsize=1];
357
+ msgfpr1_1_1g_12 [label="",shape=circle,height=0.12,width=0.12,fontsize=1];
358
+ rdlfpr2_0_rdlt_30 [label="",shape=circle,height=0.12,width=0.12,fontsize=1];
359
+ odfpr1_0_3t_5 [label="",shape=circle,height=0.12,width=0.12,fontsize=1];
360
+ tlfpr1_0_4g_4 [label="",shape=circle,height=0.12,width=0.12,fontsize=1];
361
+ fcfpr1_1_3t_42 [label="",shape=circle,height=0.12,width=0.12,fontsize=1];
362
+ odfpr1_0_3t_6 [label="",shape=circle,height=0.12,width=0.12,fontsize=1];
363
+ tlfpr1_0_4g_5 [label="",shape=circle,height=0.12,width=0.12,fontsize=1];
364
+ rtafpr1_1_3t_48 [label="",shape=circle,height=0.12,width=0.12,fontsize=1];
365
+ odfpr1_0_5t_17 [label="",shape=circle,height=0.12,width=0.12,fontsize=1];
366
+ odfpr1_0_5t_18 [label="",shape=circle,height=0.12,width=0.12,fontsize=1];
367
+ tymsgfpr1_1_1t_18 [label="",shape=circle,height=0.12,width=0.12,fontsize=1];
368
+ odfpr1_0_5t_19 [label="",shape=circle,height=0.12,width=0.12,fontsize=1];
369
+ fcfpr1_1_3t_10 [label="",shape=circle,height=0.12,width=0.12,fontsize=1];
370
+ fcfpr1_0_5g_1 [label="",shape=circle,height=0.12,width=0.12,fontsize=1];
371
+ odfpr1_0_3t_12 [label="",shape=circle,height=0.12,width=0.12,fontsize=1];
372
+ odfpr2_0_03t_13 [label="",shape=circle,height=0.12,width=0.12,fontsize=1];
373
+ rcfpr1_1_1t_11 [label="",shape=circle,height=0.12,width=0.12,fontsize=1];
374
+ odfpr1_1_1t_31 [label="",shape=circle,height=0.12,width=0.12,fontsize=1];
375
+ rdlfpr2_0_rdlg_12 [label="",shape=circle,height=0.12,width=0.12,fontsize=1];
376
+ rtafpr1_1_1t_45 [label="",shape=circle,height=0.12,width=0.12,fontsize=1];
377
+ }
@@ -0,0 +1,29 @@
1
+ ##"I played some days with making an interface between our ConceptBase system (essentially a database system to store models) and graphviz. One example graph is attached. It is a so-called petri net for Dutch traffic lights. The example is actually taken from a book by Wil van der Aalst." Contributed by Manfred Jeusfeld.
2
+
3
+ ##Command to produce the output: "neato -Tpng thisfile > thisfile.png"
4
+
5
+ digraph TrafficLights {
6
+ node [shape=box]; gy2; yr2; rg2; gy1; yr1; rg1;
7
+ node [shape=circle,fixedsize=true,width=0.9]; green2; yellow2; red2; safe2; safe1; green1; yellow1; red1;
8
+ gy2->yellow2;
9
+ rg2->green2;
10
+ yr2->safe1;
11
+ yr2->red2;
12
+ safe2->rg2;
13
+ green2->gy2;
14
+ yellow2->yr2;
15
+ red2->rg2;
16
+ gy1->yellow1;
17
+ rg1->green1;
18
+ yr1->safe2;
19
+ yr1->red1;
20
+ safe1->rg1;
21
+ green1->gy1;
22
+ yellow1->yr1;
23
+ red1->rg1;
24
+
25
+ overlap=false
26
+ label="PetriNet Model TrafficLights\nExtracted from ConceptBase and layed out by Graphviz"
27
+ fontsize=12;
28
+ }
29
+
@@ -0,0 +1,105 @@
1
+ graph G {
2
+ // graph [splines=true overlap=false]
3
+ // graph [truecolor bgcolor="#ff00005f"]
4
+ node [style=filled fillcolor="#00ff005f"]
5
+ 1 -- 30 [f=1];
6
+ 1 -- 40 [f=14];
7
+ 8 -- 46 [f=1];
8
+ 8 -- 16 [f=18];
9
+ 10 -- 25 [f=1];
10
+ 10 -- 19 [f=5];
11
+ 10 -- 33 [f=1];
12
+ 12 -- 8 [f=1];
13
+ 12 -- 36 [f=5];
14
+ 12 -- 17 [f=16];
15
+ 13 -- 38 [f=1];
16
+ 13 -- 24 [f=19];
17
+ 24 -- 49 [f=1];
18
+ 24 -- 13 [f=1];
19
+ 24 -- 47 [f=12];
20
+ 24 -- 12 [f=19];
21
+ 25 -- 27 [f=1];
22
+ 25 -- 12 [f=1];
23
+ 27 -- 12 [f=1];
24
+ 27 -- 14 [f=8];
25
+ 29 -- 10 [f=1];
26
+ 29 -- 8 [f=17];
27
+ 30 -- 24 [f=1];
28
+ 30 -- 44 [f=15];
29
+ 38 -- 29 [f=1];
30
+ 38 -- 35 [f=15];
31
+ 2 -- 42 [f=2];
32
+ 2 -- 35 [f=3];
33
+ 2 -- 11 [f=19];
34
+ 14 -- 18 [f=2];
35
+ 14 -- 24 [f=15];
36
+ 14 -- 38 [f=18];
37
+ 18 -- 49 [f=2];
38
+ 18 -- 47 [f=20];
39
+ 26 -- 41 [f=2];
40
+ 26 -- 42 [f=15];
41
+ 31 -- 39 [f=2];
42
+ 31 -- 47 [f=17];
43
+ 31 -- 25 [f=14];
44
+ 37 -- 26 [f=2];
45
+ 37 -- 16 [f=14];
46
+ 39 -- 50 [f=2];
47
+ 39 -- 14 [f=2];
48
+ 39 -- 18 [f=17];
49
+ 39 -- 47 [f=10];
50
+ 41 -- 31 [f=2];
51
+ 41 -- 8 [f=16];
52
+ 42 -- 44 [f=2];
53
+ 42 -- 29 [f=12];
54
+ 44 -- 37 [f=2];
55
+ 44 -- 32 [f=15];
56
+ 3 -- 20 [f=2];
57
+ 3 -- 28 [f=19];
58
+ 6 -- 45 [f=2];
59
+ 6 -- 28 [f=10];
60
+ 9 -- 6 [f=2];
61
+ 9 -- 16 [f=1];
62
+ 15 -- 16 [f=2];
63
+ 15 -- 48 [f=2];
64
+ 16 -- 50 [f=2];
65
+ 16 -- 32 [f=14];
66
+ 16 -- 39 [f=8];
67
+ 20 -- 33 [f=2];
68
+ 33 -- 9 [f=2];
69
+ 33 -- 46 [f=3];
70
+ 33 -- 48 [f=17];
71
+ 45 -- 15 [f=2];
72
+ 4 -- 17 [f=4];
73
+ 4 -- 15 [f=6];
74
+ 4 -- 12 [f=16];
75
+ 17 -- 21 [f=4];
76
+ 19 -- 35 [f=4];
77
+ 19 -- 15 [f=9];
78
+ 19 -- 43 [f=4];
79
+ 21 -- 19 [f=4];
80
+ 21 -- 50 [f=4];
81
+ 23 -- 36 [f=4];
82
+ 34 -- 23 [f=4];
83
+ 34 -- 24 [f=11];
84
+ 35 -- 34 [f=4];
85
+ 35 -- 16 [f=6];
86
+ 35 -- 18 [f=16];
87
+ 36 -- 46 [f=4];
88
+ 5 -- 7 [f=1];
89
+ 5 -- 36 [f=6];
90
+ 7 -- 32 [f=1];
91
+ 7 -- 11 [f=2];
92
+ 7 -- 14 [f=17];
93
+ 11 -- 40 [f=1];
94
+ 11 -- 50 [f=1];
95
+ 22 -- 46 [f=1];
96
+ 28 -- 43 [f=1];
97
+ 28 -- 8 [f=18];
98
+ 32 -- 28 [f=1];
99
+ 32 -- 39 [f=13];
100
+ 32 -- 42 [f=15];
101
+ 40 -- 22 [f=1];
102
+ 40 -- 47 [f=1];
103
+ 43 -- 11 [f=1];
104
+ 43 -- 17 [f=19];
105
+ }