afl_schedule 0.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (37) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +17 -0
  3. data/.rspec +2 -0
  4. data/.rvmrc +53 -0
  5. data/Gemfile +4 -0
  6. data/LICENSE.txt +22 -0
  7. data/README.md +32 -0
  8. data/Rakefile +1 -0
  9. data/afl_schedule.gemspec +27 -0
  10. data/data/2013/Adelaide_fixture_for_2013.csv +24 -0
  11. data/data/2013/Brisbane_fixture_for_2013.csv +24 -0
  12. data/data/2013/Carlton_fixture_for_2013.csv +24 -0
  13. data/data/2013/Collingwood_fixture_for_2013.csv +24 -0
  14. data/data/2013/Essendon_fixture_for_2013.csv +24 -0
  15. data/data/2013/Fremantle_fixture_for_2013.csv +24 -0
  16. data/data/2013/Geelong_fixture_for_2013.csv +24 -0
  17. data/data/2013/Gold_Coast_fixture_for_2013.csv +24 -0
  18. data/data/2013/Greater_Western_Sydney_fixture_for_2013.csv +24 -0
  19. data/data/2013/Hawthorn_fixture_for_2013.csv +24 -0
  20. data/data/2013/Melbourne_fixture_for_2013.csv +24 -0
  21. data/data/2013/North_Melbourne_fixture_for_2013.csv +24 -0
  22. data/data/2013/Port_Adelaide_fixture_for_2013.csv +24 -0
  23. data/data/2013/Richmond_fixture_for_2013.csv +24 -0
  24. data/data/2013/St_Kilda_fixture_for_2013.csv +24 -0
  25. data/data/2013/Sydney_fixture_for_2013.csv +24 -0
  26. data/data/2013/West_Coast_fixture_for_2013.csv +24 -0
  27. data/data/2013/Western_Bulldogs_fixture_for_2013.csv +24 -0
  28. data/lib/afl/fixture_importer.rb +75 -0
  29. data/lib/afl/schedule.rb +8 -0
  30. data/lib/afl/season.rb +28 -0
  31. data/lib/afl/version.rb +3 -0
  32. data/lib/afl_schedule.rb +12 -0
  33. data/spec/afl/fixture_importer_spec.rb +20 -0
  34. data/spec/afl/schedule_spec.rb +37 -0
  35. data/spec/afl/season_spec.rb +45 -0
  36. data/spec/spec_helper.rb +7 -0
  37. metadata +139 -0
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 488d470cc0c5c75a7cdf4288811351838c0de26b
4
+ data.tar.gz: 8e1a4b361104b0c57a76a394bcc13c57f0859c8e
5
+ SHA512:
6
+ metadata.gz: 294f096d640b31801d7778d48788125eec78c6b6772e99fa27b66399c2ea432741d1b8129338aac8c932a264ea6ab5f67c4121089d5773c0e0dd347652de2554
7
+ data.tar.gz: 0837e773da6df0f8fbf2d2492cbe43c45a9744c7fd58023ebc6be462c7fee23207d503c95aa464e00c853fa7cd065af99552415916883d07fc320177bb165151
data/.gitignore ADDED
@@ -0,0 +1,17 @@
1
+ *.gem
2
+ *.rbc
3
+ .bundle
4
+ .config
5
+ .yardoc
6
+ Gemfile.lock
7
+ InstalledFiles
8
+ _yardoc
9
+ coverage
10
+ doc/
11
+ lib/bundler/man
12
+ pkg
13
+ rdoc
14
+ spec/reports
15
+ test/tmp
16
+ test/version_tmp
17
+ tmp
data/.rspec ADDED
@@ -0,0 +1,2 @@
1
+ --color
2
+ --format documentation
data/.rvmrc ADDED
@@ -0,0 +1,53 @@
1
+ #!/usr/bin/env bash
2
+
3
+ # This is an RVM Project .rvmrc file, used to automatically load the ruby
4
+ # development environment upon cd'ing into the directory
5
+
6
+ # First we specify our desired <ruby>[@<gemset>], the @gemset name is optional,
7
+ # Only full ruby name is supported here, for short names use:
8
+ # echo "rvm use 2.0.0" > .rvmrc
9
+ environment_id="ruby-2.0.0-p0@afl_schedule"
10
+
11
+ # Uncomment the following lines if you want to verify rvm version per project
12
+ # rvmrc_rvm_version="1.18.15 (master)" # 1.10.1 seams as a safe start
13
+ # eval "$(echo ${rvm_version}.${rvmrc_rvm_version} | awk -F. '{print "[[ "$1*65536+$2*256+$3" -ge "$4*65536+$5*256+$6" ]]"}' )" || {
14
+ # echo "This .rvmrc file requires at least RVM ${rvmrc_rvm_version}, aborting loading."
15
+ # return 1
16
+ # }
17
+
18
+ # First we attempt to load the desired environment directly from the environment
19
+ # file. This is very fast and efficient compared to running through the entire
20
+ # CLI and selector. If you want feedback on which environment was used then
21
+ # insert the word 'use' after --create as this triggers verbose mode.
22
+ if [[ -d "${rvm_path:-$HOME/.rvm}/environments"
23
+ && -s "${rvm_path:-$HOME/.rvm}/environments/$environment_id" ]]
24
+ then
25
+ \. "${rvm_path:-$HOME/.rvm}/environments/$environment_id"
26
+ for __hook in "${rvm_path:-$HOME/.rvm}/hooks/after_use"*
27
+ do
28
+ if [[ -f "${__hook}" && -x "${__hook}" && -s "${__hook}" ]]
29
+ then \. "${__hook}" || true
30
+ fi
31
+ done
32
+ unset __hook
33
+ else
34
+ # If the environment file has not yet been created, use the RVM CLI to select.
35
+ rvm --create "$environment_id" || {
36
+ echo "Failed to create RVM environment '${environment_id}'."
37
+ return 1
38
+ }
39
+ fi
40
+
41
+ # If you use bundler, this might be useful to you:
42
+ # if [[ -s Gemfile ]] && {
43
+ # ! builtin command -v bundle >/dev/null ||
44
+ # builtin command -v bundle | GREP_OPTIONS= \grep $rvm_path/bin/bundle >/dev/null
45
+ # }
46
+ # then
47
+ # printf "%b" "The rubygem 'bundler' is not installed. Installing it now.\n"
48
+ # gem install bundler
49
+ # fi
50
+ # if [[ -s Gemfile ]] && builtin command -v bundle >/dev/null
51
+ # then
52
+ # bundle install | GREP_OPTIONS= \grep -vE '^Using|Your bundle is complete'
53
+ # fi
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in afl_schedule.gemspec
4
+ gemspec
data/LICENSE.txt ADDED
@@ -0,0 +1,22 @@
1
+ Copyright (c) 2013 Sebastian Glazebrook
2
+
3
+ MIT License
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining
6
+ a copy of this software and associated documentation files (the
7
+ "Software"), to deal in the Software without restriction, including
8
+ without limitation the rights to use, copy, modify, merge, publish,
9
+ distribute, sublicense, and/or sell copies of the Software, and to
10
+ permit persons to whom the Software is furnished to do so, subject to
11
+ the following conditions:
12
+
13
+ The above copyright notice and this permission notice shall be
14
+ included in all copies or substantial portions of the Software.
15
+
16
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
20
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
21
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
22
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,32 @@
1
+ # AflSchedule
2
+
3
+ Simple gem to facilitate using the AFL fixture data in apps
4
+
5
+ ## Installation
6
+
7
+ Add this line to your application's Gemfile:
8
+
9
+ gem 'afl_schedule'
10
+
11
+ And then execute:
12
+
13
+ $ bundle
14
+
15
+ Or install it yourself as:
16
+
17
+ $ gem install afl_schedule
18
+
19
+ ## Usage
20
+
21
+ require 'afl_schedule'
22
+
23
+ AFL::Schedule.new.next_match('Essendon')
24
+ => #<OpenStruct home_team="Essendon ", away_team="Melbourne", venue="MCG", time=2013-06-04 19:40:00 +1000>
25
+
26
+ ## Contributing
27
+
28
+ 1. Fork it
29
+ 2. Create your feature branch (`git checkout -b my-new-feature`)
30
+ 3. Commit your changes (`git commit -am 'Add some feature'`)
31
+ 4. Push to the branch (`git push origin my-new-feature`)
32
+ 5. Create new Pull Request
data/Rakefile ADDED
@@ -0,0 +1 @@
1
+ require "bundler/gem_tasks"
@@ -0,0 +1,27 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'afl/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = 'afl_schedule'
8
+ spec.version = AFL::VERSION
9
+ spec.authors = ['Seb Glazebrook']
10
+ spec.email = ['me@sebglazebrook.com']
11
+ spec.description = %q{It helps you get AFL schedule data in your app.}
12
+ spec.summary = %q{It helps you get AFL schedule data in your app. Currently only 2013 included.}
13
+ spec.homepage = 'https://github.com/sebglazebrook/afl_schedule'
14
+ spec.license = 'MIT'
15
+
16
+ spec.files = `git ls-files`.split($/)
17
+ spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
18
+ spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
19
+ spec.require_paths = ["lib"]
20
+
21
+ spec.add_dependency 'chronic'
22
+
23
+ spec.add_development_dependency "bundler", "~> 1.3"
24
+ spec.add_development_dependency "rake"
25
+ spec.add_development_dependency 'rspec', '2.13.0'
26
+
27
+ end
@@ -0,0 +1,24 @@
1
+ "Subject","Start Date","Start Time","End Date","End Time","All day event","Reminder on/off","Reminder Date","Reminder Time","Categories","Description","Location","Show time as","Private"
2
+ "Adelaide v Essendon (AFL Rd 1)","22/03/2013","20:40:00","22/03/2013","23:30:00","FALSE","FALSE","","","Adelaide","","AAMI","3","False"
3
+ "Brisbane v Adelaide (AFL Rd 2)","06/04/2013","16:40:00","06/04/2013","19:30:00","FALSE","FALSE","","","Adelaide","","Gabba","3","False"
4
+ "Port Adelaide v Adelaide (AFL Rd 3)","14/04/2013","16:40:00","14/04/2013","19:30:00","FALSE","FALSE","","","Adelaide","","AAMI","3","False"
5
+ "Adelaide v Western Bulldogs (AFL Rd 4)","21/04/2013","15:15:00","21/04/2013","18:05:00","FALSE","FALSE","","","Adelaide","","AAMI","3","False"
6
+ "Carlton v Adelaide (AFL Rd 5)","27/04/2013","16:40:00","27/04/2013","19:30:00","FALSE","FALSE","","","Adelaide","","MCG","3","False"
7
+ "Adelaide v Hawthorn (AFL Rd 6)","04/05/2013","16:40:00","04/05/2013","19:30:00","FALSE","FALSE","","","Adelaide","","AAMI","3","False"
8
+ "Greater Western Sydney v Adelaide (AFL Rd 7)","12/05/2013","13:10:00","12/05/2013","16:00:00","FALSE","FALSE","","","Adelaide","","Skoda","3","False"
9
+ "Adelaide v St Kilda (AFL Rd 8)","19/05/2013","16:40:00","19/05/2013","19:30:00","FALSE","FALSE","","","Adelaide","","AAMI","3","False"
10
+ "North Melbourne v Adelaide (AFL Rd 9)","26/05/2013","15:15:00","26/05/2013","18:05:00","FALSE","FALSE","","","Adelaide","","Etihad","3","False"
11
+ "Adelaide v Fremantle (AFL Rd 10)","01/06/2013","14:10:00","01/06/2013","17:00:00","FALSE","FALSE","","","Adelaide","","AAMI","3","False"
12
+ "Adelaide v Sydney (AFL Rd 11)","08/06/2013","16:40:00","08/06/2013","19:30:00","FALSE","FALSE","","","Adelaide","","AAMI","3","False"
13
+ "Richmond v Adelaide (AFL Rd 12)","15/06/2013","13:40:00","15/06/2013","16:30:00","FALSE","FALSE","","","Adelaide","","MCG","3","False"
14
+ "Adelaide v BYE (AFL Rd 13)","21/06/2013","00:00:00","22/06/2013","00:00:00","TRUE","FALSE","","","Adelaide","","Gabba","3","False"
15
+ "Gold Coast v Adelaide (AFL Rd 14)","29/06/2013","13:40:00","29/06/2013","16:30:00","FALSE","FALSE","","","Adelaide","","Metricon","3","False"
16
+ "Adelaide v West Coast (AFL Rd 15)","06/07/2013","19:40:00","06/07/2013","22:30:00","FALSE","FALSE","","","Adelaide","","AAMI","3","False"
17
+ "Collingwood v Adelaide (AFL Rd 16)","12/07/2013","19:50:00","12/07/2013","22:40:00","FALSE","FALSE","","","Adelaide","","MCG","3","False"
18
+ "Adelaide v Geelong (AFL Rd 17)","21/07/2013","15:15:00","21/07/2013","18:05:00","FALSE","FALSE","","","Adelaide","","AAMI","3","False"
19
+ "Fremantle v Adelaide (AFL Rd 18)","27/07/2013","19:40:00","27/07/2013","22:30:00","FALSE","FALSE","","","Adelaide","","Patersons","3","False"
20
+ "Adelaide v Port Adelaide (AFL Rd 19)","04/08/2013","15:15:00","04/08/2013","18:05:00","FALSE","FALSE","","","Adelaide","","AAMI","3","False"
21
+ "Adelaide v North Melbourne (AFL Rd 20)","11/08/2013","15:15:00","11/08/2013","18:05:00","FALSE","FALSE","","","Adelaide","","AAMI","3","False"
22
+ "Western Bulldogs v Adelaide (AFL Rd 21)","18/08/2013","16:40:00","18/08/2013","19:30:00","FALSE","FALSE","","","Adelaide","","Etihad","3","False"
23
+ "Adelaide v Melbourne (AFL Rd 22)","24/08/2013","13:45:00","24/08/2013","16:35:00","FALSE","FALSE","","","Adelaide","","AAMI","3","False"
24
+ "West Coast v Adelaide (AFL Rd 23)","30/08/2013","00:00:00","31/08/2013","00:00:00","TRUE","FALSE","","","Adelaide","","Patersons","3","False"
@@ -0,0 +1,24 @@
1
+ "Subject","Start Date","Start Time","End Date","End Time","All day event","Reminder on/off","Reminder Date","Reminder Time","Categories","Description","Location","Show time as","Private"
2
+ "Western Bulldogs v Brisbane (AFL Rd 1)","30/03/2013","13:40:00","30/03/2013","16:30:00","FALSE","FALSE","","","Brisbane","","Etihad","3","False"
3
+ "Brisbane v Adelaide (AFL Rd 2)","06/04/2013","16:40:00","06/04/2013","19:30:00","FALSE","FALSE","","","Brisbane","","Gabba","3","False"
4
+ "Gold Coast v Brisbane (AFL Rd 3)","13/04/2013","19:40:00","13/04/2013","22:30:00","FALSE","FALSE","","","Brisbane","","Metricon","3","False"
5
+ "North Melbourne v Brisbane (AFL Rd 4)","21/04/2013","16:40:00","21/04/2013","19:30:00","FALSE","FALSE","","","Brisbane","","Etihad","3","False"
6
+ "Brisbane v Melbourne (AFL Rd 5)","28/04/2013","15:15:00","28/04/2013","18:05:00","FALSE","FALSE","","","Brisbane","","Gabba","3","False"
7
+ "Sydney v Brisbane (AFL Rd 6)","05/05/2013","13:10:00","05/05/2013","16:00:00","FALSE","FALSE","","","Brisbane","","SCG","3","False"
8
+ "Brisbane v West Coast (AFL Rd 7)","11/05/2013","14:10:00","11/05/2013","17:00:00","FALSE","FALSE","","","Brisbane","","Gabba","3","False"
9
+ "Essendon v Brisbane (AFL Rd 8)","18/05/2013","13:45:00","18/05/2013","16:35:00","FALSE","FALSE","","","Brisbane","","Etihad","3","False"
10
+ "Brisbane v Carlton (AFL Rd 9)","25/05/2013","19:40:00","25/05/2013","22:30:00","FALSE","FALSE","","","Brisbane","","Gabba","3","False"
11
+ "Brisbane v Collingwood (AFL Rd 10)","31/05/2013","19:50:00","31/05/2013","22:40:00","FALSE","FALSE","","","Brisbane","","Gabba","3","False"
12
+ "Brisbane v BYE (AFL Rd 11)","07/06/2013","00:00:00","08/06/2013","00:00:00","TRUE","FALSE","","","Brisbane","","MCG","3","False"
13
+ "Fremantle v Brisbane (AFL Rd 12)","15/06/2013","16:40:00","15/06/2013","19:30:00","FALSE","FALSE","","","Brisbane","","Patersons","3","False"
14
+ "Brisbane v Geelong (AFL Rd 13)","23/06/2013","16:40:00","23/06/2013","19:30:00","FALSE","FALSE","","","Brisbane","","Gabba","3","False"
15
+ "Hawthorn v Brisbane (AFL Rd 14)","30/06/2013","13:10:00","30/06/2013","16:00:00","FALSE","FALSE","","","Brisbane","","Aurora","3","False"
16
+ "Brisbane v Gold Coast (AFL Rd 15)","06/07/2013","16:40:00","06/07/2013","19:30:00","FALSE","FALSE","","","Brisbane","","Gabba","3","False"
17
+ "Brisbane v North Melbourne (AFL Rd 16)","13/07/2013","19:40:00","13/07/2013","22:30:00","FALSE","FALSE","","","Brisbane","","Gabba","3","False"
18
+ "Melbourne v Brisbane (AFL Rd 17)","20/07/2013","19:40:00","20/07/2013","22:30:00","FALSE","FALSE","","","Brisbane","","TIO","3","False"
19
+ "Port Adelaide v Brisbane (AFL Rd 18)","28/07/2013","13:10:00","28/07/2013","16:00:00","FALSE","FALSE","","","Brisbane","","AAMI","3","False"
20
+ "Brisbane v St Kilda (AFL Rd 19)","03/08/2013","19:40:00","03/08/2013","22:30:00","FALSE","FALSE","","","Brisbane","","Gabba","3","False"
21
+ "Richmond v Brisbane (AFL Rd 20)","10/08/2013","13:45:00","10/08/2013","16:35:00","FALSE","FALSE","","","Brisbane","","MCG","3","False"
22
+ "Brisbane v Greater Western Sydney (AFL Rd 21)","17/08/2013","19:40:00","17/08/2013","22:30:00","FALSE","FALSE","","","Brisbane","","Gabba","3","False"
23
+ "Brisbane v Western Bulldogs (AFL Rd 22)","25/08/2013","16:40:00","25/08/2013","19:30:00","FALSE","FALSE","","","Brisbane","","Gabba","3","False"
24
+ "Geelong v Brisbane (AFL Rd 23)","30/08/2013","00:00:00","31/08/2013","00:00:00","TRUE","FALSE","","","Brisbane","","Simonds","3","False"
@@ -0,0 +1,24 @@
1
+ "Subject","Start Date","Start Time","End Date","End Time","All day event","Reminder on/off","Reminder Date","Reminder Time","Categories","Description","Location","Show time as","Private"
2
+ "Carlton v Richmond (AFL Rd 1)","28/03/2013","19:40:00","28/03/2013","22:30:00","FALSE","FALSE","","","Carlton","","MCG","3","False"
3
+ "Collingwood v Carlton (AFL Rd 2)","07/04/2013","15:15:00","07/04/2013","18:05:00","FALSE","FALSE","","","Carlton","","MCG","3","False"
4
+ "Geelong v Carlton (AFL Rd 3)","13/04/2013","19:40:00","13/04/2013","22:30:00","FALSE","FALSE","","","Carlton","","Etihad","3","False"
5
+ "West Coast v Carlton (AFL Rd 4)","20/04/2013","19:40:00","20/04/2013","22:30:00","FALSE","FALSE","","","Carlton","","Patersons","3","False"
6
+ "Carlton v Adelaide (AFL Rd 5)","27/04/2013","16:40:00","27/04/2013","19:30:00","FALSE","FALSE","","","Carlton","","MCG","3","False"
7
+ "Carlton v Melbourne (AFL Rd 6)","05/05/2013","15:15:00","05/05/2013","18:05:00","FALSE","FALSE","","","Carlton","","MCG","3","False"
8
+ "St Kilda v Carlton (AFL Rd 7)","13/05/2013","19:40:00","13/05/2013","22:30:00","FALSE","FALSE","","","Carlton","","Etihad","3","False"
9
+ "Carlton v Port Adelaide (AFL Rd 8)","19/05/2013","13:10:00","19/05/2013","16:00:00","FALSE","FALSE","","","Carlton","","Etihad","3","False"
10
+ "Brisbane v Carlton (AFL Rd 9)","25/05/2013","19:40:00","25/05/2013","22:30:00","FALSE","FALSE","","","Carlton","","Gabba","3","False"
11
+ "Carlton v Greater Western Sydney (AFL Rd 10)","01/06/2013","13:45:00","01/06/2013","16:35:00","FALSE","FALSE","","","Carlton","","Etihad","3","False"
12
+ "Essendon v Carlton (AFL Rd 11)","07/06/2013","19:50:00","07/06/2013","22:40:00","FALSE","FALSE","","","Carlton","","MCG","3","False"
13
+ "Carlton v Hawthorn (AFL Rd 12)","14/06/2013","19:50:00","14/06/2013","22:40:00","FALSE","FALSE","","","Carlton","","Etihad","3","False"
14
+ "Carlton v BYE (AFL Rd 13)","21/06/2013","00:00:00","22/06/2013","00:00:00","TRUE","FALSE","","","Carlton","","Gabba","3","False"
15
+ "Sydney v Carlton (AFL Rd 14)","28/06/2013","19:50:00","28/06/2013","22:40:00","FALSE","FALSE","","","Carlton","","SCG","3","False"
16
+ "Carlton v Collingwood (AFL Rd 15)","05/07/2013","19:50:00","05/07/2013","22:40:00","FALSE","FALSE","","","Carlton","","MCG","3","False"
17
+ "Carlton v St Kilda (AFL Rd 16)","13/07/2013","19:40:00","13/07/2013","22:30:00","FALSE","FALSE","","","Carlton","","Etihad","3","False"
18
+ "North Melbourne v Carlton (AFL Rd 17)","19/07/2013","19:50:00","19/07/2013","22:40:00","FALSE","FALSE","","","Carlton","","Etihad","3","False"
19
+ "Gold Coast v Carlton (AFL Rd 18)","27/07/2013","13:45:00","27/07/2013","16:35:00","FALSE","FALSE","","","Carlton","","Metricon","3","False"
20
+ "Carlton v Fremantle (AFL Rd 19)","03/08/2013","19:40:00","03/08/2013","22:30:00","FALSE","FALSE","","","Carlton","","Etihad","3","False"
21
+ "Carlton v Western Bulldogs (AFL Rd 20)","10/08/2013","16:40:00","10/08/2013","19:30:00","FALSE","FALSE","","","Carlton","","Etihad","3","False"
22
+ "Richmond v Carlton (AFL Rd 21)","17/08/2013","13:45:00","17/08/2013","16:35:00","FALSE","FALSE","","","Carlton","","MCG","3","False"
23
+ "Carlton v Essendon (AFL Rd 22)","24/08/2013","19:40:00","24/08/2013","22:30:00","FALSE","FALSE","","","Carlton","","MCG","3","False"
24
+ "Port Adelaide v Carlton (AFL Rd 23)","30/08/2013","00:00:00","31/08/2013","00:00:00","TRUE","FALSE","","","Carlton","","AAMI","3","False"
@@ -0,0 +1,24 @@
1
+ "Subject","Start Date","Start Time","End Date","End Time","All day event","Reminder on/off","Reminder Date","Reminder Time","Categories","Description","Location","Show time as","Private"
2
+ "North Melbourne v Collingwood (AFL Rd 1)","31/03/2013","16:40:00","31/03/2013","19:30:00","FALSE","FALSE","","","Collingwood","","Etihad","3","False"
3
+ "Collingwood v Carlton (AFL Rd 2)","07/04/2013","15:15:00","07/04/2013","18:05:00","FALSE","FALSE","","","Collingwood","","MCG","3","False"
4
+ "Collingwood v Hawthorn (AFL Rd 3)","14/04/2013","15:15:00","14/04/2013","18:05:00","FALSE","FALSE","","","Collingwood","","MCG","3","False"
5
+ "Richmond v Collingwood (AFL Rd 4)","20/04/2013","14:10:00","20/04/2013","17:00:00","FALSE","FALSE","","","Collingwood","","MCG","3","False"
6
+ "Essendon v Collingwood (AFL Rd 5)","25/04/2013","14:40:00","25/04/2013","17:30:00","FALSE","FALSE","","","Collingwood","","MCG","3","False"
7
+ "Collingwood v St Kilda (AFL Rd 6)","03/05/2013","19:50:00","03/05/2013","22:40:00","FALSE","FALSE","","","Collingwood","","Etihad","3","False"
8
+ "Fremantle v Collingwood (AFL Rd 7)","11/05/2013","19:40:00","11/05/2013","22:30:00","FALSE","FALSE","","","Collingwood","","Patersons","3","False"
9
+ "Collingwood v Geelong (AFL Rd 8)","18/05/2013","19:40:00","18/05/2013","22:30:00","FALSE","FALSE","","","Collingwood","","MCG","3","False"
10
+ "Collingwood v Sydney (AFL Rd 9)","24/05/2013","19:50:00","24/05/2013","22:40:00","FALSE","FALSE","","","Collingwood","","MCG","3","False"
11
+ "Brisbane v Collingwood (AFL Rd 10)","31/05/2013","19:50:00","31/05/2013","22:40:00","FALSE","FALSE","","","Collingwood","","Gabba","3","False"
12
+ "Melbourne v Collingwood (AFL Rd 11)","10/06/2013","15:15:00","10/06/2013","18:05:00","FALSE","FALSE","","","Collingwood","","MCG","3","False"
13
+ "Collingwood v Western Bulldogs (AFL Rd 12)","16/06/2013","16:40:00","16/06/2013","19:30:00","FALSE","FALSE","","","Collingwood","","Etihad","3","False"
14
+ "Collingwood v BYE (AFL Rd 13)","21/06/2013","00:00:00","22/06/2013","00:00:00","TRUE","FALSE","","","Collingwood","","Gabba","3","False"
15
+ "Port Adelaide v Collingwood (AFL Rd 14)","29/06/2013","16:40:00","29/06/2013","19:30:00","FALSE","FALSE","","","Collingwood","","AAMI","3","False"
16
+ "Carlton v Collingwood (AFL Rd 15)","05/07/2013","19:50:00","05/07/2013","22:40:00","FALSE","FALSE","","","Collingwood","","MCG","3","False"
17
+ "Collingwood v Adelaide (AFL Rd 16)","12/07/2013","19:50:00","12/07/2013","22:40:00","FALSE","FALSE","","","Collingwood","","MCG","3","False"
18
+ "Gold Coast v Collingwood (AFL Rd 17)","20/07/2013","16:40:00","20/07/2013","19:30:00","FALSE","FALSE","","","Collingwood","","Metricon","3","False"
19
+ "Collingwood v Greater Western Sydney (AFL Rd 18)","27/07/2013","16:40:00","27/07/2013","19:30:00","FALSE","FALSE","","","Collingwood","","MCG","3","False"
20
+ "Collingwood v Essendon (AFL Rd 19)","04/08/2013","16:40:00","04/08/2013","19:30:00","FALSE","FALSE","","","Collingwood","","MCG","3","False"
21
+ "Sydney v Collingwood (AFL Rd 20)","10/08/2013","19:40:00","10/08/2013","22:30:00","FALSE","FALSE","","","Collingwood","","ANZ","3","False"
22
+ "Hawthorn v Collingwood (AFL Rd 21)","16/08/2013","19:50:00","16/08/2013","22:40:00","FALSE","FALSE","","","Collingwood","","MCG","3","False"
23
+ "Collingwood v West Coast (AFL Rd 22)","23/08/2013","19:50:00","23/08/2013","22:40:00","FALSE","FALSE","","","Collingwood","","MCG","3","False"
24
+ "Collingwood v North Melbourne (AFL Rd 23)","30/08/2013","00:00:00","31/08/2013","00:00:00","TRUE","FALSE","","","Collingwood","","MCG","3","False"
@@ -0,0 +1,24 @@
1
+ "Subject","Start Date","Start Time","End Date","End Time","All day event","Reminder on/off","Reminder Date","Reminder Time","Categories","Description","Location","Show time as","Private"
2
+ "Adelaide v Essendon (AFL Rd 1)","22/03/2013","20:40:00","22/03/2013","23:30:00","FALSE","FALSE","","","Essendon","","AAMI","3","False"
3
+ "Essendon v Melbourne (AFL Rd 2)","06/04/2013","19:40:00","06/04/2013","22:30:00","FALSE","FALSE","","","Essendon","","MCG","3","False"
4
+ "Fremantle v Essendon (AFL Rd 3)","12/04/2013","20:40:00","12/04/2013","23:30:00","FALSE","FALSE","","","Essendon","","Patersons","3","False"
5
+ "St Kilda v Essendon (AFL Rd 4)","20/04/2013","16:40:00","20/04/2013","19:30:00","FALSE","FALSE","","","Essendon","","Etihad","3","False"
6
+ "Essendon v Collingwood (AFL Rd 5)","25/04/2013","14:40:00","25/04/2013","17:30:00","FALSE","FALSE","","","Essendon","","MCG","3","False"
7
+ "Essendon v Greater Western Sydney (AFL Rd 6)","04/05/2013","13:45:00","04/05/2013","16:35:00","FALSE","FALSE","","","Essendon","","Etihad","3","False"
8
+ "Geelong v Essendon (AFL Rd 7)","10/05/2013","19:50:00","10/05/2013","22:40:00","FALSE","FALSE","","","Essendon","","Etihad","3","False"
9
+ "Essendon v Brisbane (AFL Rd 8)","18/05/2013","13:45:00","18/05/2013","16:35:00","FALSE","FALSE","","","Essendon","","Etihad","3","False"
10
+ "Richmond v Essendon (AFL Rd 9)","25/05/2013","19:45:00","25/05/2013","22:35:00","FALSE","FALSE","","","Essendon","","MCG","3","False"
11
+ "Sydney v Essendon (AFL Rd 10)","01/06/2013","16:40:00","01/06/2013","19:30:00","FALSE","FALSE","","","Essendon","","SCG","3","False"
12
+ "Essendon v Carlton (AFL Rd 11)","07/06/2013","19:50:00","07/06/2013","22:40:00","FALSE","FALSE","","","Essendon","","MCG","3","False"
13
+ "Essendon v Gold Coast (AFL Rd 12)","15/06/2013","19:40:00","15/06/2013","22:30:00","FALSE","FALSE","","","Essendon","","Etihad","3","False"
14
+ "Essendon v BYE (AFL Rd 13)","21/06/2013","00:00:00","22/06/2013","00:00:00","TRUE","FALSE","","","Essendon","","Gabba","3","False"
15
+ "West Coast v Essendon (AFL Rd 14)","27/06/2013","20:10:00","27/06/2013","23:00:00","FALSE","FALSE","","","Essendon","","Patersons","3","False"
16
+ "Essendon v Port Adelaide (AFL Rd 15)","07/07/2013","16:40:00","07/07/2013","19:30:00","FALSE","FALSE","","","Essendon","","Etihad","3","False"
17
+ "Western Bulldogs v Essendon (AFL Rd 16)","14/07/2013","15:15:00","14/07/2013","18:05:00","FALSE","FALSE","","","Essendon","","Etihad","3","False"
18
+ "Greater Western Sydney v Essendon (AFL Rd 17)","20/07/2013","19:40:00","20/07/2013","22:30:00","FALSE","FALSE","","","Essendon","","Skoda","3","False"
19
+ "Essendon v Hawthorn (AFL Rd 18)","26/07/2013","19:50:00","26/07/2013","22:40:00","FALSE","FALSE","","","Essendon","","Etihad","3","False"
20
+ "Collingwood v Essendon (AFL Rd 19)","04/08/2013","16:40:00","04/08/2013","19:30:00","FALSE","FALSE","","","Essendon","","MCG","3","False"
21
+ "Essendon v West Coast (AFL Rd 20)","11/08/2013","13:10:00","11/08/2013","16:00:00","FALSE","FALSE","","","Essendon","","Etihad","3","False"
22
+ "Essendon v North Melbourne (AFL Rd 21)","17/08/2013","16:40:00","17/08/2013","19:30:00","FALSE","FALSE","","","Essendon","","Etihad","3","False"
23
+ "Carlton v Essendon (AFL Rd 22)","24/08/2013","19:40:00","24/08/2013","22:30:00","FALSE","FALSE","","","Essendon","","MCG","3","False"
24
+ "Essendon v Richmond (AFL Rd 23)","30/08/2013","00:00:00","31/08/2013","00:00:00","TRUE","FALSE","","","Essendon","","MCG","3","False"
@@ -0,0 +1,24 @@
1
+ "Subject","Start Date","Start Time","End Date","End Time","All day event","Reminder on/off","Reminder Date","Reminder Time","Categories","Description","Location","Show time as","Private"
2
+ "Fremantle v West Coast (AFL Rd 1)","23/03/2013","19:40:00","23/03/2013","22:30:00","FALSE","FALSE","","","Fremantle","","Patersons","3","False"
3
+ "Western Bulldogs v Fremantle (AFL Rd 2)","06/04/2013","14:10:00","06/04/2013","17:00:00","FALSE","FALSE","","","Fremantle","","Etihad","3","False"
4
+ "Fremantle v Essendon (AFL Rd 3)","12/04/2013","20:40:00","12/04/2013","23:30:00","FALSE","FALSE","","","Fremantle","","Patersons","3","False"
5
+ "Hawthorn v Fremantle (AFL Rd 4)","20/04/2013","13:45:00","20/04/2013","16:35:00","FALSE","FALSE","","","Fremantle","","Aurora","3","False"
6
+ "Fremantle v Richmond (AFL Rd 5)","26/04/2013","20:40:00","26/04/2013","23:30:00","FALSE","FALSE","","","Fremantle","","Patersons","3","False"
7
+ "Gold Coast v Fremantle (AFL Rd 6)","04/05/2013","19:40:00","04/05/2013","22:30:00","FALSE","FALSE","","","Fremantle","","Metricon","3","False"
8
+ "Fremantle v Collingwood (AFL Rd 7)","11/05/2013","19:40:00","11/05/2013","22:30:00","FALSE","FALSE","","","Fremantle","","Patersons","3","False"
9
+ "Sydney v Fremantle (AFL Rd 8)","18/05/2013","19:40:00","18/05/2013","22:30:00","FALSE","FALSE","","","Fremantle","","SCG","3","False"
10
+ "Fremantle v Melbourne (AFL Rd 9)","26/05/2013","16:40:00","26/05/2013","19:30:00","FALSE","FALSE","","","Fremantle","","Patersons","3","False"
11
+ "Adelaide v Fremantle (AFL Rd 10)","01/06/2013","14:10:00","01/06/2013","17:00:00","FALSE","FALSE","","","Fremantle","","AAMI","3","False"
12
+ "Fremantle v BYE (AFL Rd 11)","07/06/2013","00:00:00","08/06/2013","00:00:00","TRUE","FALSE","","","Fremantle","","MCG","3","False"
13
+ "Fremantle v Brisbane (AFL Rd 12)","15/06/2013","16:40:00","15/06/2013","19:30:00","FALSE","FALSE","","","Fremantle","","Patersons","3","False"
14
+ "Fremantle v North Melbourne (AFL Rd 13)","23/06/2013","15:15:00","23/06/2013","18:05:00","FALSE","FALSE","","","Fremantle","","Patersons","3","False"
15
+ "Geelong v Fremantle (AFL Rd 14)","29/06/2013","19:40:00","29/06/2013","22:30:00","FALSE","FALSE","","","Fremantle","","Simonds","3","False"
16
+ "Fremantle v St Kilda (AFL Rd 15)","07/07/2013","15:15:00","07/07/2013","18:05:00","FALSE","FALSE","","","Fremantle","","Patersons","3","False"
17
+ "West Coast v Fremantle (AFL Rd 16)","14/07/2013","16:40:00","14/07/2013","19:30:00","FALSE","FALSE","","","Fremantle","","Patersons","3","False"
18
+ "Richmond v Fremantle (AFL Rd 17)","21/07/2013","13:10:00","21/07/2013","16:00:00","FALSE","FALSE","","","Fremantle","","MCG","3","False"
19
+ "Fremantle v Adelaide (AFL Rd 18)","27/07/2013","19:40:00","27/07/2013","22:30:00","FALSE","FALSE","","","Fremantle","","Patersons","3","False"
20
+ "Carlton v Fremantle (AFL Rd 19)","03/08/2013","19:40:00","03/08/2013","22:30:00","FALSE","FALSE","","","Fremantle","","Etihad","3","False"
21
+ "Fremantle v Greater Western Sydney (AFL Rd 20)","11/08/2013","16:40:00","11/08/2013","19:30:00","FALSE","FALSE","","","Fremantle","","Patersons","3","False"
22
+ "Melbourne v Fremantle (AFL Rd 21)","18/08/2013","13:10:00","18/08/2013","16:00:00","FALSE","FALSE","","","Fremantle","","MCG","3","False"
23
+ "Fremantle v Port Adelaide (AFL Rd 22)","24/08/2013","19:40:00","24/08/2013","22:30:00","FALSE","FALSE","","","Fremantle","","Patersons","3","False"
24
+ "St Kilda v Fremantle (AFL Rd 23)","30/08/2013","00:00:00","31/08/2013","00:00:00","TRUE","FALSE","","","Fremantle","","Etihad","3","False"
@@ -0,0 +1,24 @@
1
+ "Subject","Start Date","Start Time","End Date","End Time","All day event","Reminder on/off","Reminder Date","Reminder Time","Categories","Description","Location","Show time as","Private"
2
+ "Hawthorn v Geelong (AFL Rd 1)","01/04/2013","15:15:00","01/04/2013","18:05:00","FALSE","FALSE","","","Geelong","","MCG","3","False"
3
+ "Geelong v North Melbourne (AFL Rd 2)","07/04/2013","13:10:00","07/04/2013","16:00:00","FALSE","FALSE","","","Geelong","","Etihad","3","False"
4
+ "Geelong v Carlton (AFL Rd 3)","13/04/2013","19:40:00","13/04/2013","22:30:00","FALSE","FALSE","","","Geelong","","Etihad","3","False"
5
+ "Sydney v Geelong (AFL Rd 4)","19/04/2013","19:50:00","19/04/2013","22:40:00","FALSE","FALSE","","","Geelong","","SCG","3","False"
6
+ "Western Bulldogs v Geelong (AFL Rd 5)","27/04/2013","19:40:00","27/04/2013","22:30:00","FALSE","FALSE","","","Geelong","","Etihad","3","False"
7
+ "Richmond v Geelong (AFL Rd 6)","04/05/2013","19:40:00","04/05/2013","22:30:00","FALSE","FALSE","","","Geelong","","MCG","3","False"
8
+ "Geelong v Essendon (AFL Rd 7)","10/05/2013","19:50:00","10/05/2013","22:40:00","FALSE","FALSE","","","Geelong","","Etihad","3","False"
9
+ "Collingwood v Geelong (AFL Rd 8)","18/05/2013","19:40:00","18/05/2013","22:30:00","FALSE","FALSE","","","Geelong","","MCG","3","False"
10
+ "Port Adelaide v Geelong (AFL Rd 9)","25/05/2013","13:45:00","25/05/2013","16:35:00","FALSE","FALSE","","","Geelong","","AAMI","3","False"
11
+ "Geelong v Gold Coast (AFL Rd 10)","01/06/2013","19:40:00","01/06/2013","22:30:00","FALSE","FALSE","","","Geelong","","Simonds","3","False"
12
+ "Greater Western Sydney v Geelong (AFL Rd 11)","08/06/2013","13:40:00","08/06/2013","16:30:00","FALSE","FALSE","","","Geelong","","Skoda","3","False"
13
+ "Geelong v BYE (AFL Rd 12)","14/06/2013","00:00:00","15/06/2013","00:00:00","TRUE","FALSE","","","Geelong","","Etihad","3","False"
14
+ "Brisbane v Geelong (AFL Rd 13)","23/06/2013","16:40:00","23/06/2013","19:30:00","FALSE","FALSE","","","Geelong","","Gabba","3","False"
15
+ "Geelong v Fremantle (AFL Rd 14)","29/06/2013","19:40:00","29/06/2013","22:30:00","FALSE","FALSE","","","Geelong","","Simonds","3","False"
16
+ "Geelong v Hawthorn (AFL Rd 15)","06/07/2013","19:40:00","06/07/2013","22:30:00","FALSE","FALSE","","","Geelong","","MCG","3","False"
17
+ "Geelong v Melbourne (AFL Rd 16)","13/07/2013","14:10:00","13/07/2013","17:00:00","FALSE","FALSE","","","Geelong","","Simonds","3","False"
18
+ "Adelaide v Geelong (AFL Rd 17)","21/07/2013","15:15:00","21/07/2013","18:05:00","FALSE","FALSE","","","Geelong","","AAMI","3","False"
19
+ "Geelong v St Kilda (AFL Rd 18)","27/07/2013","19:40:00","27/07/2013","22:30:00","FALSE","FALSE","","","Geelong","","Simonds","3","False"
20
+ "North Melbourne v Geelong (AFL Rd 19)","02/08/2013","19:50:00","02/08/2013","22:40:00","FALSE","FALSE","","","Geelong","","Etihad","3","False"
21
+ "Geelong v Port Adelaide (AFL Rd 20)","10/08/2013","14:10:00","10/08/2013","17:00:00","FALSE","FALSE","","","Geelong","","Simonds","3","False"
22
+ "West Coast v Geelong (AFL Rd 21)","17/08/2013","19:40:00","17/08/2013","22:30:00","FALSE","FALSE","","","Geelong","","Patersons","3","False"
23
+ "Geelong v Sydney (AFL Rd 22)","24/08/2013","16:40:00","24/08/2013","19:30:00","FALSE","FALSE","","","Geelong","","Simonds","3","False"
24
+ "Geelong v Brisbane (AFL Rd 23)","30/08/2013","00:00:00","31/08/2013","00:00:00","TRUE","FALSE","","","Geelong","","Simonds","3","False"
@@ -0,0 +1,24 @@
1
+ "Subject","Start Date","Start Time","End Date","End Time","All day event","Reminder on/off","Reminder Date","Reminder Time","Categories","Description","Location","Show time as","Private"
2
+ "Gold Coast v St Kilda (AFL Rd 1)","30/03/2013","19:40:00","30/03/2013","22:30:00","FALSE","FALSE","","","Gold Coast","","Metricon","3","False"
3
+ "Sydney v Gold Coast (AFL Rd 2)","06/04/2013","13:45:00","06/04/2013","16:35:00","FALSE","FALSE","","","Gold Coast","","SCG","3","False"
4
+ "Gold Coast v Brisbane (AFL Rd 3)","13/04/2013","19:40:00","13/04/2013","22:30:00","FALSE","FALSE","","","Gold Coast","","Metricon","3","False"
5
+ "Gold Coast v Port Adelaide (AFL Rd 4)","20/04/2013","19:40:00","20/04/2013","22:30:00","FALSE","FALSE","","","Gold Coast","","Metricon","3","False"
6
+ "Greater Western Sydney v Gold Coast (AFL Rd 5)","27/04/2013","13:40:00","27/04/2013","16:30:00","FALSE","FALSE","","","Gold Coast","","Manuka","3","False"
7
+ "Gold Coast v Fremantle (AFL Rd 6)","04/05/2013","19:40:00","04/05/2013","22:30:00","FALSE","FALSE","","","Gold Coast","","Metricon","3","False"
8
+ "Melbourne v Gold Coast (AFL Rd 7)","12/05/2013","16:40:00","12/05/2013","19:30:00","FALSE","FALSE","","","Gold Coast","","MCG","3","False"
9
+ "Gold Coast v Western Bulldogs (AFL Rd 8)","18/05/2013","16:40:00","18/05/2013","19:30:00","FALSE","FALSE","","","Gold Coast","","Metricon","3","False"
10
+ "Hawthorn v Gold Coast (AFL Rd 9)","26/05/2013","13:10:00","26/05/2013","16:00:00","FALSE","FALSE","","","Gold Coast","","MCG","3","False"
11
+ "Geelong v Gold Coast (AFL Rd 10)","01/06/2013","19:40:00","01/06/2013","22:30:00","FALSE","FALSE","","","Gold Coast","","Simonds","3","False"
12
+ "Gold Coast v North Melbourne (AFL Rd 11)","08/06/2013","19:40:00","08/06/2013","22:30:00","FALSE","FALSE","","","Gold Coast","","Metricon","3","False"
13
+ "Essendon v Gold Coast (AFL Rd 12)","15/06/2013","19:40:00","15/06/2013","22:30:00","FALSE","FALSE","","","Gold Coast","","Etihad","3","False"
14
+ "Gold Coast v BYE (AFL Rd 13)","21/06/2013","00:00:00","22/06/2013","00:00:00","TRUE","FALSE","","","Gold Coast","","Gabba","3","False"
15
+ "Gold Coast v Adelaide (AFL Rd 14)","29/06/2013","13:40:00","29/06/2013","16:30:00","FALSE","FALSE","","","Gold Coast","","Metricon","3","False"
16
+ "Brisbane v Gold Coast (AFL Rd 15)","06/07/2013","16:40:00","06/07/2013","19:30:00","FALSE","FALSE","","","Gold Coast","","Gabba","3","False"
17
+ "Richmond v Gold Coast (AFL Rd 16)","13/07/2013","16:40:00","13/07/2013","19:30:00","FALSE","FALSE","","","Gold Coast","","Cazalys","3","False"
18
+ "Gold Coast v Collingwood (AFL Rd 17)","20/07/2013","16:40:00","20/07/2013","19:30:00","FALSE","FALSE","","","Gold Coast","","Metricon","3","False"
19
+ "Gold Coast v Carlton (AFL Rd 18)","27/07/2013","13:45:00","27/07/2013","16:35:00","FALSE","FALSE","","","Gold Coast","","Metricon","3","False"
20
+ "West Coast v Gold Coast (AFL Rd 19)","03/08/2013","16:40:00","03/08/2013","19:30:00","FALSE","FALSE","","","Gold Coast","","Patersons","3","False"
21
+ "Gold Coast v Melbourne (AFL Rd 20)","10/08/2013","19:40:00","10/08/2013","22:30:00","FALSE","FALSE","","","Gold Coast","","Metricon","3","False"
22
+ "Port Adelaide v Gold Coast (AFL Rd 21)","17/08/2013","14:10:00","17/08/2013","17:00:00","FALSE","FALSE","","","Gold Coast","","AAMI","3","False"
23
+ "St Kilda v Gold Coast (AFL Rd 22)","25/08/2013","13:10:00","25/08/2013","16:00:00","FALSE","FALSE","","","Gold Coast","","Etihad","3","False"
24
+ "Gold Coast v Greater Western Sydney (AFL Rd 23)","30/08/2013","00:00:00","31/08/2013","00:00:00","TRUE","FALSE","","","Gold Coast","","Metricon","3","False"
@@ -0,0 +1,24 @@
1
+ "Subject","Start Date","Start Time","End Date","End Time","All day event","Reminder on/off","Reminder Date","Reminder Time","Categories","Description","Location","Show time as","Private"
2
+ "Greater Western Sydney v Sydney (AFL Rd 1)","30/03/2013","16:40:00","30/03/2013","19:30:00","FALSE","FALSE","","","Greater Western Sydney","","ANZ","3","False"
3
+ "Port Adelaide v Greater Western Sydney (AFL Rd 2)","06/04/2013","19:40:00","06/04/2013","22:30:00","FALSE","FALSE","","","Greater Western Sydney","","AAMI","3","False"
4
+ "Greater Western Sydney v St Kilda (AFL Rd 3)","13/04/2013","16:40:00","13/04/2013","19:30:00","FALSE","FALSE","","","Greater Western Sydney","","Manuka","3","False"
5
+ "Melbourne v Greater Western Sydney (AFL Rd 4)","21/04/2013","13:10:00","21/04/2013","16:00:00","FALSE","FALSE","","","Greater Western Sydney","","MCG","3","False"
6
+ "Greater Western Sydney v Gold Coast (AFL Rd 5)","27/04/2013","13:40:00","27/04/2013","16:30:00","FALSE","FALSE","","","Greater Western Sydney","","Manuka","3","False"
7
+ "Essendon v Greater Western Sydney (AFL Rd 6)","04/05/2013","13:45:00","04/05/2013","16:35:00","FALSE","FALSE","","","Greater Western Sydney","","Etihad","3","False"
8
+ "Greater Western Sydney v Adelaide (AFL Rd 7)","12/05/2013","13:10:00","12/05/2013","16:00:00","FALSE","FALSE","","","Greater Western Sydney","","Skoda","3","False"
9
+ "Hawthorn v Greater Western Sydney (AFL Rd 8)","18/05/2013","14:10:00","18/05/2013","17:00:00","FALSE","FALSE","","","Greater Western Sydney","","Aurora","3","False"
10
+ "Greater Western Sydney v West Coast (AFL Rd 9)","25/05/2013","14:10:00","25/05/2013","17:00:00","FALSE","FALSE","","","Greater Western Sydney","","Skoda","3","False"
11
+ "Carlton v Greater Western Sydney (AFL Rd 10)","01/06/2013","13:45:00","01/06/2013","16:35:00","FALSE","FALSE","","","Greater Western Sydney","","Etihad","3","False"
12
+ "Greater Western Sydney v Geelong (AFL Rd 11)","08/06/2013","13:40:00","08/06/2013","16:30:00","FALSE","FALSE","","","Greater Western Sydney","","Skoda","3","False"
13
+ "Greater Western Sydney v Port Adelaide (AFL Rd 12)","16/06/2013","13:10:00","16/06/2013","16:00:00","FALSE","FALSE","","","Greater Western Sydney","","Skoda","3","False"
14
+ "Greater Western Sydney v BYE (AFL Rd 13)","21/06/2013","00:00:00","22/06/2013","00:00:00","TRUE","FALSE","","","Greater Western Sydney","","Gabba","3","False"
15
+ "North Melbourne v Greater Western Sydney (AFL Rd 14)","30/06/2013","15:15:00","30/06/2013","18:05:00","FALSE","FALSE","","","Greater Western Sydney","","Etihad","3","False"
16
+ "Greater Western Sydney v Western Bulldogs (AFL Rd 15)","06/07/2013","13:45:00","06/07/2013","16:35:00","FALSE","FALSE","","","Greater Western Sydney","","Manuka","3","False"
17
+ "Sydney v Greater Western Sydney (AFL Rd 16)","14/07/2013","13:10:00","14/07/2013","16:00:00","FALSE","FALSE","","","Greater Western Sydney","","SCG","3","False"
18
+ "Greater Western Sydney v Essendon (AFL Rd 17)","20/07/2013","19:40:00","20/07/2013","22:30:00","FALSE","FALSE","","","Greater Western Sydney","","Skoda","3","False"
19
+ "Collingwood v Greater Western Sydney (AFL Rd 18)","27/07/2013","16:40:00","27/07/2013","19:30:00","FALSE","FALSE","","","Greater Western Sydney","","MCG","3","False"
20
+ "Greater Western Sydney v Melbourne (AFL Rd 19)","03/08/2013","13:45:00","03/08/2013","16:35:00","FALSE","FALSE","","","Greater Western Sydney","","Skoda","3","False"
21
+ "Fremantle v Greater Western Sydney (AFL Rd 20)","11/08/2013","16:40:00","11/08/2013","19:30:00","FALSE","FALSE","","","Greater Western Sydney","","Patersons","3","False"
22
+ "Brisbane v Greater Western Sydney (AFL Rd 21)","17/08/2013","19:40:00","17/08/2013","22:30:00","FALSE","FALSE","","","Greater Western Sydney","","Gabba","3","False"
23
+ "Greater Western Sydney v Richmond (AFL Rd 22)","25/08/2013","15:15:00","25/08/2013","18:05:00","FALSE","FALSE","","","Greater Western Sydney","","Skoda","3","False"
24
+ "Gold Coast v Greater Western Sydney (AFL Rd 23)","30/08/2013","00:00:00","31/08/2013","00:00:00","TRUE","FALSE","","","Greater Western Sydney","","Metricon","3","False"
@@ -0,0 +1,24 @@
1
+ "Subject","Start Date","Start Time","End Date","End Time","All day event","Reminder on/off","Reminder Date","Reminder Time","Categories","Description","Location","Show time as","Private"
2
+ "Hawthorn v Geelong (AFL Rd 1)","01/04/2013","15:15:00","01/04/2013","18:05:00","FALSE","FALSE","","","Hawthorn","","MCG","3","False"
3
+ "West Coast v Hawthorn (AFL Rd 2)","07/04/2013","16:40:00","07/04/2013","19:30:00","FALSE","FALSE","","","Hawthorn","","Patersons","3","False"
4
+ "Collingwood v Hawthorn (AFL Rd 3)","14/04/2013","15:15:00","14/04/2013","18:05:00","FALSE","FALSE","","","Hawthorn","","MCG","3","False"
5
+ "Hawthorn v Fremantle (AFL Rd 4)","20/04/2013","13:45:00","20/04/2013","16:35:00","FALSE","FALSE","","","Hawthorn","","Aurora","3","False"
6
+ "Hawthorn v North Melbourne (AFL Rd 5)","28/04/2013","16:40:00","28/04/2013","19:30:00","FALSE","FALSE","","","Hawthorn","","MCG","3","False"
7
+ "Adelaide v Hawthorn (AFL Rd 6)","04/05/2013","16:40:00","04/05/2013","19:30:00","FALSE","FALSE","","","Hawthorn","","AAMI","3","False"
8
+ "Hawthorn v Sydney (AFL Rd 7)","11/05/2013","19:40:00","11/05/2013","22:30:00","FALSE","FALSE","","","Hawthorn","","MCG","3","False"
9
+ "Hawthorn v Greater Western Sydney (AFL Rd 8)","18/05/2013","14:10:00","18/05/2013","17:00:00","FALSE","FALSE","","","Hawthorn","","Aurora","3","False"
10
+ "Hawthorn v Gold Coast (AFL Rd 9)","26/05/2013","13:10:00","26/05/2013","16:00:00","FALSE","FALSE","","","Hawthorn","","MCG","3","False"
11
+ "Melbourne v Hawthorn (AFL Rd 10)","02/06/2013","15:15:00","02/06/2013","18:05:00","FALSE","FALSE","","","Hawthorn","","MCG","3","False"
12
+ "Hawthorn v BYE (AFL Rd 11)","07/06/2013","00:00:00","08/06/2013","00:00:00","TRUE","FALSE","","","Hawthorn","","MCG","3","False"
13
+ "Carlton v Hawthorn (AFL Rd 12)","14/06/2013","19:50:00","14/06/2013","22:40:00","FALSE","FALSE","","","Hawthorn","","Etihad","3","False"
14
+ "Hawthorn v West Coast (AFL Rd 13)","21/06/2013","19:50:00","21/06/2013","22:40:00","FALSE","FALSE","","","Hawthorn","","Etihad","3","False"
15
+ "Hawthorn v Brisbane (AFL Rd 14)","30/06/2013","13:10:00","30/06/2013","16:00:00","FALSE","FALSE","","","Hawthorn","","Aurora","3","False"
16
+ "Geelong v Hawthorn (AFL Rd 15)","06/07/2013","19:40:00","06/07/2013","22:30:00","FALSE","FALSE","","","Hawthorn","","MCG","3","False"
17
+ "Port Adelaide v Hawthorn (AFL Rd 16)","13/07/2013","13:45:00","13/07/2013","16:35:00","FALSE","FALSE","","","Hawthorn","","AAMI","3","False"
18
+ "Hawthorn v Western Bulldogs (AFL Rd 17)","20/07/2013","13:45:00","20/07/2013","16:35:00","FALSE","FALSE","","","Hawthorn","","Aurora","3","False"
19
+ "Essendon v Hawthorn (AFL Rd 18)","26/07/2013","19:50:00","26/07/2013","22:40:00","FALSE","FALSE","","","Hawthorn","","Etihad","3","False"
20
+ "Hawthorn v Richmond (AFL Rd 19)","03/08/2013","14:10:00","03/08/2013","17:00:00","FALSE","FALSE","","","Hawthorn","","MCG","3","False"
21
+ "St Kilda v Hawthorn (AFL Rd 20)","09/08/2013","19:50:00","09/08/2013","22:40:00","FALSE","FALSE","","","Hawthorn","","Etihad","3","False"
22
+ "Hawthorn v Collingwood (AFL Rd 21)","16/08/2013","19:50:00","16/08/2013","22:40:00","FALSE","FALSE","","","Hawthorn","","MCG","3","False"
23
+ "North Melbourne v Hawthorn (AFL Rd 22)","24/08/2013","14:10:00","24/08/2013","17:00:00","FALSE","FALSE","","","Hawthorn","","Etihad","3","False"
24
+ "Sydney v Hawthorn (AFL Rd 23)","30/08/2013","00:00:00","31/08/2013","00:00:00","TRUE","FALSE","","","Hawthorn","","ANZ","3","False"
@@ -0,0 +1,24 @@
1
+ "Subject","Start Date","Start Time","End Date","End Time","All day event","Reminder on/off","Reminder Date","Reminder Time","Categories","Description","Location","Show time as","Private"
2
+ "Melbourne v Port Adelaide (AFL Rd 1)","31/03/2013","13:10:00","31/03/2013","16:00:00","FALSE","FALSE","","","Melbourne","","MCG","3","False"
3
+ "Essendon v Melbourne (AFL Rd 2)","06/04/2013","19:40:00","06/04/2013","22:30:00","FALSE","FALSE","","","Melbourne","","MCG","3","False"
4
+ "Melbourne v West Coast (AFL Rd 3)","13/04/2013","14:10:00","13/04/2013","17:00:00","FALSE","FALSE","","","Melbourne","","MCG","3","False"
5
+ "Melbourne v Greater Western Sydney (AFL Rd 4)","21/04/2013","13:10:00","21/04/2013","16:00:00","FALSE","FALSE","","","Melbourne","","MCG","3","False"
6
+ "Brisbane v Melbourne (AFL Rd 5)","28/04/2013","15:15:00","28/04/2013","18:05:00","FALSE","FALSE","","","Melbourne","","Gabba","3","False"
7
+ "Carlton v Melbourne (AFL Rd 6)","05/05/2013","15:15:00","05/05/2013","18:05:00","FALSE","FALSE","","","Melbourne","","MCG","3","False"
8
+ "Melbourne v Gold Coast (AFL Rd 7)","12/05/2013","16:40:00","12/05/2013","19:30:00","FALSE","FALSE","","","Melbourne","","MCG","3","False"
9
+ "Richmond v Melbourne (AFL Rd 8)","19/05/2013","15:15:00","19/05/2013","18:05:00","FALSE","FALSE","","","Melbourne","","MCG","3","False"
10
+ "Fremantle v Melbourne (AFL Rd 9)","26/05/2013","16:40:00","26/05/2013","19:30:00","FALSE","FALSE","","","Melbourne","","Patersons","3","False"
11
+ "Melbourne v Hawthorn (AFL Rd 10)","02/06/2013","15:15:00","02/06/2013","18:05:00","FALSE","FALSE","","","Melbourne","","MCG","3","False"
12
+ "Melbourne v Collingwood (AFL Rd 11)","10/06/2013","15:15:00","10/06/2013","18:05:00","FALSE","FALSE","","","Melbourne","","MCG","3","False"
13
+ "Melbourne v BYE (AFL Rd 12)","14/06/2013","00:00:00","15/06/2013","00:00:00","TRUE","FALSE","","","Melbourne","","Etihad","3","False"
14
+ "St Kilda v Melbourne (AFL Rd 13)","22/06/2013","16:40:00","22/06/2013","19:30:00","FALSE","FALSE","","","Melbourne","","MCG","3","False"
15
+ "Melbourne v Western Bulldogs (AFL Rd 14)","29/06/2013","19:40:00","29/06/2013","22:30:00","FALSE","FALSE","","","Melbourne","","MCG","3","False"
16
+ "Melbourne v Sydney (AFL Rd 15)","07/07/2013","13:10:00","07/07/2013","16:00:00","FALSE","FALSE","","","Melbourne","","MCG","3","False"
17
+ "Geelong v Melbourne (AFL Rd 16)","13/07/2013","14:10:00","13/07/2013","17:00:00","FALSE","FALSE","","","Melbourne","","Simonds","3","False"
18
+ "Melbourne v Brisbane (AFL Rd 17)","20/07/2013","19:40:00","20/07/2013","22:30:00","FALSE","FALSE","","","Melbourne","","TIO","3","False"
19
+ "Melbourne v North Melbourne (AFL Rd 18)","27/07/2013","14:10:00","27/07/2013","17:00:00","FALSE","FALSE","","","Melbourne","","Etihad","3","False"
20
+ "Greater Western Sydney v Melbourne (AFL Rd 19)","03/08/2013","13:45:00","03/08/2013","16:35:00","FALSE","FALSE","","","Melbourne","","Skoda","3","False"
21
+ "Gold Coast v Melbourne (AFL Rd 20)","10/08/2013","19:40:00","10/08/2013","22:30:00","FALSE","FALSE","","","Melbourne","","Metricon","3","False"
22
+ "Melbourne v Fremantle (AFL Rd 21)","18/08/2013","13:10:00","18/08/2013","16:00:00","FALSE","FALSE","","","Melbourne","","MCG","3","False"
23
+ "Adelaide v Melbourne (AFL Rd 22)","24/08/2013","13:45:00","24/08/2013","16:35:00","FALSE","FALSE","","","Melbourne","","AAMI","3","False"
24
+ "Western Bulldogs v Melbourne (AFL Rd 23)","30/08/2013","00:00:00","31/08/2013","00:00:00","TRUE","FALSE","","","Melbourne","","Etihad","3","False"