coupler 0.0.1-java
Sign up to get free protection for your applications and to get access to all the features.
- data/.document +5 -0
- data/.gitmodules +3 -0
- data/.rvmrc +1 -0
- data/.vimrc +40 -0
- data/Gemfile +27 -0
- data/Gemfile.lock +71 -0
- data/LICENSE +20 -0
- data/NOTES +6 -0
- data/README.rdoc +18 -0
- data/Rakefile +42 -0
- data/TODO +11 -0
- data/VERSION +1 -0
- data/bin/coupler +7 -0
- data/db/.gitignore +6 -0
- data/db/migrate/001_initial_schema.rb +166 -0
- data/db/migrate/002_stub.rb +4 -0
- data/db/migrate/003_stub.rb +4 -0
- data/db/migrate/004_create_comparisons.rb +28 -0
- data/db/migrate/005_move_database_name.rb +19 -0
- data/db/migrate/006_upgrade_comparisons.rb +34 -0
- data/db/migrate/007_add_which_to_comparisons.rb +23 -0
- data/db/migrate/008_add_result_field_to_transformations.rb +33 -0
- data/db/migrate/009_add_generated_flag_to_fields.rb +13 -0
- data/db/migrate/010_create_imports.rb +24 -0
- data/db/migrate/011_add_primary_key_type.rb +13 -0
- data/db/migrate/012_add_transformed_with_to_resources.rb +13 -0
- data/db/migrate/013_add_run_count_to_scenarios.rb +13 -0
- data/db/migrate/014_add_last_accessed_at_to_some_tables.rb +13 -0
- data/db/migrate/015_add_run_number_to_results.rb +15 -0
- data/db/migrate/016_fix_scenario_run_count.rb +27 -0
- data/db/migrate/017_rename_comparison_columns.rb +14 -0
- data/db/migrate/018_fix_scenario_linkage_type.rb +8 -0
- data/db/migrate/019_add_columns_to_imports.rb +24 -0
- data/db/migrate/020_rename_import_columns.rb +12 -0
- data/db/migrate/021_add_fields_to_connections.rb +15 -0
- data/db/migrate/022_remove_database_name_from_resources.rb +11 -0
- data/features/connections.feature +28 -0
- data/features/matchers.feature +35 -0
- data/features/projects.feature +11 -0
- data/features/resources.feature +62 -0
- data/features/scenarios.feature +45 -0
- data/features/step_definitions/coupler_steps.rb +145 -0
- data/features/step_definitions/matchers_steps.rb +26 -0
- data/features/step_definitions/resources_steps.rb +12 -0
- data/features/step_definitions/scenarios_steps.rb +7 -0
- data/features/step_definitions/transformations_steps.rb +3 -0
- data/features/support/env.rb +128 -0
- data/features/transformations.feature +22 -0
- data/features/wizard.feature +10 -0
- data/gfx/coupler-header.svg +213 -0
- data/gfx/coupler-sidebar.svg +656 -0
- data/gfx/coupler.svg +184 -0
- data/gfx/icon.svg +75 -0
- data/lib/coupler/base.rb +63 -0
- data/lib/coupler/config.rb +128 -0
- data/lib/coupler/data_uploader.rb +20 -0
- data/lib/coupler/database.rb +31 -0
- data/lib/coupler/extensions/connections.rb +57 -0
- data/lib/coupler/extensions/exceptions.rb +58 -0
- data/lib/coupler/extensions/imports.rb +43 -0
- data/lib/coupler/extensions/jobs.rb +21 -0
- data/lib/coupler/extensions/matchers.rb +64 -0
- data/lib/coupler/extensions/projects.rb +62 -0
- data/lib/coupler/extensions/resources.rb +89 -0
- data/lib/coupler/extensions/results.rb +100 -0
- data/lib/coupler/extensions/scenarios.rb +50 -0
- data/lib/coupler/extensions/transformations.rb +70 -0
- data/lib/coupler/extensions/transformers.rb +58 -0
- data/lib/coupler/extensions.rb +16 -0
- data/lib/coupler/helpers.rb +121 -0
- data/lib/coupler/import_buffer.rb +48 -0
- data/lib/coupler/logger.rb +16 -0
- data/lib/coupler/models/common_model.rb +104 -0
- data/lib/coupler/models/comparison.rb +166 -0
- data/lib/coupler/models/connection.rb +59 -0
- data/lib/coupler/models/field.rb +55 -0
- data/lib/coupler/models/import.rb +238 -0
- data/lib/coupler/models/job.rb +42 -0
- data/lib/coupler/models/jobify.rb +17 -0
- data/lib/coupler/models/matcher.rb +36 -0
- data/lib/coupler/models/project.rb +40 -0
- data/lib/coupler/models/resource.rb +287 -0
- data/lib/coupler/models/result.rb +92 -0
- data/lib/coupler/models/scenario/runner.rb +357 -0
- data/lib/coupler/models/scenario.rb +115 -0
- data/lib/coupler/models/transformation.rb +117 -0
- data/lib/coupler/models/transformer/runner.rb +28 -0
- data/lib/coupler/models/transformer.rb +110 -0
- data/lib/coupler/models.rb +30 -0
- data/lib/coupler/runner.rb +76 -0
- data/lib/coupler/scheduler.rb +56 -0
- data/lib/coupler.rb +34 -0
- data/log/.gitignore +1 -0
- data/misc/README +5 -0
- data/misc/jruby-json.license +57 -0
- data/misc/rack-flash.license +22 -0
- data/script/dbconsole.rb +5 -0
- data/src/edu/vanderbilt/coupler/Main.java +116 -0
- data/src/edu/vanderbilt/coupler/jruby.properties +1 -0
- data/tasks/annotations.rake +84 -0
- data/tasks/db.rake +120 -0
- data/tasks/environment.rake +12 -0
- data/tasks/jeweler.rake +43 -0
- data/tasks/package.rake +58 -0
- data/tasks/rdoc.rake +13 -0
- data/tasks/test.rake +63 -0
- data/tasks/vendor.rake +43 -0
- data/test/README.txt +6 -0
- data/test/config.yml +9 -0
- data/test/coupler/models/test_import.rb +221 -0
- data/test/factories.rb +91 -0
- data/test/fixtures/duplicate-keys.csv +5 -0
- data/test/fixtures/no-headers.csv +50 -0
- data/test/fixtures/people.csv +51 -0
- data/test/fixtures/varying-row-size.csv +4 -0
- data/test/helper.rb +156 -0
- data/test/integration/extensions/test_connections.rb +80 -0
- data/test/integration/extensions/test_imports.rb +94 -0
- data/test/integration/extensions/test_jobs.rb +52 -0
- data/test/integration/extensions/test_matchers.rb +134 -0
- data/test/integration/extensions/test_projects.rb +82 -0
- data/test/integration/extensions/test_resources.rb +150 -0
- data/test/integration/extensions/test_results.rb +89 -0
- data/test/integration/extensions/test_scenarios.rb +88 -0
- data/test/integration/extensions/test_transformations.rb +113 -0
- data/test/integration/extensions/test_transformers.rb +80 -0
- data/test/integration/test_field.rb +45 -0
- data/test/integration/test_import.rb +78 -0
- data/test/integration/test_running_scenarios.rb +379 -0
- data/test/integration/test_transformation.rb +56 -0
- data/test/integration/test_transforming.rb +154 -0
- data/test/table_sets.rb +76 -0
- data/test/unit/models/test_common_model.rb +130 -0
- data/test/unit/models/test_comparison.rb +619 -0
- data/test/unit/models/test_connection.rb +115 -0
- data/test/unit/models/test_field.rb +99 -0
- data/test/unit/models/test_import.rb +130 -0
- data/test/unit/models/test_job.rb +115 -0
- data/test/unit/models/test_matcher.rb +82 -0
- data/test/unit/models/test_project.rb +102 -0
- data/test/unit/models/test_resource.rb +564 -0
- data/test/unit/models/test_result.rb +90 -0
- data/test/unit/models/test_scenario.rb +199 -0
- data/test/unit/models/test_transformation.rb +193 -0
- data/test/unit/models/test_transformer.rb +188 -0
- data/test/unit/test_base.rb +60 -0
- data/test/unit/test_data_uploader.rb +27 -0
- data/test/unit/test_database.rb +23 -0
- data/test/unit/test_helpers.rb +58 -0
- data/test/unit/test_logger.rb +10 -0
- data/test/unit/test_models.rb +12 -0
- data/test/unit/test_runner.rb +76 -0
- data/test/unit/test_scheduler.rb +66 -0
- data/uploads/.gitignore +2 -0
- data/vendor/java/.gitignore +5 -0
- data/webroot/public/css/960.css +1 -0
- data/webroot/public/css/dataTables.css +1057 -0
- data/webroot/public/css/jquery-ui.css +572 -0
- data/webroot/public/css/jquery.treeview.css +68 -0
- data/webroot/public/css/reset.css +1 -0
- data/webroot/public/css/style.css +504 -0
- data/webroot/public/css/text.css +1 -0
- data/webroot/public/favicon.ico +0 -0
- data/webroot/public/images/12_col.gif +0 -0
- data/webroot/public/images/16_col.gif +0 -0
- data/webroot/public/images/add.png +0 -0
- data/webroot/public/images/ajax-loader.gif +0 -0
- data/webroot/public/images/cog.png +0 -0
- data/webroot/public/images/coupler.png +0 -0
- data/webroot/public/images/foo.png +0 -0
- data/webroot/public/images/hammer.png +0 -0
- data/webroot/public/images/header.png +0 -0
- data/webroot/public/images/home.gif +0 -0
- data/webroot/public/images/jobs.gif +0 -0
- data/webroot/public/images/sidebar-bottom.png +0 -0
- data/webroot/public/images/sidebar.png +0 -0
- data/webroot/public/images/treeview-default-line.gif +0 -0
- data/webroot/public/images/treeview-default.gif +0 -0
- data/webroot/public/images/ui-anim_basic_16x16.gif +0 -0
- data/webroot/public/images/ui-bg_flat_0_aaaaaa_40x100.png +0 -0
- data/webroot/public/images/ui-bg_flat_75_ffffff_40x100.png +0 -0
- data/webroot/public/images/ui-bg_glass_55_fbf9ee_1x400.png +0 -0
- data/webroot/public/images/ui-bg_glass_65_ffffff_1x400.png +0 -0
- data/webroot/public/images/ui-bg_glass_75_dadada_1x400.png +0 -0
- data/webroot/public/images/ui-bg_glass_75_e6e6e6_1x400.png +0 -0
- data/webroot/public/images/ui-bg_glass_95_fef1ec_1x400.png +0 -0
- data/webroot/public/images/ui-bg_highlight-hard_30_565356_1x100.png +0 -0
- data/webroot/public/images/ui-bg_highlight-hard_75_888588_1x100.png +0 -0
- data/webroot/public/images/ui-bg_highlight-soft_30_6e3b3a_1x100.png +0 -0
- data/webroot/public/images/ui-bg_highlight-soft_35_8e8b8e_1x100.png +0 -0
- data/webroot/public/images/ui-bg_highlight-soft_75_cccccc_1x100.png +0 -0
- data/webroot/public/images/ui-icons_222222_256x240.png +0 -0
- data/webroot/public/images/ui-icons_2e83ff_256x240.png +0 -0
- data/webroot/public/images/ui-icons_454545_256x240.png +0 -0
- data/webroot/public/images/ui-icons_888888_256x240.png +0 -0
- data/webroot/public/images/ui-icons_cd0a0a_256x240.png +0 -0
- data/webroot/public/images/ui-icons_ffffff_256x240.png +0 -0
- data/webroot/public/js/ajaxupload.js +673 -0
- data/webroot/public/js/application.js +40 -0
- data/webroot/public/js/jquery-ui.combobox.js +98 -0
- data/webroot/public/js/jquery-ui.js +9867 -0
- data/webroot/public/js/jquery-ui.min.js +559 -0
- data/webroot/public/js/jquery.dataTables.min.js +587 -0
- data/webroot/public/js/jquery.min.js +154 -0
- data/webroot/public/js/jquery.timeago.js +140 -0
- data/webroot/public/js/jquery.tooltip.min.js +19 -0
- data/webroot/public/js/jquery.treeview.min.js +15 -0
- data/webroot/public/js/resource.js +11 -0
- data/webroot/public/js/results.js +56 -0
- data/webroot/public/js/transformations.js +95 -0
- data/webroot/views/connections/index.erb +5 -0
- data/webroot/views/connections/list.erb +34 -0
- data/webroot/views/connections/new.erb +55 -0
- data/webroot/views/connections/show.erb +36 -0
- data/webroot/views/imports/edit.erb +60 -0
- data/webroot/views/imports/form.erb +81 -0
- data/webroot/views/imports/new.erb +89 -0
- data/webroot/views/index.erb +12 -0
- data/webroot/views/jobs/index.erb +7 -0
- data/webroot/views/jobs/list.erb +24 -0
- data/webroot/views/layout.erb +38 -0
- data/webroot/views/matchers/form.erb +250 -0
- data/webroot/views/matchers/list.erb +32 -0
- data/webroot/views/projects/form.erb +14 -0
- data/webroot/views/projects/index.erb +96 -0
- data/webroot/views/projects/show.erb +24 -0
- data/webroot/views/resources/edit.erb +88 -0
- data/webroot/views/resources/index.erb +5 -0
- data/webroot/views/resources/list.erb +27 -0
- data/webroot/views/resources/new.erb +121 -0
- data/webroot/views/resources/show.erb +86 -0
- data/webroot/views/resources/transform.erb +2 -0
- data/webroot/views/results/csv.erb +12 -0
- data/webroot/views/results/details.erb +15 -0
- data/webroot/views/results/index.erb +2 -0
- data/webroot/views/results/list.erb +22 -0
- data/webroot/views/results/record.erb +24 -0
- data/webroot/views/results/show.erb +68 -0
- data/webroot/views/scenarios/index.erb +5 -0
- data/webroot/views/scenarios/list.erb +20 -0
- data/webroot/views/scenarios/new.erb +99 -0
- data/webroot/views/scenarios/run.erb +2 -0
- data/webroot/views/scenarios/show.erb +50 -0
- data/webroot/views/sidebar.erb +106 -0
- data/webroot/views/transformations/create.erb +115 -0
- data/webroot/views/transformations/for.erb +16 -0
- data/webroot/views/transformations/index.erb +2 -0
- data/webroot/views/transformations/list.erb +29 -0
- data/webroot/views/transformations/new.erb +126 -0
- data/webroot/views/transformations/preview.erb +46 -0
- data/webroot/views/transformers/edit.erb +6 -0
- data/webroot/views/transformers/form.erb +58 -0
- data/webroot/views/transformers/index.erb +2 -0
- data/webroot/views/transformers/list.erb +25 -0
- data/webroot/views/transformers/new.erb +5 -0
- data/webroot/views/transformers/preview.erb +23 -0
- data/webroot/views/transformers/show.erb +0 -0
- metadata +558 -0
@@ -0,0 +1,504 @@
|
|
1
|
+
body {
|
2
|
+
background: #555;
|
3
|
+
font-family: verdana, arial, helvetica, sans-serif;
|
4
|
+
}
|
5
|
+
|
6
|
+
#main {
|
7
|
+
position: relative;
|
8
|
+
margin-top: 2em;
|
9
|
+
margin-bottom: 2em;
|
10
|
+
background: white url(/images/sidebar.png) left repeat-y;
|
11
|
+
-webkit-border-radius: 10px;
|
12
|
+
-moz-border-radius: 10px;
|
13
|
+
}
|
14
|
+
|
15
|
+
#sidebar {
|
16
|
+
color: white;
|
17
|
+
background-color: #383538;
|
18
|
+
position: relative;
|
19
|
+
}
|
20
|
+
#sidebar .accordion {
|
21
|
+
margin-top: 1em;
|
22
|
+
width: 150px;
|
23
|
+
}
|
24
|
+
#sidebar .accordion h3 {
|
25
|
+
margin-top: 3px;
|
26
|
+
font-family: verdana, arial, helvetica, sans-serif;
|
27
|
+
}
|
28
|
+
#sidebar .accordion h3.ui-state-active a {
|
29
|
+
text-shadow: 1px 1px 1px black;
|
30
|
+
}
|
31
|
+
#sidebar .accordion .ui-accordion-content {
|
32
|
+
background: #8e8b8e;
|
33
|
+
border-color: black;
|
34
|
+
padding: 0 5px 5px 5px;
|
35
|
+
color: white;
|
36
|
+
overflow: hidden;
|
37
|
+
}
|
38
|
+
#sidebar .accordion ul {
|
39
|
+
padding: 0;
|
40
|
+
margin: 5px 0 0 0;
|
41
|
+
list-style-type: none;
|
42
|
+
}
|
43
|
+
#sidebar .accordion ul.accordion-top {
|
44
|
+
margin-top: 0;
|
45
|
+
}
|
46
|
+
#sidebar .accordion ul li {
|
47
|
+
padding: 3px 3px 3px 20px;
|
48
|
+
margin: 0;
|
49
|
+
-webkit-border-radius: 4px;
|
50
|
+
-moz-border-radius: 4px;
|
51
|
+
}
|
52
|
+
#sidebar .accordion ul li.alt {
|
53
|
+
background: #7e7b7e;
|
54
|
+
}
|
55
|
+
#sidebar .accordion ul li .ui-icon {
|
56
|
+
float: left;
|
57
|
+
margin-left: -19px;
|
58
|
+
}
|
59
|
+
#sidebar .accordion ul li a,
|
60
|
+
#sidebar .accordion ul li a:visited {
|
61
|
+
color: white;
|
62
|
+
text-decoration: none;
|
63
|
+
}
|
64
|
+
#sidebar .accordion ul li a:hover {
|
65
|
+
text-decoration: underline;
|
66
|
+
}
|
67
|
+
#sidebar .accordion ul.buttons {
|
68
|
+
margin: 5px 0 2px 0;
|
69
|
+
padding: 0;
|
70
|
+
list-style-type: none;
|
71
|
+
}
|
72
|
+
#sidebar .accordion ul.buttons li {
|
73
|
+
display: inline;
|
74
|
+
padding: 0;
|
75
|
+
}
|
76
|
+
#sidebar .accordion ul.buttons li button .ui-button-icon-primary {
|
77
|
+
left: 3px;
|
78
|
+
margin-left: 0;
|
79
|
+
}
|
80
|
+
#sidebar .accordion ul.buttons li button .ui-button-text {
|
81
|
+
padding: 2px 6px 2px 23px;
|
82
|
+
}
|
83
|
+
#sidebar .accordion ul li.current-project {
|
84
|
+
background: #cecbce;
|
85
|
+
}
|
86
|
+
#sidebar .accordion ul li.current-project ul li.alt {
|
87
|
+
background: #aeabae;
|
88
|
+
}
|
89
|
+
#sidebar .accordion ul li.current-project a {
|
90
|
+
color: black;
|
91
|
+
}
|
92
|
+
#about {
|
93
|
+
position: absolute;
|
94
|
+
bottom: 0;
|
95
|
+
width: 180px;
|
96
|
+
height: 375px;
|
97
|
+
background: url(/images/sidebar-bottom.png) left bottom no-repeat;
|
98
|
+
z-index: 100;
|
99
|
+
-webkit-border-bottom-left-radius: 5px;
|
100
|
+
-moz-border-radius-bottomleft: 5px;
|
101
|
+
}
|
102
|
+
#about .text {
|
103
|
+
position: absolute;
|
104
|
+
bottom: 0px;
|
105
|
+
padding: 10px 12px 20px 2px;
|
106
|
+
font-size: smaller;
|
107
|
+
text-shadow: 0px 1px 1px black;
|
108
|
+
text-align: center;
|
109
|
+
vertical-align: bottom;
|
110
|
+
color: white;
|
111
|
+
}
|
112
|
+
#about a,
|
113
|
+
#about a:visited {
|
114
|
+
color: white;
|
115
|
+
text-decoration: underline;
|
116
|
+
}
|
117
|
+
|
118
|
+
#content {
|
119
|
+
background: transparent url(/images/coupler.png) repeat-y;
|
120
|
+
background-position: 95% 50%;
|
121
|
+
-webkit-border-radius: 5px;
|
122
|
+
-moz-border-radius: 5px;
|
123
|
+
min-height: 750px;
|
124
|
+
}
|
125
|
+
|
126
|
+
#breadcrumbs {
|
127
|
+
position: relative;
|
128
|
+
color: white;
|
129
|
+
margin: 1em 0;
|
130
|
+
background: url(../images/header.png) no-repeat;
|
131
|
+
height: 33px;
|
132
|
+
padding: 5px 0 0 15px;
|
133
|
+
}
|
134
|
+
#breadcrumbs .crumb {
|
135
|
+
float: left;
|
136
|
+
font-family: 'Trebuchet MS', 'Tahoma', sans-serif;
|
137
|
+
font-size: 1.4em;
|
138
|
+
font-weight: normal;
|
139
|
+
margin-right: 0.5em;
|
140
|
+
}
|
141
|
+
#breadcrumbs .crumb a {
|
142
|
+
color: white;
|
143
|
+
text-decoration: none;
|
144
|
+
}
|
145
|
+
#breadcrumbs .crumb a:hover {
|
146
|
+
color: #ddd;
|
147
|
+
}
|
148
|
+
|
149
|
+
#notice {
|
150
|
+
-webkit-border-radius: 5px;
|
151
|
+
-moz-border-radius: 5px;
|
152
|
+
padding: 1em;
|
153
|
+
background-color: green;
|
154
|
+
color: white;
|
155
|
+
margin-bottom: 1em;
|
156
|
+
text-align: center;
|
157
|
+
}
|
158
|
+
#notice a,
|
159
|
+
#notice a:visited {
|
160
|
+
color: white;
|
161
|
+
}
|
162
|
+
#notice.error {
|
163
|
+
background-color: #8B0000;
|
164
|
+
}
|
165
|
+
|
166
|
+
#tooltip {
|
167
|
+
}
|
168
|
+
|
169
|
+
.errors {
|
170
|
+
-webkit-border-radius: 5px;
|
171
|
+
-moz-border-radius: 5px;
|
172
|
+
border: 2px solid red;
|
173
|
+
background: #eee;
|
174
|
+
float: left;
|
175
|
+
margin-bottom: 1em;
|
176
|
+
}
|
177
|
+
.errors h3 {
|
178
|
+
font-size: 1.1em;
|
179
|
+
background-color: red;
|
180
|
+
color: white;
|
181
|
+
margin: 0;
|
182
|
+
padding: 0.3em;
|
183
|
+
border: 0;
|
184
|
+
}
|
185
|
+
.errors ul {
|
186
|
+
padding: 0.5em;
|
187
|
+
margin-bottom: 0;
|
188
|
+
list-style-type: square;
|
189
|
+
}
|
190
|
+
.errors li {
|
191
|
+
margin-left: 1.5em;
|
192
|
+
}
|
193
|
+
|
194
|
+
h1, h2, h3 {
|
195
|
+
font-weight: normal;
|
196
|
+
font-family: 'Trebuchet MS', 'Tahoma', sans-serif;
|
197
|
+
}
|
198
|
+
h1 {
|
199
|
+
border-bottom: 2px solid black;
|
200
|
+
}
|
201
|
+
h2 {
|
202
|
+
font-size: 1.4em;
|
203
|
+
border-bottom: 1px solid #aaa;
|
204
|
+
}
|
205
|
+
h3 {
|
206
|
+
font-size: 1.3em;
|
207
|
+
border-bottom: 1px dashed #bbb;
|
208
|
+
}
|
209
|
+
|
210
|
+
a, .ui-widget-content a {
|
211
|
+
color: #AE3B3A;
|
212
|
+
}
|
213
|
+
a:visited {
|
214
|
+
color: #AE3B3A;
|
215
|
+
}
|
216
|
+
|
217
|
+
/*label {*/
|
218
|
+
/*font-weight: bold;*/
|
219
|
+
/*}*/
|
220
|
+
|
221
|
+
.inner {
|
222
|
+
padding: 10px;
|
223
|
+
}
|
224
|
+
|
225
|
+
table.form td {
|
226
|
+
padding: 0.3em 0 0.3em 1em;
|
227
|
+
}
|
228
|
+
table.form td.left {
|
229
|
+
vertical-align: top;
|
230
|
+
padding: 0.3em 1em;
|
231
|
+
}
|
232
|
+
table.form th.header {
|
233
|
+
text-align: left;
|
234
|
+
border-bottom: 1px solid #eee;
|
235
|
+
}
|
236
|
+
|
237
|
+
table.list th {
|
238
|
+
border-bottom: 2px solid gray;
|
239
|
+
padding: 0.2em 0.5em;
|
240
|
+
}
|
241
|
+
table.list td {
|
242
|
+
padding: 0.5em;
|
243
|
+
}
|
244
|
+
table.list td .ui-icon {
|
245
|
+
position: relative;
|
246
|
+
top: 3px;
|
247
|
+
}
|
248
|
+
table.list img {
|
249
|
+
vertical-align: middle;
|
250
|
+
}
|
251
|
+
|
252
|
+
table.show td {
|
253
|
+
padding: 3px;
|
254
|
+
padding-left: 6px;
|
255
|
+
}
|
256
|
+
table.show td.col1 {
|
257
|
+
text-align: right;
|
258
|
+
border-right: 2px solid gray;
|
259
|
+
font-weight: bold;
|
260
|
+
padding-right: 6px;
|
261
|
+
}
|
262
|
+
table.show.no-border td.col1 {
|
263
|
+
border: 0;
|
264
|
+
}
|
265
|
+
|
266
|
+
tr.alt td {
|
267
|
+
background-color: #ddd;
|
268
|
+
}
|
269
|
+
tr.lightalt td {
|
270
|
+
background-color: #eee;
|
271
|
+
}
|
272
|
+
tr.yellow td {
|
273
|
+
background-color: #FFFF66;
|
274
|
+
}
|
275
|
+
tr.yellow.alt td {
|
276
|
+
background-color: #eeee55;
|
277
|
+
}
|
278
|
+
tr.green td {
|
279
|
+
background-color: green;
|
280
|
+
}
|
281
|
+
tr.strikethrough td {
|
282
|
+
text-decoration: line-through;
|
283
|
+
color: gray;
|
284
|
+
background-color: lightgray;
|
285
|
+
}
|
286
|
+
|
287
|
+
/*
|
288
|
+
input, select, textarea {
|
289
|
+
border: 1px solid gray;
|
290
|
+
}
|
291
|
+
*/
|
292
|
+
|
293
|
+
.section {
|
294
|
+
padding: 0 0 0 1.5em;
|
295
|
+
margin: 1em 0;
|
296
|
+
overflow: auto;
|
297
|
+
}
|
298
|
+
.section.visible-overflow {
|
299
|
+
overflow: visible;
|
300
|
+
}
|
301
|
+
|
302
|
+
.ui-dialog-content p,
|
303
|
+
.ui-dialog-content table {
|
304
|
+
margin-bottom: 0;
|
305
|
+
}
|
306
|
+
|
307
|
+
.t12n-count { display: inline; }
|
308
|
+
.pointer { cursor: pointer; }
|
309
|
+
.inline { display: inline; }
|
310
|
+
.strong { font-weight: bold; }
|
311
|
+
.centered { text-align: center; }
|
312
|
+
.hidden { display: none; }
|
313
|
+
div.p { margin-bottom: 20px; }
|
314
|
+
|
315
|
+
span.sup { font-size: smaller; vertical-align: super; }
|
316
|
+
|
317
|
+
.altered-field { color: green; font-weight: bold; }
|
318
|
+
|
319
|
+
#progressbar {
|
320
|
+
float: left;
|
321
|
+
width: 300px;
|
322
|
+
height: 25px;
|
323
|
+
}
|
324
|
+
#progressbar-info {
|
325
|
+
padding-left: 10px;
|
326
|
+
}
|
327
|
+
#progressbar-spinner {
|
328
|
+
float: left;
|
329
|
+
padding-top: 4px;
|
330
|
+
padding-left: 10px;
|
331
|
+
}
|
332
|
+
|
333
|
+
ul.projects {
|
334
|
+
list-style-type: none;
|
335
|
+
margin: 0;
|
336
|
+
padding: 0;
|
337
|
+
}
|
338
|
+
ul.projects li.project {
|
339
|
+
margin: 0 0 1em 1em;
|
340
|
+
float: left;
|
341
|
+
width: 160px;
|
342
|
+
position: relative;
|
343
|
+
}
|
344
|
+
ul.projects li.project .tooltip {
|
345
|
+
position: absolute;
|
346
|
+
height: 133px;
|
347
|
+
width: 125px;
|
348
|
+
top: 0;
|
349
|
+
right: 0;
|
350
|
+
background-color: #AE3B3A;
|
351
|
+
color: white;
|
352
|
+
overflow: auto;
|
353
|
+
}
|
354
|
+
ul.projects li.project .tooltip h3 {
|
355
|
+
font-size: 1.1em;
|
356
|
+
font-weight: normal;
|
357
|
+
margin: 2px 5px 0px 5px;
|
358
|
+
border-bottom: 1px dotted #ccc;
|
359
|
+
}
|
360
|
+
ul.projects li.project .tooltip .description {
|
361
|
+
padding: 5px;
|
362
|
+
font-size: 0.9em;
|
363
|
+
line-height: normal;
|
364
|
+
}
|
365
|
+
ul.projects li.project .header {
|
366
|
+
padding: 2px 5px;
|
367
|
+
white-space: nowrap;
|
368
|
+
overflow: hidden;
|
369
|
+
text-overflow: ellipsis;
|
370
|
+
position: relative;
|
371
|
+
}
|
372
|
+
ul.projects li.project .header a {
|
373
|
+
text-decoration: none;
|
374
|
+
color: white;
|
375
|
+
}
|
376
|
+
ul.projects li.project .content {
|
377
|
+
height: 90px;
|
378
|
+
padding: 0.5em;
|
379
|
+
position: relative;
|
380
|
+
background: #eee;
|
381
|
+
}
|
382
|
+
ul.projects li.project .content div.description {
|
383
|
+
line-height: 18px;
|
384
|
+
max-height: 54px;
|
385
|
+
overflow: auto;
|
386
|
+
}
|
387
|
+
ul.projects li.project .content div.buttons {
|
388
|
+
margin: 2px 0 2px 0;
|
389
|
+
padding: 0;
|
390
|
+
text-align: center;
|
391
|
+
position: absolute;
|
392
|
+
bottom: 0;
|
393
|
+
}
|
394
|
+
ul.projects li.project .content div.buttons button .ui-button-icon-primary {
|
395
|
+
left: 3px;
|
396
|
+
margin-left: 0;
|
397
|
+
}
|
398
|
+
ul.projects li.project .content div.buttons button .ui-button-text {
|
399
|
+
padding: 2px 6px 2px 23px;
|
400
|
+
}
|
401
|
+
ul.projects li.project .content ul {
|
402
|
+
list-style-type: none;
|
403
|
+
margin: 2px 0 0 8px;
|
404
|
+
padding: 0;
|
405
|
+
}
|
406
|
+
ul.projects li.project .content ul li {
|
407
|
+
margin: 0;
|
408
|
+
padding: 2px;
|
409
|
+
}
|
410
|
+
ul.projects li.project .content ul li .ui-icon {
|
411
|
+
float: left;
|
412
|
+
margin: 3px 5px 0 0;
|
413
|
+
}
|
414
|
+
|
415
|
+
table.summary tr {
|
416
|
+
cursor: pointer;
|
417
|
+
}
|
418
|
+
|
419
|
+
.sup {
|
420
|
+
font-size: 75%;
|
421
|
+
vertical-align: super;
|
422
|
+
display: inline;
|
423
|
+
}
|
424
|
+
|
425
|
+
#result-tabs {
|
426
|
+
font-size: 1em;
|
427
|
+
}
|
428
|
+
#group-details {
|
429
|
+
}
|
430
|
+
.result-group {
|
431
|
+
float: left;
|
432
|
+
}
|
433
|
+
.result-group .row-1 {
|
434
|
+
background-color: #eee;
|
435
|
+
}
|
436
|
+
.result-group .column-name {
|
437
|
+
clear: left;
|
438
|
+
float: left;
|
439
|
+
width: 100px;
|
440
|
+
padding: 5px;
|
441
|
+
border-right: 1px solid #333;
|
442
|
+
text-align: right;
|
443
|
+
overflow: hidden;
|
444
|
+
text-overflow: ellipsis;
|
445
|
+
white-space: nowrap;
|
446
|
+
position: relative;
|
447
|
+
}
|
448
|
+
.result-group .column-value {
|
449
|
+
float: left;
|
450
|
+
width: 200px;
|
451
|
+
padding: 5px;
|
452
|
+
overflow: hidden;
|
453
|
+
text-overflow: ellipsis;
|
454
|
+
white-space: nowrap;
|
455
|
+
position: relative;
|
456
|
+
}
|
457
|
+
.result-group .column-header {
|
458
|
+
background: #888;
|
459
|
+
color: white;
|
460
|
+
text-align: center;
|
461
|
+
position: relative;
|
462
|
+
}
|
463
|
+
.result-group .resize-handle {
|
464
|
+
position: absolute;
|
465
|
+
font-size: 0.1px;
|
466
|
+
z-index: 99999;
|
467
|
+
display: block;
|
468
|
+
cursor: e-resize;
|
469
|
+
width: 10px;
|
470
|
+
right: -5px;
|
471
|
+
top: 0;
|
472
|
+
height: 100%;
|
473
|
+
}
|
474
|
+
.result-group-left .column-value {
|
475
|
+
border-right: 2px solid #333;
|
476
|
+
}
|
477
|
+
.result-group-left .column-header.column-name {
|
478
|
+
-moz-border-radius-topleft: 4px;
|
479
|
+
-webkit-border-top-left-radius: 4px;
|
480
|
+
border-top-left-radius: 4px;
|
481
|
+
}
|
482
|
+
.result-group-right .column-header.column-value {
|
483
|
+
-moz-border-radius-topright: 4px;
|
484
|
+
-webkit-border-top-right-radius: 4px;
|
485
|
+
border-top-right-radius: 4px;
|
486
|
+
}
|
487
|
+
.result-group .record-navigation {
|
488
|
+
border-top: 1px solid #333;
|
489
|
+
padding: 5px;
|
490
|
+
position: relative;
|
491
|
+
}
|
492
|
+
.result-group .record-navigation .previous-record {
|
493
|
+
position: absolute;
|
494
|
+
right: 25px;
|
495
|
+
top: 7px;
|
496
|
+
}
|
497
|
+
.result-group .record-navigation .next-record {
|
498
|
+
position: absolute;
|
499
|
+
right: 5px;
|
500
|
+
top: 7px;
|
501
|
+
}
|
502
|
+
.result-group-left .record-navigation {
|
503
|
+
border-right: 2px solid #333;
|
504
|
+
}
|
@@ -0,0 +1 @@
|
|
1
|
+
body{font:13px/1.5 'Helvetica Neue',Arial,'Liberation Sans',FreeSans,sans-serif}a:focus{outline:1px dotted}hr{border:0 #ccc solid;border-top-width:1px;clear:both;height:0}h1{font-size:25px}h2{font-size:23px}h3{font-size:21px}h4{font-size:19px}h5{font-size:17px}h6{font-size:15px}ol{list-style:decimal}ul{list-style:disc}li{margin-left:30px}p,dl,hr,h1,h2,h3,h4,h5,h6,ol,ul,pre,table,address,fieldset{margin-bottom:20px}
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|