├── .gitignore ├── Capfile ├── README.textile ├── Rakefile ├── app ├── controllers │ ├── application_controller.rb │ ├── daily_timelines_controller.rb │ ├── daily_trends_controller.rb │ ├── info_controller.rb │ ├── pages_controller.rb │ ├── sitemap_controller.rb │ ├── weekly_trends_controller.rb │ └── widgets_controller.rb ├── helpers │ ├── application_helper.rb │ ├── daily_timelines_helper.rb │ ├── daily_trends_helper.rb │ ├── pages_helper.rb │ ├── sitemap_helper.rb │ └── weekly_trends_helper.rb ├── models │ ├── company.rb │ ├── daily_timeline.rb │ ├── daily_trend.rb │ ├── featured_page.rb │ ├── page.rb │ ├── person.rb │ └── weekly_trend.rb └── views │ ├── daily_timelines │ ├── index.html.erb │ └── show.html.erb │ ├── daily_trends │ ├── feed.rss.builder │ ├── index.html.erb │ └── show.html.erb │ ├── info │ ├── about.html.erb │ ├── contact.html.erb │ ├── finance.html.erb │ ├── frames.html.erb │ └── people.html.erb │ ├── layouts │ ├── daily_timelines.html.erb │ ├── daily_trends.html.erb │ ├── pages.html.erb │ └── weekly_trends.html.erb │ ├── pages │ ├── _movers.html.erb │ ├── _news_leaderboard.html.erb │ ├── _news_results.html.erb │ ├── _search_pane.html.erb │ ├── _search_results.html.erb │ ├── _styled_search_results.html.erb │ ├── _timeline.html.erb │ ├── index.html.erb │ ├── results.html.erb │ └── show.html.erb │ ├── sitemap │ └── sitemap.rxml │ ├── weekly_trends │ ├── index.html.erb │ └── show.html.erb │ └── widgets │ └── chart_widget.js.erb ├── config ├── boot.rb ├── config.yml.sample ├── database.yml.sample ├── deploy.rb.sample ├── environment.rb ├── environments │ ├── development.rb │ ├── production.rb │ └── test.rb ├── initializers │ ├── backtrace_silencers.rb │ ├── inflections.rb │ ├── load_config.rb │ ├── mime_types.rb │ ├── new_rails_defaults.rb │ └── session_store.rb ├── locales │ └── en.yml ├── routes.rb ├── s3.yml.sample └── schedule.rb ├── db ├── data │ └── develop │ │ ├── daily_timelines.yml │ │ ├── daily_trends.yml │ │ ├── pages.yml │ │ └── weekly_trends.yml ├── migrate │ ├── 20090602002800_create_pages.rb │ ├── 20090602123029_create_daily_timelines.rb │ ├── 20090604095428_create_daily_trends.rb │ ├── 20090604095527_create_weekly_trends.rb │ ├── 20090605234506_remove_created_at_from_page.rb │ ├── 20090605234518_remove_updated_at_from_page.rb │ ├── 20090605234534_add_monthly_trend_to_page.rb │ ├── 20090611190137_creating_staging_tables.rb │ ├── 20090619210019_create_people.rb │ ├── 20090619212730_create_companies.rb │ ├── 20090621034525_create_featured_pages.rb │ └── 20090621055343_add_featured_to_page.rb └── schema.rb ├── doc └── README_FOR_APP ├── lib ├── hive │ ├── hive_daily_merge.sql │ ├── hive_daily_timelines.sql │ └── hive_daily_trends.sql ├── python_streaming │ ├── daily_merge.py │ ├── daily_timelines.py │ ├── daily_trends.py │ ├── hive_trend_mapper.py │ └── parse_categories.py ├── scripts │ ├── daily_load.sh │ ├── generate_featured_pages.py │ ├── hadoop_mailer.py │ ├── run_daily_merge.sh │ ├── run_daily_timelines.sh │ ├── run_daily_trends.sh │ └── seed_memcached.py ├── sql │ ├── load_featured_pages.sql │ ├── load_history.sql │ ├── load_trends.sql │ ├── preprocess_wikipedia.sql │ ├── rename_backup_to_live.sql │ ├── rename_backup_to_new.sql │ └── rename_new_to_live.sql └── tasks │ ├── db.rake │ └── extract_fixtures.rake ├── log └── README ├── plugin ├── public ├── 404.html ├── 422.html ├── 500.html ├── favicon.ico ├── images │ ├── 1x1.gif │ ├── White_square_with_question_mark.png │ ├── bar.gif │ ├── cloudera-logo.png │ ├── corner.gif │ ├── csv_icon.png │ ├── dg-logo-dark-1.png │ ├── dotted.gif │ ├── input.gif │ ├── logo_aws.gif │ ├── ns-logo.gif │ ├── rails.png │ ├── search.png │ ├── searchbg.gif │ └── submit.gif ├── index.html.default ├── javascripts │ ├── application.js │ ├── controls.js │ ├── dragdrop.js │ ├── effects.js │ ├── prototype.js │ └── twitter_search.js ├── robots.txt └── stylesheets │ └── trends.css ├── script ├── about ├── console ├── dbconsole ├── destroy ├── generate ├── hourly ├── performance │ ├── benchmarker │ └── profiler ├── plugin ├── runner └── server ├── server ├── server_config ├── config.example ├── etc │ ├── apache2 │ │ └── sites-available │ │ │ └── app.custom │ ├── memcached.conf │ └── mysql │ │ └── my.cnf ├── root │ └── .s3cfg.sample └── usr │ └── local │ └── ec2onrails │ └── bin │ └── backup_app_db.rb ├── test ├── fixtures │ ├── companies.yml │ ├── daily_timelines.yml │ ├── daily_trends.yml │ ├── featured_pages.yml │ ├── pages.yml │ ├── people.yml │ ├── schema_migrations.yml │ └── weekly_trends.yml ├── functional │ ├── daily_timelines_controller_test.rb │ ├── daily_trends_controller_test.rb │ ├── pages_controller_test.rb │ └── weekly_trends_controller_test.rb ├── performance │ └── browsing_test.rb ├── test_helper.rb └── unit │ ├── company_test.rb │ ├── daily_timeline_test.rb │ ├── daily_trend_test.rb │ ├── featured_page_test.rb │ ├── helpers │ ├── daily_timelines_helper_test.rb │ ├── daily_trends_helper_test.rb │ ├── pages_helper_test.rb │ └── weekly_trends_helper_test.rb │ ├── page_test.rb │ ├── person_test.rb │ └── weekly_trend_test.rb └── vendor └── plugins ├── annotatedtimeline-for-rails ├── CHANGELOG ├── LICENSE ├── README ├── Rakefile ├── init.rb ├── install.rb ├── lib │ └── annotated_timeline.rb ├── tasks │ └── annotated_timeline_tasks.rake ├── test │ ├── annotated_timeline_test.rb │ └── test_helper.rb └── uninstall.rb ├── auto_complete ├── README ├── Rakefile ├── init.rb ├── lib │ ├── auto_complete.rb │ └── auto_complete_macros_helper.rb └── test │ └── auto_complete_test.rb └── svn ├── MIT-LICENSE ├── README ├── Rakefile ├── init.rb ├── install.rb ├── lib └── gc4r.rb ├── tasks └── gc4r_tasks.rake ├── test └── gc4r_test.rb └── uninstall.rb /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawrangling/trendingtopics/HEAD/.gitignore -------------------------------------------------------------------------------- /Capfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawrangling/trendingtopics/HEAD/Capfile -------------------------------------------------------------------------------- /README.textile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawrangling/trendingtopics/HEAD/README.textile -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawrangling/trendingtopics/HEAD/Rakefile -------------------------------------------------------------------------------- /app/controllers/application_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawrangling/trendingtopics/HEAD/app/controllers/application_controller.rb -------------------------------------------------------------------------------- /app/controllers/daily_timelines_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawrangling/trendingtopics/HEAD/app/controllers/daily_timelines_controller.rb -------------------------------------------------------------------------------- /app/controllers/daily_trends_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawrangling/trendingtopics/HEAD/app/controllers/daily_trends_controller.rb -------------------------------------------------------------------------------- /app/controllers/info_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawrangling/trendingtopics/HEAD/app/controllers/info_controller.rb -------------------------------------------------------------------------------- /app/controllers/pages_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawrangling/trendingtopics/HEAD/app/controllers/pages_controller.rb -------------------------------------------------------------------------------- /app/controllers/sitemap_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawrangling/trendingtopics/HEAD/app/controllers/sitemap_controller.rb -------------------------------------------------------------------------------- /app/controllers/weekly_trends_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawrangling/trendingtopics/HEAD/app/controllers/weekly_trends_controller.rb -------------------------------------------------------------------------------- /app/controllers/widgets_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawrangling/trendingtopics/HEAD/app/controllers/widgets_controller.rb -------------------------------------------------------------------------------- /app/helpers/application_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawrangling/trendingtopics/HEAD/app/helpers/application_helper.rb -------------------------------------------------------------------------------- /app/helpers/daily_timelines_helper.rb: -------------------------------------------------------------------------------- 1 | module DailyTimelinesHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/helpers/daily_trends_helper.rb: -------------------------------------------------------------------------------- 1 | module DailyTrendsHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/helpers/pages_helper.rb: -------------------------------------------------------------------------------- 1 | module PagesHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/helpers/sitemap_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawrangling/trendingtopics/HEAD/app/helpers/sitemap_helper.rb -------------------------------------------------------------------------------- /app/helpers/weekly_trends_helper.rb: -------------------------------------------------------------------------------- 1 | module WeeklyTrendsHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/models/company.rb: -------------------------------------------------------------------------------- 1 | class Company < ActiveRecord::Base 2 | belongs_to :page 3 | end 4 | -------------------------------------------------------------------------------- /app/models/daily_timeline.rb: -------------------------------------------------------------------------------- 1 | class DailyTimeline < ActiveRecord::Base 2 | belongs_to :page 3 | end 4 | -------------------------------------------------------------------------------- /app/models/daily_trend.rb: -------------------------------------------------------------------------------- 1 | class DailyTrend < ActiveRecord::Base 2 | belongs_to :page 3 | end 4 | -------------------------------------------------------------------------------- /app/models/featured_page.rb: -------------------------------------------------------------------------------- 1 | class FeaturedPage < ActiveRecord::Base 2 | belongs_to :page 3 | end 4 | -------------------------------------------------------------------------------- /app/models/page.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawrangling/trendingtopics/HEAD/app/models/page.rb -------------------------------------------------------------------------------- /app/models/person.rb: -------------------------------------------------------------------------------- 1 | class Person < ActiveRecord::Base 2 | belongs_to :page 3 | end 4 | -------------------------------------------------------------------------------- /app/models/weekly_trend.rb: -------------------------------------------------------------------------------- 1 | class WeeklyTrend < ActiveRecord::Base 2 | belongs_to :page 3 | end 4 | -------------------------------------------------------------------------------- /app/views/daily_timelines/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawrangling/trendingtopics/HEAD/app/views/daily_timelines/index.html.erb -------------------------------------------------------------------------------- /app/views/daily_timelines/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawrangling/trendingtopics/HEAD/app/views/daily_timelines/show.html.erb -------------------------------------------------------------------------------- /app/views/daily_trends/feed.rss.builder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawrangling/trendingtopics/HEAD/app/views/daily_trends/feed.rss.builder -------------------------------------------------------------------------------- /app/views/daily_trends/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawrangling/trendingtopics/HEAD/app/views/daily_trends/index.html.erb -------------------------------------------------------------------------------- /app/views/daily_trends/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawrangling/trendingtopics/HEAD/app/views/daily_trends/show.html.erb -------------------------------------------------------------------------------- /app/views/info/about.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawrangling/trendingtopics/HEAD/app/views/info/about.html.erb -------------------------------------------------------------------------------- /app/views/info/contact.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawrangling/trendingtopics/HEAD/app/views/info/contact.html.erb -------------------------------------------------------------------------------- /app/views/info/finance.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawrangling/trendingtopics/HEAD/app/views/info/finance.html.erb -------------------------------------------------------------------------------- /app/views/info/frames.html.erb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/views/info/people.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawrangling/trendingtopics/HEAD/app/views/info/people.html.erb -------------------------------------------------------------------------------- /app/views/layouts/daily_timelines.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawrangling/trendingtopics/HEAD/app/views/layouts/daily_timelines.html.erb -------------------------------------------------------------------------------- /app/views/layouts/daily_trends.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawrangling/trendingtopics/HEAD/app/views/layouts/daily_trends.html.erb -------------------------------------------------------------------------------- /app/views/layouts/pages.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawrangling/trendingtopics/HEAD/app/views/layouts/pages.html.erb -------------------------------------------------------------------------------- /app/views/layouts/weekly_trends.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawrangling/trendingtopics/HEAD/app/views/layouts/weekly_trends.html.erb -------------------------------------------------------------------------------- /app/views/pages/_movers.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawrangling/trendingtopics/HEAD/app/views/pages/_movers.html.erb -------------------------------------------------------------------------------- /app/views/pages/_news_leaderboard.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawrangling/trendingtopics/HEAD/app/views/pages/_news_leaderboard.html.erb -------------------------------------------------------------------------------- /app/views/pages/_news_results.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawrangling/trendingtopics/HEAD/app/views/pages/_news_results.html.erb -------------------------------------------------------------------------------- /app/views/pages/_search_pane.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawrangling/trendingtopics/HEAD/app/views/pages/_search_pane.html.erb -------------------------------------------------------------------------------- /app/views/pages/_search_results.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawrangling/trendingtopics/HEAD/app/views/pages/_search_results.html.erb -------------------------------------------------------------------------------- /app/views/pages/_styled_search_results.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawrangling/trendingtopics/HEAD/app/views/pages/_styled_search_results.html.erb -------------------------------------------------------------------------------- /app/views/pages/_timeline.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawrangling/trendingtopics/HEAD/app/views/pages/_timeline.html.erb -------------------------------------------------------------------------------- /app/views/pages/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawrangling/trendingtopics/HEAD/app/views/pages/index.html.erb -------------------------------------------------------------------------------- /app/views/pages/results.html.erb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/views/pages/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawrangling/trendingtopics/HEAD/app/views/pages/show.html.erb -------------------------------------------------------------------------------- /app/views/sitemap/sitemap.rxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawrangling/trendingtopics/HEAD/app/views/sitemap/sitemap.rxml -------------------------------------------------------------------------------- /app/views/weekly_trends/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawrangling/trendingtopics/HEAD/app/views/weekly_trends/index.html.erb -------------------------------------------------------------------------------- /app/views/weekly_trends/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawrangling/trendingtopics/HEAD/app/views/weekly_trends/show.html.erb -------------------------------------------------------------------------------- /app/views/widgets/chart_widget.js.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawrangling/trendingtopics/HEAD/app/views/widgets/chart_widget.js.erb -------------------------------------------------------------------------------- /config/boot.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawrangling/trendingtopics/HEAD/config/boot.rb -------------------------------------------------------------------------------- /config/config.yml.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawrangling/trendingtopics/HEAD/config/config.yml.sample -------------------------------------------------------------------------------- /config/database.yml.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawrangling/trendingtopics/HEAD/config/database.yml.sample -------------------------------------------------------------------------------- /config/deploy.rb.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawrangling/trendingtopics/HEAD/config/deploy.rb.sample -------------------------------------------------------------------------------- /config/environment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawrangling/trendingtopics/HEAD/config/environment.rb -------------------------------------------------------------------------------- /config/environments/development.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawrangling/trendingtopics/HEAD/config/environments/development.rb -------------------------------------------------------------------------------- /config/environments/production.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawrangling/trendingtopics/HEAD/config/environments/production.rb -------------------------------------------------------------------------------- /config/environments/test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawrangling/trendingtopics/HEAD/config/environments/test.rb -------------------------------------------------------------------------------- /config/initializers/backtrace_silencers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawrangling/trendingtopics/HEAD/config/initializers/backtrace_silencers.rb -------------------------------------------------------------------------------- /config/initializers/inflections.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawrangling/trendingtopics/HEAD/config/initializers/inflections.rb -------------------------------------------------------------------------------- /config/initializers/load_config.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawrangling/trendingtopics/HEAD/config/initializers/load_config.rb -------------------------------------------------------------------------------- /config/initializers/mime_types.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawrangling/trendingtopics/HEAD/config/initializers/mime_types.rb -------------------------------------------------------------------------------- /config/initializers/new_rails_defaults.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawrangling/trendingtopics/HEAD/config/initializers/new_rails_defaults.rb -------------------------------------------------------------------------------- /config/initializers/session_store.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawrangling/trendingtopics/HEAD/config/initializers/session_store.rb -------------------------------------------------------------------------------- /config/locales/en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawrangling/trendingtopics/HEAD/config/locales/en.yml -------------------------------------------------------------------------------- /config/routes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawrangling/trendingtopics/HEAD/config/routes.rb -------------------------------------------------------------------------------- /config/s3.yml.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawrangling/trendingtopics/HEAD/config/s3.yml.sample -------------------------------------------------------------------------------- /config/schedule.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawrangling/trendingtopics/HEAD/config/schedule.rb -------------------------------------------------------------------------------- /db/data/develop/daily_timelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawrangling/trendingtopics/HEAD/db/data/develop/daily_timelines.yml -------------------------------------------------------------------------------- /db/data/develop/daily_trends.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawrangling/trendingtopics/HEAD/db/data/develop/daily_trends.yml -------------------------------------------------------------------------------- /db/data/develop/pages.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawrangling/trendingtopics/HEAD/db/data/develop/pages.yml -------------------------------------------------------------------------------- /db/data/develop/weekly_trends.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawrangling/trendingtopics/HEAD/db/data/develop/weekly_trends.yml -------------------------------------------------------------------------------- /db/migrate/20090602002800_create_pages.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawrangling/trendingtopics/HEAD/db/migrate/20090602002800_create_pages.rb -------------------------------------------------------------------------------- /db/migrate/20090602123029_create_daily_timelines.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawrangling/trendingtopics/HEAD/db/migrate/20090602123029_create_daily_timelines.rb -------------------------------------------------------------------------------- /db/migrate/20090604095428_create_daily_trends.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawrangling/trendingtopics/HEAD/db/migrate/20090604095428_create_daily_trends.rb -------------------------------------------------------------------------------- /db/migrate/20090604095527_create_weekly_trends.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawrangling/trendingtopics/HEAD/db/migrate/20090604095527_create_weekly_trends.rb -------------------------------------------------------------------------------- /db/migrate/20090605234506_remove_created_at_from_page.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawrangling/trendingtopics/HEAD/db/migrate/20090605234506_remove_created_at_from_page.rb -------------------------------------------------------------------------------- /db/migrate/20090605234518_remove_updated_at_from_page.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawrangling/trendingtopics/HEAD/db/migrate/20090605234518_remove_updated_at_from_page.rb -------------------------------------------------------------------------------- /db/migrate/20090605234534_add_monthly_trend_to_page.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawrangling/trendingtopics/HEAD/db/migrate/20090605234534_add_monthly_trend_to_page.rb -------------------------------------------------------------------------------- /db/migrate/20090611190137_creating_staging_tables.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawrangling/trendingtopics/HEAD/db/migrate/20090611190137_creating_staging_tables.rb -------------------------------------------------------------------------------- /db/migrate/20090619210019_create_people.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawrangling/trendingtopics/HEAD/db/migrate/20090619210019_create_people.rb -------------------------------------------------------------------------------- /db/migrate/20090619212730_create_companies.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawrangling/trendingtopics/HEAD/db/migrate/20090619212730_create_companies.rb -------------------------------------------------------------------------------- /db/migrate/20090621034525_create_featured_pages.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawrangling/trendingtopics/HEAD/db/migrate/20090621034525_create_featured_pages.rb -------------------------------------------------------------------------------- /db/migrate/20090621055343_add_featured_to_page.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawrangling/trendingtopics/HEAD/db/migrate/20090621055343_add_featured_to_page.rb -------------------------------------------------------------------------------- /db/schema.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawrangling/trendingtopics/HEAD/db/schema.rb -------------------------------------------------------------------------------- /doc/README_FOR_APP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawrangling/trendingtopics/HEAD/doc/README_FOR_APP -------------------------------------------------------------------------------- /lib/hive/hive_daily_merge.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawrangling/trendingtopics/HEAD/lib/hive/hive_daily_merge.sql -------------------------------------------------------------------------------- /lib/hive/hive_daily_timelines.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawrangling/trendingtopics/HEAD/lib/hive/hive_daily_timelines.sql -------------------------------------------------------------------------------- /lib/hive/hive_daily_trends.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawrangling/trendingtopics/HEAD/lib/hive/hive_daily_trends.sql -------------------------------------------------------------------------------- /lib/python_streaming/daily_merge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawrangling/trendingtopics/HEAD/lib/python_streaming/daily_merge.py -------------------------------------------------------------------------------- /lib/python_streaming/daily_timelines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawrangling/trendingtopics/HEAD/lib/python_streaming/daily_timelines.py -------------------------------------------------------------------------------- /lib/python_streaming/daily_trends.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawrangling/trendingtopics/HEAD/lib/python_streaming/daily_trends.py -------------------------------------------------------------------------------- /lib/python_streaming/hive_trend_mapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawrangling/trendingtopics/HEAD/lib/python_streaming/hive_trend_mapper.py -------------------------------------------------------------------------------- /lib/python_streaming/parse_categories.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawrangling/trendingtopics/HEAD/lib/python_streaming/parse_categories.py -------------------------------------------------------------------------------- /lib/scripts/daily_load.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawrangling/trendingtopics/HEAD/lib/scripts/daily_load.sh -------------------------------------------------------------------------------- /lib/scripts/generate_featured_pages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawrangling/trendingtopics/HEAD/lib/scripts/generate_featured_pages.py -------------------------------------------------------------------------------- /lib/scripts/hadoop_mailer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawrangling/trendingtopics/HEAD/lib/scripts/hadoop_mailer.py -------------------------------------------------------------------------------- /lib/scripts/run_daily_merge.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawrangling/trendingtopics/HEAD/lib/scripts/run_daily_merge.sh -------------------------------------------------------------------------------- /lib/scripts/run_daily_timelines.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawrangling/trendingtopics/HEAD/lib/scripts/run_daily_timelines.sh -------------------------------------------------------------------------------- /lib/scripts/run_daily_trends.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawrangling/trendingtopics/HEAD/lib/scripts/run_daily_trends.sh -------------------------------------------------------------------------------- /lib/scripts/seed_memcached.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawrangling/trendingtopics/HEAD/lib/scripts/seed_memcached.py -------------------------------------------------------------------------------- /lib/sql/load_featured_pages.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawrangling/trendingtopics/HEAD/lib/sql/load_featured_pages.sql -------------------------------------------------------------------------------- /lib/sql/load_history.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawrangling/trendingtopics/HEAD/lib/sql/load_history.sql -------------------------------------------------------------------------------- /lib/sql/load_trends.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawrangling/trendingtopics/HEAD/lib/sql/load_trends.sql -------------------------------------------------------------------------------- /lib/sql/preprocess_wikipedia.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawrangling/trendingtopics/HEAD/lib/sql/preprocess_wikipedia.sql -------------------------------------------------------------------------------- /lib/sql/rename_backup_to_live.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawrangling/trendingtopics/HEAD/lib/sql/rename_backup_to_live.sql -------------------------------------------------------------------------------- /lib/sql/rename_backup_to_new.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawrangling/trendingtopics/HEAD/lib/sql/rename_backup_to_new.sql -------------------------------------------------------------------------------- /lib/sql/rename_new_to_live.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawrangling/trendingtopics/HEAD/lib/sql/rename_new_to_live.sql -------------------------------------------------------------------------------- /lib/tasks/db.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawrangling/trendingtopics/HEAD/lib/tasks/db.rake -------------------------------------------------------------------------------- /lib/tasks/extract_fixtures.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawrangling/trendingtopics/HEAD/lib/tasks/extract_fixtures.rake -------------------------------------------------------------------------------- /log/README: -------------------------------------------------------------------------------- 1 | Logs go here... 2 | -------------------------------------------------------------------------------- /plugin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawrangling/trendingtopics/HEAD/plugin -------------------------------------------------------------------------------- /public/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawrangling/trendingtopics/HEAD/public/404.html -------------------------------------------------------------------------------- /public/422.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawrangling/trendingtopics/HEAD/public/422.html -------------------------------------------------------------------------------- /public/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawrangling/trendingtopics/HEAD/public/500.html -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/images/1x1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawrangling/trendingtopics/HEAD/public/images/1x1.gif -------------------------------------------------------------------------------- /public/images/White_square_with_question_mark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawrangling/trendingtopics/HEAD/public/images/White_square_with_question_mark.png -------------------------------------------------------------------------------- /public/images/bar.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawrangling/trendingtopics/HEAD/public/images/bar.gif -------------------------------------------------------------------------------- /public/images/cloudera-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawrangling/trendingtopics/HEAD/public/images/cloudera-logo.png -------------------------------------------------------------------------------- /public/images/corner.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawrangling/trendingtopics/HEAD/public/images/corner.gif -------------------------------------------------------------------------------- /public/images/csv_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawrangling/trendingtopics/HEAD/public/images/csv_icon.png -------------------------------------------------------------------------------- /public/images/dg-logo-dark-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawrangling/trendingtopics/HEAD/public/images/dg-logo-dark-1.png -------------------------------------------------------------------------------- /public/images/dotted.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawrangling/trendingtopics/HEAD/public/images/dotted.gif -------------------------------------------------------------------------------- /public/images/input.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawrangling/trendingtopics/HEAD/public/images/input.gif -------------------------------------------------------------------------------- /public/images/logo_aws.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawrangling/trendingtopics/HEAD/public/images/logo_aws.gif -------------------------------------------------------------------------------- /public/images/ns-logo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawrangling/trendingtopics/HEAD/public/images/ns-logo.gif -------------------------------------------------------------------------------- /public/images/rails.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawrangling/trendingtopics/HEAD/public/images/rails.png -------------------------------------------------------------------------------- /public/images/search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawrangling/trendingtopics/HEAD/public/images/search.png -------------------------------------------------------------------------------- /public/images/searchbg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawrangling/trendingtopics/HEAD/public/images/searchbg.gif -------------------------------------------------------------------------------- /public/images/submit.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawrangling/trendingtopics/HEAD/public/images/submit.gif -------------------------------------------------------------------------------- /public/index.html.default: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawrangling/trendingtopics/HEAD/public/index.html.default -------------------------------------------------------------------------------- /public/javascripts/application.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawrangling/trendingtopics/HEAD/public/javascripts/application.js -------------------------------------------------------------------------------- /public/javascripts/controls.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawrangling/trendingtopics/HEAD/public/javascripts/controls.js -------------------------------------------------------------------------------- /public/javascripts/dragdrop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawrangling/trendingtopics/HEAD/public/javascripts/dragdrop.js -------------------------------------------------------------------------------- /public/javascripts/effects.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawrangling/trendingtopics/HEAD/public/javascripts/effects.js -------------------------------------------------------------------------------- /public/javascripts/prototype.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawrangling/trendingtopics/HEAD/public/javascripts/prototype.js -------------------------------------------------------------------------------- /public/javascripts/twitter_search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawrangling/trendingtopics/HEAD/public/javascripts/twitter_search.js -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawrangling/trendingtopics/HEAD/public/robots.txt -------------------------------------------------------------------------------- /public/stylesheets/trends.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawrangling/trendingtopics/HEAD/public/stylesheets/trends.css -------------------------------------------------------------------------------- /script/about: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawrangling/trendingtopics/HEAD/script/about -------------------------------------------------------------------------------- /script/console: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawrangling/trendingtopics/HEAD/script/console -------------------------------------------------------------------------------- /script/dbconsole: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawrangling/trendingtopics/HEAD/script/dbconsole -------------------------------------------------------------------------------- /script/destroy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawrangling/trendingtopics/HEAD/script/destroy -------------------------------------------------------------------------------- /script/generate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawrangling/trendingtopics/HEAD/script/generate -------------------------------------------------------------------------------- /script/hourly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawrangling/trendingtopics/HEAD/script/hourly -------------------------------------------------------------------------------- /script/performance/benchmarker: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawrangling/trendingtopics/HEAD/script/performance/benchmarker -------------------------------------------------------------------------------- /script/performance/profiler: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawrangling/trendingtopics/HEAD/script/performance/profiler -------------------------------------------------------------------------------- /script/plugin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawrangling/trendingtopics/HEAD/script/plugin -------------------------------------------------------------------------------- /script/runner: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawrangling/trendingtopics/HEAD/script/runner -------------------------------------------------------------------------------- /script/server: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawrangling/trendingtopics/HEAD/script/server -------------------------------------------------------------------------------- /server: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawrangling/trendingtopics/HEAD/server -------------------------------------------------------------------------------- /server_config/config.example: -------------------------------------------------------------------------------- 1 | extra files you want copied to ec2 go here 2 | -------------------------------------------------------------------------------- /server_config/etc/apache2/sites-available/app.custom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawrangling/trendingtopics/HEAD/server_config/etc/apache2/sites-available/app.custom -------------------------------------------------------------------------------- /server_config/etc/memcached.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawrangling/trendingtopics/HEAD/server_config/etc/memcached.conf -------------------------------------------------------------------------------- /server_config/etc/mysql/my.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawrangling/trendingtopics/HEAD/server_config/etc/mysql/my.cnf -------------------------------------------------------------------------------- /server_config/root/.s3cfg.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawrangling/trendingtopics/HEAD/server_config/root/.s3cfg.sample -------------------------------------------------------------------------------- /server_config/usr/local/ec2onrails/bin/backup_app_db.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawrangling/trendingtopics/HEAD/server_config/usr/local/ec2onrails/bin/backup_app_db.rb -------------------------------------------------------------------------------- /test/fixtures/companies.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawrangling/trendingtopics/HEAD/test/fixtures/companies.yml -------------------------------------------------------------------------------- /test/fixtures/daily_timelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawrangling/trendingtopics/HEAD/test/fixtures/daily_timelines.yml -------------------------------------------------------------------------------- /test/fixtures/daily_trends.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawrangling/trendingtopics/HEAD/test/fixtures/daily_trends.yml -------------------------------------------------------------------------------- /test/fixtures/featured_pages.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawrangling/trendingtopics/HEAD/test/fixtures/featured_pages.yml -------------------------------------------------------------------------------- /test/fixtures/pages.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawrangling/trendingtopics/HEAD/test/fixtures/pages.yml -------------------------------------------------------------------------------- /test/fixtures/people.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawrangling/trendingtopics/HEAD/test/fixtures/people.yml -------------------------------------------------------------------------------- /test/fixtures/schema_migrations.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawrangling/trendingtopics/HEAD/test/fixtures/schema_migrations.yml -------------------------------------------------------------------------------- /test/fixtures/weekly_trends.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawrangling/trendingtopics/HEAD/test/fixtures/weekly_trends.yml -------------------------------------------------------------------------------- /test/functional/daily_timelines_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawrangling/trendingtopics/HEAD/test/functional/daily_timelines_controller_test.rb -------------------------------------------------------------------------------- /test/functional/daily_trends_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawrangling/trendingtopics/HEAD/test/functional/daily_trends_controller_test.rb -------------------------------------------------------------------------------- /test/functional/pages_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawrangling/trendingtopics/HEAD/test/functional/pages_controller_test.rb -------------------------------------------------------------------------------- /test/functional/weekly_trends_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawrangling/trendingtopics/HEAD/test/functional/weekly_trends_controller_test.rb -------------------------------------------------------------------------------- /test/performance/browsing_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawrangling/trendingtopics/HEAD/test/performance/browsing_test.rb -------------------------------------------------------------------------------- /test/test_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawrangling/trendingtopics/HEAD/test/test_helper.rb -------------------------------------------------------------------------------- /test/unit/company_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawrangling/trendingtopics/HEAD/test/unit/company_test.rb -------------------------------------------------------------------------------- /test/unit/daily_timeline_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawrangling/trendingtopics/HEAD/test/unit/daily_timeline_test.rb -------------------------------------------------------------------------------- /test/unit/daily_trend_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawrangling/trendingtopics/HEAD/test/unit/daily_trend_test.rb -------------------------------------------------------------------------------- /test/unit/featured_page_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawrangling/trendingtopics/HEAD/test/unit/featured_page_test.rb -------------------------------------------------------------------------------- /test/unit/helpers/daily_timelines_helper_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawrangling/trendingtopics/HEAD/test/unit/helpers/daily_timelines_helper_test.rb -------------------------------------------------------------------------------- /test/unit/helpers/daily_trends_helper_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawrangling/trendingtopics/HEAD/test/unit/helpers/daily_trends_helper_test.rb -------------------------------------------------------------------------------- /test/unit/helpers/pages_helper_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawrangling/trendingtopics/HEAD/test/unit/helpers/pages_helper_test.rb -------------------------------------------------------------------------------- /test/unit/helpers/weekly_trends_helper_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawrangling/trendingtopics/HEAD/test/unit/helpers/weekly_trends_helper_test.rb -------------------------------------------------------------------------------- /test/unit/page_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawrangling/trendingtopics/HEAD/test/unit/page_test.rb -------------------------------------------------------------------------------- /test/unit/person_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawrangling/trendingtopics/HEAD/test/unit/person_test.rb -------------------------------------------------------------------------------- /test/unit/weekly_trend_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawrangling/trendingtopics/HEAD/test/unit/weekly_trend_test.rb -------------------------------------------------------------------------------- /vendor/plugins/annotatedtimeline-for-rails/CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawrangling/trendingtopics/HEAD/vendor/plugins/annotatedtimeline-for-rails/CHANGELOG -------------------------------------------------------------------------------- /vendor/plugins/annotatedtimeline-for-rails/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawrangling/trendingtopics/HEAD/vendor/plugins/annotatedtimeline-for-rails/LICENSE -------------------------------------------------------------------------------- /vendor/plugins/annotatedtimeline-for-rails/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawrangling/trendingtopics/HEAD/vendor/plugins/annotatedtimeline-for-rails/README -------------------------------------------------------------------------------- /vendor/plugins/annotatedtimeline-for-rails/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawrangling/trendingtopics/HEAD/vendor/plugins/annotatedtimeline-for-rails/Rakefile -------------------------------------------------------------------------------- /vendor/plugins/annotatedtimeline-for-rails/init.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawrangling/trendingtopics/HEAD/vendor/plugins/annotatedtimeline-for-rails/init.rb -------------------------------------------------------------------------------- /vendor/plugins/annotatedtimeline-for-rails/install.rb: -------------------------------------------------------------------------------- 1 | # Install hook code here 2 | -------------------------------------------------------------------------------- /vendor/plugins/annotatedtimeline-for-rails/lib/annotated_timeline.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawrangling/trendingtopics/HEAD/vendor/plugins/annotatedtimeline-for-rails/lib/annotated_timeline.rb -------------------------------------------------------------------------------- /vendor/plugins/annotatedtimeline-for-rails/tasks/annotated_timeline_tasks.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawrangling/trendingtopics/HEAD/vendor/plugins/annotatedtimeline-for-rails/tasks/annotated_timeline_tasks.rake -------------------------------------------------------------------------------- /vendor/plugins/annotatedtimeline-for-rails/test/annotated_timeline_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawrangling/trendingtopics/HEAD/vendor/plugins/annotatedtimeline-for-rails/test/annotated_timeline_test.rb -------------------------------------------------------------------------------- /vendor/plugins/annotatedtimeline-for-rails/test/test_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawrangling/trendingtopics/HEAD/vendor/plugins/annotatedtimeline-for-rails/test/test_helper.rb -------------------------------------------------------------------------------- /vendor/plugins/annotatedtimeline-for-rails/uninstall.rb: -------------------------------------------------------------------------------- 1 | # Uninstall hook code here 2 | -------------------------------------------------------------------------------- /vendor/plugins/auto_complete/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawrangling/trendingtopics/HEAD/vendor/plugins/auto_complete/README -------------------------------------------------------------------------------- /vendor/plugins/auto_complete/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawrangling/trendingtopics/HEAD/vendor/plugins/auto_complete/Rakefile -------------------------------------------------------------------------------- /vendor/plugins/auto_complete/init.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawrangling/trendingtopics/HEAD/vendor/plugins/auto_complete/init.rb -------------------------------------------------------------------------------- /vendor/plugins/auto_complete/lib/auto_complete.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawrangling/trendingtopics/HEAD/vendor/plugins/auto_complete/lib/auto_complete.rb -------------------------------------------------------------------------------- /vendor/plugins/auto_complete/lib/auto_complete_macros_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawrangling/trendingtopics/HEAD/vendor/plugins/auto_complete/lib/auto_complete_macros_helper.rb -------------------------------------------------------------------------------- /vendor/plugins/auto_complete/test/auto_complete_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawrangling/trendingtopics/HEAD/vendor/plugins/auto_complete/test/auto_complete_test.rb -------------------------------------------------------------------------------- /vendor/plugins/svn/MIT-LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawrangling/trendingtopics/HEAD/vendor/plugins/svn/MIT-LICENSE -------------------------------------------------------------------------------- /vendor/plugins/svn/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawrangling/trendingtopics/HEAD/vendor/plugins/svn/README -------------------------------------------------------------------------------- /vendor/plugins/svn/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawrangling/trendingtopics/HEAD/vendor/plugins/svn/Rakefile -------------------------------------------------------------------------------- /vendor/plugins/svn/init.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawrangling/trendingtopics/HEAD/vendor/plugins/svn/init.rb -------------------------------------------------------------------------------- /vendor/plugins/svn/install.rb: -------------------------------------------------------------------------------- 1 | # Install hook code here 2 | -------------------------------------------------------------------------------- /vendor/plugins/svn/lib/gc4r.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawrangling/trendingtopics/HEAD/vendor/plugins/svn/lib/gc4r.rb -------------------------------------------------------------------------------- /vendor/plugins/svn/tasks/gc4r_tasks.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawrangling/trendingtopics/HEAD/vendor/plugins/svn/tasks/gc4r_tasks.rake -------------------------------------------------------------------------------- /vendor/plugins/svn/test/gc4r_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawrangling/trendingtopics/HEAD/vendor/plugins/svn/test/gc4r_test.rb -------------------------------------------------------------------------------- /vendor/plugins/svn/uninstall.rb: -------------------------------------------------------------------------------- 1 | # Uninstall hook code here 2 | --------------------------------------------------------------------------------