omf_web 0.9.1 → 0.9.3
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.
- data/.gitignore +0 -1
- data/README.md +8 -2
- data/doc/screenshot.png +0 -0
- data/example/{basic → NOT_WORKING/basic}/hello-world-wired.rb +0 -0
- data/example/{basic → NOT_WORKING/basic}/visualisation.yml +0 -0
- data/example/{brooklyn → NOT_WORKING/brooklyn}/brooklynDemo.sq3 +0 -0
- data/example/{brooklyn → NOT_WORKING/brooklyn}/brooklyn_gps.dat +0 -0
- data/example/{brooklyn → NOT_WORKING/brooklyn}/brooklyn_server.rb +0 -0
- data/example/{brooklyn → NOT_WORKING/brooklyn}/brooklyn_wimax.dat +0 -0
- data/example/{brooklyn → NOT_WORKING/brooklyn}/sql_source.rb +0 -0
- data/example/{code → NOT_WORKING/code}/code_server.rb +0 -0
- data/example/{frisbee → NOT_WORKING/frisbee}/data_sources/parse_log.rb +0 -0
- data/example/{frisbee → NOT_WORKING/frisbee}/data_sources/pxe_slice-2012-06-02t02.25.00-04.00.log +0 -0
- data/example/{frisbee → NOT_WORKING/frisbee}/progress_chart.yaml +0 -0
- data/example/{frisbee → NOT_WORKING/frisbee}/progress_tab.yaml +0 -0
- data/example/{frisbee → NOT_WORKING/frisbee}/progress_table.yaml +0 -0
- data/example/{frisbee → NOT_WORKING/frisbee}/viz_server.rb +0 -0
- data/example/{gec12 → NOT_WORKING/gec12}/gec12-53.rb +0 -0
- data/example/{gec12 → NOT_WORKING/gec12}/gec12_demo.sq3 +0 -0
- data/example/{gec12 → NOT_WORKING/gec12}/gec12_demo_server.rb +0 -0
- data/example/{gec12 → NOT_WORKING/gec12}/visualization.rb +0 -0
- data/example/{incoming → NOT_WORKING/incoming}/ofpu_barchart_widget.yaml +0 -0
- data/example/{log → NOT_WORKING/log}/log_config.xml +0 -0
- data/example/{log → NOT_WORKING/log}/log_server.rb +0 -0
- data/example/{network → NOT_WORKING/network}/flow_tab.yaml +0 -0
- data/example/{network → NOT_WORKING/network}/network_server.rb +0 -0
- data/example/{text → NOT_WORKING/text}/test.md +0 -0
- data/example/{text → NOT_WORKING/text}/test.rb +0 -0
- data/example/{wimax → NOT_WORKING/wimax}/downlink.yaml +0 -0
- data/example/{wimax → NOT_WORKING/wimax}/power.yaml +0 -0
- data/example/{wimax → NOT_WORKING/wimax}/snapshot.db +0 -0
- data/example/{wimax → NOT_WORKING/wimax}/snapshot.sql +0 -0
- data/example/{wimax → NOT_WORKING/wimax}/test.rb +0 -0
- data/example/{wimax → NOT_WORKING/wimax}/uplink.yaml +0 -0
- data/example/{wimax → NOT_WORKING/wimax}/viz_server.rb +0 -0
- data/example/demo/data_sources/mobile_network.rb +3 -0
- data/example/demo/data_sources/static_network.rb +54 -0
- data/example/demo/widgets/charts_tab.yaml +21 -16
- data/example/demo/widgets/linked_graphs_tab.yaml +95 -0
- data/example/demo/widgets/mobile_network_widget.yaml +1 -1
- data/example/demo/widgets/pie_chart_widget.yaml +1 -1
- data/lib/omf-web/config.ru +2 -2
- data/lib/omf-web/data_source_proxy.rb +81 -19
- data/lib/omf-web/rack/websocket_handler.rb +77 -23
- data/lib/omf-web/theme/abstract_page.rb +43 -26
- data/lib/omf-web/theme/bright/code_renderer.rb +1 -1
- data/lib/omf-web/theme/bright/page.rb +1 -0
- data/lib/omf-web/theme/bright/tabbed_renderer.rb +7 -0
- data/lib/omf-web/version.rb +7 -0
- data/lib/omf-web/widget/data_widget.rb +38 -46
- data/lib/omf-web/widget/layout/stacked_layout.rb +2 -1
- data/lib/omf-web/widget/layout/tabbed_layout.rb +1 -2
- data/{MARUKU-LICENSE → lib/omf-web/widget/text/maruku/MARUKU-LICENSE} +0 -0
- data/lib/{maruku → omf-web/widget/text/maruku}/helpers.rb +0 -0
- data/lib/{maruku → omf-web/widget/text/maruku}/input/parse_block.rb +0 -0
- data/lib/{maruku → omf-web/widget/text/maruku}/output/to_html.rb +26 -21
- data/lib/omf-web/widget/text/maruku.rb +5 -0
- data/omf_web.gemspec +2 -1
- data/share/htdocs/{js → UNUSED}/log/table.js +0 -0
- data/share/htdocs/{css → graph/css}/graph.css +0 -0
- data/share/htdocs/{image/graph → graph/img}/bar_chart.png +0 -0
- data/share/htdocs/{image/graph → graph/img}/donut_chart.png +0 -0
- data/share/htdocs/{image/graph → graph/img}/funnel.png +0 -0
- data/share/htdocs/{image/graph → graph/img}/info.png +0 -0
- data/share/htdocs/{image/graph → graph/img}/line_chart.png +0 -0
- data/share/htdocs/{image/graph → graph/img}/line_chart_fill.png +0 -0
- data/share/htdocs/{image/graph → graph/img}/misc.png +0 -0
- data/share/htdocs/{image/graph → graph/img}/overview.png +0 -0
- data/share/htdocs/{image/graph → graph/img}/pie_chart.png +0 -0
- data/share/htdocs/{image/graph → graph/img}/scatter_plot.png +0 -0
- data/share/htdocs/{image/graph → graph/img}/stacked_bar_chart.png +0 -0
- data/share/htdocs/{image/graph → graph/img}/stacked_line_chart.png +0 -0
- data/share/htdocs/{image/graph → graph/img}/table.png +0 -0
- data/share/htdocs/{js/graph → graph/js}/abstract_chart.js +1 -1
- data/share/htdocs/{js/graph → graph/js}/abstract_nv_chart.js +8 -13
- data/share/htdocs/{js/graph → graph/js}/abstract_widget.js +9 -16
- data/share/htdocs/{js/graph → graph/js}/axis.js +1 -1
- data/share/htdocs/{js/graph → graph/js}/barchart.js +2 -2
- data/share/htdocs/{js/graph → graph/js}/code_mirror.js +1 -5
- data/share/htdocs/{js/graph → graph/js}/discrete_bar_chart.js +1 -1
- data/share/htdocs/{js/graph → graph/js}/histogram2.js +1 -1
- data/share/htdocs/{js/graph → graph/js}/holt_winters_chart.js +1 -1
- data/share/htdocs/{js/graph → graph/js}/line_chart3.js +1 -1
- data/share/htdocs/{js/graph → graph/js}/line_chart_with_focus.js +1 -1
- data/share/htdocs/{js/graph → graph/js}/map2.js +1 -1
- data/share/htdocs/{js/graph → graph/js}/multi_barchart.js +1 -1
- data/share/htdocs/graph/js/network2.js +412 -0
- data/share/htdocs/{js/graph → graph/js}/pie_chart2.js +1 -1
- data/share/htdocs/{js/graph → graph/js}/scatter_plot.js +1 -1
- data/share/htdocs/{js/graph → graph/js}/table2.js +17 -20
- data/share/htdocs/js/data_source2.js +187 -60
- data/share/htdocs/js/require3.js +38 -57
- data/share/htdocs/theme/bright/css/bright.css +4 -4
- data/share/htdocs/vendor/jquery/jquery.js +9404 -0
- data/share/htdocs/vendor/osa/LICENSE.txt +11 -0
- data/share/htdocs/{svg/osa → vendor/osa/svg}/osa_arrow_green_left.svg +0 -0
- data/share/htdocs/{svg/osa → vendor/osa/svg}/osa_arrow_yellow_right.svg +0 -0
- data/share/htdocs/{svg/osa → vendor/osa/svg}/osa_awareness.svg +0 -0
- data/share/htdocs/{svg/osa → vendor/osa/svg}/osa_camera-web.svg +0 -0
- data/share/htdocs/{svg/osa → vendor/osa/svg}/osa_cloud.svg +0 -0
- data/share/htdocs/{svg/osa → vendor/osa/svg}/osa_contract.svg +0 -0
- data/share/htdocs/{svg/osa → vendor/osa/svg}/osa_database.svg +0 -0
- data/share/htdocs/{svg/osa → vendor/osa/svg}/osa_desktop.svg +0 -0
- data/share/htdocs/{svg/osa → vendor/osa/svg}/osa_desktop_imac.svg +0 -0
- data/share/htdocs/{svg/osa → vendor/osa/svg}/osa_device-music.svg +0 -0
- data/share/htdocs/{svg/osa → vendor/osa/svg}/osa_device-scanner.svg +0 -0
- data/share/htdocs/{svg/osa → vendor/osa/svg}/osa_device-usb-wifi.svg +0 -0
- data/share/htdocs/{svg/osa → vendor/osa/svg}/osa_device-usb.svg +0 -0
- data/share/htdocs/{svg/osa → vendor/osa/svg}/osa_device-wireless-router.svg +0 -0
- data/share/htdocs/{svg/osa → vendor/osa/svg}/osa_disposal.svg +0 -0
- data/share/htdocs/{svg/osa → vendor/osa/svg}/osa_drive-harddisk.svg +0 -0
- data/share/htdocs/{svg/osa → vendor/osa/svg}/osa_drive-optical.svg +0 -0
- data/share/htdocs/{svg/osa → vendor/osa/svg}/osa_firewall.svg +0 -0
- data/share/htdocs/{svg/osa → vendor/osa/svg}/osa_home.svg +0 -0
- data/share/htdocs/{svg/osa → vendor/osa/svg}/osa_hub.svg +0 -0
- data/share/htdocs/{svg/osa → vendor/osa/svg}/osa_iPhone.svg +0 -0
- data/share/htdocs/{svg/osa → vendor/osa/svg}/osa_ics_drive.svg +0 -0
- data/share/htdocs/{svg/osa → vendor/osa/svg}/osa_ics_plc.svg +0 -0
- data/share/htdocs/{svg/osa → vendor/osa/svg}/osa_ics_thermometer.svg +0 -0
- data/share/htdocs/{svg/osa → vendor/osa/svg}/osa_id_card.svg +0 -0
- data/share/htdocs/{svg/osa → vendor/osa/svg}/osa_image-generic.svg +0 -0
- data/share/htdocs/{svg/osa → vendor/osa/svg}/osa_laptop.svg +0 -0
- data/share/htdocs/{svg/osa → vendor/osa/svg}/osa_lifecycle.svg +0 -0
- data/share/htdocs/{svg/osa → vendor/osa/svg}/osa_lightning.svg +0 -0
- data/share/htdocs/{svg/osa → vendor/osa/svg}/osa_media-flash.svg +0 -0
- data/share/htdocs/{svg/osa → vendor/osa/svg}/osa_media-optical.svg +0 -0
- data/share/htdocs/{svg/osa → vendor/osa/svg}/osa_media-tape.svg +0 -0
- data/share/htdocs/{svg/osa → vendor/osa/svg}/osa_mobile_pda.svg +0 -0
- data/share/htdocs/{svg/osa → vendor/osa/svg}/osa_padlock.svg +0 -0
- data/share/htdocs/{svg/osa → vendor/osa/svg}/osa_printer.svg +0 -0
- data/share/htdocs/{svg/osa → vendor/osa/svg}/osa_server.svg +0 -0
- data/share/htdocs/{svg/osa → vendor/osa/svg}/osa_server_application.svg +0 -0
- data/share/htdocs/{svg/osa → vendor/osa/svg}/osa_server_database.svg +0 -0
- data/share/htdocs/{svg/osa → vendor/osa/svg}/osa_server_directory.svg +0 -0
- data/share/htdocs/{svg/osa → vendor/osa/svg}/osa_server_distribution.svg +0 -0
- data/share/htdocs/{svg/osa → vendor/osa/svg}/osa_server_file.svg +0 -0
- data/share/htdocs/{svg/osa → vendor/osa/svg}/osa_server_gateway.svg +0 -0
- data/share/htdocs/{svg/osa → vendor/osa/svg}/osa_server_identity.svg +0 -0
- data/share/htdocs/{svg/osa → vendor/osa/svg}/osa_server_mail.svg +0 -0
- data/share/htdocs/{svg/osa → vendor/osa/svg}/osa_server_media.svg +0 -0
- data/share/htdocs/{svg/osa → vendor/osa/svg}/osa_server_monitor.svg +0 -0
- data/share/htdocs/{svg/osa → vendor/osa/svg}/osa_server_proxy.svg +0 -0
- data/share/htdocs/{svg/osa → vendor/osa/svg}/osa_server_terminal.svg +0 -0
- data/share/htdocs/{svg/osa → vendor/osa/svg}/osa_server_web.svg +0 -0
- data/share/htdocs/{svg/osa → vendor/osa/svg}/osa_site-branch.svg +0 -0
- data/share/htdocs/{svg/osa → vendor/osa/svg}/osa_site-factory.svg +0 -0
- data/share/htdocs/{svg/osa → vendor/osa/svg}/osa_site-head-office.svg +0 -0
- data/share/htdocs/{svg/osa → vendor/osa/svg}/osa_site-neighbourhood.svg +0 -0
- data/share/htdocs/{svg/osa → vendor/osa/svg}/osa_user_audit.svg +0 -0
- data/share/htdocs/{svg/osa → vendor/osa/svg}/osa_user_black_hat.svg +0 -0
- data/share/htdocs/{svg/osa → vendor/osa/svg}/osa_user_blue.svg +0 -0
- data/share/htdocs/{svg/osa → vendor/osa/svg}/osa_user_blue_security_specialist.svg +0 -0
- data/share/htdocs/{svg/osa → vendor/osa/svg}/osa_user_blue_sysadmin.svg +0 -0
- data/share/htdocs/{svg/osa → vendor/osa/svg}/osa_user_blue_tester.svg +0 -0
- data/share/htdocs/{svg/osa → vendor/osa/svg}/osa_user_blue_tie.svg +0 -0
- data/share/htdocs/{svg/osa → vendor/osa/svg}/osa_user_green.svg +0 -0
- data/share/htdocs/{svg/osa → vendor/osa/svg}/osa_user_green_architect.svg +0 -0
- data/share/htdocs/{svg/osa → vendor/osa/svg}/osa_user_green_business_manager.svg +0 -0
- data/share/htdocs/{svg/osa → vendor/osa/svg}/osa_user_green_developer.svg +0 -0
- data/share/htdocs/{svg/osa → vendor/osa/svg}/osa_user_green_operations.svg +0 -0
- data/share/htdocs/{svg/osa → vendor/osa/svg}/osa_user_green_project_manager.svg +0 -0
- data/share/htdocs/{svg/osa → vendor/osa/svg}/osa_user_green_service_manager.svg +0 -0
- data/share/htdocs/{svg/osa → vendor/osa/svg}/osa_user_green_warning.svg +0 -0
- data/share/htdocs/{svg/osa → vendor/osa/svg}/osa_user_large_group.svg +0 -0
- data/share/htdocs/{svg/osa → vendor/osa/svg}/osa_users_blue_green.svg +0 -0
- data/share/htdocs/{svg/osa → vendor/osa/svg}/osa_vpn.svg +0 -0
- data/share/htdocs/{svg/osa → vendor/osa/svg}/osa_warning.svg +0 -0
- data/share/htdocs/{svg/osa → vendor/osa/svg}/osa_wireless_network.svg +0 -0
- data/share/htdocs/{image → vendor/unknown/image}/.DS_Store +0 -0
- data/share/htdocs/{image → vendor/unknown/image}/add_icon.gif +0 -0
- data/share/htdocs/{image → vendor/unknown/image}/alertbad_icon.gif +0 -0
- data/share/htdocs/{image → vendor/unknown/image}/alertgood_icon.gif +0 -0
- data/share/htdocs/{image → vendor/unknown/image}/back_disabled.jpg +0 -0
- data/share/htdocs/{image → vendor/unknown/image}/back_disabled.png +0 -0
- data/share/htdocs/{image → vendor/unknown/image}/back_enabled.jpg +0 -0
- data/share/htdocs/{image → vendor/unknown/image}/back_enabled.png +0 -0
- data/share/htdocs/{image → vendor/unknown/image}/back_enabled_hover.jpg +0 -0
- data/share/htdocs/{image → vendor/unknown/image}/back_enabled_hover.png +0 -0
- data/share/htdocs/{image → vendor/unknown/image}/bottom-bg.gif +0 -0
- data/share/htdocs/{image → vendor/unknown/image}/forward_disabled.jpg +0 -0
- data/share/htdocs/{image → vendor/unknown/image}/forward_disabled.png +0 -0
- data/share/htdocs/{image → vendor/unknown/image}/forward_enabled.jpg +0 -0
- data/share/htdocs/{image → vendor/unknown/image}/forward_enabled.png +0 -0
- data/share/htdocs/{image → vendor/unknown/image}/forward_enabled_hover.jpg +0 -0
- data/share/htdocs/{image → vendor/unknown/image}/forward_enabled_hover.png +0 -0
- data/share/htdocs/{image → vendor/unknown/image}/icon-remove.gif +0 -0
- data/share/htdocs/{image → vendor/unknown/image}/indicator.gif +0 -0
- data/share/htdocs/{image → vendor/unknown/image}/laptop.png +0 -0
- data/share/htdocs/{image → vendor/unknown/image}/logo-bottom.gif +0 -0
- data/share/htdocs/{image → vendor/unknown/image}/nav-tab-arrow.gif +0 -0
- data/share/htdocs/{image → vendor/unknown/image}/norbit_big.gif +0 -0
- data/share/htdocs/{image → vendor/unknown/image}/norbit_clipart.png +0 -0
- data/share/htdocs/{image → vendor/unknown/image}/progress_bar.gif +0 -0
- data/share/htdocs/{image → vendor/unknown/image}/right-bg.gif +0 -0
- data/share/htdocs/{image → vendor/unknown/image}/sort_asc.png +0 -0
- data/share/htdocs/{image → vendor/unknown/image}/sort_asc_disabled.png +0 -0
- data/share/htdocs/{image → vendor/unknown/image}/sort_both.png +0 -0
- data/share/htdocs/{image → vendor/unknown/image}/sort_desc.png +0 -0
- data/share/htdocs/{image → vendor/unknown/image}/sort_desc_disabled.png +0 -0
- data/share/htdocs/{image → vendor/unknown/image}/spinner.gif +0 -0
- data/share/htdocs/{svg → vendor/unknown/svg}/ap.svg +0 -0
- data/share/htdocs/{svg → vendor/unknown/svg}/router.svg +0 -0
- metadata +198 -216
- data/example/demo/widgets/dashboard_tab.yaml +0 -28
- data/example/demo/widgets/download_tab.yaml +0 -42
- data/example/demo/widgets/edit_tab.yaml +0 -20
- data/example/demo/widgets/generator_tab.yaml +0 -12
- data/lib/omf-oml/endpoint.rb +0 -175
- data/lib/omf-oml/indexed_table.rb +0 -57
- data/lib/omf-oml/network.rb +0 -413
- data/lib/omf-oml/oml_tuple.rb +0 -62
- data/lib/omf-oml/schema.rb +0 -191
- data/lib/omf-oml/sequel/sequel_server.rb +0 -412
- data/lib/omf-oml/sql_row.rb +0 -302
- data/lib/omf-oml/sql_source.rb +0 -131
- data/lib/omf-oml/table.rb +0 -131
- data/lib/omf-oml/tuple.rb +0 -97
- data/lib/omf_oml.rb +0 -4
- data/share/htdocs/css/coderay.css +0 -127
- data/share/htdocs/css/ie.css +0 -40
- data/share/htdocs/css/lightbox.css +0 -62
- data/share/htdocs/css/scaffold.css +0 -74
- data/share/htdocs/css/screen.css +0 -1313
- data/share/htdocs/css/search.css +0 -102
- data/share/htdocs/css/table.css +0 -538
- data/share/htdocs/css/table2.css +0 -191
- data/share/htdocs/css/welcome.css +0 -103
- data/share/htdocs/css/wfob.css +0 -171
- data/share/htdocs/css/wshow.css +0 -69
- data/share/htdocs/gec9_demo.html +0 -39
- data/share/htdocs/images +0 -1
- data/share/htdocs/js/graph/histogram.js +0 -229
- data/share/htdocs/js/graph/line_chart.js +0 -342
- data/share/htdocs/js/graph/line_chart2.js +0 -232
- data/share/htdocs/js/graph/line_chart_fc.js +0 -94
- data/share/htdocs/js/graph/map.js +0 -85
- data/share/htdocs/js/graph/network.js +0 -591
- data/share/htdocs/js/graph/network2.js +0 -318
- data/share/htdocs/js/graph/pie_chart.js +0 -130
- data/share/htdocs/js/graph/table.js +0 -94
- data/share/htdocs/js/require2.js +0 -1998
- data/share/htdocs/js/timelines.js +0 -101
- data/share/htdocs/stylesheet/grid.css +0 -31
data/share/htdocs/css/table2.css
DELETED
|
@@ -1,191 +0,0 @@
|
|
|
1
|
-
/*
|
|
2
|
-
* Colour dictionary:
|
|
3
|
-
*
|
|
4
|
-
* Table control elements: #719ba7
|
|
5
|
-
* Header cells: #66A9BD
|
|
6
|
-
* Body header cells: #91c5d4
|
|
7
|
-
* Body content cells: #d5eaf0
|
|
8
|
-
* Body content cells (alt): #bcd9e1
|
|
9
|
-
* Footer header: #b0cc7f
|
|
10
|
-
* Footer content: #d7e1c5
|
|
11
|
-
*/
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
/*
|
|
15
|
-
* Page setup styles
|
|
16
|
-
*/
|
|
17
|
-
xxbody {
|
|
18
|
-
font: 80%/1.45em Arial, Verdana, Helvetica, sans-serif;
|
|
19
|
-
margin: 0;
|
|
20
|
-
padding: 0;
|
|
21
|
-
color: #111;
|
|
22
|
-
background-color: #fff;
|
|
23
|
-
}
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
/*
|
|
29
|
-
* DataTables framework
|
|
30
|
-
*/
|
|
31
|
-
div.dataTables_wrapper {
|
|
32
|
-
/*
|
|
33
|
-
background-color: #719ba7;
|
|
34
|
-
*/
|
|
35
|
-
font-size: 90%;
|
|
36
|
-
}
|
|
37
|
-
|
|
38
|
-
div.dataTables_length {
|
|
39
|
-
float: left;
|
|
40
|
-
}
|
|
41
|
-
|
|
42
|
-
div.dataTables_filter {
|
|
43
|
-
float: right;
|
|
44
|
-
}
|
|
45
|
-
|
|
46
|
-
div.dataTables_info {
|
|
47
|
-
padding: 9px 6px 6px 6px;
|
|
48
|
-
float: left;
|
|
49
|
-
}
|
|
50
|
-
|
|
51
|
-
div.dataTables_paginate {
|
|
52
|
-
float: right;
|
|
53
|
-
}
|
|
54
|
-
|
|
55
|
-
div.dataTables_length,
|
|
56
|
-
div.dataTables_filter,
|
|
57
|
-
div.dataTables_paginate {
|
|
58
|
-
padding: 6px;
|
|
59
|
-
}
|
|
60
|
-
|
|
61
|
-
/* Self clearing - http://www.webtoolkit.info/css-clearfix.html */
|
|
62
|
-
.dataTables_wrapper:after {
|
|
63
|
-
content: ".";
|
|
64
|
-
display: block;
|
|
65
|
-
clear: both;
|
|
66
|
-
visibility: hidden;
|
|
67
|
-
line-height: 0;
|
|
68
|
-
height: 0;
|
|
69
|
-
}
|
|
70
|
-
|
|
71
|
-
html[xmlns] .dataTables_wrapper {
|
|
72
|
-
display: block;
|
|
73
|
-
}
|
|
74
|
-
|
|
75
|
-
* html .dataTables_wrapper {
|
|
76
|
-
height: 1%;
|
|
77
|
-
}
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
/*
|
|
81
|
-
* Table styles
|
|
82
|
-
*/
|
|
83
|
-
table.oml_table {
|
|
84
|
-
width: 100%;
|
|
85
|
-
clear: both;
|
|
86
|
-
border: 2px solid #F2F5FF;
|
|
87
|
-
}
|
|
88
|
-
|
|
89
|
-
table.oml_table tbody {
|
|
90
|
-
//border-bottom: 3px solid #F2F5FF;
|
|
91
|
-
}
|
|
92
|
-
|
|
93
|
-
table.oml_table td,
|
|
94
|
-
table.oml_table th {
|
|
95
|
-
padding: 5px;
|
|
96
|
-
border: 1px solid #fff;
|
|
97
|
-
}
|
|
98
|
-
|
|
99
|
-
/* Header cells */
|
|
100
|
-
table.oml_table thead th {
|
|
101
|
-
text-align: center;
|
|
102
|
-
background: #66a9bd;
|
|
103
|
-
background: #99ccff;
|
|
104
|
-
font-size: 120%;
|
|
105
|
-
}
|
|
106
|
-
|
|
107
|
-
/* Body cells */
|
|
108
|
-
table.oml_table tbody th {
|
|
109
|
-
text-align: left;
|
|
110
|
-
background: #91c5d4;
|
|
111
|
-
}
|
|
112
|
-
|
|
113
|
-
table.oml_table tbody td {
|
|
114
|
-
text-align: center;
|
|
115
|
-
background: #d5eaf0;
|
|
116
|
-
background: white;
|
|
117
|
-
}
|
|
118
|
-
|
|
119
|
-
table.oml_table tbody tr.odd td {
|
|
120
|
-
background: #bcd9e1;
|
|
121
|
-
background: #f2f5ff;
|
|
122
|
-
}
|
|
123
|
-
|
|
124
|
-
/* Footer cells */
|
|
125
|
-
table.oml_table tfoot th {
|
|
126
|
-
background: #b0cc7f;
|
|
127
|
-
text-align: left;
|
|
128
|
-
}
|
|
129
|
-
|
|
130
|
-
table.oml_table tfoot td {
|
|
131
|
-
background: #d7e1c5;
|
|
132
|
-
text-align: center;
|
|
133
|
-
font-weight: bold;
|
|
134
|
-
}
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
/*
|
|
138
|
-
* Pagination
|
|
139
|
-
*/
|
|
140
|
-
span.paginate_button,
|
|
141
|
-
span.paginate_active {
|
|
142
|
-
display: inline-block;
|
|
143
|
-
//background-color: #608995;
|
|
144
|
-
//padding: 2px 6px;
|
|
145
|
-
//margin-left: 2px;
|
|
146
|
-
color: blue;
|
|
147
|
-
padding-left: 8px;
|
|
148
|
-
}
|
|
149
|
-
|
|
150
|
-
span.paginate_button {
|
|
151
|
-
cursor: pointer;
|
|
152
|
-
*cursor: hand;
|
|
153
|
-
}
|
|
154
|
-
|
|
155
|
-
span.paginate_button:hover {
|
|
156
|
-
text-decoration: underline;
|
|
157
|
-
}
|
|
158
|
-
|
|
159
|
-
span.paginate_active {
|
|
160
|
-
background-color: transparent;
|
|
161
|
-
//border: 1px solid black;
|
|
162
|
-
color: black;
|
|
163
|
-
font-weight: bold;
|
|
164
|
-
}
|
|
165
|
-
|
|
166
|
-
span.paginate_button_disabled {
|
|
167
|
-
color: #3d6672;
|
|
168
|
-
color: gray;
|
|
169
|
-
}
|
|
170
|
-
|
|
171
|
-
div.dataTables_paginate span>span {
|
|
172
|
-
//width: 15px;
|
|
173
|
-
text-align: center;
|
|
174
|
-
}
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
/*
|
|
178
|
-
* Sorting
|
|
179
|
-
*/
|
|
180
|
-
table.oml_table thead th.sorting_asc {
|
|
181
|
-
background: #66A9BD url('images/sort_asc.png') no-repeat right center;
|
|
182
|
-
background: #b2c8ff url('/resource/image/sort_asc.png') no-repeat right center;
|
|
183
|
-
}
|
|
184
|
-
|
|
185
|
-
table.oml_table thead th.sorting_desc {
|
|
186
|
-
background: #b2c8ff url('/resource/image/sort_desc.png') no-repeat right center;
|
|
187
|
-
}
|
|
188
|
-
|
|
189
|
-
table.oml_table thead th.sorting {
|
|
190
|
-
background: #c9d8ff url('/resource/image/sort_both.png') no-repeat right center;
|
|
191
|
-
}
|
|
@@ -1,103 +0,0 @@
|
|
|
1
|
-
|
|
2
|
-
h1.welcome {
|
|
3
|
-
margin-top: 1em;
|
|
4
|
-
font-size: large;
|
|
5
|
-
}
|
|
6
|
-
|
|
7
|
-
/******** LOGIN ********/
|
|
8
|
-
|
|
9
|
-
div.login {
|
|
10
|
-
/*
|
|
11
|
-
margin: 20px auto 20px auto;
|
|
12
|
-
*/
|
|
13
|
-
margin: 20px auto 20px 30px;
|
|
14
|
-
width: 22em;
|
|
15
|
-
|
|
16
|
-
border: 10px solid #ccc;
|
|
17
|
-
border: 1px solid blue;
|
|
18
|
-
padding: 15px 20px 10px 20px;
|
|
19
|
-
text-align: left;
|
|
20
|
-
background: #fff;
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
}
|
|
24
|
-
|
|
25
|
-
.login #Flash {
|
|
26
|
-
margin-top: 12px;
|
|
27
|
-
font-size: 12px;
|
|
28
|
-
}
|
|
29
|
-
|
|
30
|
-
.login div.Container {
|
|
31
|
-
width: 500px;
|
|
32
|
-
margin: 60px auto 20px auto;
|
|
33
|
-
min-width: inherit;
|
|
34
|
-
}
|
|
35
|
-
|
|
36
|
-
.login h1 {
|
|
37
|
-
margin-bottom: 20px;
|
|
38
|
-
}
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
.login dl {
|
|
42
|
-
margin: 10px 0 0 0;
|
|
43
|
-
}
|
|
44
|
-
|
|
45
|
-
.login p {
|
|
46
|
-
margin: 10px 0 0 0;
|
|
47
|
-
}
|
|
48
|
-
|
|
49
|
-
.login dt {
|
|
50
|
-
float: left;
|
|
51
|
-
width: 6em;
|
|
52
|
-
font-size: 14px;
|
|
53
|
-
line-height: 24px;
|
|
54
|
-
}
|
|
55
|
-
|
|
56
|
-
.login dd {
|
|
57
|
-
margin: 0 0 5px 8em;
|
|
58
|
-
font-size: 11px;
|
|
59
|
-
line-height: 24px;
|
|
60
|
-
color: #666;
|
|
61
|
-
/*
|
|
62
|
-
margin-left: 80px;
|
|
63
|
-
*/
|
|
64
|
-
}
|
|
65
|
-
|
|
66
|
-
.login input {
|
|
67
|
-
font-size: 14px;
|
|
68
|
-
}
|
|
69
|
-
|
|
70
|
-
.login dd span {
|
|
71
|
-
color: #ccc;
|
|
72
|
-
}
|
|
73
|
-
|
|
74
|
-
.login input#username {
|
|
75
|
-
width: 300px;
|
|
76
|
-
}
|
|
77
|
-
|
|
78
|
-
.login input#password {
|
|
79
|
-
width: 140px;
|
|
80
|
-
margin-right: 5px;
|
|
81
|
-
}
|
|
82
|
-
|
|
83
|
-
.login input#emailpassword {
|
|
84
|
-
vertical-align: middle;
|
|
85
|
-
margin-right: 5px;
|
|
86
|
-
}
|
|
87
|
-
|
|
88
|
-
.login div.AlertGood,
|
|
89
|
-
.login div.AlertBad {
|
|
90
|
-
margin: 10px 0 20px 0;
|
|
91
|
-
}
|
|
92
|
-
|
|
93
|
-
.login div#Dialog {
|
|
94
|
-
border: 10px solid #ccc;
|
|
95
|
-
padding: 15px 20px 10px 20px;
|
|
96
|
-
text-align: left;
|
|
97
|
-
background: #fff;
|
|
98
|
-
}
|
|
99
|
-
|
|
100
|
-
body.login div#Dialog h2 {
|
|
101
|
-
margin: 0;
|
|
102
|
-
padding: 0;
|
|
103
|
-
}
|
data/share/htdocs/css/wfob.css
DELETED
|
@@ -1,171 +0,0 @@
|
|
|
1
|
-
/*
|
|
2
|
-
* Wairoa Form Builder
|
|
3
|
-
*/
|
|
4
|
-
|
|
5
|
-
ul.wfob {
|
|
6
|
-
font-size:small;
|
|
7
|
-
list-style-type:none;
|
|
8
|
-
margin:0pt;
|
|
9
|
-
padding:10pt;
|
|
10
|
-
width:auto;
|
|
11
|
-
}
|
|
12
|
-
|
|
13
|
-
ul.wfob li {
|
|
14
|
-
width:97%;
|
|
15
|
-
/*
|
|
16
|
-
width:62%; with descriptions
|
|
17
|
-
*/
|
|
18
|
-
display:block;
|
|
19
|
-
margin:0pt;
|
|
20
|
-
padding: 0px 5px 2px 0px;
|
|
21
|
-
position:relative;
|
|
22
|
-
overflow: auto;
|
|
23
|
-
}
|
|
24
|
-
|
|
25
|
-
ul.wfob li.focused {
|
|
26
|
-
background-color: #FFF7C0;
|
|
27
|
-
}
|
|
28
|
-
|
|
29
|
-
ul.wfob ul.rec_array {
|
|
30
|
-
padding-left: 0pt;
|
|
31
|
-
}
|
|
32
|
-
|
|
33
|
-
ul.wfob label.desc {
|
|
34
|
-
color:#444444;
|
|
35
|
-
font-family:inherit;
|
|
36
|
-
font-size:95%;
|
|
37
|
-
border:medium none;
|
|
38
|
-
display:block;
|
|
39
|
-
font-weight:bold;
|
|
40
|
-
line-height:150%;
|
|
41
|
-
padding:0pt 0pt 1px;
|
|
42
|
-
}
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
ul.wfob li div,
|
|
46
|
-
ul.wfob li span {
|
|
47
|
-
color:#444444;
|
|
48
|
-
margin:0pt 4px 0pt 0pt;
|
|
49
|
-
padding:0pt 0pt 8px;
|
|
50
|
-
height: auto;
|
|
51
|
-
}
|
|
52
|
-
|
|
53
|
-
ul.wfob li span {
|
|
54
|
-
float:left;
|
|
55
|
-
}
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
ul.wfob li div.fleft {
|
|
59
|
-
display:inline;
|
|
60
|
-
float:left;
|
|
61
|
-
width:48%;
|
|
62
|
-
}
|
|
63
|
-
|
|
64
|
-
ul.wfob li div.fright {
|
|
65
|
-
display:inline;
|
|
66
|
-
float:right;
|
|
67
|
-
width:48%;
|
|
68
|
-
padding-right:0px;
|
|
69
|
-
margin-right:0px;
|
|
70
|
-
}
|
|
71
|
-
|
|
72
|
-
ul.wfob li div {
|
|
73
|
-
overflow: auto;
|
|
74
|
-
}
|
|
75
|
-
|
|
76
|
-
ul.wfob li div,
|
|
77
|
-
ul.wfob li div label,
|
|
78
|
-
ul.wfob li span label {
|
|
79
|
-
color:#444444;
|
|
80
|
-
font-family:inherit;
|
|
81
|
-
}
|
|
82
|
-
|
|
83
|
-
ul.wfob li div label,
|
|
84
|
-
ul.wfob li span label {
|
|
85
|
-
clear:both;
|
|
86
|
-
display:block;
|
|
87
|
-
font-size:9px;
|
|
88
|
-
line-height:9px;
|
|
89
|
-
margin:0pt;
|
|
90
|
-
padding-top:3px;
|
|
91
|
-
}
|
|
92
|
-
|
|
93
|
-
ul.wfob li input.large,
|
|
94
|
-
ul.wfob li input.medium {
|
|
95
|
-
width: 100%;
|
|
96
|
-
}
|
|
97
|
-
|
|
98
|
-
/******** ERROR ***********/
|
|
99
|
-
|
|
100
|
-
ul.wfob li.error,
|
|
101
|
-
ul.wfob li div.error {
|
|
102
|
-
background-color:#FFDFDF !important;
|
|
103
|
-
border-bottom:1px solid #EACBCC;
|
|
104
|
-
border-right:1px solid #EACBCC;
|
|
105
|
-
margin:3px 0pt;
|
|
106
|
-
padding: 5px;
|
|
107
|
-
}
|
|
108
|
-
|
|
109
|
-
ul.wfob p.error {
|
|
110
|
-
clear:both;
|
|
111
|
-
color:red;
|
|
112
|
-
font-size:10px;
|
|
113
|
-
font-weight:bold;
|
|
114
|
-
margin:0pt 0pt 5px 0px;
|
|
115
|
-
}
|
|
116
|
-
|
|
117
|
-
/******** SECTION **********/
|
|
118
|
-
|
|
119
|
-
ul.wfob li.section {
|
|
120
|
-
padding-left:9px;
|
|
121
|
-
border-top:1px solid #CCCCCC;
|
|
122
|
-
border-left:5px solid #CCCCCC;
|
|
123
|
-
/*
|
|
124
|
-
margin-left: -9px;
|
|
125
|
-
*/
|
|
126
|
-
margin-top:9px;
|
|
127
|
-
padding-bottom:5px;
|
|
128
|
-
margin-bottom:10px;
|
|
129
|
-
padding-top:13px;
|
|
130
|
-
width:97% !important;
|
|
131
|
-
}
|
|
132
|
-
|
|
133
|
-
ul.wfob li.first_section {
|
|
134
|
-
border-top:0px;
|
|
135
|
-
}
|
|
136
|
-
|
|
137
|
-
ul.wfob li.section h3 {
|
|
138
|
-
background:#FFFFFF none repeat scroll 0%;
|
|
139
|
-
color:#000000;
|
|
140
|
-
font-family:inherit;
|
|
141
|
-
font-size:110%;
|
|
142
|
-
font-weight:normal;
|
|
143
|
-
font-weight: bold;
|
|
144
|
-
line-height:130%;
|
|
145
|
-
margin:0pt 0pt 2px;
|
|
146
|
-
}
|
|
147
|
-
|
|
148
|
-
ul.wfob li.section p {
|
|
149
|
-
color:#444444;
|
|
150
|
-
font-family:inherit;
|
|
151
|
-
font-size:85%;
|
|
152
|
-
margin:0pt 0pt 10px;
|
|
153
|
-
}
|
|
154
|
-
|
|
155
|
-
/******* INSTRUCTIONS *********/
|
|
156
|
-
|
|
157
|
-
ul.wfob li p.instruct {
|
|
158
|
-
background:#F5F5F5 none repeat scroll 0%;
|
|
159
|
-
border:1px solid #E6E6E6;
|
|
160
|
-
color:#444444;
|
|
161
|
-
font-size:80%;
|
|
162
|
-
left:100%;
|
|
163
|
-
line-height:130%;
|
|
164
|
-
margin:0pt 0pt 0pt 8px;
|
|
165
|
-
padding:8px 10px 9px;
|
|
166
|
-
position:absolute;
|
|
167
|
-
top:0pt;
|
|
168
|
-
width:42%;
|
|
169
|
-
z-index:1000;
|
|
170
|
-
visibility: hidden;
|
|
171
|
-
}
|
data/share/htdocs/css/wshow.css
DELETED
|
@@ -1,69 +0,0 @@
|
|
|
1
|
-
/*
|
|
2
|
-
* Wairoa Show Builder
|
|
3
|
-
*/
|
|
4
|
-
|
|
5
|
-
table.wshow {
|
|
6
|
-
width:100%;
|
|
7
|
-
}
|
|
8
|
-
|
|
9
|
-
table.wshow td.label {
|
|
10
|
-
color:#000000;
|
|
11
|
-
font-family:"verdana","Arial","Helvetica",sans-serif;
|
|
12
|
-
font-family:"Lucida Grande",arial,sans-serif;
|
|
13
|
-
font-size:10pt;
|
|
14
|
-
font-style:normal;
|
|
15
|
-
font-weight: normal;
|
|
16
|
-
padding:3px;
|
|
17
|
-
padding-right:10px;
|
|
18
|
-
text-align:right;
|
|
19
|
-
text-decoration:none;
|
|
20
|
-
vertical-align:bottom;
|
|
21
|
-
white-space:nowrap;
|
|
22
|
-
width: 10em;
|
|
23
|
-
}
|
|
24
|
-
|
|
25
|
-
table.wshow td.value {
|
|
26
|
-
color:#000000;
|
|
27
|
-
font-family:"verdana","Arial","Helvetica",sans-serif;
|
|
28
|
-
font-family:"Lucida Grande",arial,sans-serif;
|
|
29
|
-
font-size:12pt;
|
|
30
|
-
font-style: normal;
|
|
31
|
-
font-weight: bold;
|
|
32
|
-
padding-left:3px;
|
|
33
|
-
text-align:left;
|
|
34
|
-
text-decoration:none;
|
|
35
|
-
vertical-align:top;
|
|
36
|
-
vertical-align: bottom;
|
|
37
|
-
}
|
|
38
|
-
|
|
39
|
-
table.wshow td.value span.undefined{
|
|
40
|
-
font-style:oblique;
|
|
41
|
-
font-weight:normal;
|
|
42
|
-
font-size:11pt;
|
|
43
|
-
}
|
|
44
|
-
|
|
45
|
-
/***** SECTION ***********/
|
|
46
|
-
|
|
47
|
-
div.wshow div.section {
|
|
48
|
-
border-bottom:1px solid #CEDFFF;
|
|
49
|
-
margin-bottom:8px;
|
|
50
|
-
margin-top:12px;
|
|
51
|
-
width:97% !important;
|
|
52
|
-
}
|
|
53
|
-
|
|
54
|
-
div.wshow div.first_section {
|
|
55
|
-
border-top:0px;
|
|
56
|
-
}
|
|
57
|
-
|
|
58
|
-
div.wshow div.section h3 {
|
|
59
|
-
background:#FFFFFF none repeat scroll 0%;
|
|
60
|
-
color:#000000;
|
|
61
|
-
color:#555;
|
|
62
|
-
font-family:inherit;
|
|
63
|
-
font-size:100%;
|
|
64
|
-
font-weight:normal;
|
|
65
|
-
font-weight: bold;
|
|
66
|
-
line-height:130%;
|
|
67
|
-
margin:0pt 0pt 2px;
|
|
68
|
-
}
|
|
69
|
-
|
data/share/htdocs/gec9_demo.html
DELETED
|
@@ -1,39 +0,0 @@
|
|
|
1
|
-
<html>
|
|
2
|
-
<head>
|
|
3
|
-
<title>Parknet</title>
|
|
4
|
-
<script type="text/javascript">
|
|
5
|
-
|
|
6
|
-
var tabs = [
|
|
7
|
-
'/code/show',
|
|
8
|
-
'/graph3/show?id=1',
|
|
9
|
-
'/graph3/show?id=3',
|
|
10
|
-
'/graph3/show?id=4'
|
|
11
|
-
];
|
|
12
|
-
|
|
13
|
-
var delay = 10000; /* milliseconds - vary as desired */
|
|
14
|
-
var executionTimer;
|
|
15
|
-
var tab_index = 0;
|
|
16
|
-
|
|
17
|
-
function next_tab() {
|
|
18
|
-
if (executionTimer) {
|
|
19
|
-
clearTimeout(executionTimer);
|
|
20
|
-
}
|
|
21
|
-
|
|
22
|
-
tab_index += 1;
|
|
23
|
-
if (tab_index >= tabs.length) {
|
|
24
|
-
tab_index = 0;
|
|
25
|
-
}
|
|
26
|
-
var i = tab_index;
|
|
27
|
-
var url = tabs[tab_index];
|
|
28
|
-
executionTimer = setTimeout(function() {
|
|
29
|
-
parent.main_frame.location = url;
|
|
30
|
-
}, delay);
|
|
31
|
-
};
|
|
32
|
-
</script>
|
|
33
|
-
</head>
|
|
34
|
-
<frameset cols="100%,*">
|
|
35
|
-
<frame src="/code/show" name="main_frame" onLoad="next_tab();">
|
|
36
|
-
</frameset>
|
|
37
|
-
<body bgcolor="#FFFF00">
|
|
38
|
-
</body>
|
|
39
|
-
</html>
|
data/share/htdocs/images
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
image
|