calagator 0.0.1.pre1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (384) hide show
  1. checksums.yaml +7 -0
  2. data/LICENSE.txt +23 -0
  3. data/README.md +75 -0
  4. data/Rakefile +12 -0
  5. data/app/assets/images/confused-alligator-sm.png +0 -0
  6. data/app/assets/images/disk.png +0 -0
  7. data/app/assets/images/edit.png +0 -0
  8. data/app/assets/images/external_sites/epdx.png +0 -0
  9. data/app/assets/images/external_sites/external.gif +0 -0
  10. data/app/assets/images/external_sites/facebook.png +0 -0
  11. data/app/assets/images/external_sites/foursquare.png +0 -0
  12. data/app/assets/images/external_sites/gowalla.png +0 -0
  13. data/app/assets/images/external_sites/lanyrd.png +0 -0
  14. data/app/assets/images/external_sites/meetup.png +0 -0
  15. data/app/assets/images/external_sites/plancast.png +0 -0
  16. data/app/assets/images/external_sites/shizzow.png +0 -0
  17. data/app/assets/images/external_sites/upcoming.png +0 -0
  18. data/app/assets/images/external_sites/yelp.png +0 -0
  19. data/app/assets/images/feed.png +0 -0
  20. data/app/assets/images/heart.png +0 -0
  21. data/app/assets/images/icon_ical.gif +0 -0
  22. data/app/assets/images/information.png +0 -0
  23. data/app/assets/images/nav_marker.gif +0 -0
  24. data/app/assets/images/nav_marker.png +0 -0
  25. data/app/assets/images/plus.png +0 -0
  26. data/app/assets/images/redx.png +0 -0
  27. data/app/assets/images/site-icon.png +0 -0
  28. data/app/assets/images/spinner.gif +0 -0
  29. data/app/assets/images/star.png +0 -0
  30. data/app/assets/images/subnav_marker.gif +0 -0
  31. data/app/assets/images/subnav_marker.png +0 -0
  32. data/app/assets/images/tag_blue.png +0 -0
  33. data/app/assets/images/tag_icons/angular.png +0 -0
  34. data/app/assets/images/tag_icons/beer.png +0 -0
  35. data/app/assets/images/tag_icons/bitcoin.png +0 -0
  36. data/app/assets/images/tag_icons/free.png +0 -0
  37. data/app/assets/images/tag_icons/golang.png +0 -0
  38. data/app/assets/images/tag_icons/html.png +0 -0
  39. data/app/assets/images/tag_icons/javascript.png +0 -0
  40. data/app/assets/images/tag_icons/linux.png +0 -0
  41. data/app/assets/images/tag_icons/php.png +0 -0
  42. data/app/assets/images/tag_icons/pizza.png +0 -0
  43. data/app/assets/images/tag_icons/python.png +0 -0
  44. data/app/assets/images/tag_icons/rails.png +0 -0
  45. data/app/assets/images/tag_icons/ruby.png +0 -0
  46. data/app/assets/images/tag_icons/sass.png +0 -0
  47. data/app/assets/images/tag_icons/swift.png +0 -0
  48. data/app/assets/images/transmit_blue.png +0 -0
  49. data/app/assets/images/weekday_background.gif +0 -0
  50. data/app/assets/javascripts/calagator.js +18 -0
  51. data/app/assets/javascripts/calagator/forms.js +60 -0
  52. data/app/assets/stylesheets/calagator.scss +8 -0
  53. data/app/assets/stylesheets/calagator/common.scss +14 -0
  54. data/app/assets/stylesheets/calagator/datepicker.scss +177 -0
  55. data/app/assets/stylesheets/calagator/errors.css +110 -0
  56. data/app/assets/stylesheets/calagator/forms.scss +4 -0
  57. data/app/assets/stylesheets/calagator/reset.css +40 -0
  58. data/app/assets/stylesheets/calagator/theme.css +0 -0
  59. data/app/controllers/calagator/admin_controller.rb +27 -0
  60. data/app/controllers/calagator/application_controller.rb +82 -0
  61. data/app/controllers/calagator/events_controller.rb +171 -0
  62. data/app/controllers/calagator/site_controller.rb +35 -0
  63. data/app/controllers/calagator/sources_controller.rb +94 -0
  64. data/app/controllers/calagator/venues_controller.rb +133 -0
  65. data/app/controllers/calagator/versions_controller.rb +20 -0
  66. data/app/helpers/calagator/application_helper.rb +128 -0
  67. data/app/helpers/calagator/events_helper.rb +184 -0
  68. data/app/helpers/calagator/google_event_export_helper.rb +67 -0
  69. data/app/helpers/calagator/mapping_helper.rb +103 -0
  70. data/app/helpers/calagator/sources_helper.rb +10 -0
  71. data/app/helpers/calagator/tags_helper.rb +42 -0
  72. data/app/helpers/calagator/time_range_helper.rb +166 -0
  73. data/app/models/calagator/event.rb +246 -0
  74. data/app/models/calagator/event/cloner.rb +39 -0
  75. data/app/models/calagator/event/ical_renderer.rb +155 -0
  76. data/app/models/calagator/event/overview.rb +45 -0
  77. data/app/models/calagator/event/saver.rb +58 -0
  78. data/app/models/calagator/event/search.rb +72 -0
  79. data/app/models/calagator/event/search_engine.rb +28 -0
  80. data/app/models/calagator/event/search_engine/apache_sunspot.rb +106 -0
  81. data/app/models/calagator/event/search_engine/sql.rb +107 -0
  82. data/app/models/calagator/source.rb +115 -0
  83. data/app/models/calagator/source/importer.rb +46 -0
  84. data/app/models/calagator/source/parser.rb +128 -0
  85. data/app/models/calagator/source/parser/facebook.rb +67 -0
  86. data/app/models/calagator/source/parser/hcal.rb +108 -0
  87. data/app/models/calagator/source/parser/http_authentication_required_error.rb +6 -0
  88. data/app/models/calagator/source/parser/ical.rb +186 -0
  89. data/app/models/calagator/source/parser/meetup.rb +72 -0
  90. data/app/models/calagator/source/parser/not_found.rb +9 -0
  91. data/app/models/calagator/source/parser/plancast.rb +59 -0
  92. data/app/models/calagator/venue.rb +161 -0
  93. data/app/models/calagator/venue/geocoder.rb +51 -0
  94. data/app/models/calagator/venue/search.rb +63 -0
  95. data/app/models/calagator/venue/search_engine.rb +24 -0
  96. data/app/models/calagator/venue/search_engine/apache_sunspot.rb +85 -0
  97. data/app/models/calagator/venue/search_engine/sql.rb +68 -0
  98. data/app/models/event/search_engine/base.rb +0 -0
  99. data/app/observers/calagator/cache_observer.rb +37 -0
  100. data/app/views/calagator/admin/events.html.erb +28 -0
  101. data/app/views/calagator/admin/index.html.erb +8 -0
  102. data/app/views/calagator/events/_feed_item.html.erb +62 -0
  103. data/app/views/calagator/events/_form.html.erb +63 -0
  104. data/app/views/calagator/events/_gcal_reminder.html.erb +1 -0
  105. data/app/views/calagator/events/_hcal.html.erb +41 -0
  106. data/app/views/calagator/events/_item.html.erb +120 -0
  107. data/app/views/calagator/events/_list.html.erb +30 -0
  108. data/app/views/calagator/events/_list_item.html.erb +37 -0
  109. data/app/views/calagator/events/_search_section.html.erb +15 -0
  110. data/app/views/calagator/events/_subnav.html.erb +13 -0
  111. data/app/views/calagator/events/_table.html.erb +74 -0
  112. data/app/views/calagator/events/duplicates.html.erb +58 -0
  113. data/app/views/calagator/events/edit.html.erb +3 -0
  114. data/app/views/calagator/events/index.atom.builder +32 -0
  115. data/app/views/calagator/events/index.html.erb +51 -0
  116. data/app/views/calagator/events/index.kml.erb +20 -0
  117. data/app/views/calagator/events/new.html.erb +7 -0
  118. data/app/views/calagator/events/search.html.erb +25 -0
  119. data/app/views/calagator/events/show.html.erb +81 -0
  120. data/app/views/calagator/site/_appropriateness_message.html.erb +15 -0
  121. data/app/views/calagator/site/_description.html.erb +3 -0
  122. data/app/views/calagator/site/about.html.erb +7 -0
  123. data/app/views/calagator/site/defunct.html.erb +15 -0
  124. data/app/views/calagator/site/export.html.erb +4 -0
  125. data/app/views/calagator/site/index.html.erb +40 -0
  126. data/app/views/calagator/site/opensearch.xml.builder +8 -0
  127. data/app/views/calagator/sources/_subnav.html.erb +0 -0
  128. data/app/views/calagator/sources/edit.html.erb +12 -0
  129. data/app/views/calagator/sources/import.html.erb +10 -0
  130. data/app/views/calagator/sources/index.html.erb +22 -0
  131. data/app/views/calagator/sources/new.html.erb +32 -0
  132. data/app/views/calagator/sources/show.html.erb +16 -0
  133. data/app/views/calagator/venues/_form.html.erb +57 -0
  134. data/app/views/calagator/venues/_subnav.html.erb +10 -0
  135. data/app/views/calagator/venues/duplicates.html.erb +65 -0
  136. data/app/views/calagator/venues/edit.html.erb +3 -0
  137. data/app/views/calagator/venues/index.html.erb +93 -0
  138. data/app/views/calagator/venues/index.kml.erb +15 -0
  139. data/app/views/calagator/venues/map.html.erb +4 -0
  140. data/app/views/calagator/venues/new.html.erb +5 -0
  141. data/app/views/calagator/venues/show.html.erb +113 -0
  142. data/app/views/calagator/versions/_chooser.html.erb +28 -0
  143. data/app/views/calagator/versions/_edit_with_chooser.html.erb +16 -0
  144. data/app/views/layouts/calagator/application.html.erb +110 -0
  145. data/config/deploy/local.rb +37 -0
  146. data/config/deploy/lucca.rb +33 -0
  147. data/config/initializers/dates.rb +7 -0
  148. data/config/initializers/formtastic.rb +82 -0
  149. data/config/initializers/geokit.rb +74 -0
  150. data/config/initializers/ics_renderer.rb +6 -0
  151. data/config/initializers/load_tag_model_extensions.rb +3 -0
  152. data/config/initializers/mime_types.rb +9 -0
  153. data/config/initializers/observers.rb +1 -0
  154. data/config/initializers/search_engine.rb +4 -0
  155. data/config/initializers/set_default_url_host.rb +5 -0
  156. data/config/initializers/time_get_zone.rb +8 -0
  157. data/config/locales/en.yml +5 -0
  158. data/config/routes.rb +55 -0
  159. data/config/secrets.yml.blag +75 -0
  160. data/config/sunspot.yml +23 -0
  161. data/db/development.sqlite3 +0 -0
  162. data/db/development.sqlite3.bak +0 -0
  163. data/db/development.sqlite3.old +0 -0
  164. data/db/development~20111112@110950.sqlite3 +0 -0
  165. data/db/migrate/001_create_events.rb +17 -0
  166. data/db/migrate/002_create_venues.rb +17 -0
  167. data/db/migrate/003_create_sources.rb +16 -0
  168. data/db/migrate/004_add_detailed_fields_to_venue.rb +19 -0
  169. data/db/migrate/005_add_end_time_to_events.rb +9 -0
  170. data/db/migrate/006_add_source_id_to_events.rb +9 -0
  171. data/db/migrate/008_add_source_id_to_venues.rb +10 -0
  172. data/db/migrate/009_add_duplicate_of_column_to_venues.rb +9 -0
  173. data/db/migrate/010_add_duplicate_of_column_to_events.rb +9 -0
  174. data/db/migrate/011_change_lat_long_type.rb +12 -0
  175. data/db/migrate/012_add_source_reimport.rb +9 -0
  176. data/db/migrate/013_change_end_time_to_duration.rb +11 -0
  177. data/db/migrate/014_remove_format_type_from_source.rb +9 -0
  178. data/db/migrate/015_create_updates.rb +15 -0
  179. data/db/migrate/016_remove_next_update_from_source.rb +9 -0
  180. data/db/migrate/20080705163959_change_duration_to_end_time.rb +11 -0
  181. data/db/migrate/20080705164959_create_tags_and_taggings.rb +28 -0
  182. data/db/migrate/20081011181519_create_versioned_events.rb +25 -0
  183. data/db/migrate/20081011193124_create_versioned_venues.rb +32 -0
  184. data/db/migrate/20081115190515_add_rrule_to_events.rb +15 -0
  185. data/db/migrate/20090912082129_create_versions.rb +18 -0
  186. data/db/migrate/20110219205156_add_closed_flag_to_venues.rb +9 -0
  187. data/db/migrate/20110220001008_add_wifi_flag_to_venues.rb +9 -0
  188. data/db/migrate/20110220011427_add_access_notes_to_venues.rb +9 -0
  189. data/db/migrate/20110220031117_add_events_count_to_venues.rb +8 -0
  190. data/db/migrate/20110604174521_add_venue_details_to_events.rb +9 -0
  191. data/db/migrate/20110717231316_acts_as_taggable_on_migration.rb +50 -0
  192. data/db/migrate/20120709092821_cleanup.rb +14 -0
  193. data/db/migrate/20120831234448_specify_venues_latitude_and_longitude_precision.rb +11 -0
  194. data/db/migrate/20150206085809_remove_updates.rb +13 -0
  195. data/db/migrate/20150207231355_add_locked_status_to_events.rb +5 -0
  196. data/db/production.sqlite3 +0 -0
  197. data/db/schema.rb +102 -0
  198. data/db/seeds.rb +16 -0
  199. data/db/test.sqlite3 +0 -0
  200. data/db/test2.sqlite3 +0 -0
  201. data/lib/calagator.rb +30 -0
  202. data/lib/calagator/blacklist_validator.rb +69 -0
  203. data/lib/calagator/decode_html_entities_hack.rb +33 -0
  204. data/lib/calagator/duplicate_checking.rb +133 -0
  205. data/lib/calagator/duplicate_checking/controller_actions.rb +38 -0
  206. data/lib/calagator/duplicate_checking/duplicate_finder.rb +83 -0
  207. data/lib/calagator/duplicate_checking/duplicate_squasher.rb +74 -0
  208. data/lib/calagator/engine.rb +30 -0
  209. data/lib/calagator/strip_whitespace.rb +19 -0
  210. data/lib/calagator/tag_model_extensions.rb +104 -0
  211. data/lib/calagator/url_prefixer.rb +9 -0
  212. data/lib/calagator/version.rb +3 -0
  213. data/lib/generators/calagator/install_generator.rb +39 -0
  214. data/lib/generators/calagator/templates/config/calagator.rb +26 -0
  215. data/lib/generators/calagator/templates/config/secrets.yml.sample +83 -0
  216. data/lib/secrets_reader.rb +76 -0
  217. data/lib/tasks/spec_db.rake +53 -0
  218. data/lib/tasks/sunspot_reindex_calagator.rake +6 -0
  219. data/lib/tasks/sunspot_solr_restart_enhancements.rake +19 -0
  220. data/lib/tasks/update_counter_caches.rake +13 -0
  221. data/lib/templates/erb/scaffold/_form.html.erb +11 -0
  222. data/lib/theme_reader.rb +17 -0
  223. data/lib/wait_for_solr.rb +25 -0
  224. data/spec/controllers/calagator/application_controller_spec.rb +47 -0
  225. data/spec/controllers/calagator/events_controller_spec.rb +794 -0
  226. data/spec/controllers/calagator/site_controller_spec.rb +59 -0
  227. data/spec/controllers/calagator/sources_controller_spec.rb +439 -0
  228. data/spec/controllers/calagator/venues_controller_spec.rb +319 -0
  229. data/spec/controllers/calagator/versions_controller_spec.rb +82 -0
  230. data/spec/controllers/squash_many_duplicates_examples.rb +49 -0
  231. data/spec/dummy/Gemfile +39 -0
  232. data/spec/dummy/Gemfile.lock +195 -0
  233. data/spec/dummy/README.rdoc +261 -0
  234. data/spec/dummy/Rakefile +7 -0
  235. data/spec/dummy/app/assets/images/rails.png +0 -0
  236. data/spec/dummy/app/assets/javascripts/application.js +16 -0
  237. data/spec/dummy/app/assets/stylesheets/application.css +14 -0
  238. data/spec/dummy/app/controllers/application_controller.rb +3 -0
  239. data/spec/dummy/app/helpers/application_helper.rb +2 -0
  240. data/spec/dummy/app/views/layouts/application.html.erb +14 -0
  241. data/spec/dummy/config.ru +4 -0
  242. data/spec/dummy/config/application.rb +62 -0
  243. data/spec/dummy/config/boot.rb +6 -0
  244. data/spec/dummy/config/database.yml +25 -0
  245. data/spec/dummy/config/environment.rb +5 -0
  246. data/spec/dummy/config/environments/development.rb +37 -0
  247. data/spec/dummy/config/environments/production.rb +67 -0
  248. data/spec/dummy/config/environments/test.rb +37 -0
  249. data/spec/dummy/config/initializers/backtrace_silencers.rb +7 -0
  250. data/spec/dummy/config/initializers/calagator.rb +26 -0
  251. data/spec/dummy/config/initializers/inflections.rb +15 -0
  252. data/spec/dummy/config/initializers/mime_types.rb +5 -0
  253. data/spec/dummy/config/initializers/secret_token.rb +7 -0
  254. data/spec/dummy/config/initializers/session_store.rb +8 -0
  255. data/spec/dummy/config/initializers/wrap_parameters.rb +14 -0
  256. data/spec/dummy/config/locales/en.yml +5 -0
  257. data/spec/dummy/config/routes.rb +59 -0
  258. data/spec/dummy/config/secrets.yml +83 -0
  259. data/spec/dummy/db/development.sqlite3 +0 -0
  260. data/spec/dummy/db/migrate/20150309023304_create_events.calagator.rb +18 -0
  261. data/spec/dummy/db/migrate/20150309023305_create_venues.calagator.rb +18 -0
  262. data/spec/dummy/db/migrate/20150309023306_create_sources.calagator.rb +17 -0
  263. data/spec/dummy/db/migrate/20150309023307_add_detailed_fields_to_venue.calagator.rb +20 -0
  264. data/spec/dummy/db/migrate/20150309023308_add_end_time_to_events.calagator.rb +10 -0
  265. data/spec/dummy/db/migrate/20150309023309_add_source_id_to_events.calagator.rb +10 -0
  266. data/spec/dummy/db/migrate/20150309023310_add_source_id_to_venues.calagator.rb +11 -0
  267. data/spec/dummy/db/migrate/20150309023311_add_duplicate_of_column_to_venues.calagator.rb +10 -0
  268. data/spec/dummy/db/migrate/20150309023312_add_duplicate_of_column_to_events.calagator.rb +10 -0
  269. data/spec/dummy/db/migrate/20150309023313_change_lat_long_type.calagator.rb +13 -0
  270. data/spec/dummy/db/migrate/20150309023314_add_source_reimport.calagator.rb +10 -0
  271. data/spec/dummy/db/migrate/20150309023315_change_end_time_to_duration.calagator.rb +12 -0
  272. data/spec/dummy/db/migrate/20150309023316_remove_format_type_from_source.calagator.rb +10 -0
  273. data/spec/dummy/db/migrate/20150309023317_create_updates.calagator.rb +16 -0
  274. data/spec/dummy/db/migrate/20150309023318_remove_next_update_from_source.calagator.rb +10 -0
  275. data/spec/dummy/db/migrate/20150309023319_change_duration_to_end_time.calagator.rb +12 -0
  276. data/spec/dummy/db/migrate/20150309023320_create_tags_and_taggings.calagator.rb +29 -0
  277. data/spec/dummy/db/migrate/20150309023321_create_versioned_events.calagator.rb +26 -0
  278. data/spec/dummy/db/migrate/20150309023322_create_versioned_venues.calagator.rb +33 -0
  279. data/spec/dummy/db/migrate/20150309023323_add_rrule_to_events.calagator.rb +16 -0
  280. data/spec/dummy/db/migrate/20150309023324_create_versions.calagator.rb +19 -0
  281. data/spec/dummy/db/migrate/20150309023325_add_closed_flag_to_venues.calagator.rb +10 -0
  282. data/spec/dummy/db/migrate/20150309023326_add_wifi_flag_to_venues.calagator.rb +10 -0
  283. data/spec/dummy/db/migrate/20150309023327_add_access_notes_to_venues.calagator.rb +10 -0
  284. data/spec/dummy/db/migrate/20150309023328_add_events_count_to_venues.calagator.rb +9 -0
  285. data/spec/dummy/db/migrate/20150309023329_add_venue_details_to_events.calagator.rb +10 -0
  286. data/spec/dummy/db/migrate/20150309023330_acts_as_taggable_on_migration.calagator.rb +51 -0
  287. data/spec/dummy/db/migrate/20150309023331_cleanup.calagator.rb +15 -0
  288. data/spec/dummy/db/migrate/20150309023332_specify_venues_latitude_and_longitude_precision.calagator.rb +12 -0
  289. data/spec/dummy/db/migrate/20150309023333_remove_updates.calagator.rb +14 -0
  290. data/spec/dummy/db/migrate/20150309023334_add_locked_status_to_events.calagator.rb +6 -0
  291. data/spec/dummy/db/schema.rb +95 -0
  292. data/spec/dummy/db/seeds.rb +7 -0
  293. data/spec/dummy/db/test.sqlite3 +0 -0
  294. data/spec/dummy/doc/README_FOR_APP +2 -0
  295. data/spec/dummy/log/development.log +273 -0
  296. data/spec/dummy/public/404.html +26 -0
  297. data/spec/dummy/public/422.html +26 -0
  298. data/spec/dummy/public/500.html +25 -0
  299. data/spec/dummy/public/favicon.ico +0 -0
  300. data/spec/dummy/public/robots.txt +5 -0
  301. data/spec/dummy/script/rails +6 -0
  302. data/spec/dummy/test/performance/browsing_test.rb +12 -0
  303. data/spec/dummy/test/test_helper.rb +13 -0
  304. data/spec/factories.rb +93 -0
  305. data/spec/features/add_event_spec.rb +99 -0
  306. data/spec/features/add_venue_spec.rb +34 -0
  307. data/spec/features/admin_auth_spec.rb +22 -0
  308. data/spec/features/admin_lock_event_spec.rb +41 -0
  309. data/spec/features/import_events_from_feed_spec.rb +43 -0
  310. data/spec/features/managing_event_spec.rb +111 -0
  311. data/spec/features/managing_venue_spec.rb +71 -0
  312. data/spec/features/search_event_spec.rb +27 -0
  313. data/spec/helpers/calagator/application_helper_spec.rb +82 -0
  314. data/spec/helpers/calagator/events_helper_spec.rb +172 -0
  315. data/spec/helpers/calagator/google_event_export_helper_spec.rb +70 -0
  316. data/spec/helpers/calagator/sources_helper_spec.rb +12 -0
  317. data/spec/helpers/calagator/tags_helper_spec.rb +85 -0
  318. data/spec/helpers/calagator/time_range_helper_spec.rb +59 -0
  319. data/spec/lib/calagator/blacklist_validator_spec.rb +65 -0
  320. data/spec/lib/calagator/decode_html_entities_hack_spec.rb +54 -0
  321. data/spec/lib/calagator/settings_spec.rb +20 -0
  322. data/spec/lib/calagator/url_prefixer_spec.rb +33 -0
  323. data/spec/lib/secrets_reader_spec.rb +65 -0
  324. data/spec/models/calagator/event/cloner_spec.rb +43 -0
  325. data/spec/models/calagator/event/overview_spec.rb +79 -0
  326. data/spec/models/calagator/event/search_spec.rb +103 -0
  327. data/spec/models/calagator/event_search_spec.rb +149 -0
  328. data/spec/models/calagator/event_spec.rb +859 -0
  329. data/spec/models/calagator/source/parser_facebook_spec.rb +73 -0
  330. data/spec/models/calagator/source/parser_hcal_spec.rb +69 -0
  331. data/spec/models/calagator/source/parser_ical_non_standard_spec.rb +91 -0
  332. data/spec/models/calagator/source/parser_ical_spec.rb +322 -0
  333. data/spec/models/calagator/source/parser_meetup_spec.rb +69 -0
  334. data/spec/models/calagator/source/parser_plancast_spec.rb +53 -0
  335. data/spec/models/calagator/source/parser_spec.rb +238 -0
  336. data/spec/models/calagator/source_spec.rb +135 -0
  337. data/spec/models/calagator/venue/search_spec.rb +92 -0
  338. data/spec/models/calagator/venue_search_spec.rb +124 -0
  339. data/spec/models/calagator/venue_spec.rb +346 -0
  340. data/spec/models/tag_spec.rb +35 -0
  341. data/spec/rails_helper.rb +39 -0
  342. data/spec/spec_helper.rb +140 -0
  343. data/spec/support/disable_geocoding.rb +1 -0
  344. data/spec/support/http_samples.rb +5 -0
  345. data/spec/support/samples/facebook.json +23 -0
  346. data/spec/support/samples/hcal_basic.xml +6 -0
  347. data/spec/support/samples/hcal_dup_event_dup_venue.xml +13 -0
  348. data/spec/support/samples/hcal_event_duplicates_fixture.xml +13 -0
  349. data/spec/support/samples/hcal_event_wo_lat_and_long.xml +14 -0
  350. data/spec/support/samples/hcal_multiple.xml +16 -0
  351. data/spec/support/samples/hcal_same_event_twice_with_different_venues.xml +12 -0
  352. data/spec/support/samples/hcal_single.xml +8 -0
  353. data/spec/support/samples/hcal_two_identical_events.xml +14 -0
  354. data/spec/support/samples/hcal_upcoming_v1.html +412 -0
  355. data/spec/support/samples/hcal_upcoming_v2.html +749 -0
  356. data/spec/support/samples/hcal_upcoming_v3.html +685 -0
  357. data/spec/support/samples/hcal_upcoming_v4.html +761 -0
  358. data/spec/support/samples/ical_apple.ics +22 -0
  359. data/spec/support/samples/ical_apple_v3.ics +37 -0
  360. data/spec/support/samples/ical_basic.ics +15 -0
  361. data/spec/support/samples/ical_basic_with_duration.ics +16 -0
  362. data/spec/support/samples/ical_event_with_squashed_venue.ics +12 -0
  363. data/spec/support/samples/ical_eventful_many.ics +504 -0
  364. data/spec/support/samples/ical_gmt.ics +12 -0
  365. data/spec/support/samples/ical_google.ics +786 -0
  366. data/spec/support/samples/ical_multiple_calendars.ics +111 -0
  367. data/spec/support/samples/ical_upcoming.ics +36 -0
  368. data/spec/support/samples/ical_upcoming_many.ics +682 -0
  369. data/spec/support/samples/ical_upcoming_v2.ics +43 -0
  370. data/spec/support/samples/ical_z.ics +10 -0
  371. data/spec/support/samples/meetup.ics +16 -0
  372. data/spec/support/samples/meetup.json +31 -0
  373. data/spec/support/samples/plancast.ics +59 -0
  374. data/spec/support/samples/plancast.json +51 -0
  375. data/spec/support/samples/plancast_with_missing_venue.json +39 -0
  376. data/spec/support/samples/upcoming_v1.xml +8 -0
  377. data/spec/support/samples/upcoming_v2_with_invalid_utc_dates.xml +8 -0
  378. data/spec/support/time_convenience_methods.rb +8 -0
  379. data/spec/support/time_zones.rb +12 -0
  380. data/spec/support/url_helpers.rb +5 -0
  381. data/spec/support/wait_for_ajax.rb +15 -0
  382. data/spec/support/webmock.rb +8 -0
  383. data/spec/travis_spec.rb +7 -0
  384. metadata +1194 -0
