wukong 3.0.0.pre → 3.0.0.pre2
Sign up to get free protection for your applications and to get access to all the features.
- data/.gitignore +46 -33
- data/.gitmodules +3 -0
- data/.rspec +1 -1
- data/.travis.yml +8 -1
- data/.yardopts +0 -13
- data/Guardfile +4 -6
- data/{LICENSE.textile → LICENSE.md} +43 -55
- data/README-old.md +422 -0
- data/README.md +279 -418
- data/Rakefile +21 -5
- data/TODO.md +6 -6
- data/bin/wu-clean-encoding +31 -0
- data/bin/wu-lign +2 -2
- data/bin/wu-local +69 -0
- data/bin/wu-server +70 -0
- data/examples/Gemfile +38 -0
- data/examples/README.md +9 -0
- data/examples/dataflow/apache_log_line.rb +64 -25
- data/examples/dataflow/fibonacci_series.rb +101 -0
- data/examples/dataflow/parse_apache_logs.rb +37 -7
- data/examples/{dataflow.rb → dataflow/scraper_macro_flow.rb} +0 -0
- data/examples/dataflow/simple.rb +4 -4
- data/examples/geo.rb +4 -0
- data/examples/geo/geo_grids.numbers +0 -0
- data/examples/geo/geolocated.rb +331 -0
- data/examples/geo/quadtile.rb +69 -0
- data/examples/geo/spec/geolocated_spec.rb +247 -0
- data/examples/geo/tile_fetcher.rb +77 -0
- data/examples/graph/minimum_spanning_tree.rb +61 -61
- data/examples/jabberwocky.txt +36 -0
- data/examples/models/wikipedia.rb +20 -0
- data/examples/munging/Gemfile +8 -0
- data/examples/munging/airline_flights/airline.rb +57 -0
- data/examples/munging/airline_flights/airline_flights.rake +83 -0
- data/{lib/wukong/settings.rb → examples/munging/airline_flights/airplane.rb} +0 -0
- data/examples/munging/airline_flights/airport.rb +211 -0
- data/examples/munging/airline_flights/airport_id_unification.rb +129 -0
- data/examples/munging/airline_flights/airport_ok_chars.rb +4 -0
- data/examples/munging/airline_flights/flight.rb +156 -0
- data/examples/munging/airline_flights/models.rb +4 -0
- data/examples/munging/airline_flights/parse.rb +26 -0
- data/examples/munging/airline_flights/reconcile_airports.rb +142 -0
- data/examples/munging/airline_flights/route.rb +35 -0
- data/examples/munging/airline_flights/tasks.rake +83 -0
- data/examples/munging/airline_flights/timezone_fixup.rb +62 -0
- data/examples/munging/airline_flights/topcities.rb +167 -0
- data/examples/munging/airports/40_wbans.txt +40 -0
- data/examples/munging/airports/filter_weather_reports.rb +37 -0
- data/examples/munging/airports/join.pig +31 -0
- data/examples/munging/airports/to_tsv.rb +33 -0
- data/examples/munging/airports/usa_wbans.pig +19 -0
- data/examples/munging/airports/usa_wbans.txt +2157 -0
- data/examples/munging/airports/wbans.pig +19 -0
- data/examples/munging/airports/wbans.txt +2310 -0
- data/examples/munging/geo/geo_json.rb +54 -0
- data/examples/munging/geo/geo_models.rb +69 -0
- data/examples/munging/geo/geonames_models.rb +78 -0
- data/examples/munging/geo/iso_codes.rb +172 -0
- data/examples/munging/geo/reconcile_countries.rb +124 -0
- data/examples/munging/geo/tasks.rake +71 -0
- data/examples/munging/rake_helper.rb +62 -0
- data/examples/munging/weather/.gitignore +1 -0
- data/examples/munging/weather/Gemfile +4 -0
- data/examples/munging/weather/Rakefile +28 -0
- data/examples/munging/weather/extract_ish.rb +13 -0
- data/examples/munging/weather/models/weather.rb +119 -0
- data/examples/munging/weather/utils/noaa_downloader.rb +46 -0
- data/examples/munging/wikipedia/README.md +34 -0
- data/examples/munging/wikipedia/Rakefile +193 -0
- data/examples/munging/wikipedia/articles/extract_articles-parsed.rb +79 -0
- data/examples/munging/wikipedia/articles/extract_articles-templated.rb +136 -0
- data/examples/munging/wikipedia/articles/textualize_articles.rb +54 -0
- data/examples/munging/wikipedia/articles/verify_structure.rb +43 -0
- data/examples/munging/wikipedia/articles/wp2txt-LICENSE.txt +22 -0
- data/examples/munging/wikipedia/articles/wp2txt_article.rb +259 -0
- data/examples/munging/wikipedia/articles/wp2txt_utils.rb +452 -0
- data/examples/munging/wikipedia/dbpedia/dbpedia_common.rb +4 -0
- data/examples/munging/wikipedia/dbpedia/dbpedia_extract_geocoordinates.rb +78 -0
- data/examples/munging/wikipedia/dbpedia/extract_links.rb +193 -0
- data/examples/munging/wikipedia/dbpedia/sameas_extractor.rb +20 -0
- data/examples/munging/wikipedia/n1_subuniverse/n1_nodes.pig +18 -0
- data/examples/munging/wikipedia/page_metadata/extract_page_metadata.rb +21 -0
- data/examples/munging/wikipedia/page_metadata/extract_page_metadata.rb.old +27 -0
- data/examples/munging/wikipedia/pagelinks/augment_pagelinks.pig +29 -0
- data/examples/munging/wikipedia/pagelinks/extract_pagelinks.rb +14 -0
- data/examples/munging/wikipedia/pagelinks/extract_pagelinks.rb.old +25 -0
- data/examples/munging/wikipedia/pagelinks/undirect_pagelinks.pig +29 -0
- data/examples/munging/wikipedia/pageviews/augment_pageviews.pig +32 -0
- data/examples/munging/wikipedia/pageviews/extract_pageviews.rb +85 -0
- data/examples/munging/wikipedia/pig_style_guide.md +25 -0
- data/examples/munging/wikipedia/redirects/redirects_page_metadata.pig +19 -0
- data/examples/munging/wikipedia/subuniverse/sub_articles.pig +23 -0
- data/examples/munging/wikipedia/subuniverse/sub_page_metadata.pig +24 -0
- data/examples/munging/wikipedia/subuniverse/sub_pagelinks_from.pig +22 -0
- data/examples/munging/wikipedia/subuniverse/sub_pagelinks_into.pig +22 -0
- data/examples/munging/wikipedia/subuniverse/sub_pagelinks_within.pig +26 -0
- data/examples/munging/wikipedia/subuniverse/sub_pageviews.pig +29 -0
- data/examples/munging/wikipedia/subuniverse/sub_undirected_pagelinks_within.pig +24 -0
- data/examples/munging/wikipedia/utils/get_namespaces.rb +86 -0
- data/examples/munging/wikipedia/utils/munging_utils.rb +68 -0
- data/examples/munging/wikipedia/utils/namespaces.json +1 -0
- data/examples/rake_helper.rb +85 -0
- data/examples/server_logs/geo_ip_mapping/munge_geolite.rb +82 -0
- data/examples/server_logs/logline.rb +95 -0
- data/examples/server_logs/models.rb +66 -0
- data/examples/server_logs/page_counts.pig +48 -0
- data/examples/server_logs/server_logs-01-parse-script.rb +13 -0
- data/examples/server_logs/server_logs-02-histograms-full.rb +33 -0
- data/examples/server_logs/server_logs-02-histograms-mapper.rb +14 -0
- data/{old/examples/server_logs/breadcrumbs.rb → examples/server_logs/server_logs-03-breadcrumbs-full.rb} +26 -30
- data/examples/server_logs/server_logs-04-page_page_edges-full.rb +40 -0
- data/examples/string_reverser.rb +26 -0
- data/examples/text/pig_latin.rb +2 -2
- data/examples/text/regional_flavor/README.md +14 -0
- data/examples/text/regional_flavor/article_wordbags.pig +39 -0
- data/examples/text/regional_flavor/j01-article_wordbags.rb +4 -0
- data/examples/text/regional_flavor/simple_pig_script.pig +27 -0
- data/examples/word_count/accumulator.rb +26 -0
- data/examples/word_count/tokenizer.rb +13 -0
- data/examples/word_count/word_count.rb +6 -0
- data/examples/workflow/cherry_pie.dot +97 -0
- data/examples/workflow/cherry_pie.png +0 -0
- data/examples/workflow/cherry_pie.rb +61 -26
- data/lib/hanuman.rb +34 -7
- data/lib/hanuman/graph.rb +55 -31
- data/lib/hanuman/graphvizzer.rb +199 -178
- data/lib/hanuman/graphvizzer/gv_models.rb +161 -0
- data/lib/hanuman/graphvizzer/gv_presenter.rb +97 -0
- data/lib/hanuman/link.rb +35 -0
- data/lib/hanuman/registry.rb +46 -0
- data/lib/hanuman/stage.rb +76 -32
- data/lib/wukong.rb +23 -24
- data/lib/wukong/boot.rb +87 -0
- data/lib/wukong/configuration.rb +8 -0
- data/lib/wukong/dataflow.rb +45 -78
- data/lib/wukong/driver.rb +99 -0
- data/lib/wukong/emitter.rb +22 -0
- data/lib/wukong/model/faker.rb +24 -24
- data/lib/wukong/model/flatpack_parser/flat.rb +60 -0
- data/lib/wukong/model/flatpack_parser/flatpack.rb +4 -0
- data/lib/wukong/model/flatpack_parser/lang.rb +46 -0
- data/lib/wukong/model/flatpack_parser/parser.rb +55 -0
- data/lib/wukong/model/flatpack_parser/tokens.rb +130 -0
- data/lib/wukong/processor.rb +60 -114
- data/lib/wukong/spec_helpers.rb +81 -0
- data/lib/wukong/spec_helpers/integration_driver.rb +144 -0
- data/lib/wukong/spec_helpers/integration_driver_matchers.rb +219 -0
- data/lib/wukong/spec_helpers/processor_helpers.rb +95 -0
- data/lib/wukong/spec_helpers/processor_methods.rb +108 -0
- data/lib/wukong/spec_helpers/shared_examples.rb +15 -0
- data/lib/wukong/spec_helpers/spec_driver.rb +28 -0
- data/lib/wukong/spec_helpers/spec_driver_matchers.rb +195 -0
- data/lib/wukong/version.rb +2 -1
- data/lib/wukong/widget/filters.rb +311 -0
- data/lib/wukong/widget/processors.rb +156 -0
- data/lib/wukong/widget/reducers.rb +7 -0
- data/lib/wukong/widget/reducers/accumulator.rb +73 -0
- data/lib/wukong/widget/reducers/bin.rb +318 -0
- data/lib/wukong/widget/reducers/count.rb +61 -0
- data/lib/wukong/widget/reducers/group.rb +85 -0
- data/lib/wukong/widget/reducers/group_concat.rb +70 -0
- data/lib/wukong/widget/reducers/moments.rb +72 -0
- data/lib/wukong/widget/reducers/sort.rb +130 -0
- data/lib/wukong/widget/serializers.rb +287 -0
- data/lib/wukong/widget/sink.rb +10 -52
- data/lib/wukong/widget/source.rb +7 -113
- data/lib/wukong/widget/utils.rb +46 -0
- data/lib/wukong/widgets.rb +6 -0
- data/spec/examples/dataflow/fibonacci_series_spec.rb +18 -0
- data/spec/examples/dataflow/parsing_spec.rb +12 -11
- data/spec/examples/dataflow/simple_spec.rb +32 -6
- data/spec/examples/dataflow/telegram_spec.rb +36 -36
- data/spec/examples/graph/minimum_spanning_tree_spec.rb +30 -31
- data/spec/examples/munging/airline_flights/identifiers_spec.rb +16 -0
- data/spec/examples/munging/airline_flights_spec.rb +202 -0
- data/spec/examples/text/pig_latin_spec.rb +13 -16
- data/spec/examples/workflow/cherry_pie_spec.rb +34 -4
- data/spec/hanuman/graph_spec.rb +27 -2
- data/spec/hanuman/hanuman_spec.rb +10 -0
- data/spec/hanuman/registry_spec.rb +123 -0
- data/spec/hanuman/stage_spec.rb +61 -7
- data/spec/spec_helper.rb +29 -19
- data/spec/support/hanuman_test_helpers.rb +14 -12
- data/spec/support/shared_context_for_reducers.rb +37 -0
- data/spec/support/shared_examples_for_builders.rb +101 -0
- data/spec/support/shared_examples_for_shortcuts.rb +57 -0
- data/spec/support/wukong_test_helpers.rb +37 -11
- data/spec/wukong/dataflow_spec.rb +77 -55
- data/spec/wukong/local_runner_spec.rb +24 -24
- data/spec/wukong/model/faker_spec.rb +132 -131
- data/spec/wukong/runner_spec.rb +8 -8
- data/spec/wukong/widget/filters_spec.rb +61 -0
- data/spec/wukong/widget/processors_spec.rb +126 -0
- data/spec/wukong/widget/reducers/bin_spec.rb +92 -0
- data/spec/wukong/widget/reducers/count_spec.rb +11 -0
- data/spec/wukong/widget/reducers/group_spec.rb +20 -0
- data/spec/wukong/widget/reducers/moments_spec.rb +36 -0
- data/spec/wukong/widget/reducers/sort_spec.rb +26 -0
- data/spec/wukong/widget/serializers_spec.rb +92 -0
- data/spec/wukong/widget/sink_spec.rb +15 -15
- data/spec/wukong/widget/source_spec.rb +65 -41
- data/spec/wukong/wukong_spec.rb +10 -0
- data/wukong.gemspec +17 -10
- metadata +359 -335
- data/.document +0 -5
- data/VERSION +0 -1
- data/bin/hdp-bin +0 -44
- data/bin/hdp-bzip +0 -23
- data/bin/hdp-cat +0 -3
- data/bin/hdp-catd +0 -3
- data/bin/hdp-cp +0 -3
- data/bin/hdp-du +0 -86
- data/bin/hdp-get +0 -3
- data/bin/hdp-kill +0 -3
- data/bin/hdp-kill-task +0 -3
- data/bin/hdp-ls +0 -11
- data/bin/hdp-mkdir +0 -2
- data/bin/hdp-mkdirp +0 -12
- data/bin/hdp-mv +0 -3
- data/bin/hdp-parts_to_keys.rb +0 -77
- data/bin/hdp-ps +0 -3
- data/bin/hdp-put +0 -3
- data/bin/hdp-rm +0 -32
- data/bin/hdp-sort +0 -40
- data/bin/hdp-stream +0 -40
- data/bin/hdp-stream-flat +0 -22
- data/bin/hdp-stream2 +0 -39
- data/bin/hdp-sync +0 -17
- data/bin/hdp-wc +0 -67
- data/bin/wu-flow +0 -10
- data/bin/wu-map +0 -17
- data/bin/wu-red +0 -17
- data/bin/wukong +0 -17
- data/data/CREDITS.md +0 -355
- data/data/graph/airfares.tsv +0 -2174
- data/data/text/gift_of_the_magi.txt +0 -225
- data/data/text/jabberwocky.txt +0 -36
- data/data/text/rectification_of_names.txt +0 -33
- data/data/twitter/a_atsigns_b.tsv +0 -64
- data/data/twitter/a_follows_b.tsv +0 -53
- data/data/twitter/tweet.tsv +0 -167
- data/data/twitter/twitter_user.tsv +0 -55
- data/data/wikipedia/dbpedia-sentences.tsv +0 -1000
- data/docpages/INSTALL.textile +0 -92
- data/docpages/LICENSE.textile +0 -107
- data/docpages/README-elastic_map_reduce.textile +0 -377
- data/docpages/README-performance.textile +0 -90
- data/docpages/README-wulign.textile +0 -65
- data/docpages/UsingWukong-part1-get_ready.textile +0 -17
- data/docpages/UsingWukong-part2-ThinkingBigData.textile +0 -75
- data/docpages/UsingWukong-part3-parsing.textile +0 -138
- data/docpages/_config.yml +0 -39
- data/docpages/avro/avro_notes.textile +0 -56
- data/docpages/avro/performance.textile +0 -36
- data/docpages/avro/tethering.textile +0 -19
- data/docpages/bigdata-tips.textile +0 -143
- data/docpages/code/api_response_example.txt +0 -20
- data/docpages/code/parser_skeleton.rb +0 -38
- data/docpages/diagrams/MapReduceDiagram.graffle +0 -0
- data/docpages/favicon.ico +0 -0
- data/docpages/gem.css +0 -16
- data/docpages/hadoop-tips.textile +0 -83
- data/docpages/index.textile +0 -92
- data/docpages/intro.textile +0 -8
- data/docpages/moreinfo.textile +0 -174
- data/docpages/news.html +0 -24
- data/docpages/pig/PigLatinExpressionsList.txt +0 -122
- data/docpages/pig/PigLatinReferenceManual.txt +0 -1640
- data/docpages/pig/commandline_params.txt +0 -26
- data/docpages/pig/cookbook.html +0 -481
- data/docpages/pig/images/hadoop-logo.jpg +0 -0
- data/docpages/pig/images/instruction_arrow.png +0 -0
- data/docpages/pig/images/pig-logo.gif +0 -0
- data/docpages/pig/piglatin_ref1.html +0 -1103
- data/docpages/pig/piglatin_ref2.html +0 -14340
- data/docpages/pig/setup.html +0 -505
- data/docpages/pig/skin/basic.css +0 -166
- data/docpages/pig/skin/breadcrumbs.js +0 -237
- data/docpages/pig/skin/fontsize.js +0 -166
- data/docpages/pig/skin/getBlank.js +0 -40
- data/docpages/pig/skin/getMenu.js +0 -45
- data/docpages/pig/skin/images/chapter.gif +0 -0
- data/docpages/pig/skin/images/chapter_open.gif +0 -0
- data/docpages/pig/skin/images/current.gif +0 -0
- data/docpages/pig/skin/images/external-link.gif +0 -0
- data/docpages/pig/skin/images/header_white_line.gif +0 -0
- data/docpages/pig/skin/images/page.gif +0 -0
- data/docpages/pig/skin/images/pdfdoc.gif +0 -0
- data/docpages/pig/skin/images/rc-b-l-15-1body-2menu-3menu.png +0 -0
- data/docpages/pig/skin/images/rc-b-r-15-1body-2menu-3menu.png +0 -0
- data/docpages/pig/skin/images/rc-b-r-5-1header-2tab-selected-3tab-selected.png +0 -0
- data/docpages/pig/skin/images/rc-t-l-5-1header-2searchbox-3searchbox.png +0 -0
- data/docpages/pig/skin/images/rc-t-l-5-1header-2tab-selected-3tab-selected.png +0 -0
- data/docpages/pig/skin/images/rc-t-l-5-1header-2tab-unselected-3tab-unselected.png +0 -0
- data/docpages/pig/skin/images/rc-t-r-15-1body-2menu-3menu.png +0 -0
- data/docpages/pig/skin/images/rc-t-r-5-1header-2searchbox-3searchbox.png +0 -0
- data/docpages/pig/skin/images/rc-t-r-5-1header-2tab-selected-3tab-selected.png +0 -0
- data/docpages/pig/skin/images/rc-t-r-5-1header-2tab-unselected-3tab-unselected.png +0 -0
- data/docpages/pig/skin/print.css +0 -54
- data/docpages/pig/skin/profile.css +0 -181
- data/docpages/pig/skin/screen.css +0 -587
- data/docpages/pig/tutorial.html +0 -1059
- data/docpages/pig/udf.html +0 -1509
- data/docpages/tutorial.textile +0 -283
- data/docpages/usage.textile +0 -195
- data/docpages/wutils.textile +0 -263
- data/examples/dataflow/complex.rb +0 -11
- data/examples/dataflow/donuts.rb +0 -13
- data/examples/tiny_count/jabberwocky_output.tsv +0 -92
- data/examples/word_count.rb +0 -48
- data/examples/workflow/fiddle.rb +0 -24
- data/lib/away/escapement.rb +0 -129
- data/lib/away/exe.rb +0 -11
- data/lib/away/experimental.rb +0 -5
- data/lib/away/from_file.rb +0 -52
- data/lib/away/job.rb +0 -56
- data/lib/away/job/rake_compat.rb +0 -17
- data/lib/away/registry.rb +0 -79
- data/lib/away/runner.rb +0 -276
- data/lib/away/runner/execute.rb +0 -121
- data/lib/away/script.rb +0 -161
- data/lib/away/script/hadoop_command.rb +0 -240
- data/lib/away/source/file_list_source.rb +0 -15
- data/lib/away/source/looper.rb +0 -18
- data/lib/away/task.rb +0 -219
- data/lib/hanuman/action.rb +0 -21
- data/lib/hanuman/chain.rb +0 -4
- data/lib/hanuman/graphviz.rb +0 -74
- data/lib/hanuman/resource.rb +0 -6
- data/lib/hanuman/slot.rb +0 -87
- data/lib/hanuman/slottable.rb +0 -220
- data/lib/wukong/bad_record.rb +0 -15
- data/lib/wukong/event.rb +0 -44
- data/lib/wukong/local_runner.rb +0 -55
- data/lib/wukong/mapred.rb +0 -3
- data/lib/wukong/universe.rb +0 -48
- data/lib/wukong/widget/filter.rb +0 -81
- data/lib/wukong/widget/gibberish.rb +0 -123
- data/lib/wukong/widget/monitor.rb +0 -26
- data/lib/wukong/widget/reducer.rb +0 -66
- data/lib/wukong/widget/stringifier.rb +0 -50
- data/lib/wukong/workflow.rb +0 -22
- data/lib/wukong/workflow/command.rb +0 -42
- data/old/config/emr-example.yaml +0 -48
- data/old/examples/README.txt +0 -17
- data/old/examples/contrib/jeans/README.markdown +0 -165
- data/old/examples/contrib/jeans/data/normalized_sizes +0 -3
- data/old/examples/contrib/jeans/data/orders.tsv +0 -1302
- data/old/examples/contrib/jeans/data/sizes +0 -3
- data/old/examples/contrib/jeans/normalize.rb +0 -20
- data/old/examples/contrib/jeans/sizes.rb +0 -55
- data/old/examples/corpus/bnc_word_freq.rb +0 -44
- data/old/examples/corpus/bucket_counter.rb +0 -47
- data/old/examples/corpus/dbpedia_abstract_to_sentences.rb +0 -86
- data/old/examples/corpus/sentence_bigrams.rb +0 -53
- data/old/examples/corpus/sentence_coocurrence.rb +0 -66
- data/old/examples/corpus/stopwords.rb +0 -138
- data/old/examples/corpus/words_to_bigrams.rb +0 -53
- data/old/examples/emr/README.textile +0 -110
- data/old/examples/emr/dot_wukong_dir/credentials.json +0 -7
- data/old/examples/emr/dot_wukong_dir/emr.yaml +0 -69
- data/old/examples/emr/dot_wukong_dir/emr_bootstrap.sh +0 -33
- data/old/examples/emr/elastic_mapreduce_example.rb +0 -28
- data/old/examples/network_graph/adjacency_list.rb +0 -74
- data/old/examples/network_graph/breadth_first_search.rb +0 -72
- data/old/examples/network_graph/gen_2paths.rb +0 -68
- data/old/examples/network_graph/gen_multi_edge.rb +0 -112
- data/old/examples/network_graph/gen_symmetric_links.rb +0 -64
- data/old/examples/pagerank/README.textile +0 -6
- data/old/examples/pagerank/gen_initial_pagerank_graph.pig +0 -57
- data/old/examples/pagerank/pagerank.rb +0 -72
- data/old/examples/pagerank/pagerank_initialize.rb +0 -42
- data/old/examples/pagerank/run_pagerank.sh +0 -21
- data/old/examples/sample_records.rb +0 -33
- data/old/examples/server_logs/apache_log_parser.rb +0 -15
- data/old/examples/server_logs/nook.rb +0 -48
- data/old/examples/server_logs/nook/faraday_dummy_adapter.rb +0 -94
- data/old/examples/server_logs/user_agent.rb +0 -40
- data/old/examples/simple_word_count.rb +0 -82
- data/old/examples/size.rb +0 -61
- data/old/examples/stats/avg_value_frequency.rb +0 -86
- data/old/examples/stats/binning_percentile_estimator.rb +0 -140
- data/old/examples/stats/data/avg_value_frequency.tsv +0 -3
- data/old/examples/stats/rank_and_bin.rb +0 -173
- data/old/examples/stupidly_simple_filter.rb +0 -40
- data/old/examples/word_count.rb +0 -75
- data/old/graph/graphviz_builder.rb +0 -580
- data/old/graph_easy/Attributes.pm +0 -4181
- data/old/graph_easy/Graphviz.pm +0 -2232
- data/old/wukong.rb +0 -18
- data/old/wukong/and_pig.rb +0 -38
- data/old/wukong/bad_record.rb +0 -18
- data/old/wukong/datatypes.rb +0 -24
- data/old/wukong/datatypes/enum.rb +0 -127
- data/old/wukong/datatypes/fake_types.rb +0 -17
- data/old/wukong/decorator.rb +0 -28
- data/old/wukong/encoding/asciize.rb +0 -108
- data/old/wukong/extensions.rb +0 -16
- data/old/wukong/extensions/array.rb +0 -18
- data/old/wukong/extensions/blank.rb +0 -93
- data/old/wukong/extensions/class.rb +0 -189
- data/old/wukong/extensions/date_time.rb +0 -53
- data/old/wukong/extensions/emittable.rb +0 -69
- data/old/wukong/extensions/enumerable.rb +0 -79
- data/old/wukong/extensions/hash.rb +0 -167
- data/old/wukong/extensions/hash_keys.rb +0 -16
- data/old/wukong/extensions/hash_like.rb +0 -150
- data/old/wukong/extensions/hashlike_class.rb +0 -47
- data/old/wukong/extensions/module.rb +0 -2
- data/old/wukong/extensions/pathname.rb +0 -27
- data/old/wukong/extensions/string.rb +0 -65
- data/old/wukong/extensions/struct.rb +0 -17
- data/old/wukong/extensions/symbol.rb +0 -11
- data/old/wukong/filename_pattern.rb +0 -74
- data/old/wukong/helper.rb +0 -7
- data/old/wukong/helper/stopwords.rb +0 -195
- data/old/wukong/helper/tokenize.rb +0 -35
- data/old/wukong/logger.rb +0 -38
- data/old/wukong/periodic_monitor.rb +0 -72
- data/old/wukong/schema.rb +0 -269
- data/old/wukong/script.rb +0 -286
- data/old/wukong/script/avro_command.rb +0 -5
- data/old/wukong/script/cassandra_loader_script.rb +0 -40
- data/old/wukong/script/emr_command.rb +0 -168
- data/old/wukong/script/hadoop_command.rb +0 -237
- data/old/wukong/script/local_command.rb +0 -41
- data/old/wukong/store.rb +0 -10
- data/old/wukong/store/base.rb +0 -27
- data/old/wukong/store/cassandra.rb +0 -10
- data/old/wukong/store/cassandra/streaming.rb +0 -75
- data/old/wukong/store/cassandra/struct_loader.rb +0 -21
- data/old/wukong/store/cassandra_model.rb +0 -91
- data/old/wukong/store/chh_chunked_flat_file_store.rb +0 -37
- data/old/wukong/store/chunked_flat_file_store.rb +0 -48
- data/old/wukong/store/conditional_store.rb +0 -57
- data/old/wukong/store/factory.rb +0 -8
- data/old/wukong/store/flat_file_store.rb +0 -89
- data/old/wukong/store/key_store.rb +0 -51
- data/old/wukong/store/null_store.rb +0 -15
- data/old/wukong/store/read_thru_store.rb +0 -22
- data/old/wukong/store/tokyo_tdb_key_store.rb +0 -33
- data/old/wukong/store/tyrant_rdb_key_store.rb +0 -57
- data/old/wukong/store/tyrant_tdb_key_store.rb +0 -20
- data/old/wukong/streamer.rb +0 -30
- data/old/wukong/streamer/accumulating_reducer.rb +0 -83
- data/old/wukong/streamer/base.rb +0 -126
- data/old/wukong/streamer/counting_reducer.rb +0 -25
- data/old/wukong/streamer/filter.rb +0 -20
- data/old/wukong/streamer/instance_streamer.rb +0 -15
- data/old/wukong/streamer/json_streamer.rb +0 -21
- data/old/wukong/streamer/line_streamer.rb +0 -12
- data/old/wukong/streamer/list_reducer.rb +0 -31
- data/old/wukong/streamer/rank_and_bin_reducer.rb +0 -145
- data/old/wukong/streamer/record_streamer.rb +0 -14
- data/old/wukong/streamer/reducer.rb +0 -11
- data/old/wukong/streamer/set_reducer.rb +0 -14
- data/old/wukong/streamer/struct_streamer.rb +0 -48
- data/old/wukong/streamer/summing_reducer.rb +0 -29
- data/old/wukong/streamer/uniq_by_last_reducer.rb +0 -51
- data/old/wukong/typed_struct.rb +0 -12
- data/spec/away/encoding_spec.rb +0 -32
- data/spec/away/exe_spec.rb +0 -20
- data/spec/away/flow_spec.rb +0 -82
- data/spec/away/graph_spec.rb +0 -6
- data/spec/away/job_spec.rb +0 -15
- data/spec/away/rake_compat_spec.rb +0 -9
- data/spec/away/script_spec.rb +0 -81
- data/spec/hanuman/graphviz_spec.rb +0 -29
- data/spec/hanuman/slot_spec.rb +0 -2
- data/spec/support/examples_helper.rb +0 -10
- data/spec/support/streamer_test_helpers.rb +0 -6
- data/spec/support/wukong_widget_helpers.rb +0 -66
- data/spec/wukong/processor_spec.rb +0 -109
- data/spec/wukong/widget/filter_spec.rb +0 -99
- data/spec/wukong/widget/stringifier_spec.rb +0 -51
- data/spec/wukong/workflow/command_spec.rb +0 -5
@@ -1,40 +0,0 @@
|
|
1
|
-
/*
|
2
|
-
* Licensed to the Apache Software Foundation (ASF) under one or more
|
3
|
-
* contributor license agreements. See the NOTICE file distributed with
|
4
|
-
* this work for additional information regarding copyright ownership.
|
5
|
-
* The ASF licenses this file to You under the Apache License, Version 2.0
|
6
|
-
* (the "License"); you may not use this file except in compliance with
|
7
|
-
* the License. You may obtain a copy of the License at
|
8
|
-
*
|
9
|
-
* http://www.apache.org/licenses/LICENSE-2.0
|
10
|
-
*
|
11
|
-
* Unless required by applicable law or agreed to in writing, software
|
12
|
-
* distributed under the License is distributed on an "AS IS" BASIS,
|
13
|
-
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
14
|
-
* See the License for the specific language governing permissions and
|
15
|
-
* limitations under the License.
|
16
|
-
*/
|
17
|
-
/**
|
18
|
-
* getBlank script - when included in a html file and called from a form text field, will set the value of this field to ""
|
19
|
-
* if the text value is still the standard value.
|
20
|
-
* getPrompt script - when included in a html file and called from a form text field, will set the value of this field to the prompt
|
21
|
-
* if the text value is empty.
|
22
|
-
*
|
23
|
-
* Typical usage:
|
24
|
-
* <script type="text/javascript" language="JavaScript" src="getBlank.js"></script>
|
25
|
-
* <input type="text" id="query" value="Search the site:" onFocus="getBlank (this, 'Search the site:');" onBlur="getBlank (this, 'Search the site:');"/>
|
26
|
-
*/
|
27
|
-
<!--
|
28
|
-
function getBlank (form, stdValue){
|
29
|
-
if (form.value == stdValue){
|
30
|
-
form.value = '';
|
31
|
-
}
|
32
|
-
return true;
|
33
|
-
}
|
34
|
-
function getPrompt (form, stdValue){
|
35
|
-
if (form.value == ''){
|
36
|
-
form.value = stdValue;
|
37
|
-
}
|
38
|
-
return true;
|
39
|
-
}
|
40
|
-
//-->
|
@@ -1,45 +0,0 @@
|
|
1
|
-
/*
|
2
|
-
* Licensed to the Apache Software Foundation (ASF) under one or more
|
3
|
-
* contributor license agreements. See the NOTICE file distributed with
|
4
|
-
* this work for additional information regarding copyright ownership.
|
5
|
-
* The ASF licenses this file to You under the Apache License, Version 2.0
|
6
|
-
* (the "License"); you may not use this file except in compliance with
|
7
|
-
* the License. You may obtain a copy of the License at
|
8
|
-
*
|
9
|
-
* http://www.apache.org/licenses/LICENSE-2.0
|
10
|
-
*
|
11
|
-
* Unless required by applicable law or agreed to in writing, software
|
12
|
-
* distributed under the License is distributed on an "AS IS" BASIS,
|
13
|
-
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
14
|
-
* See the License for the specific language governing permissions and
|
15
|
-
* limitations under the License.
|
16
|
-
*/
|
17
|
-
/**
|
18
|
-
* This script, when included in a html file, can be used to make collapsible menus
|
19
|
-
*
|
20
|
-
* Typical usage:
|
21
|
-
* <script type="text/javascript" language="JavaScript" src="menu.js"></script>
|
22
|
-
*/
|
23
|
-
|
24
|
-
if (document.getElementById){
|
25
|
-
document.write('<style type="text/css">.menuitemgroup{display: none;}</style>')
|
26
|
-
}
|
27
|
-
|
28
|
-
|
29
|
-
function SwitchMenu(obj, thePath)
|
30
|
-
{
|
31
|
-
var open = 'url("'+thePath + 'images/chapter_open.gif")';
|
32
|
-
var close = 'url("'+thePath + 'images/chapter.gif")';
|
33
|
-
if(document.getElementById) {
|
34
|
-
var el = document.getElementById(obj);
|
35
|
-
var title = document.getElementById(obj+'Title');
|
36
|
-
|
37
|
-
if(el.style.display != "block"){
|
38
|
-
title.style.backgroundImage = open;
|
39
|
-
el.style.display = "block";
|
40
|
-
}else{
|
41
|
-
title.style.backgroundImage = close;
|
42
|
-
el.style.display = "none";
|
43
|
-
}
|
44
|
-
}// end - if(document.getElementById)
|
45
|
-
}//end - function SwitchMenu(obj)
|
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
|
data/docpages/pig/skin/print.css
DELETED
@@ -1,54 +0,0 @@
|
|
1
|
-
/*
|
2
|
-
* Licensed to the Apache Software Foundation (ASF) under one or more
|
3
|
-
* contributor license agreements. See the NOTICE file distributed with
|
4
|
-
* this work for additional information regarding copyright ownership.
|
5
|
-
* The ASF licenses this file to You under the Apache License, Version 2.0
|
6
|
-
* (the "License"); you may not use this file except in compliance with
|
7
|
-
* the License. You may obtain a copy of the License at
|
8
|
-
*
|
9
|
-
* http://www.apache.org/licenses/LICENSE-2.0
|
10
|
-
*
|
11
|
-
* Unless required by applicable law or agreed to in writing, software
|
12
|
-
* distributed under the License is distributed on an "AS IS" BASIS,
|
13
|
-
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
14
|
-
* See the License for the specific language governing permissions and
|
15
|
-
* limitations under the License.
|
16
|
-
*/
|
17
|
-
body {
|
18
|
-
font-family: Georgia, Palatino, serif;
|
19
|
-
font-size: 12pt;
|
20
|
-
background: white;
|
21
|
-
}
|
22
|
-
|
23
|
-
#tabs,
|
24
|
-
#menu,
|
25
|
-
#content .toc {
|
26
|
-
display: none;
|
27
|
-
}
|
28
|
-
|
29
|
-
#content {
|
30
|
-
width: auto;
|
31
|
-
padding: 0;
|
32
|
-
float: none !important;
|
33
|
-
color: black;
|
34
|
-
background: inherit;
|
35
|
-
}
|
36
|
-
|
37
|
-
a:link, a:visited {
|
38
|
-
color: #336699;
|
39
|
-
background: inherit;
|
40
|
-
text-decoration: underline;
|
41
|
-
}
|
42
|
-
|
43
|
-
#top .logo {
|
44
|
-
padding: 0;
|
45
|
-
margin: 0 0 2em 0;
|
46
|
-
}
|
47
|
-
|
48
|
-
#footer {
|
49
|
-
margin-top: 4em;
|
50
|
-
}
|
51
|
-
|
52
|
-
acronym {
|
53
|
-
border: 0;
|
54
|
-
}
|
@@ -1,181 +0,0 @@
|
|
1
|
-
|
2
|
-
|
3
|
-
/* ==================== aural ============================ */
|
4
|
-
|
5
|
-
@media aural {
|
6
|
-
h1, h2, h3, h4, h5, h6 { voice-family: paul, male; stress: 20; richness: 90 }
|
7
|
-
h1 { pitch: x-low; pitch-range: 90 }
|
8
|
-
h2 { pitch: x-low; pitch-range: 80 }
|
9
|
-
h3 { pitch: low; pitch-range: 70 }
|
10
|
-
h4 { pitch: medium; pitch-range: 60 }
|
11
|
-
h5 { pitch: medium; pitch-range: 50 }
|
12
|
-
h6 { pitch: medium; pitch-range: 40 }
|
13
|
-
li, dt, dd { pitch: medium; richness: 60 }
|
14
|
-
dt { stress: 80 }
|
15
|
-
pre, code, tt { pitch: medium; pitch-range: 0; stress: 0; richness: 80 }
|
16
|
-
em { pitch: medium; pitch-range: 60; stress: 60; richness: 50 }
|
17
|
-
strong { pitch: medium; pitch-range: 60; stress: 90; richness: 90 }
|
18
|
-
dfn { pitch: high; pitch-range: 60; stress: 60 }
|
19
|
-
s, strike { richness: 0 }
|
20
|
-
i { pitch: medium; pitch-range: 60; stress: 60; richness: 50 }
|
21
|
-
b { pitch: medium; pitch-range: 60; stress: 90; richness: 90 }
|
22
|
-
u { richness: 0 }
|
23
|
-
|
24
|
-
:link { voice-family: harry, male }
|
25
|
-
:visited { voice-family: betty, female }
|
26
|
-
:active { voice-family: betty, female; pitch-range: 80; pitch: x-high }
|
27
|
-
}
|
28
|
-
|
29
|
-
a.external {
|
30
|
-
padding: 0 20px 0px 0px;
|
31
|
-
display:inline;
|
32
|
-
background-repeat: no-repeat;
|
33
|
-
background-position: center right;
|
34
|
-
background-image: url(images/external-link.gif);
|
35
|
-
}
|
36
|
-
|
37
|
-
#top { background-color: #FFFFFF;}
|
38
|
-
|
39
|
-
#top .header .current { background-color: #4C6C8F;}
|
40
|
-
#top .header .current a:link { color: #ffffff; }
|
41
|
-
#top .header .current a:visited { color: #ffffff; }
|
42
|
-
#top .header .current a:hover { color: #ffffff; }
|
43
|
-
|
44
|
-
#tabs li { background-color: #E5E4D9 ;}
|
45
|
-
#tabs li a:link { color: #000000; }
|
46
|
-
#tabs li a:visited { color: #000000; }
|
47
|
-
#tabs li a:hover { color: #000000; }
|
48
|
-
|
49
|
-
#level2tabs a.selected { background-color: #4C6C8F ;}
|
50
|
-
#level2tabs a:link { color: #ffffff; }
|
51
|
-
#level2tabs a:visited { color: #ffffff; }
|
52
|
-
#level2tabs a:hover { color: #ffffff; }
|
53
|
-
|
54
|
-
#level2tabs { background-color: #E5E4D9;}
|
55
|
-
#level2tabs a.unselected:link { color: #000000; }
|
56
|
-
#level2tabs a.unselected:visited { color: #000000; }
|
57
|
-
#level2tabs a.unselected:hover { color: #000000; }
|
58
|
-
|
59
|
-
.heading { background-color: #E5E4D9;}
|
60
|
-
|
61
|
-
.boxed { background-color: #E5E4D9;}
|
62
|
-
.underlined_5 {border-bottom: solid 5px #E5E4D9;}
|
63
|
-
.underlined_10 {border-bottom: solid 10px #E5E4D9;}
|
64
|
-
table caption {
|
65
|
-
background-color: #E5E4D9;
|
66
|
-
color: #000000;
|
67
|
-
}
|
68
|
-
|
69
|
-
#feedback {
|
70
|
-
color: #FFFFFF;
|
71
|
-
background: #4C6C8F;
|
72
|
-
text-align: center;
|
73
|
-
}
|
74
|
-
#feedback #feedbackto {
|
75
|
-
color: #FFFFFF;
|
76
|
-
}
|
77
|
-
|
78
|
-
#publishedStrip {
|
79
|
-
color: #FFFFFF;
|
80
|
-
background: #4C6C8F;
|
81
|
-
}
|
82
|
-
|
83
|
-
#publishedStrip {
|
84
|
-
color: #000000;
|
85
|
-
background: #E5E4D9;
|
86
|
-
}
|
87
|
-
|
88
|
-
#menu .menupagetitle { background-color: #CFDCED;
|
89
|
-
color: #000000;}
|
90
|
-
|
91
|
-
#menu { border-color: #999999;}
|
92
|
-
#menu .menupagetitle { border-color: #999999;}
|
93
|
-
#menu .menupageitemgroup { border-color: #999999;}
|
94
|
-
|
95
|
-
#menu { background-color: #4C6C8F;}
|
96
|
-
#menu { color: #ffffff;}
|
97
|
-
#menu a:link { color: #ffffff;}
|
98
|
-
#menu a:visited { color: #ffffff;}
|
99
|
-
#menu a:hover {
|
100
|
-
background-color: #4C6C8F;
|
101
|
-
color: #ffffff;}
|
102
|
-
|
103
|
-
#menu h1 {
|
104
|
-
color: #000000;
|
105
|
-
background-color: #cfdced;
|
106
|
-
}
|
107
|
-
|
108
|
-
#top .searchbox {
|
109
|
-
background-color: #E5E4D9 ;
|
110
|
-
color: #000000;
|
111
|
-
}
|
112
|
-
|
113
|
-
#menu .menupageitemgroup {
|
114
|
-
background-color: #E5E4D9;
|
115
|
-
}
|
116
|
-
#menu .menupageitem {
|
117
|
-
color: #000000;
|
118
|
-
}
|
119
|
-
#menu .menupageitem a:link { color: #000000;}
|
120
|
-
#menu .menupageitem a:visited { color: #000000;}
|
121
|
-
#menu .menupageitem a:hover {
|
122
|
-
background-color: #E5E4D9;
|
123
|
-
color: #000000;
|
124
|
-
}
|
125
|
-
|
126
|
-
body{
|
127
|
-
background-color: #ffffff;
|
128
|
-
color: #000000;
|
129
|
-
}
|
130
|
-
a:link { color:#0000ff}
|
131
|
-
a:visited { color:#009999}
|
132
|
-
a:hover { color:#6587ff}
|
133
|
-
|
134
|
-
|
135
|
-
.ForrestTable { background-color: #ccc;}
|
136
|
-
|
137
|
-
.ForrestTable td { background-color: #ffffff;}
|
138
|
-
|
139
|
-
.highlight { background-color: #ffff00;}
|
140
|
-
|
141
|
-
.fixme { border-color: #c60;}
|
142
|
-
|
143
|
-
.note { border-color: #069;}
|
144
|
-
|
145
|
-
.warning { border-color: #900;}
|
146
|
-
|
147
|
-
.code { border-color: #a5b6c6;}
|
148
|
-
|
149
|
-
#footer { background-color: #E5E4D9;}
|
150
|
-
/* extra-css */
|
151
|
-
|
152
|
-
p.quote {
|
153
|
-
margin-left: 2em;
|
154
|
-
padding: .5em;
|
155
|
-
background-color: #f0f0f0;
|
156
|
-
font-family: monospace;
|
157
|
-
}
|
158
|
-
|
159
|
-
#footer a { color: #0F3660; }
|
160
|
-
#footer a:visited { color: #009999; }
|
161
|
-
|
162
|
-
|
163
|
-
|
164
|
-
#content h1 {
|
165
|
-
margin-bottom: .5em;
|
166
|
-
font-size: 200%; color: black;
|
167
|
-
font-family: arial;
|
168
|
-
}
|
169
|
-
h2, .h3 { font-size: 195%; color: black; font-family: arial; }
|
170
|
-
h3, .h4 { font-size: 140%; color: black; font-family: arial; margin-bottom: 0.5em; }
|
171
|
-
h4, .h5 { font-size: 125%; color: black; font-style: italic; font-weight: bold; font-family: arial; }
|
172
|
-
h5, h6 { font-size: 110%; color: #363636; font-weight: bold; }
|
173
|
-
|
174
|
-
pre.code {
|
175
|
-
margin-left: 0em;
|
176
|
-
padding: 0.5em;
|
177
|
-
background-color: rgb(241,239,231);
|
178
|
-
font-family: monospace;
|
179
|
-
}
|
180
|
-
|
181
|
-
|
@@ -1,587 +0,0 @@
|
|
1
|
-
/*
|
2
|
-
* Licensed to the Apache Software Foundation (ASF) under one or more
|
3
|
-
* contributor license agreements. See the NOTICE file distributed with
|
4
|
-
* this work for additional information regarding copyright ownership.
|
5
|
-
* The ASF licenses this file to You under the Apache License, Version 2.0
|
6
|
-
* (the "License"); you may not use this file except in compliance with
|
7
|
-
* the License. You may obtain a copy of the License at
|
8
|
-
*
|
9
|
-
* http://www.apache.org/licenses/LICENSE-2.0
|
10
|
-
*
|
11
|
-
* Unless required by applicable law or agreed to in writing, software
|
12
|
-
* distributed under the License is distributed on an "AS IS" BASIS,
|
13
|
-
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
14
|
-
* See the License for the specific language governing permissions and
|
15
|
-
* limitations under the License.
|
16
|
-
*/
|
17
|
-
body { margin: 0px 0px 0px 0px; font-family: Verdana, Helvetica, sans-serif; }
|
18
|
-
|
19
|
-
h1 { font-size : 160%; margin: 0px 0px 0px 0px; padding: 0px; }
|
20
|
-
h2 { font-size : 140%; margin: 1em 0px 0.8em 0px; padding: 0px; font-weight : bold;}
|
21
|
-
h3 { font-size : 130%; margin: 0.8em 0px 0px 0px; padding: 0px; font-weight : bold; }
|
22
|
-
.h3 { margin: 22px 0px 3px 0px; }
|
23
|
-
h4 { font-size : 120%; margin: 0.7em 0px 0px 0px; padding: 0px; font-weight : normal; text-align: left; }
|
24
|
-
.h4 { margin: 18px 0px 0px 0px; }
|
25
|
-
h4.faq { font-size : 120%; margin: 18px 0px 0px 0px; padding: 0px; font-weight : bold; text-align: left; }
|
26
|
-
h5 { font-size : 100%; margin: 14px 0px 0px 0px; padding: 0px; font-weight : normal; text-align: left; }
|
27
|
-
|
28
|
-
/**
|
29
|
-
* table
|
30
|
-
*/
|
31
|
-
table .title { background-color: #000000; }
|
32
|
-
.ForrestTable {
|
33
|
-
color: #ffffff;
|
34
|
-
background-color: #7099C5;
|
35
|
-
width: 100%;
|
36
|
-
font-size : 100%;
|
37
|
-
empty-cells: show;
|
38
|
-
}
|
39
|
-
table caption {
|
40
|
-
padding-left: 5px;
|
41
|
-
color: white;
|
42
|
-
text-align: left;
|
43
|
-
font-weight: bold;
|
44
|
-
background-color: #000000;
|
45
|
-
}
|
46
|
-
.ForrestTable td {
|
47
|
-
color: black;
|
48
|
-
background-color: #f0f0ff;
|
49
|
-
}
|
50
|
-
.ForrestTable th { text-align: center; }
|
51
|
-
/**
|
52
|
-
* Page Header
|
53
|
-
*/
|
54
|
-
|
55
|
-
#top {
|
56
|
-
position: relative;
|
57
|
-
float: left;
|
58
|
-
width: 100%;
|
59
|
-
background: #294563; /* if you want a background in the header, put it here */
|
60
|
-
}
|
61
|
-
|
62
|
-
#top .breadtrail {
|
63
|
-
background: #CFDCED;
|
64
|
-
color: black;
|
65
|
-
border-bottom: solid 1px white;
|
66
|
-
padding: 3px 10px;
|
67
|
-
font-size: 75%;
|
68
|
-
}
|
69
|
-
#top .breadtrail a { color: black; }
|
70
|
-
|
71
|
-
#top .header {
|
72
|
-
float: left;
|
73
|
-
width: 100%;
|
74
|
-
background: url("images/header_white_line.gif") repeat-x bottom;
|
75
|
-
}
|
76
|
-
|
77
|
-
#top .grouplogo {
|
78
|
-
padding: 7px 0 10px 10px;
|
79
|
-
float: left;
|
80
|
-
text-align: left;
|
81
|
-
}
|
82
|
-
#top .projectlogo {
|
83
|
-
padding: 7px 0 10px 10px;
|
84
|
-
float: left;
|
85
|
-
width: 33%;
|
86
|
-
text-align: right;
|
87
|
-
}
|
88
|
-
#top .projectlogoA1 {
|
89
|
-
padding: 7px 0 10px 10px;
|
90
|
-
float: right;
|
91
|
-
}
|
92
|
-
html>body #top .searchbox {
|
93
|
-
bottom: 0px;
|
94
|
-
}
|
95
|
-
#top .searchbox {
|
96
|
-
position: absolute;
|
97
|
-
right: 10px;
|
98
|
-
height: 42px;
|
99
|
-
font-size: 70%;
|
100
|
-
white-space: nowrap;
|
101
|
-
text-align: right;
|
102
|
-
color: white;
|
103
|
-
background-color: #000000;
|
104
|
-
z-index:0;
|
105
|
-
background-image: url(images/rc-t-l-5-1header-2searchbox-3searchbox.png);
|
106
|
-
background-repeat: no-repeat;
|
107
|
-
background-position: top left;
|
108
|
-
bottom: -1px; /* compensate for IE rendering issue */
|
109
|
-
}
|
110
|
-
|
111
|
-
#top .searchbox form {
|
112
|
-
padding: 5px 10px;
|
113
|
-
margin: 0;
|
114
|
-
}
|
115
|
-
#top .searchbox p {
|
116
|
-
padding: 0 0 2px 0;
|
117
|
-
margin: 0;
|
118
|
-
}
|
119
|
-
#top .searchbox input {
|
120
|
-
font-size: 100%;
|
121
|
-
}
|
122
|
-
|
123
|
-
#tabs {
|
124
|
-
clear: both;
|
125
|
-
padding-left: 10px;
|
126
|
-
margin: 0;
|
127
|
-
list-style: none;
|
128
|
-
}
|
129
|
-
/* background: #CFDCED url("images/tab-right.gif") no-repeat right top;*/
|
130
|
-
#tabs li {
|
131
|
-
float: left;
|
132
|
-
background-image: url(images/rc-t-r-5-1header-2tab-unselected-3tab-unselected.png);
|
133
|
-
background-repeat: no-repeat;
|
134
|
-
background-position: top right;
|
135
|
-
background-color: #000000;
|
136
|
-
margin: 0 3px 0 0;
|
137
|
-
padding: 0;
|
138
|
-
}
|
139
|
-
|
140
|
-
/*background: url("images/tab-left.gif") no-repeat left top;*/
|
141
|
-
#tabs li a {
|
142
|
-
float: left;
|
143
|
-
display: block;
|
144
|
-
font-family: verdana, arial, sans-serif;
|
145
|
-
text-decoration: none;
|
146
|
-
color: black;
|
147
|
-
white-space: nowrap;
|
148
|
-
background-image: url(images/rc-t-l-5-1header-2tab-unselected-3tab-unselected.png);
|
149
|
-
background-repeat: no-repeat;
|
150
|
-
background-position: top left;
|
151
|
-
padding: 5px 15px 4px;
|
152
|
-
width: .1em; /* IE/Win fix */
|
153
|
-
}
|
154
|
-
|
155
|
-
#tabs li a:hover {
|
156
|
-
|
157
|
-
cursor: pointer;
|
158
|
-
text-decoration:underline;
|
159
|
-
}
|
160
|
-
|
161
|
-
#tabs > li a { width: auto; } /* Rest of IE/Win fix */
|
162
|
-
|
163
|
-
/* Commented Backslash Hack hides rule from IE5-Mac \*/
|
164
|
-
#tabs a { float: none; }
|
165
|
-
/* End IE5-Mac hack */
|
166
|
-
|
167
|
-
#top .header .current {
|
168
|
-
background-color: #4C6C8F;
|
169
|
-
background-image: url(images/rc-t-r-5-1header-2tab-selected-3tab-selected.png);
|
170
|
-
background-repeat: no-repeat;
|
171
|
-
background-position: top right;
|
172
|
-
}
|
173
|
-
#top .header .current a {
|
174
|
-
font-weight: bold;
|
175
|
-
padding-bottom: 5px;
|
176
|
-
color: white;
|
177
|
-
background-image: url(images/rc-t-l-5-1header-2tab-selected-3tab-selected.png);
|
178
|
-
background-repeat: no-repeat;
|
179
|
-
background-position: top left;
|
180
|
-
}
|
181
|
-
#publishedStrip {
|
182
|
-
padding-right: 10px;
|
183
|
-
padding-left: 20px;
|
184
|
-
padding-top: 3px;
|
185
|
-
padding-bottom:3px;
|
186
|
-
color: #ffffff;
|
187
|
-
font-size : 60%;
|
188
|
-
font-weight: bold;
|
189
|
-
background-color: #4C6C8F;
|
190
|
-
text-align:right;
|
191
|
-
}
|
192
|
-
|
193
|
-
#level2tabs {
|
194
|
-
margin: 0;
|
195
|
-
float:left;
|
196
|
-
position:relative;
|
197
|
-
|
198
|
-
}
|
199
|
-
|
200
|
-
|
201
|
-
|
202
|
-
#level2tabs a:hover {
|
203
|
-
|
204
|
-
cursor: pointer;
|
205
|
-
text-decoration:underline;
|
206
|
-
|
207
|
-
}
|
208
|
-
|
209
|
-
#level2tabs a{
|
210
|
-
|
211
|
-
cursor: pointer;
|
212
|
-
text-decoration:none;
|
213
|
-
background-image: url('images/chapter.gif');
|
214
|
-
background-repeat: no-repeat;
|
215
|
-
background-position: center left;
|
216
|
-
padding-left: 6px;
|
217
|
-
margin-left: 6px;
|
218
|
-
}
|
219
|
-
|
220
|
-
/*
|
221
|
-
* border-top: solid #4C6C8F 15px;
|
222
|
-
*/
|
223
|
-
#main {
|
224
|
-
position: relative;
|
225
|
-
background: white;
|
226
|
-
clear:both;
|
227
|
-
}
|
228
|
-
#main .breadtrail {
|
229
|
-
clear:both;
|
230
|
-
position: relative;
|
231
|
-
background: #CFDCED;
|
232
|
-
color: black;
|
233
|
-
border-bottom: solid 1px black;
|
234
|
-
border-top: solid 1px black;
|
235
|
-
padding: 0px 180px;
|
236
|
-
font-size: 75%;
|
237
|
-
z-index:10;
|
238
|
-
}
|
239
|
-
/**
|
240
|
-
* Round corner
|
241
|
-
*/
|
242
|
-
#roundtop {
|
243
|
-
background-image: url(images/rc-t-r-15-1body-2menu-3menu.png);
|
244
|
-
background-repeat: no-repeat;
|
245
|
-
background-position: top right;
|
246
|
-
}
|
247
|
-
|
248
|
-
#roundbottom {
|
249
|
-
background-image: url(images/rc-b-r-15-1body-2menu-3menu.png);
|
250
|
-
background-repeat: no-repeat;
|
251
|
-
background-position: top right;
|
252
|
-
}
|
253
|
-
|
254
|
-
img.corner {
|
255
|
-
width: 15px;
|
256
|
-
height: 15px;
|
257
|
-
border: none;
|
258
|
-
display: block !important;
|
259
|
-
}
|
260
|
-
|
261
|
-
.roundtopsmall {
|
262
|
-
background-image: url(images/rc-t-r-5-1header-2searchbox-3searchbox.png);
|
263
|
-
background-repeat: no-repeat;
|
264
|
-
background-position: top right;
|
265
|
-
}
|
266
|
-
|
267
|
-
#roundbottomsmall {
|
268
|
-
background-image: url(images/rc-b-r-5-1header-2tab-selected-3tab-selected.png);
|
269
|
-
background-repeat: no-repeat;
|
270
|
-
background-position: top right;
|
271
|
-
}
|
272
|
-
|
273
|
-
img.cornersmall {
|
274
|
-
width: 5px;
|
275
|
-
height: 5px;
|
276
|
-
border: none;
|
277
|
-
display: block !important;
|
278
|
-
}
|
279
|
-
/**
|
280
|
-
* Side menu
|
281
|
-
*/
|
282
|
-
#menu a { font-weight: normal; text-decoration: none;}
|
283
|
-
#menu a:visited { font-weight: normal; }
|
284
|
-
#menu a:active { font-weight: normal; }
|
285
|
-
#menu a:hover { font-weight: normal; text-decoration:underline;}
|
286
|
-
|
287
|
-
#menuarea { width:10em;}
|
288
|
-
#menu {
|
289
|
-
position: relative;
|
290
|
-
float: left;
|
291
|
-
width: 160px;
|
292
|
-
padding-top: 0px;
|
293
|
-
top:-18px;
|
294
|
-
left:10px;
|
295
|
-
z-index: 20;
|
296
|
-
background-color: #f90;
|
297
|
-
font-size : 70%;
|
298
|
-
|
299
|
-
}
|
300
|
-
|
301
|
-
.menutitle {
|
302
|
-
cursor:pointer;
|
303
|
-
padding: 3px 12px;
|
304
|
-
margin-left: 10px;
|
305
|
-
background-image: url('images/chapter.gif');
|
306
|
-
background-repeat: no-repeat;
|
307
|
-
background-position: center left;
|
308
|
-
font-weight : bold;
|
309
|
-
|
310
|
-
|
311
|
-
}
|
312
|
-
|
313
|
-
.menutitle:hover{text-decoration:underline;cursor: pointer;}
|
314
|
-
|
315
|
-
#menu .menuitemgroup {
|
316
|
-
margin: 0px 0px 6px 8px;
|
317
|
-
padding: 0px;
|
318
|
-
font-weight : bold; }
|
319
|
-
|
320
|
-
#menu .selectedmenuitemgroup{
|
321
|
-
margin: 0px 0px 0px 8px;
|
322
|
-
padding: 0px;
|
323
|
-
font-weight : normal;
|
324
|
-
|
325
|
-
}
|
326
|
-
|
327
|
-
#menu .menuitem {
|
328
|
-
padding: 2px 0px 1px 13px;
|
329
|
-
background-image: url('images/page.gif');
|
330
|
-
background-repeat: no-repeat;
|
331
|
-
background-position: center left;
|
332
|
-
font-weight : normal;
|
333
|
-
margin-left: 10px;
|
334
|
-
}
|
335
|
-
|
336
|
-
#menu .menupage {
|
337
|
-
margin: 2px 0px 1px 10px;
|
338
|
-
padding: 0px 3px 0px 12px;
|
339
|
-
background-image: url('images/page.gif');
|
340
|
-
background-repeat: no-repeat;
|
341
|
-
background-position: center left;
|
342
|
-
font-style : normal;
|
343
|
-
}
|
344
|
-
#menu .menupagetitle {
|
345
|
-
padding: 0px 0px 0px 1px;
|
346
|
-
font-style : normal;
|
347
|
-
border-style: solid;
|
348
|
-
border-width: 1px;
|
349
|
-
margin-right: 10px;
|
350
|
-
|
351
|
-
}
|
352
|
-
#menu .menupageitemgroup {
|
353
|
-
padding: 3px 0px 4px 6px;
|
354
|
-
font-style : normal;
|
355
|
-
border-bottom: 1px solid ;
|
356
|
-
border-left: 1px solid ;
|
357
|
-
border-right: 1px solid ;
|
358
|
-
margin-right: 10px;
|
359
|
-
}
|
360
|
-
#menu .menupageitem {
|
361
|
-
font-style : normal;
|
362
|
-
font-weight : normal;
|
363
|
-
border-width: 0px;
|
364
|
-
font-size : 90%;
|
365
|
-
}
|
366
|
-
#menu #credit {
|
367
|
-
text-align: center;
|
368
|
-
}
|
369
|
-
#menu #credit2 {
|
370
|
-
text-align: center;
|
371
|
-
padding: 3px 3px 3px 3px;
|
372
|
-
background-color: #ffffff;
|
373
|
-
}
|
374
|
-
#menu .searchbox {
|
375
|
-
text-align: center;
|
376
|
-
}
|
377
|
-
#menu .searchbox form {
|
378
|
-
padding: 3px 3px;
|
379
|
-
margin: 0;
|
380
|
-
}
|
381
|
-
#menu .searchbox input {
|
382
|
-
font-size: 100%;
|
383
|
-
}
|
384
|
-
|
385
|
-
#content {
|
386
|
-
padding: 20px 20px 20px 180px;
|
387
|
-
margin: 0;
|
388
|
-
font : small Verdana, Helvetica, sans-serif;
|
389
|
-
font-size : 80%;
|
390
|
-
}
|
391
|
-
|
392
|
-
#content ul {
|
393
|
-
margin: 0;
|
394
|
-
padding: 0 25px;
|
395
|
-
}
|
396
|
-
#content li {
|
397
|
-
padding: 0 5px;
|
398
|
-
}
|
399
|
-
#feedback {
|
400
|
-
color: black;
|
401
|
-
background: #CFDCED;
|
402
|
-
text-align:center;
|
403
|
-
margin-top: 5px;
|
404
|
-
}
|
405
|
-
#feedback #feedbackto {
|
406
|
-
font-size: 90%;
|
407
|
-
color: black;
|
408
|
-
}
|
409
|
-
#footer {
|
410
|
-
clear: both;
|
411
|
-
position: relative; /* IE bugfix (http://www.dracos.co.uk/web/css/ie6floatbug/) */
|
412
|
-
width: 100%;
|
413
|
-
background: #CFDCED;
|
414
|
-
border-top: solid 1px #4C6C8F;
|
415
|
-
color: black;
|
416
|
-
}
|
417
|
-
#footer .copyright {
|
418
|
-
position: relative; /* IE bugfix cont'd */
|
419
|
-
padding: 5px;
|
420
|
-
margin: 0;
|
421
|
-
width: 45%;
|
422
|
-
}
|
423
|
-
#footer .lastmodified {
|
424
|
-
position: relative; /* IE bugfix cont'd */
|
425
|
-
float: right;
|
426
|
-
width: 45%;
|
427
|
-
padding: 5px;
|
428
|
-
margin: 0;
|
429
|
-
text-align: right;
|
430
|
-
}
|
431
|
-
#footer a { color: white; }
|
432
|
-
|
433
|
-
#footer #logos {
|
434
|
-
text-align: left;
|
435
|
-
}
|
436
|
-
|
437
|
-
|
438
|
-
/**
|
439
|
-
* Misc Styles
|
440
|
-
*/
|
441
|
-
|
442
|
-
acronym { cursor: help; }
|
443
|
-
.boxed { background-color: #a5b6c6;}
|
444
|
-
.underlined_5 {border-bottom: solid 5px #4C6C8F;}
|
445
|
-
.underlined_10 {border-bottom: solid 10px #4C6C8F;}
|
446
|
-
/* ==================== snail trail ============================ */
|
447
|
-
|
448
|
-
.trail {
|
449
|
-
position: relative; /* IE bugfix cont'd */
|
450
|
-
font-size: 70%;
|
451
|
-
text-align: right;
|
452
|
-
float: right;
|
453
|
-
margin: -10px 5px 0px 5px;
|
454
|
-
padding: 0;
|
455
|
-
}
|
456
|
-
|
457
|
-
#motd-area {
|
458
|
-
position: relative; /* IE bugfix cont'd */
|
459
|
-
float: right;
|
460
|
-
width: 35%;
|
461
|
-
background-color: #f0f0ff;
|
462
|
-
border-top: solid 1px #4C6C8F;
|
463
|
-
border-bottom: solid 1px #4C6C8F;
|
464
|
-
margin-bottom: 15px;
|
465
|
-
margin-left: 15px;
|
466
|
-
margin-right: 10%;
|
467
|
-
padding-bottom: 5px;
|
468
|
-
padding-top: 5px;
|
469
|
-
}
|
470
|
-
|
471
|
-
#minitoc-area {
|
472
|
-
border-top: solid 1px #4C6C8F;
|
473
|
-
border-bottom: solid 1px #4C6C8F;
|
474
|
-
margin: 15px 10% 5px 15px;
|
475
|
-
/* margin-bottom: 15px;
|
476
|
-
margin-left: 15px;
|
477
|
-
margin-right: 10%;*/
|
478
|
-
padding-bottom: 7px;
|
479
|
-
padding-top: 5px;
|
480
|
-
}
|
481
|
-
.minitoc {
|
482
|
-
list-style-image: url('images/current.gif');
|
483
|
-
font-weight: normal;
|
484
|
-
}
|
485
|
-
|
486
|
-
li p {
|
487
|
-
margin: 0;
|
488
|
-
padding: 0;
|
489
|
-
}
|
490
|
-
|
491
|
-
.pdflink {
|
492
|
-
position: relative; /* IE bugfix cont'd */
|
493
|
-
float: right;
|
494
|
-
margin: 0px 5px;
|
495
|
-
padding: 0;
|
496
|
-
}
|
497
|
-
.pdflink br {
|
498
|
-
margin-top: -10px;
|
499
|
-
padding-left: 1px;
|
500
|
-
}
|
501
|
-
.pdflink a {
|
502
|
-
display: block;
|
503
|
-
font-size: 70%;
|
504
|
-
text-align: center;
|
505
|
-
margin: 0;
|
506
|
-
padding: 0;
|
507
|
-
}
|
508
|
-
|
509
|
-
.pdflink img {
|
510
|
-
display: block;
|
511
|
-
height: 16px;
|
512
|
-
width: 16px;
|
513
|
-
}
|
514
|
-
.xmllink {
|
515
|
-
position: relative; /* IE bugfix cont'd */
|
516
|
-
float: right;
|
517
|
-
margin: 0px 5px;
|
518
|
-
padding: 0;
|
519
|
-
}
|
520
|
-
.xmllink br {
|
521
|
-
margin-top: -10px;
|
522
|
-
padding-left: 1px;
|
523
|
-
}
|
524
|
-
.xmllink a {
|
525
|
-
display: block;
|
526
|
-
font-size: 70%;
|
527
|
-
text-align: center;
|
528
|
-
margin: 0;
|
529
|
-
padding: 0;
|
530
|
-
}
|
531
|
-
|
532
|
-
.xmllink img {
|
533
|
-
display: block;
|
534
|
-
height: 16px;
|
535
|
-
width: 16px;
|
536
|
-
}
|
537
|
-
.podlink {
|
538
|
-
position: relative; /* IE bugfix cont'd */
|
539
|
-
float: right;
|
540
|
-
margin: 0px 5px;
|
541
|
-
padding: 0;
|
542
|
-
}
|
543
|
-
.podlink br {
|
544
|
-
margin-top: -10px;
|
545
|
-
padding-left: 1px;
|
546
|
-
}
|
547
|
-
.podlink a {
|
548
|
-
display: block;
|
549
|
-
font-size: 70%;
|
550
|
-
text-align: center;
|
551
|
-
margin: 0;
|
552
|
-
padding: 0;
|
553
|
-
}
|
554
|
-
|
555
|
-
.podlink img {
|
556
|
-
display: block;
|
557
|
-
height: 16px;
|
558
|
-
width: 16px;
|
559
|
-
}
|
560
|
-
|
561
|
-
.printlink {
|
562
|
-
position: relative; /* IE bugfix cont'd */
|
563
|
-
float: right;
|
564
|
-
}
|
565
|
-
.printlink br {
|
566
|
-
margin-top: -10px;
|
567
|
-
padding-left: 1px;
|
568
|
-
}
|
569
|
-
.printlink a {
|
570
|
-
display: block;
|
571
|
-
font-size: 70%;
|
572
|
-
text-align: center;
|
573
|
-
margin: 0;
|
574
|
-
padding: 0;
|
575
|
-
}
|
576
|
-
.printlink img {
|
577
|
-
display: block;
|
578
|
-
height: 16px;
|
579
|
-
width: 16px;
|
580
|
-
}
|
581
|
-
|
582
|
-
p.instruction {
|
583
|
-
display: list-item;
|
584
|
-
list-style-image: url('../images/instruction_arrow.png');
|
585
|
-
list-style-position: outside;
|
586
|
-
margin-left: 2em;
|
587
|
-
}
|