@@ -0,0 +1,111 @@
1
+ BEGIN:VCALENDAR
2
+ METHOD:PUBLISH
3
+ X-WR-TIMEZONE:US/Pacific
4
+ PRODID:-//Apple Inc.//iCal 3.0//EN
5
+ CALSCALE:GREGORIAN
6
+ X-WR-CALNAME:Untitled
7
+ VERSION:2.0
8
+ X-WR-RELCALID:08075B83-5017-44B8-BB88-027F3F882762
9
+ X-APPLE-CALENDAR-COLOR:#F57802
10
+ BEGIN:VTIMEZONE
11
+ TZID:US/Pacific
12
+ BEGIN:DAYLIGHT
13
+ TZOFFSETFROM:-0800
14
+ TZOFFSETTO:-0700
15
+ DTSTART:20070311T020000
16
+ RRULE:FREQ=YEARLY;BYMONTH=3;BYDAY=2SU
17
+ TZNAME:PDT
18
+ END:DAYLIGHT
19
+ BEGIN:STANDARD
20
+ TZOFFSETFROM:-0700
21
+ TZOFFSETTO:-0800
22
+ DTSTART:20071104T020000
23
+ RRULE:FREQ=YEARLY;BYMONTH=11;BYDAY=1SU
24
+ TZNAME:PST
25
+ END:STANDARD
26
+ END:VTIMEZONE
27
+ BEGIN:VEVENT
28
+ SEQUENCE:3
29
+ TRANSP:OPAQUE
30
+ UID:654C6EC3-542C-469A-8267-12C35E5A6BCA
31
+ DTSTART;TZID=US/Pacific:20100408T000000
32
+ DTSTAMP:20100409T033746Z
33
+ SUMMARY:Coffee with Jason
34
+ CREATED:20100409T033734Z
35
+ DTEND;TZID=US/Pacific:20100408T010000
36
+ END:VEVENT
37
+ END:VCALENDAR
38
+ BEGIN:VCALENDAR
39
+ METHOD:PUBLISH
40
+ X-WR-TIMEZONE:US/Pacific
41
+ PRODID:-//Apple Inc.//iCal 3.0//EN
42
+ CALSCALE:GREGORIAN
43
+ X-WR-CALNAME:Untitled
44
+ VERSION:2.0
45
+ X-WR-RELCALID:08075B83-5017-44B8-BB88-027F3F882762
46
+ X-APPLE-CALENDAR-COLOR:#F57802
47
+ BEGIN:VTIMEZONE
48
+ TZID:US/Pacific
49
+ BEGIN:DAYLIGHT
50
+ TZOFFSETFROM:-0800
51
+ TZOFFSETTO:-0700
52
+ DTSTART:20070311T020000
53
+ RRULE:FREQ=YEARLY;BYMONTH=3;BYDAY=2SU
54
+ TZNAME:PDT
55
+ END:DAYLIGHT
56
+ BEGIN:STANDARD
57
+ TZOFFSETFROM:-0700
58
+ TZOFFSETTO:-0800
59
+ DTSTART:20071104T020000
60
+ RRULE:FREQ=YEARLY;BYMONTH=11;BYDAY=1SU
61
+ TZNAME:PST
62
+ END:STANDARD
63
+ END:VTIMEZONE
64
+ BEGIN:VEVENT
65
+ SEQUENCE:3
66
+ TRANSP:OPAQUE
67
+ UID:654C6EC3-542C-469A-8267-12C35E5A6BCA
68
+ DTSTART;TZID=US/Pacific:20100408T000000
69
+ DTSTAMP:20100409T033746Z
70
+ SUMMARY:Coffee with Mike
71
+ CREATED:20100409T033734Z
72
+ DTEND;TZID=US/Pacific:20100408T010000
73
+ END:VEVENT
74
+ END:VCALENDAR
75
+ BEGIN:VCALENDAR
76
+ METHOD:PUBLISH
77
+ X-WR-TIMEZONE:US/Pacific
78
+ PRODID:-//Apple Inc.//iCal 3.0//EN
79
+ CALSCALE:GREGORIAN
80
+ X-WR-CALNAME:Untitled
81
+ VERSION:2.0
82
+ X-WR-RELCALID:08075B83-5017-44B8-BB88-027F3F882762
83
+ X-APPLE-CALENDAR-COLOR:#F57802
84
+ BEGIN:VTIMEZONE
85
+ TZID:US/Pacific
86
+ BEGIN:DAYLIGHT
87
+ TZOFFSETFROM:-0800
88
+ TZOFFSETTO:-0700
89
+ DTSTART:20070311T020000
90
+ RRULE:FREQ=YEARLY;BYMONTH=3;BYDAY=2SU
91
+ TZNAME:PDT
92
+ END:DAYLIGHT
93
+ BEGIN:STANDARD
94
+ TZOFFSETFROM:-0700
95
+ TZOFFSETTO:-0800
96
+ DTSTART:20071104T020000
97
+ RRULE:FREQ=YEARLY;BYMONTH=11;BYDAY=1SU
98
+ TZNAME:PST
99
+ END:STANDARD
100
+ END:VTIMEZONE
101
+ BEGIN:VEVENT
102
+ SEQUENCE:3
103
+ TRANSP:OPAQUE
104
+ UID:654C6EC3-542C-469A-8267-12C35E5A6BCA
105
+ DTSTART;TZID=US/Pacific:20100408T000000
106
+ DTSTAMP:20100409T033746Z
107
+ SUMMARY:Coffee with Kim
108
+ CREATED:20100409T033734Z
109
+ DTEND;TZID=US/Pacific:20100408T010000
110
+ END:VEVENT
111
+ END:VCALENDAR
@@ -0,0 +1,36 @@
1
+ BEGIN:VCALENDAR
2
+ VERSION:2.0
3
+ X-WR-CALNAME:Upcoming Event: Ignite Portland
4
+ PRODID:-//Upcoming.org/Upcoming ICS//EN
5
+ CALSCALE:GREGORIAN
6
+ METHOD:PUBLISH
7
+ BEGIN:VEVENT
8
+ DTSTART:20080205T180000
9
+ DTEND:20080205T210000
10
+ TRANSP:TRANSPARENT
11
+ SUMMARY:Ignite Portland
12
+ DESCRIPTION: [Full details at http://upcoming.yahoo.com/event/390164/ ] If you had five minutes to talk to Portland what would you say? What if you only got 20 slides and they rotated automatically after 15 seconds? Launch a web site? Teach a hack? Talk about recent learnings\, successes\, failures?
13
+
14
+ Come join us for the second Ignite Portland! It's free to attend or present. We hope to have food and drinks\, but we need sponsors for that\, so check out http://www.igniteportland.com for details on attending\, presenting\, or sponsoring!
15
+
16
+ What is Ignite Portland? A bunch of fast-paced\, interesting presentations - 20 slides for 15 seconds each. Our mantra is "share burning ideas" - just about any topic will do\, as long as it's interesting. From tech to crafts to business to just plain fun! There will be time to network and chat after each series of presentations.
17
+ URL;VALUE=URI:http://upcoming.yahoo.com/event/390164/
18
+ UID:http://upcoming.yahoo.com/event/390164/
19
+ DTSTAMP:20071219T160342
20
+ LAST-UPDATED:20071219T160342
21
+ CATEGORIES:Social
22
+ ORGANIZER;CN=tiesque:X-ADDR:http://upcoming.yahoo.com/user/28472/
23
+ LOCATION;VENUE-UID="http://upcoming.yahoo.com/venue/61559/":Bagdad Theater and Pub @ 3702 S.E. Hawthorne Blvd\, Portland\, Oregon 97214 US
24
+ END:VEVENT
25
+ BEGIN:VVENUE
26
+ X-VVENUE-INFO:http://evdb.com/docs/ical-venue/draft-norris-ical-venue.html
27
+ NAME:Bagdad Theater and Pub
28
+ ADDRESS:3702 S.E. Hawthorne Blvd
29
+ CITY:Portland
30
+ REGION;X-ABBREV=or:Oregon
31
+ COUNTRY;X-ABBREV=us:United States
32
+ POSTALCODE:97214
33
+ GEO:45.5121;-122.626
34
+ URL;X-LABEL=Venue Info:http://www.mcmenamins.com/index.php?loc=9&id=176
35
+ END:VVENUE
36
+ END:VCALENDAR
@@ -0,0 +1,682 @@
1
+ BEGIN:VCALENDAR
2
+ VERSION:2.0
3
+ X-WR-CALNAME:Upcoming: Silicon Florist Events
4
+ PRODID:-//Upcoming.org/Upcoming ICS//EN
5
+ CALSCALE:GREGORIAN
6
+ METHOD:PUBLISH
7
+ BEGIN:VEVENT
8
+ DTSTART:20080709T153000
9
+ DURATION:PT0S
10
+ TRANSP:TRANSPARENT
11
+ SUMMARY:Substance Summit
12
+ DESCRIPTION: [Full details at http://upcoming.yahoo.com/event/834270/ ] The first in a series of conversations with the Portland creative community to help each other understand how we can be more inclusive\, collaborative and effective. We have been inspired by Portland's creative technology community (Legion of Tech and Silicon Florist to name a few) to help facilitate an environment where we share ideas and create a place that draws the best talent and the best clients to Portland to get the best creative work possible.
13
+
14
+ This is the first of many conversations. We don't expect to solve the world's problems\, let alone ours\, over one beer (or two\, or three...). But if we're going to start\, it might as well be here and now.
15
+
16
+ Location is the Lucky Lab NW Beer Hall
17
+ URL;VALUE=URI:http://upcoming.yahoo.com/event/834270/
18
+ UID:http://upcoming.yahoo.com/event/834270/
19
+ DTSTAMP:20080624T140407
20
+ LAST-UPDATED:20080624T140407
21
+ CATEGORIES:Social
22
+ ORGANIZER;CN=stlandau:X-ADDR:http://upcoming.yahoo.com/user/258412/
23
+ LOCATION;VENUE-UID="http://upcoming.yahoo.com/venue/97061/":Lucky Lab beer hall @ 1945 NW Quimby\, Portland\, Oregon US
24
+ END:VEVENT
25
+ BEGIN:VVENUE
26
+ X-VVENUE-INFO:http://evdb.com/docs/ical-venue/draft-norris-ical-venue.html
27
+ NAME:Lucky Lab beer hall
28
+ ADDRESS:1945 NW Quimby
29
+ CITY:Portland
30
+ REGION;X-ABBREV=or:Oregon
31
+ COUNTRY;X-ABBREV=us:United States
32
+ POSTALCODE:
33
+ GEO:45.5336;-122.692
34
+ URL;X-LABEL=Venue Info:http://www.luckylab.com
35
+ END:VVENUE
36
+ BEGIN:VEVENT
37
+ DTSTART:20080714T180000
38
+ DTEND:20080714T200000
39
+ TRANSP:TRANSPARENT
40
+ SUMMARY:Mobile Love\, Android Style #4
41
+ DESCRIPTION: [Full details at http://upcoming.yahoo.com/event/732230/ ] come talk about the latest android news over a pint of beer.
42
+ URL;VALUE=URI:http://upcoming.yahoo.com/event/732230/
43
+ UID:http://upcoming.yahoo.com/event/732230/
44
+ DTSTAMP:20080527T182752
45
+ LAST-UPDATED:20080527T182752
46
+ CATEGORIES:Social
47
+ ORGANIZER;CN=donpdonp:X-ADDR:http://upcoming.yahoo.com/user/40450/
48
+ LOCATION;VENUE-UID="http://upcoming.yahoo.com/venue/9175/":Lucky Labrador Brew Pub @ 915 SE Hawthorne Boulevard\, Portland\, Oregon 97214 US
49
+ END:VEVENT
50
+ BEGIN:VVENUE
51
+ X-VVENUE-INFO:http://evdb.com/docs/ical-venue/draft-norris-ical-venue.html
52
+ NAME:Lucky Labrador Brew Pub
53
+ ADDRESS:915 SE Hawthorne Boulevard
54
+ CITY:Portland
55
+ REGION;X-ABBREV=or:Oregon
56
+ COUNTRY;X-ABBREV=us:United States
57
+ POSTALCODE:97214
58
+ GEO:45.5123;-122.656
59
+ URL;X-LABEL=Venue Info:http://www.luckylab.com/
60
+ END:VVENUE
61
+ BEGIN:VEVENT
62
+ DTSTART:20080716T120000
63
+ DTEND:20080716T140000
64
+ TRANSP:TRANSPARENT
65
+ SUMMARY:Portland Lunch 2.0 at souk
66
+ DESCRIPTION: [Full details at http://upcoming.yahoo.com/event/840117/ ] The Portland Lunch 2.0 saga continues at flex term office space provider souk \, once again in Old Town on July 16\, 2008.
67
+
68
+ We won't stop until we have Lunch 2.0 at every\, single business in Old Town.
69
+
70
+ Lunch 2.0 is a Valley phenomenon that you can read about here \, and we're putting a PDX stamp on it.
71
+
72
+ Come one\, come all\, whether geek or not. Have some lunch on souk\, mix and mingle with your fellow Portlanders\, learn about the tech scene in Portland\, go home or back to work happy and full.
73
+ URL;VALUE=URI:http://upcoming.yahoo.com/event/840117/
74
+ UID:http://upcoming.yahoo.com/event/840117/
75
+ DTSTAMP:20080626T083924
76
+ LAST-UPDATED:20080626T083924
77
+ CATEGORIES:Social
78
+ ORGANIZER;CN=Jake Kuramoto:X-ADDR:http://upcoming.yahoo.com/user/164150/
79
+ LOCATION;VENUE-UID="http://upcoming.yahoo.com/venue/92822/":souk @ 322 NW 6th Avenue\, suite 200\, Portland\, Oregon 97214 US
80
+ END:VEVENT
81
+ BEGIN:VVENUE
82
+ X-VVENUE-INFO:http://evdb.com/docs/ical-venue/draft-norris-ical-venue.html
83
+ NAME:souk
84
+ ADDRESS:322 NW 6th Avenue\, suite 200
85
+ CITY:Portland
86
+ REGION;X-ABBREV=or:Oregon
87
+ COUNTRY;X-ABBREV=us:United States
88
+ POSTALCODE:97214
89
+ GEO:45.5254;-122.676
90
+ URL;X-LABEL=Venue Info:http://soukllc.com
91
+ END:VVENUE
92
+ BEGIN:VEVENT
93
+ DTSTART:20080716T173000
94
+ DURATION:PT0S
95
+ TRANSP:TRANSPARENT
96
+ SUMMARY:SEMpdx Networking Event
97
+ DESCRIPTION: [Full details at http://upcoming.yahoo.com/event/840533/ ] Join SEMpdx at this networking event. Meet SEMpdx board members\, network with other Web professionals\, and learn more about membership and sponsorship opportunities.
98
+
99
+ Who: Open to all Internet professionals
100
+ What: networking event
101
+ Why: networking\, meet SEMpdx\, learn about membership & benefits\, learn a little something about search marketing
102
+ URL;VALUE=URI:http://upcoming.yahoo.com/event/840533/
103
+ UID:http://upcoming.yahoo.com/event/840533/
104
+ DTSTAMP:20080626T113239
105
+ LAST-UPDATED:20080626T113239
106
+ CATEGORIES:Social
107
+ ORGANIZER;CN=SEMpdx:X-ADDR:http://upcoming.yahoo.com/user/125012/
108
+ LOCATION;VENUE-UID="http://upcoming.yahoo.com/venue/70028/":Paddy's Bar & Grill @ 65 SW Yamhill St.\, Portland\, Oregon US
109
+ END:VEVENT
110
+ BEGIN:VVENUE
111
+ X-VVENUE-INFO:http://evdb.com/docs/ical-venue/draft-norris-ical-venue.html
112
+ NAME:Paddy's Bar & Grill
113
+ ADDRESS:65 SW Yamhill St.
114
+ CITY:Portland
115
+ REGION;X-ABBREV=or:Oregon
116
+ COUNTRY;X-ABBREV=us:United States
117
+ POSTALCODE:
118
+ GEO:45.527;-122.674
119
+ URL;X-LABEL=Venue Info:http://upcoming.yahoo.com/venue/70028/
120
+ END:VVENUE
121
+ BEGIN:VEVENT
122
+ DTSTART;VALUE=DATE:20080717
123
+ DTEND;VALUE=DATE:20080718
124
+ TRANSP:TRANSPARENT
125
+ SUMMARY:Internet Strategy Forum Summit
126
+ DESCRIPTION: [Full details at http://upcoming.yahoo.com/event/460690/ ] The Internet Strategy Forum Summit is the premiere annual conference from the Internet Strategy Forum\, a professional association for corporate Internet strategists.
127
+
128
+ Attendees of the 5th annual Internet Strategy Forum Summit will engage with our keynote presenters from eMarketer\, Forrester Research\, Disney\, Nike\, Intel\, IBM\, WebTrends and Fandango\, who will share their insights and ideas on how to best leverage the Internet and integrate it into overall business strategy.
129
+
130
+ Presenters confirmed so far include:
131
+
132
+ * Geoffrey Ramsey\, Co-founder & CEO\, eMarketer
133
+ * Nancy Bhagat\, Vice President\, Sales and Marketing Group\, Intel
134
+ * Daniel Stickel\, new CEO\, WebTrends (formerly with Google)
135
+ * Charlene Li\, Vice President & Principal Analyst\, Forrester Research
136
+ * Chris Shimojima\, Vice President\, Global Digital Commerce\, Nike
137
+ * David Placier\, Vice President\, Consumer Insights & Marketing\, Disney Online
138
+ * Shane O'Neill\, Chief Technology Officer\, Fandango
139
+ * Mike Moran\, Distinguished Engineer\, IBM\, author (highest-rated speaker at 2007 Summit)
140
+
141
+ There are plenty of opportunities for networking with corporate Internet professionals and Internet-related product and service providers.
142
+
143
+ Check out "The Road to Chief Internet Strategist"\, an optional corporate Internet strategist career path symposium on July 18th\, the day after the main conference.
144
+
145
+ Registration starts at under US$250.
146
+ URL;VALUE=URI:http://upcoming.yahoo.com/event/460690/
147
+ UID:http://upcoming.yahoo.com/event/460690/
148
+ DTSTAMP:20080320T215235
149
+ LAST-UPDATED:20080320T215235
150
+ CATEGORIES:Commercial
151
+ ORGANIZER;CN=sgehlen:X-ADDR:http://upcoming.yahoo.com/user/81099/
152
+ LOCATION;VENUE-UID="http://upcoming.yahoo.com/venue/35679/":Governor Hotel @ 614 SW 11th Ave.\, Portland\, Oregon US
153
+ END:VEVENT
154
+ BEGIN:VVENUE
155
+ X-VVENUE-INFO:http://evdb.com/docs/ical-venue/draft-norris-ical-venue.html
156
+ NAME:Governor Hotel
157
+ ADDRESS:614 SW 11th Ave.
158
+ CITY:Portland
159
+ REGION;X-ABBREV=or:Oregon
160
+ COUNTRY;X-ABBREV=us:United States
161
+ POSTALCODE:
162
+ GEO:45.5207;-122.683
163
+ URL;X-LABEL=Venue Info:http://www.governorhotel.com/
164
+ END:VVENUE
165
+ BEGIN:VEVENT
166
+ DTSTART;VALUE=DATE:20080721
167
+ DTEND;VALUE=DATE:20080726
168
+ TRANSP:TRANSPARENT
169
+ SUMMARY:OSCON
170
+ DESCRIPTION: [Full details at http://upcoming.yahoo.com/event/350914/ ] The O'Reilly Open Source Convention (OSCON) is an annual convention for the discussion of open source software\, such as Linux\, MySQL\, Perl and Python. It is organized by the publisher O'Reilly Media and is held each summer in the United States.
171
+ URL;VALUE=URI:http://upcoming.yahoo.com/event/350914/
172
+ UID:http://upcoming.yahoo.com/event/350914/
173
+ DTSTAMP:20071204T100202
174
+ LAST-UPDATED:20071204T100202
175
+ CATEGORIES:Commercial
176
+ ORGANIZER;CN=yahoo careers:X-ADDR:http://upcoming.yahoo.com/user/131158/
177
+ LOCATION;VENUE-UID="http://upcoming.yahoo.com/venue/1786/":Oregon Convention Center @ 777 NE Martin Luther King\, Jr. Blvd.\, Portland\, Oregon 97232 US
178
+ END:VEVENT
179
+ BEGIN:VVENUE
180
+ X-VVENUE-INFO:http://evdb.com/docs/ical-venue/draft-norris-ical-venue.html
181
+ NAME:Oregon Convention Center
182
+ ADDRESS:777 NE Martin Luther King\, Jr. Blvd.
183
+ CITY:Portland
184
+ REGION;X-ABBREV=or:Oregon
185
+ COUNTRY;X-ABBREV=us:United States
186
+ POSTALCODE:97232
187
+ GEO:45.5285;-122.662
188
+ URL;X-LABEL=Venue Info:http://www.oregoncc.org/
189
+ END:VVENUE
190
+ BEGIN:VEVENT
191
+ DTSTART;VALUE=DATE:20080721
192
+ DTEND;VALUE=DATE:20080723
193
+ TRANSP:TRANSPARENT
194
+ SUMMARY:XMPP Summit 5
195
+ DESCRIPTION: [Full details at http://upcoming.yahoo.com/event/809912/ ]
196
+ URL;VALUE=URI:http://upcoming.yahoo.com/event/809912/
197
+ UID:http://upcoming.yahoo.com/event/809912/
198
+ DTSTAMP:20080617T141141
199
+ LAST-UPDATED:20080617T141141
200
+ CATEGORIES:Other
201
+ ORGANIZER;CN=jaredhanson:X-ADDR:http://upcoming.yahoo.com/user/11503/
202
+ LOCATION;VENUE-UID="http://upcoming.yahoo.com/venue/1786/":Oregon Convention Center @ 777 NE Martin Luther King\, Jr. Blvd.\, Portland\, Oregon 97232 US
203
+ END:VEVENT
204
+ BEGIN:VVENUE
205
+ X-VVENUE-INFO:http://evdb.com/docs/ical-venue/draft-norris-ical-venue.html
206
+ NAME:Oregon Convention Center
207
+ ADDRESS:777 NE Martin Luther King\, Jr. Blvd.
208
+ CITY:Portland
209
+ REGION;X-ABBREV=or:Oregon
210
+ COUNTRY;X-ABBREV=us:United States
211
+ POSTALCODE:97232
212
+ GEO:45.5285;-122.662
213
+ URL;X-LABEL=Venue Info:http://www.oregoncc.org/
214
+ END:VVENUE
215
+ BEGIN:VEVENT
216
+ DTSTART;VALUE=DATE:20080721
217
+ DTEND;VALUE=DATE:20080726
218
+ TRANSP:TRANSPARENT
219
+ SUMMARY:Open Source Convention 2008
220
+ DESCRIPTION: [Full details at http://upcoming.yahoo.com/event/430248/ ] OSCON is the crossroads of all things open source\, bringing together the best\, brightest\, and most interesting people to explore what's new\, and to champion the cause of open principles and open source adoption across the computing industry.
221
+ URL;VALUE=URI:http://upcoming.yahoo.com/event/430248/
222
+ UID:http://upcoming.yahoo.com/event/430248/
223
+ DTSTAMP:20080212T123950
224
+ LAST-UPDATED:20080212T123950
225
+ CATEGORIES:Commercial
226
+ ORGANIZER;CN=mBLAST:X-ADDR:http://upcoming.yahoo.com/user/91675/
227
+ LOCATION;VENUE-UID="http://upcoming.yahoo.com/venue/46678/":Oregon Convention Center Portland @ 777 NE Martin Luther King Jr. Blvd\, Portland\, Oregon US
228
+ END:VEVENT
229
+ BEGIN:VVENUE
230
+ X-VVENUE-INFO:http://evdb.com/docs/ical-venue/draft-norris-ical-venue.html
231
+ NAME:Oregon Convention Center Portland
232
+ ADDRESS:777 NE Martin Luther King Jr. Blvd
233
+ CITY:Portland
234
+ REGION;X-ABBREV=or:Oregon
235
+ COUNTRY;X-ABBREV=us:United States
236
+ POSTALCODE:
237
+ GEO:45.5285;-122.662
238
+ URL;X-LABEL=Venue Info:http://upcoming.yahoo.com/venue/46678/
239
+ END:VVENUE
240
+ BEGIN:VEVENT
241
+ DTSTART;VALUE=DATE:20080722
242
+ DTEND;VALUE=DATE:20080723
243
+ TRANSP:TRANSPARENT
244
+ SUMMARY:Choose the Right Technologies for a Virtualized Infrastructure
245
+ DESCRIPTION: [Full details at http://upcoming.yahoo.com/event/814468/ ]
246
+
247
+
248
+
249
+ Join Steelhead Data and Dell for an informative seminar on virtualization.
250
+ &nbsp\;
251
+ During this lunch seminar we'll discuss how Dell EqualLogic’s PS Series and VMware Infrastructure 3 is the solution that will enable you to:
252
+ &nbsp\;
253
+ · Dynamically provision\, migrate\, and manage computing and storage capacity across resources
254
+ &nbsp\;
255
+ &nbsp\;
256
+ · Reduce downtime through automation - withstanding failures\, protecting and recovering data\, and overcoming resource constraints online without disruption to service levels
257
+ &nbsp\;
258
+ &nbsp\;
259
+ · Simply deploy and manage the virtualized server and SAN infrastructure while leveraging existing skill sets and consolidated tools
260
+
261
+ Click the following link to register this event : http://www.regonline.com/?632729 powered by RegOnline http://www.regonline.com/
262
+ URL;VALUE=URI:http://upcoming.yahoo.com/event/814468/
263
+ UID:http://upcoming.yahoo.com/event/814468/
264
+ DTSTAMP:20080619T115251
265
+ LAST-UPDATED:20080619T115251
266
+ CATEGORIES:Education
267
+ ORGANIZER;CN=yt.regonline:X-ADDR:http://upcoming.yahoo.com/user/239289/
268
+ LOCATION;VENUE-UID="http://upcoming.yahoo.com/venue/154557/":Portland City Grill @ 111 SW 5th Ave #3000\, Portland\, OR 97204\, Portland\, Oregon 97204 US
269
+ END:VEVENT
270
+ BEGIN:VVENUE
271
+ X-VVENUE-INFO:http://evdb.com/docs/ical-venue/draft-norris-ical-venue.html
272
+ NAME:Portland City Grill
273
+ ADDRESS:111 SW 5th Ave #3000\, Portland\, OR 97204
274
+ CITY:Portland
275
+ REGION;X-ABBREV=or:Oregon
276
+ COUNTRY;X-ABBREV=US:United States
277
+ POSTALCODE:97204
278
+ GEO:45.5226;-122.676
279
+ URL;X-LABEL=Venue Info:http://www.regonline.com/632729
280
+ END:VVENUE
281
+ BEGIN:VEVENT
282
+ DTSTART;VALUE=DATE:20080723
283
+ DTEND;VALUE=DATE:20080725
284
+ TRANSP:TRANSPARENT
285
+ SUMMARY:Google Analytics Seminars for Success\, Portland
286
+ DESCRIPTION: [Full details at http://upcoming.yahoo.com/event/841047/ ] Lead by Justin Cutroni of EpikOne\, a Google Analytics certified Seminar Leader. Learn how to analyze and properly configure Google Analytics. Develop your skills as an analyst to improve your websites' performance and understand how to configure Google Analytics to ensure accurate information flow.
287
+ URL;VALUE=URI:http://upcoming.yahoo.com/event/841047/
288
+ UID:http://upcoming.yahoo.com/event/841047/
289
+ DTSTAMP:20080626T151958
290
+ LAST-UPDATED:20080626T151958
291
+ CATEGORIES:Education
292
+ ORGANIZER;CN=EpikEvents:X-ADDR:http://upcoming.yahoo.com/user/263864/
293
+ LOCATION;VENUE-UID="http://upcoming.yahoo.com/venue/35053/":University Place at Portland State University @ 310 SW Lincoln Street\, Portland\, Oregon 97201 US
294
+ END:VEVENT
295
+ BEGIN:VVENUE
296
+ X-VVENUE-INFO:http://evdb.com/docs/ical-venue/draft-norris-ical-venue.html
297
+ NAME:University Place at Portland State University
298
+ ADDRESS:310 SW Lincoln Street
299
+ CITY:Portland
300
+ REGION;X-ABBREV=or:Oregon
301
+ COUNTRY;X-ABBREV=us:United States
302
+ POSTALCODE:97201
303
+ GEO:45.5078;-122.681
304
+ URL;X-LABEL=Venue Info:http://upcoming.yahoo.com/venue/35053/
305
+ END:VVENUE
306
+ BEGIN:VEVENT
307
+ DTSTART:20080724T093000
308
+ DTEND:20080724T113000
309
+ TRANSP:TRANSPARENT
310
+ SUMMARY:SAO Social Network Celebration
311
+ DESCRIPTION: [Full details at http://upcoming.yahoo.com/event/860989/ ] SAO Social Network Celebration
312
+
313
+ Date:
314
+ Thu\, Jul 24th
315
+ Time:
316
+ 9:30am-11:30am
317
+ Location:
318
+ Intel - Ronler Acres Campus Auditorium 2501 NW 229th Ave. Hillsboro\, OR 97124
319
+
320
+ Cost:
321
+ $0 for members
322
+ Registration Deadline:
323
+ 07/24/2008
324
+ Topic:
325
+ SAO Social Network Celebration
326
+
327
+ Speaker: Timothy Chou\, Author\, “Seven”\, Software Business Models
328
+ Timothy Chou (the former President of Oracle on Demand) has over twenty-five years of experience in the technology business. Chou has been recognized as an industry visionary on the evolution of the software industry from the traditional model to Software as a Service (SaaS). Seven is a follow on book to The End of Software which predicted the rise of software delivered as a service. Now that this transition is happening Seven provides a framework for the producers and consumers of software to take the next steps.
329
+ URL;VALUE=URI:http://upcoming.yahoo.com/event/860989/
330
+ UID:http://upcoming.yahoo.com/event/860989/
331
+ DTSTAMP:20080702T101147
332
+ LAST-UPDATED:20080702T101147
333
+ CATEGORIES:Other
334
+ ORGANIZER;CN=multimodal:X-ADDR:http://upcoming.yahoo.com/user/119942/
335
+ LOCATION;VENUE-UID="http://upcoming.yahoo.com/venue/159308/":Intel - Ronler Acres Campus Auditorium @ 2501 NW 229th Ave\, Hillsboro\, Oregon US
336
+ END:VEVENT
337
+ BEGIN:VVENUE
338
+ X-VVENUE-INFO:http://evdb.com/docs/ical-venue/draft-norris-ical-venue.html
339
+ NAME:Intel - Ronler Acres Campus Auditorium
340
+ ADDRESS:2501 NW 229th Ave
341
+ CITY:Hillsboro
342
+ REGION;X-ABBREV=or:Oregon
343
+ COUNTRY;X-ABBREV=us:United States
344
+ POSTALCODE:
345
+ GEO:45.5433;-122.909
346
+ URL;X-LABEL=Venue Info:http://www.intel.com
347
+ END:VVENUE
348
+ BEGIN:VEVENT
349
+ DTSTART:20080724T180000
350
+ DTEND:20080724T210000
351
+ TRANSP:TRANSPARENT
352
+ SUMMARY:SourceForge awards party
353
+ DESCRIPTION: [Full details at http://upcoming.yahoo.com/event/797535/ ] "We're throwing a party at the Jupiter Hotel in Portland on July 24th\, the week of OSCON\, to celebrate the winning projects. If you're going to be in town\, you are cordially invited to join us. Last year's party was a blast\, you don't want to miss it."
354
+ URL;VALUE=URI:http://upcoming.yahoo.com/event/797535/
355
+ UID:http://upcoming.yahoo.com/event/797535/
356
+ DTSTAMP:20080614T175159
357
+ LAST-UPDATED:20080614T175159
358
+ CATEGORIES:Social
359
+ ORGANIZER;CN=multimodal:X-ADDR:http://upcoming.yahoo.com/user/119942/
360
+ LOCATION;VENUE-UID="http://upcoming.yahoo.com/venue/8911/":Jupiter Hotel @ 800 E. Burnside\, Portland\, Oregon 97214 US
361
+ END:VEVENT
362
+ BEGIN:VVENUE
363
+ X-VVENUE-INFO:http://evdb.com/docs/ical-venue/draft-norris-ical-venue.html
364
+ NAME:Jupiter Hotel
365
+ ADDRESS:800 E. Burnside
366
+ CITY:Portland
367
+ REGION;X-ABBREV=or:Oregon
368
+ COUNTRY;X-ABBREV=us:United States
369
+ POSTALCODE:97214
370
+ GEO:45.5329;-122.658
371
+ URL;X-LABEL=Venue Info:http://www.jupiterhotel.com/
372
+ END:VVENUE
373
+ BEGIN:VEVENT
374
+ DTSTART:20080724T200000
375
+ DTEND:20080724T230000
376
+ TRANSP:TRANSPARENT
377
+ SUMMARY:Beerforge III
378
+ DESCRIPTION: [Full details at http://upcoming.yahoo.com/event/782117/ ] You're invited to the year’s best OSCON after party hosted by Jive Software\, Mozilla\, OpenSourcery\, OSL\, Songbird\, and Vidoop. Make the arduous 370 foot walk after the SourceForge Awards Party to keep the party going strong!
379
+
380
+ When: Thursday\, July 24\, 2008\, 8:00 PM to 11:00 PM
381
+
382
+ Where: Bossanova Ballroom @ 722 E Burnside
383
+ URL;VALUE=URI:http://upcoming.yahoo.com/event/782117/
384
+ UID:http://upcoming.yahoo.com/event/782117/
385
+ DTSTAMP:20080612T102921
386
+ LAST-UPDATED:20080612T102921
387
+ CATEGORIES:Social
388
+ ORGANIZER;CN=stevel:X-ADDR:http://upcoming.yahoo.com/user/135162/
389
+ LOCATION;VENUE-UID="http://upcoming.yahoo.com/venue/83687/":Bossanova @ 722 E Burnside St\, Portland\, Oregon 97214 US
390
+ END:VEVENT
391
+ BEGIN:VVENUE
392
+ X-VVENUE-INFO:http://evdb.com/docs/ical-venue/draft-norris-ical-venue.html
393
+ NAME:Bossanova
394
+ ADDRESS:722 E Burnside St
395
+ CITY:Portland
396
+ REGION;X-ABBREV=OR:Oregon
397
+ COUNTRY;X-ABBREV=us:United States
398
+ POSTALCODE:97214
399
+ GEO:45.5329;-122.658
400
+ URL;X-LABEL=Venue Info:http://upcoming.yahoo.com/venue/83687/
401
+ END:VVENUE
402
+ BEGIN:VEVENT
403
+ DTSTART:20080726T100000
404
+ DTEND:20080726T150000
405
+ TRANSP:TRANSPARENT
406
+ SUMMARY:Cre8Camp Portland
407
+ DESCRIPTION: [Full details at http://upcoming.yahoo.com/event/781133/ ] Cre8Camp Portland is a BarCamp-like unconference for designers and other creatives. There is no charge to attend\, but participants can opt to pay for a $10 box lunch. Registration required.
408
+ URL;VALUE=URI:http://upcoming.yahoo.com/event/781133/
409
+ UID:http://upcoming.yahoo.com/event/781133/
410
+ DTSTAMP:20080611T163608
411
+ LAST-UPDATED:20080611T163608
412
+ CATEGORIES:Other
413
+ ORGANIZER;CN=sgehlen:X-ADDR:http://upcoming.yahoo.com/user/81099/
414
+ LOCATION;VENUE-UID="http://upcoming.yahoo.com/venue/92822/":souk @ 322 NW 6th Avenue\, suite 200\, Portland\, Oregon 97214 US
415
+ END:VEVENT
416
+ BEGIN:VVENUE
417
+ X-VVENUE-INFO:http://evdb.com/docs/ical-venue/draft-norris-ical-venue.html
418
+ NAME:souk
419
+ ADDRESS:322 NW 6th Avenue\, suite 200
420
+ CITY:Portland
421
+ REGION;X-ABBREV=or:Oregon
422
+ COUNTRY;X-ABBREV=us:United States
423
+ POSTALCODE:97214
424
+ GEO:45.5254;-122.676
425
+ URL;X-LABEL=Venue Info:http://soukllc.com
426
+ END:VVENUE
427
+ BEGIN:VEVENT
428
+ DTSTART:20080731T190000
429
+ DTEND:20080731T210000
430
+ TRANSP:TRANSPARENT
431
+ SUMMARY:Oriented happy hour in Portland Oregon
432
+ DESCRIPTION: [Full details at http://upcoming.yahoo.com/event/849261/ ] You and your friends are cordially invited to join us on Thursday\, July 31 at Blue Dragon Fly in Portland!
433
+
434
+ If you are interested in business or career opportunities in Greater China\, want to network with other like-minded\, international professionals in Portland who share the same interests\, or just want to stay abreast of what's happening in one of the most exciting regions of the world today\, this is the place to be!
435
+
436
+ To learn more about who attends the ORIENTED Happy Hours and why\, check out these Youtube videos
437
+
438
+ http://www.oriented.com/happyhours
439
+
440
+ Dress code: Professional Attire or Business Casual
441
+
442
+ Door Fees
443
+
444
+ General Admission: 10 USD
445
+
446
+ ORIENTED Members who RSVP before 8 PM EST on 7/30 will enjoy the following discounted rates:
447
+
448
+ * Premium & Lifetime Members: Free!
449
+ * Standard Members: Free!
450
+ URL;VALUE=URI:http://upcoming.yahoo.com/event/849261/
451
+ UID:http://upcoming.yahoo.com/event/849261/
452
+ DTSTAMP:20080628T174634
453
+ LAST-UPDATED:20080628T174634
454
+ CATEGORIES:Social
455
+ ORGANIZER;CN=multimodal:X-ADDR:http://upcoming.yahoo.com/user/119942/
456
+ LOCATION;VENUE-UID="http://upcoming.yahoo.com/venue/58673/":Blue Dragonfly @ 1195 SE Powell Blvd\, Portland\, Oregon 97239 US
457
+ END:VEVENT
458
+ BEGIN:VVENUE
459
+ X-VVENUE-INFO:http://evdb.com/docs/ical-venue/draft-norris-ical-venue.html
460
+ NAME:Blue Dragonfly
461
+ ADDRESS:1195 SE Powell Blvd
462
+ CITY:Portland
463
+ REGION;X-ABBREV=or:Oregon
464
+ COUNTRY;X-ABBREV=us:United States
465
+ POSTALCODE:97239
466
+ GEO:45.5011;-122.653
467
+ URL;X-LABEL=Venue Info:http://www.bluedragonflypdx.com
468
+ END:VVENUE
469
+ BEGIN:VEVENT
470
+ DTSTART;VALUE=DATE:20080904
471
+ DTEND;VALUE=DATE:20080906
472
+ TRANSP:TRANSPARENT
473
+ SUMMARY:Inverge: the interactive convergence conference
474
+ DESCRIPTION: [Full details at http://upcoming.yahoo.com/event/460704/ ] Inverge: the interactive convergence conference\, is a transdisciplinary thought-leader event that focuses on the invergence of media platforms (transmedia/cross-media)\, of virtual + physical\, content + advertising\, and corporate content + consumer-generated content.
475
+
476
+ To create a unique experience for attendees\, this conference is integrated with\, three other cultural events happening in Portland over the same multi-day period:
477
+ + Time-Based Art Festival (performance : dance : music : new media : visual arts)
478
+ + MusicFestNW (over 100 indie bands)
479
+ + First Thursday Gallery Walk (an evening of art\, wine and music)
480
+
481
+ Visit the conference site to see the complete list of confirmed thought-leader speakers.
482
+
483
+ Learn why Portland is an awesome place to visit for this event.
484
+ URL;VALUE=URI:http://upcoming.yahoo.com/event/460704/
485
+ UID:http://upcoming.yahoo.com/event/460704/
486
+ DTSTAMP:20080320T234244
487
+ LAST-UPDATED:20080320T234244
488
+ CATEGORIES:Commercial
489
+ ORGANIZER;CN=sgehlen:X-ADDR:http://upcoming.yahoo.com/user/81099/
490
+ LOCATION;VENUE-UID="http://upcoming.yahoo.com/venue/107131/":Gerding Theater at the Armory @ 128 NW 11th Ave\, Portland\, Oregon 97209 US
491
+ END:VEVENT
492
+ BEGIN:VVENUE
493
+ X-VVENUE-INFO:http://evdb.com/docs/ical-venue/draft-norris-ical-venue.html
494
+ NAME:Gerding Theater at the Armory
495
+ ADDRESS:128 NW 11th Ave
496
+ CITY:Portland
497
+ REGION;X-ABBREV=or:Oregon
498
+ COUNTRY;X-ABBREV=us:United States
499
+ POSTALCODE:97209
500
+ GEO:45.5239;-122.682
501
+ URL;X-LABEL=Venue Info:http://www.pcs.org/directions/
502
+ END:VVENUE
503
+ BEGIN:VEVENT
504
+ DTSTART:20080908T080000
505
+ DTEND:20080908T170000
506
+ RRULE:FREQ=DAILY;INTERVAL=1;UNTIL=20080911T000000
507
+ TRANSP:TRANSPARENT
508
+ SUMMARY:Micro Nano conference
509
+ DESCRIPTION: [Full details at http://upcoming.yahoo.com/event/470690/ ] Oregon Nanoscience and
510
+ Microtechnologies Institute
511
+ and Washington Technology Center
512
+ Presents
513
+ The Fifth Annual
514
+ Micro Nano Breakthrough Conference
515
+ Science To Commercialization for the Micro/Nanotechnology Economy
516
+
517
+ September 8-10\, 2008
518
+ Hilton Hotel
519
+ Vancouver\, Washington
520
+
521
+ This fifth annual conference has emerged as the premier nanoscience and microtechnologies research and business event in the Pacific Northwest.
522
+
523
+ Join over 300 industry leaders\, researchers\, academics\, entrepreneurs\, investors\, and tech transfer professionals to discuss the issues and opportunities inherent in commercializing small tech innovation.
524
+
525
+ Presentations on:
526
+
527
+ * Nanoelectronics
528
+ * Nanoscale Lithography
529
+ * Printed Electronics
530
+ * Green Nanotechnologies
531
+ * Nanomaterial-biological Interactions\, EHS
532
+ * Nano-bio Technologies: Tools and Diagnostics
533
+ * Nanotechnology for Energy
534
+ * Nanomaterials for Electro-optics
535
+ * Novel Photovoltaic & Luminescent Devices
536
+ * Micro-Energy and Chemical Systems
537
+ * Micropower & Batteries
538
+ * Nanotechnology and Forest Products
539
+ * Nanoscale Measurement and Characterization
540
+ * Nanophotonics and Optics
541
+ * Nanomedicine - Therapies and Clinical Applications
542
+
543
+ Special half-day parallel sessions (included in your registration fees):
544
+
545
+ * Nanotechnology 101 for Business and Technical Professionals
546
+ * Commercialization\, Technology Transfer and IP Protection
547
+
548
+ Who should attend:
549
+
550
+ If you are involved in the transformation from discovery and development to commercialization of products this conference is for you.
551
+
552
+ * Scientists
553
+ * Engineers
554
+ * Entrepreneurs
555
+ * Venture Capitalists
556
+ * R&D Managers
557
+ * Administrators
558
+ * Product Development Managers
559
+ * Government Officials
560
+ * Policy Makers
561
+ * Non-Government Organization Officials
562
+ * Students
563
+ * Technology transfer specialists
564
+ * Strategic Planners
565
+ * Business Development Managers
566
+ * Product Development Professionals
567
+ * Investors
568
+ * Investment Analysts
569
+ * Proposal Writers
570
+ * Legislators
571
+ * Academicians
572
+ * Legislative Assistants & Analysts
573
+ * Intellectual Property Managers
574
+ URL;VALUE=URI:http://upcoming.yahoo.com/event/470690/
575
+ UID:http://upcoming.yahoo.com/event/470690/
576
+ DTSTAMP:20080408T085115
577
+ LAST-UPDATED:20080408T085115
578
+ CATEGORIES:Education
579
+ ORGANIZER;CN=multimodal:X-ADDR:http://upcoming.yahoo.com/user/119942/
580
+ LOCATION;VENUE-UID="http://upcoming.yahoo.com/venue/48746/":Hilton Vancouver Washington @ 301 West 6th Street\, Vancouver\, Washington 98660 US
581
+ END:VEVENT
582
+ BEGIN:VVENUE
583
+ X-VVENUE-INFO:http://evdb.com/docs/ical-venue/draft-norris-ical-venue.html
584
+ NAME:Hilton Vancouver Washington
585
+ ADDRESS:301 West 6th Street
586
+ CITY:Vancouver
587
+ REGION;X-ABBREV=wa:Washington
588
+ COUNTRY;X-ABBREV=us:United States
589
+ POSTALCODE:98660
590
+ GEO:45.6256;-122.674
591
+ URL;X-LABEL=Venue Info:http://upcoming.yahoo.com/venue/48746/
592
+ END:VVENUE
593
+ BEGIN:VEVENT
594
+ DTSTART;VALUE=DATE:20080927
595
+ DTEND;VALUE=DATE:20080928
596
+ TRANSP:TRANSPARENT
597
+ SUMMARY:WordCamp Portland
598
+ DESCRIPTION: [Full details at http://upcoming.yahoo.com/event/761020/ ] WordCamp Portland is a gathering of folks who are passionate about WordPress. Exact details are being determined. Watch this space for more information.
599
+
600
+ This event listing is to gauge interest... please RSVP if you're planning on attending\, but keep an eye on the WordCamp Portland website for official registration information.
601
+ URL;VALUE=URI:http://upcoming.yahoo.com/event/761020/
602
+ UID:http://upcoming.yahoo.com/event/761020/
603
+ DTSTAMP:20080604T223808
604
+ LAST-UPDATED:20080604T223808
605
+ CATEGORIES:Social
606
+ ORGANIZER;CN=aaronhockley:X-ADDR:http://upcoming.yahoo.com/user/240591/
607
+ LOCATION;VENUE-UID="http://upcoming.yahoo.com/venue/52522/":CubeSpace @ 622 SE Grand Ave\, Portland\, Oregon 97214 US
608
+ END:VEVENT
609
+ BEGIN:VVENUE
610
+ X-VVENUE-INFO:http://evdb.com/docs/ical-venue/draft-norris-ical-venue.html
611
+ NAME:CubeSpace
612
+ ADDRESS:622 SE Grand Ave
613
+ CITY:Portland
614
+ REGION;X-ABBREV=or:Oregon
615
+ COUNTRY;X-ABBREV=us:United States
616
+ POSTALCODE:97214
617
+ GEO:45.5185;-122.661
618
+ URL;X-LABEL=Venue Info:http://www.cubespacepdx.com/
619
+ END:VVENUE
620
+ BEGIN:VEVENT
621
+ DTSTART;VALUE=DATE:20081020
622
+ DTEND;VALUE=DATE:20081024
623
+ TRANSP:TRANSPARENT
624
+ SUMMARY:Government Open Source Conference (GOSCON)
625
+ DESCRIPTION: [Full details at http://upcoming.yahoo.com/event/419314/ ] Hold the Dates: The fourth annual Government Open Source Conference returns to Portland Oregon with an expanded program which will include an International Open Source Summit\, hosting international governments as well as US state and locals. Focus this year will be on OSS solutions in the public sector space. You can subscribe to the conference mailing list for program updates\, registration information on the conference web site. GOSCON is produced by Oregon State University's Open Source Lab.
626
+
627
+ If you are involved in an OSS project or initiative you think we'd like to know about as we put the program together\, please let us know!
628
+ URL;VALUE=URI:http://upcoming.yahoo.com/event/419314/
629
+ UID:http://upcoming.yahoo.com/event/419314/
630
+ DTSTAMP:20080128T112149
631
+ LAST-UPDATED:20080128T112149
632
+ CATEGORIES:Other
633
+ ORGANIZER;CN=debbryant:X-ADDR:http://upcoming.yahoo.com/user/208262/
634
+ LOCATION;VENUE-UID="http://upcoming.yahoo.com/venue/112424/":Holiday Inn Downtown-Portland Convention Center @ 1441 NE 2nd Ave.\, Portland\, Oregon 97232 US
635
+ END:VEVENT
636
+ BEGIN:VVENUE
637
+ X-VVENUE-INFO:http://evdb.com/docs/ical-venue/draft-norris-ical-venue.html
638
+ NAME:Holiday Inn Downtown-Portland Convention Center
639
+ ADDRESS:1441 NE 2nd Ave.
640
+ CITY:Portland
641
+ REGION;X-ABBREV=or:Oregon
642
+ COUNTRY;X-ABBREV=us:United States
643
+ POSTALCODE:97232
644
+ GEO:45.5333;-122.664
645
+ URL;X-LABEL=Venue Info:http://www.hiportland.com/about
646
+ END:VVENUE
647
+ BEGIN:VEVENT
648
+ DTSTART;VALUE=DATE:20090313
649
+ DTEND;VALUE=DATE:20090318
650
+ TRANSP:TRANSPARENT
651
+ SUMMARY:South By Southwest (SXSW) Interactive Conference
652
+ DESCRIPTION: [Full details at http://upcoming.yahoo.com/event/453651/ ] What is the SXSW Interactive Festival?
653
+ The SXSW Interactive Festival offers five days of panels\, keynote discussions\, Trade Show\, and exciting evening events. Attendees benefit from hands-on\, how-to training as well as long-term\, big-picture analysis in an atmosphere that charges creativity and out-of-the-box thinking. More to the point\, coming to SXSW Interactive is a great way to recharge your creativity.
654
+
655
+ Where does the SXSW Interactive Festival occur?
656
+ Daytime panel programming (as well as the Trade Show & Exhibition) takes place at the Austin Convention Center (500 E. Cesar Chavez) in downtown Austin. Evening events occur at various nightspots around the city.
657
+
658
+ Who attends this event?
659
+ SXSW Interactive appeals to uber-geeks and digital creatives who push the cutting edge of technological change. The event appeals to content developers\, web designers\, programmers\, bloggers\, wireless innovators\, gamers\, tech entrepreneurs\, investors\, and educators. Even if you are not a technical person\, you will benefit from the outside-the-box thinking that thrives at SXSW.
660
+
661
+ What kind of topics are covered at the event?
662
+ Panel topics cover everything from web design\, usability\, and blogging to wireless innovation and new technology business models. Other panels focus on more general topics that are nonetheless relevant to the digital creatives who attend SXSW Interactive. Discovering new ideas that lead us to a better future is the underlying theme on all of this programming.
663
+ URL;VALUE=URI:http://upcoming.yahoo.com/event/453651/
664
+ UID:http://upcoming.yahoo.com/event/453651/
665
+ DTSTAMP:20080317T105502
666
+ LAST-UPDATED:20080317T105502
667
+ CATEGORIES:Festivals
668
+ ORGANIZER;CN=kathrynyu:X-ADDR:http://upcoming.yahoo.com/user/155/
669
+ LOCATION;VENUE-UID="http://upcoming.yahoo.com/venue/799/":Austin Convention Center @ 500 E Cesar Chavez Street\, Austin\, Texas 78701 US
670
+ END:VEVENT
671
+ BEGIN:VVENUE
672
+ X-VVENUE-INFO:http://evdb.com/docs/ical-venue/draft-norris-ical-venue.html
673
+ NAME:Austin Convention Center
674
+ ADDRESS:500 E Cesar Chavez Street
675
+ CITY:Austin
676
+ REGION;X-ABBREV=tx:Texas
677
+ COUNTRY;X-ABBREV=us:United States
678
+ POSTALCODE:78701
679
+ GEO:30.2622;-97.7399
680
+ URL;X-LABEL=Venue Info:http://www.austinconventioncenter.com/
681
+ END:VVENUE
682
+ END:VCALENDAR