govkit-ca 0.0.2 → 0.0.3

Sign up to get free protection for your applications and to get access to all the features.
Files changed (79) hide show
  1. data/LICENSE +1 -1
  2. data/README.md +2 -2
  3. data/Rakefile +1 -1
  4. data/govkit-ca.gemspec +8 -8
  5. data/lib/gov_kit-ca/postal_code/strategy/base.rb +33 -1
  6. data/lib/gov_kit-ca/postal_code/strategy/{cbc-ca.rb → cbc_ca.rb} +6 -13
  7. data/lib/gov_kit-ca/postal_code/strategy/{conservative-ca.rb → conservative_ca.rb} +2 -4
  8. data/lib/gov_kit-ca/postal_code/strategy/digital-copyright_ca.rb +27 -0
  9. data/lib/gov_kit-ca/postal_code/strategy/{elections-ca.rb → elections_ca.rb} +2 -4
  10. data/lib/gov_kit-ca/postal_code/strategy/{greenparty-ca.rb → greenparty_ca.rb} +3 -5
  11. data/lib/gov_kit-ca/postal_code/strategy/{liberal-ca.rb → liberal_ca.rb} +3 -5
  12. data/lib/gov_kit-ca/postal_code/strategy/{ndp-ca.rb → ndp_ca.rb} +3 -5
  13. data/lib/gov_kit-ca/postal_code/strategy/{parl-gc-ca.rb → parl_gc_ca.rb} +3 -5
  14. data/lib/gov_kit-ca/postal_code/{strategy.rb → strategy_set.rb} +1 -7
  15. data/lib/gov_kit-ca/postal_code.rb +9 -3
  16. data/lib/gov_kit-ca/version.rb +1 -1
  17. data/lib/gov_kit-ca.rb +2 -1
  18. data/spec/cbc_ca_spec.rb +13 -6
  19. data/spec/digital-copyright_ca_spec.rb +32 -0
  20. data/spec/elections_ca_spec.rb +7 -0
  21. data/spec/fixtures/cbc_ca/A1A1A1.response +11 -0
  22. data/spec/fixtures/cbc_ca/G0C2Y0.response +11 -0
  23. data/spec/fixtures/cbc_ca/H0H0H0.response +309 -0
  24. data/spec/fixtures/cbc_ca/K0A1K0.response +11 -0
  25. data/spec/fixtures/cbc_ca/T5S2B9.response +11 -0
  26. data/spec/fixtures/cbc_ca/X1B1B1.response +309 -0
  27. data/spec/fixtures/conservative_ca/A1A1A1.response +467 -0
  28. data/spec/fixtures/conservative_ca/G0C2Y0.response +467 -0
  29. data/spec/fixtures/conservative_ca/H0H0H0.response +467 -0
  30. data/spec/fixtures/conservative_ca/K0A1K0.response +467 -0
  31. data/spec/fixtures/conservative_ca/T5S2B9.response +467 -0
  32. data/spec/fixtures/conservative_ca/X1B1B1.response +467 -0
  33. data/spec/fixtures/digital-copyright_ca/A1A1A1.response +262 -0
  34. data/spec/fixtures/digital-copyright_ca/G0C2Y0.response +263 -0
  35. data/spec/fixtures/digital-copyright_ca/H0H0H0.response +278 -0
  36. data/spec/fixtures/digital-copyright_ca/K0A1K0.response +264 -0
  37. data/spec/fixtures/digital-copyright_ca/T5S2B9.response +267 -0
  38. data/spec/fixtures/digital-copyright_ca/X1B1B1.response +278 -0
  39. data/spec/fixtures/elections_ca/A1A1A1.response +12 -0
  40. data/spec/fixtures/elections_ca/G0C2Y0.response +12 -0
  41. data/spec/fixtures/elections_ca/H0H0H0.response +11 -0
  42. data/spec/fixtures/elections_ca/K0A1K0.response +11 -0
  43. data/spec/fixtures/elections_ca/T5S2B9.response +12 -0
  44. data/spec/fixtures/elections_ca/X1B1B1.response +11 -0
  45. data/spec/fixtures/greenparty_ca/A1A1A1.response +13 -0
  46. data/spec/fixtures/greenparty_ca/G0C2Y0.response +13 -0
  47. data/spec/fixtures/greenparty_ca/H0H0H0.response +13 -0
  48. data/spec/fixtures/greenparty_ca/K0A1K0.response +13 -0
  49. data/spec/fixtures/greenparty_ca/T5S2B9.response +13 -0
  50. data/spec/fixtures/greenparty_ca/X1B1B1.response +13 -0
  51. data/spec/fixtures/liberal_ca/A1A1A1.response +582 -0
  52. data/spec/fixtures/liberal_ca/G0C2Y0.response +582 -0
  53. data/spec/fixtures/liberal_ca/H0H0H0.response +663 -0
  54. data/spec/fixtures/liberal_ca/K0A1K0.response +663 -0
  55. data/spec/fixtures/liberal_ca/T5S2B9.response +663 -0
  56. data/spec/fixtures/liberal_ca/X1B1B1.response +663 -0
  57. data/spec/fixtures/ndp_ca/A1A1A1.response +12 -0
  58. data/spec/fixtures/ndp_ca/G0C2Y0.response +12 -0
  59. data/spec/fixtures/ndp_ca/H0H0H0.response +12 -0
  60. data/spec/fixtures/ndp_ca/K0A1K0.response +12 -0
  61. data/spec/fixtures/ndp_ca/T5S2B9.response +12 -0
  62. data/spec/fixtures/ndp_ca/X1B1B1.response +12 -0
  63. data/spec/fixtures/parl_gc_ca/A1A1A1.response +337 -0
  64. data/spec/fixtures/parl_gc_ca/G0C2Y0.response +337 -0
  65. data/spec/fixtures/parl_gc_ca/H0H0H0.response +226 -0
  66. data/spec/fixtures/parl_gc_ca/K0A1K0.response +784 -0
  67. data/spec/fixtures/parl_gc_ca/T5S2B9.response +511 -0
  68. data/spec/fixtures/parl_gc_ca/X1B1B1.response +226 -0
  69. data/spec/greenparty_ca_spec.rb +7 -0
  70. data/spec/liberal_ca_spec.rb +10 -2
  71. data/spec/ndp_ca_spec.rb +7 -0
  72. data/spec/postal_code_spec.rb +13 -0
  73. data/spec/spec_helper.rb +13 -0
  74. data/spec/strategy_set_spec.rb +0 -0
  75. data/tasks/postal-code-for-districts.csv +212 -0
  76. data/tasks/tasks.rb +73 -0
  77. metadata +180 -98
  78. data/lib/gov_kit-ca/postal_code/strategy/digital_copyright-ca.rb +0 -28
  79. data/tasks/rid_to_edid.rb +0 -136
@@ -0,0 +1,511 @@
1
+ HTTP/1.1 200 OK
2
+ Cache-Control: private
3
+ Content-Type: text/html; charset=utf-8
4
+ Last-Modified: Wed, 02 Feb 2011 05:00:00 GMT
5
+ Server: Microsoft-IIS/7.0
6
+ X-Aspnet-Version: 2.0.50727
7
+ X-Powered-By: ASP.NET
8
+ Date: Sun, 05 Jun 2011 03:17:10 GMT
9
+ Connection: close
10
+ Content-Length: 38700
11
+
12
+
13
+
14
+ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
15
+
16
+ <html xmlns="http://www.w3.org/1999/xhtml" >
17
+ <head><title>
18
+ Find your Member of Parliament using your Postal Code
19
+ </title><link href="../../CSS/Main_Screen.css" rel="stylesheet" type="text/css" media="all" /><link href="../../CSS/Main_Print.css" rel="stylesheet" type="text/css" media="print" /><link id="ctl00_cssAllStyle" rel="stylesheet" type="text/css" media="all" href="../../CSS/compilations_Screen.css" /><link id="ctl00_cssPrintStyle" rel="stylesheet" type="text/css" media="print" href="../../CSS/compilations_Print.css" /><link href="../../CSS/Index.css" rel="stylesheet" type="text/css" media="all" /><link href="/Common/Parl/Styles/CommonElements.css" type="text/css" rel="stylesheet" media="screen" /></head>
20
+ <body style="background-color:white">
21
+ <form name="aspnetForm" method="post" action="MemberByPostalCode.aspx?PostalCode=T5S2B9" id="aspnetForm">
22
+ <input type="hidden" name="__VIEWSTATE" id="__VIEWSTATE" value="/wEPDwUJMjEzNjczNDc3ZBgEBTNjdGwwMCRjcGhDb250ZW50JHJlcE1QJGN0bDAxJGdyZENvbnN0aXR1ZW5jeUFkZHJlc3MPPCsACgEIAgFkBTRjdGwwMCRjcGhDb250ZW50JHJlcE1QJGN0bDAxJGdyZFBhcmxpYW1lbnRhcnlBZGRyZXNzDzwrAAoBCAIBZAUzY3RsMDAkY3BoQ29udGVudCRyZXBNUCRjdGwwMCRncmRDb25zdGl0dWVuY3lBZGRyZXNzDzwrAAoBCAIBZAU0Y3RsMDAkY3BoQ29udGVudCRyZXBNUCRjdGwwMCRncmRQYXJsaWFtZW50YXJ5QWRkcmVzcw88KwAKAQgCAWRnkPByXmTQhzVr4PCSgNHH0kNycw==" />
23
+
24
+
25
+ <script src="/ParlInfo/JS/Language_E.js" type="text/javascript"></script>
26
+ <script src="/ParlInfo/JS/MainTemplate.js" type="text/javascript"></script>
27
+ <input type="hidden" name="__EVENTVALIDATION" id="__EVENTVALIDATION" value="/wEWBQK7j8uECwKXra4YAtyNkoUNApPP9foMAvCHuoIPDlC1ts2E7PgAAgOZQe1+QD1g4fc=" />
28
+ <a id="PageTop"></a><!--This is an anchor used to return to the top of the page-->
29
+
30
+
31
+ <div id="ctl00_ParlHeader">
32
+
33
+ <div class="parlwebsite-toolbar">
34
+ <div class="parlwebsite-logo-area">
35
+ <span class="parlwebsite-homeimage parlwebsite-homeimage-en-CA" title="Parliament of Canada">
36
+ <div><br /><strong>Parliament of Canada</strong><br /><br /></div>
37
+ </span>
38
+ </div>
39
+ <div class="parlwebsite-utility-links">
40
+ <a href="http://www.parl.gc.ca/SiteMap.aspx?Language=E" tabindex="3">Site Map</a> |
41
+ <a href="http://www.parl.gc.ca/ParlInfo/AboutParliamentIndex.aspx?Language=E" tabindex="4">A to Z Index</a> |
42
+ <a href="http://www.parl.gc.ca/ContactUs.aspx?Language=E" tabindex="5">Contact Us</a> |
43
+ <a id="parlwebsite-language-link" href="/ParlInfo/Compilations/HouseOfCommons/MemberByPostalCode.aspx?PostalCode=T5S2B9&Language=F" title="Fran&ccedil;ais" tabindex="6">Fran&ccedil;ais</a>
44
+ <div class="parlwebsite-search-area">
45
+ <input name="ctl00$ctl05$searchTextbox" type="text" id="ctl00_ctl05_searchTextbox" /><input type="submit" name="ctl00$ctl05$searchButton" value="Search" id="ctl00_ctl05_searchButton" class="test" skipSetLanguage="true" />
46
+ <a href="http://www.parl.gc.ca/Search/Advanced.aspx?Language=E" class="parlwebsite-adv-search">Advanced Search</a>
47
+ </div>
48
+ </div>
49
+ <div class="parlwebsite-nav">
50
+ <a href="http://www.parl.gc.ca/Default.aspx?Language=E" tabindex="7">Home</a> |
51
+ <a href="http://www.parl.gc.ca/ParlBusiness.aspx?Language=E" tabindex="8">Parliamentary Business</a> |
52
+ <a href="http://www.parl.gc.ca/SenatorsMembers.aspx?Language=E" tabindex="9">Senators and Members</a> |
53
+ <a href="http://www.parl.gc.ca/About.aspx?Language=E" tabindex="10">About Parliament</a> |
54
+ <a href="http://www.parl.gc.ca/Visitors/index-E.asp" tabindex="11">Visitor Information</a> |
55
+ <a href="http://www.parl.gc.ca/EmploymentOpportunities/Default.aspx?Language=E" tabindex="12">Employment</a>
56
+ </div>
57
+ </div>
58
+
59
+ </div>
60
+
61
+
62
+ <div id="ctl00_pnlHeader" class="pnlHeaderCentered">
63
+
64
+ <!---->
65
+ <img id="ctl00_Image3" class="IMGTEST2" src="../../images/loptopleft-e.gif" alt=" Parliament of Canada" border="0" />
66
+ </div>
67
+
68
+ <div id="ctl00_pnlMain" class="parlwebsite-parlinfo-body">
69
+
70
+ <div id="ctl00_pnlMenu" class="pnlMenu">
71
+
72
+ <div id="ctl00_pnlMenuContent" class="pnlMenuContent">
73
+
74
+
75
+
76
+ <div id="ctl00_cphRootMenu_ctl00_pnlRootHomeMenu" class="MenuItemSelected">
77
+
78
+ <a id="ctl00_cphRootMenu_ctl00_lnkRootHomeMenu" class="MenuItemLinkSelected" href="../../default.aspx?Menu=Home">PARLINFO - Home</a>
79
+
80
+ </div>
81
+ <div id="ctl00_cphRootMenu_ctl00_pnlRootSitemapMenu" class="MenuSubItem">
82
+
83
+ <a id="ctl00_cphRootMenu_ctl00_lnkRootSitemapMenu" class="MenuSubItemLink" href="../../Sitemap.aspx">Sitemap of ParlInfo</a>
84
+
85
+ </div>
86
+ <div id="ctl00_cphRootMenu_ctl00_pnlRootIndexMenux" class="MenuSubItem">
87
+
88
+ <a id="ctl00_cphRootMenu_ctl00_lnkRootIndexMenu" class="MenuSubItemLink" href="../../AboutParliamentIndex.aspx">A to Z Index</a>
89
+
90
+ </div>
91
+
92
+
93
+
94
+
95
+
96
+ <div id="ctl00_cphMenu_ctl00" class="Menu">
97
+ <div id="ctl00_cphMenu_divMenudefault.aspx.Menu=Home" class="MenuItemInvisible"><a id="ctl00_cphMenu_lnkdefault.aspx.Menu=Home" class="MenuItemInvisibleLink" href="../../default.aspx?Menu=Home">PARLINFO - Home</a></div>
98
+ <div id="ctl00_cphMenu_divMenupages.parliament.aspx.Menu=Parliament" class="MenuItem"><a id="ctl00_cphMenu_lnkpages.parliament.aspx.Menu=Parliament" class="MenuItemLink" href="../../pages/parliament.aspx?Menu=Parliament">Parliament</a></div>
99
+ <div id="ctl00_cphMenu_divMenupages.govgeneral.aspx.Menu=GG" class="MenuItem"><a id="ctl00_cphMenu_lnkpages.govgeneral.aspx.Menu=GG" class="MenuItemLink" href="../../pages/govgeneral.aspx?Menu=GG">Governor General </a></div>
100
+ <div id="ctl00_cphMenu_divMenucompilations.senate.aspx.Menu=Senate" class="MenuItem"><a id="ctl00_cphMenu_lnkcompilations.senate.aspx.Menu=Senate" class="MenuItemLink" href="../senate.aspx?Menu=Senate">Senate</a></div>
101
+ <div id="ctl00_cphMenu_divMenucompilations.HouseOfCommons.aspx.Menu=HoC" class="MenuItem"><a id="ctl00_cphMenu_lnkcompilations.HouseOfCommons.aspx.Menu=HoC" class="MenuItemLink" href="../HouseOfCommons.aspx?Menu=HoC">House of Commons</a></div>
102
+ <div id="ctl00_cphMenu_divMenupages.federalgovernment.aspx.Menu=Federal" class="MenuItem"><a id="ctl00_cphMenu_lnkpages.federalgovernment.aspx.Menu=Federal" class="MenuItemLink" href="../../pages/federalgovernment.aspx?Menu=Federal">Federal Government</a></div>
103
+ <div id="ctl00_cphMenu_divMenucompilations.Constitution.aspx.Menu=Constitution" class="MenuItem"><a id="ctl00_cphMenu_lnkcompilations.Constitution.aspx.Menu=Constitution" class="MenuItemLink" href="../Constitution.aspx?Menu=Constitution">Constitution</a></div>
104
+ <div id="ctl00_cphMenu_divMenucompilations.legislation.aspx.Menu=Legislation" class="MenuItem"><a id="ctl00_cphMenu_lnkcompilations.legislation.aspx.Menu=Legislation" class="MenuItemLink" href="../legislation.aspx?Menu=Legislation">Legislation</a></div>
105
+ <div id="ctl00_cphMenu_divMenuCompilations.ElectionsAndRidings.aspx.Menu=ElectionsRidings" class="MenuItemSelected"><a id="ctl00_cphMenu_lnkCompilations.ElectionsAndRidings.aspx.Menu=ElectionsRidings" class="MenuItemLinkSelected" href="../ElectionsAndRidings.aspx?Menu=ElectionsRidings">Elections and Ridings</a></div>
106
+ <div id="ctl00_cphMenu_divMenuCompilations.ElectionsAndRidings.Elections.aspx.Menu=ElectionsRidings-Election" class="MenuSubItemWithChildren"><a id="ctl00_cphMenu_lnkCompilations.ElectionsAndRidings.Elections.aspx.Menu=ElectionsRidings-Election" class="MenuSubItemWithChildrenLink" href="../ElectionsAndRidings/Elections.aspx?Menu=ElectionsRidings-Election">Elections</a></div>
107
+ <div id="ctl00_cphMenu_divMenu-.Menu=ElectionsRidings-ElectionResults" class="MenuSubItemWithChildren"><a id="ctl00_cphMenu_lnk-.Menu=ElectionsRidings-ElectionResults" class="MenuSubItemWithChildrenLink" href="../ElectionsAndRidings/ResultsParty.aspx">Electoral Results</a></div>
108
+ <div id="ctl00_cphMenu_divMenu-.Menu=ElectionsRidings-Riding" class="MenuSubItemWithChildrenSelected"><a id="ctl00_cphMenu_lnk-.Menu=ElectionsRidings-Riding" class="MenuSubItemWithChildrenLinkSelected" href="MemberByPostalCode.aspx">Ridings / Constituencies</a></div>
109
+ <div id="ctl00_cphMenu_divMenuCompilations.HouseOfCommons.MemberByPostalCode.aspx" class="MenuSubSubItemSelected"><a id="ctl00_cphMenu_lnkCompilations.HouseOfCommons.MemberByPostalCode.aspx" class="MenuSubSubItemLinkSelected" href="MemberByPostalCode.aspx">Find your Member of Parliament using your Postal Code</a></div>
110
+ <div id="ctl00_cphMenu_divMenuCompilations.ElectionsAndRidings.ConstituencyProvince.aspx" class="MenuSubSubItem"><a id="ctl00_cphMenu_lnkCompilations.ElectionsAndRidings.ConstituencyProvince.aspx" class="MenuSubSubItemLink" href="../ElectionsAndRidings/ConstituencyProvince.aspx">Federal Electoral Constituencies by Province</a></div>
111
+ <div id="ctl00_cphMenu_divMenuCompilations.HouseOfCommons.Legislation.LegislationElectoralDistrict.aspx.Menu=ElectionsRidings-Legislation" class="MenuSubSubItem"><a id="ctl00_cphMenu_lnkCompilations.HouseOfCommons.Legislation.LegislationElectoralDistrict.aspx.Menu=ElectionsRidings-Legislation" class="MenuSubSubItemLink" href="Legislation/LegislationElectoralDistrict.aspx?Menu=ElectionsRidings-Legislation">Legal Measures Governing Changes in Federal Electoral Districts</a></div>
112
+ <div id="ctl00_cphMenu_divMenu.About.Parliament.FederalRidingsHistory.HFER.asp" class="MenuSubSubItem"><a id="ctl00_cphMenu_lnk.About.Parliament.FederalRidingsHistory.HFER.asp" class="MenuSubSubItemLink" href="/About/Parliament/FederalRidingsHistory/HFER.asp">History of the federal electoral ridings</a></div>
113
+ <div id="ctl00_cphMenu_divMenucompilations.PoliticalParties.PoliticalParties.aspx.Menu=Party" class="MenuItem"><a id="ctl00_cphMenu_lnkcompilations.PoliticalParties.PoliticalParties.aspx.Menu=Party" class="MenuItemLink" href="../PoliticalParties/PoliticalParties.aspx?Menu=Party">Political Parties</a></div>
114
+ <div id="ctl00_cphMenu_divMenucompilations.ProvinceTerritory.aspx.Menu=ProvinceTerritory" class="MenuItem"><a id="ctl00_cphMenu_lnkcompilations.ProvinceTerritory.aspx.Menu=ProvinceTerritory" class="MenuItemLink" href="../ProvinceTerritory.aspx?Menu=ProvinceTerritory">Provinces and Territories</a></div>
115
+ <div id="ctl00_cphMenu_divMenuCompilations.SupremeCourt.aspx.Menu=SupremeCourt" class="MenuItem"><a id="ctl00_cphMenu_lnkCompilations.SupremeCourt.aspx.Menu=SupremeCourt" class="MenuItemLink" href="../SupremeCourt.aspx?Menu=SupremeCourt&amp;Current=True">Supreme Court of Canada</a></div>
116
+
117
+ </div>
118
+
119
+ </div>
120
+ <img id="ctl00_Image1" src="../../images/leftnavbottom.gif" alt=" " height="22" width="200" border="0" />
121
+
122
+
123
+ <div id="ctl00_pnlMenuBottom" class="pnlMenuBottom">
124
+
125
+ <div id="ctl00_pnlWhatIsNew">
126
+
127
+
128
+
129
+
130
+
131
+
132
+
133
+ </div>
134
+
135
+ </div>
136
+
137
+ </div>
138
+
139
+ <!-- Related Links -->
140
+
141
+
142
+
143
+ <!-- END Related Links -->
144
+
145
+ <div id="ctl00_pnlContent" class="pnlContent">
146
+
147
+
148
+ <img id="ctl00_imgImageSection" class="imgBrandRight" src="../../images/SectionImage/ElectionsRidings.jpg" alt="Elections and Ridings Section" height="80" width="100" border="0" />
149
+
150
+ <div id="ctl00_pnlBreadCrumpsHolder" class="BreadCrumbsHolder">
151
+
152
+
153
+ <div id="ctl00_cphBreadcrumbs_ctl00" class="Bread">
154
+ <div id="ctl00_cphBreadcrumbs_divBreadCompilations.ElectionsAndRidings.aspx.Menu=ElectionsRidings" class="BreadItem"><a id="ctl00_cphBreadcrumbs_lnkCompilations.ElectionsAndRidings.aspx.Menu=ElectionsRidings" class="BreadItemLink" href="../ElectionsAndRidings.aspx?Menu=ElectionsRidings">Elections and Ridings</a></div>
155
+ <div id="ctl00_cphBreadcrumbs_divBread-.Menu=ElectionsRidings-Riding" class="BreadSubItemWithChildren"><a id="ctl00_cphBreadcrumbs_lnk-.Menu=ElectionsRidings-Riding" class="BreadSubItemWithChildrenLink" href="MemberByPostalCode.aspx">Ridings / Constituencies</a></div>
156
+ <div id="ctl00_cphBreadcrumbs_divBreadCompilations.HouseOfCommons.MemberByPostalCode.aspx" class="BreadSubSubItem"><a id="ctl00_cphBreadcrumbs_lnkCompilations.HouseOfCommons.MemberByPostalCode.aspx" class="BreadSubSubItemLink" href="MemberByPostalCode.aspx">Find your Member of Parliament using your Postal Code</a></div>
157
+
158
+ </div>
159
+
160
+ </div>
161
+
162
+ <div id="ctl00_cphContent_HeaderWithoutPicture1_pnlHeader" class="pnlListHeader">
163
+
164
+ <span id="ctl00_cphContent_HeaderWithoutPicture1_lblTitle" class="lblTitle" style="display:inline-block;">Find your Member of Parliament using your Postal Code</span>
165
+
166
+ <div class="pnlRelatedLinks"><span Class="RelatedTitle">Selected Links</span>
167
+ <a href="http://www.pch.gc.ca/pgm/ceem-cced/prtcl/address2-eng.cfm" Class="RelatedLink">Styles of address - Federal dignitaries</a>
168
+ </div>
169
+
170
+ <div id="ctl00_cphContent_HeaderWithoutPicture1_pnlListHeaderNotes" class="pnlListHeaderNote">
171
+
172
+ <span id="ctl00_cphContent_HeaderWithoutPicture1_lblNotes"><P><STRONG>Note</STRONG>: If your postal code returns more than one result, please consult <A href="http://www.elections.ca/scripts/pss/FindED.aspx?L=e&amp;PC=&amp;image.x=20&amp;image.y=11">Elections Canada</A>'s advanced search function.</P>
173
+ <P><STRONG>Source</STRONG>: Statistics Canada -&nbsp;October 2010</P></span>
174
+
175
+
176
+ </div>
177
+
178
+ </div>
179
+
180
+ <div id="ctl00_cphContent_pnlListHeaderCriterias" class="pnlListHeaderCriteria">
181
+
182
+ <span id="ctl00_cphContent_lblCriteria" class="lblCriteria" style="display:inline-block;">Search Criteria</span>
183
+ <div id="ctl00_cphContent_pnlPostalCriteria" class="CriteriaSeparator">
184
+
185
+ <label for="ctl00_cphContent_txtPostalCriteria" id="ctl00_cphContent_lblPostalCriteria" class="CriteriaSeparatorTitleSection">Postal Code (eg. A1A1A1):</label>
186
+ <input name="ctl00$cphContent$txtPostalCriteria" type="text" value="T5S2B9" maxlength="7" id="ctl00_cphContent_txtPostalCriteria" />
187
+
188
+ </div>
189
+
190
+ <div id="ctl00_cphContent_pnlRefreshList" class="CriteriaSeparatorButton">
191
+
192
+ <input type="submit" name="ctl00$cphContent$btnRefreshList" value="Search" id="ctl00_cphContent_btnRefreshList" class="test" />
193
+
194
+ </div>
195
+
196
+ </div>
197
+
198
+
199
+ <div id="ctl00_cphContent_pnlWithMP">
200
+
201
+ <span id="ctl00_cphContent_lblCount"><b><font color="Red">The postal code identified 2 electoral districts, listed below in alphabetical order. To refine your search, please consult <a href="http://www.elections.ca/scripts/pss/FindED.aspx?L=e&PC=&image.x=20&image.y=11">Elections Canada</a>'s advanced search function.<br /></font></b></span>
202
+
203
+ <div id="ctl00_cphContent_repMP_ctl00_pnlGroupMPTop">
204
+
205
+ <div id="ctl00_cphContent_repMP_ctl00_pnlMP" class="panelColumnHolder">
206
+
207
+ <span id="ctl00_cphContent_repMP_ctl00_lblYellowBar" class="lblFileTabTitle" style="display:inline-block;">Edmonton--Spruce Grove, Alberta</span><br />
208
+ <div id="ctl00_cphContent_repMP_ctl00_pnlFileImageHolder" class="panelColumnOne">
209
+
210
+ <a id="ctl00_cphContent_repMP_ctl00_lnkPicture" href="../../Files/Parliamentarian.aspx?Item=cf6f39df-d304-45e1-a559-70a0cf20a720&amp;Language=E"><img id="ctl00_cphContent_repMP_ctl00_imgMember" src="../../images/Thumbnail.aspx?Item=4b3fcd36-33cf-4f8d-b43e-97b634fe5343" border="0" /></a>
211
+
212
+ </div>
213
+ <div id="ctl00_cphContent_repMP_ctl00_pnlFileHeaderData" class="panelColumnTwo">
214
+
215
+ <a id="ctl00_cphContent_repMP_ctl00_lnkPerson" href="../../Files/Parliamentarian.aspx?Item=cf6f39df-d304-45e1-a559-70a0cf20a720&amp;Language=E">Ambrose, Rona</a><br />
216
+ <a id="ctl00_cphContent_repMP_ctl00_lnkParty" href="../../Files/Party.aspx?Item=0c0ef0db-d14a-4438-8818-784c924f06ae&amp;Language=E">Conservative Party of Canada</a>
217
+ <br />
218
+
219
+ </div>
220
+
221
+ </div>
222
+ <div id="ctl00_cphContent_repMP_ctl00_dataLanguagePreference" class="DataSeparatorMargin15">
223
+
224
+ <span id="ctl00_cphContent_repMP_ctl00_lblLanguagePreference" class="DataSeparatorTitleSection">Language Preference:</span>
225
+ <span id="ctl00_cphContent_repMP_ctl00_LanguagePreferenceData" class="DataSeparatorValueSection">English</span>
226
+
227
+ </div>
228
+
229
+ <div id="ctl00_cphContent_repMP_ctl00_pnlAddress" class="FileTabSection">
230
+
231
+ <span id="ctl00_cphContent_repMP_ctl00_lblContactInfo" class="lblFileTabTitle" style="display:inline-block;">Contact Information</span>
232
+
233
+ <div id="ctl00_cphContent_repMP_ctl00_pnlSectionParliamentaryAddress" class="FileTabSection">
234
+
235
+ <a href="/ParlInfo/Compilations/HouseOfCommons/MemberByPostalCode.aspx?PostalCode=T5S2B9#PageTop" id="ctl00_cphContent_repMP_ctl00_BackToTopArrow1_BackToTopLink" class="BackToTopArrow" title="Back to top of document">^</a>
236
+ <span id="ctl00_cphContent_repMP_ctl00_lblSectionParliamentaryAddress" class="lblFileTabSection">Parliamentary Address</span>
237
+ <div id="ctl00_cphContent_repMP_ctl00_pnlSectionParliamentaryAddressContent" class="FileTabSectionContent">
238
+
239
+ <div>
240
+ <table cellspacing="0" cellpadding="0" border="0" id="ctl00_cphContent_repMP_ctl00_grdParliamentaryAddress" width="100%">
241
+ <tr class="GridRows">
242
+ <td><font color="Black">
243
+ <div id="ctl00_cphContent_repMP_ctl00_grdParliamentaryAddress_ctl02_pnlAddressDetails2" class="Column2">
244
+
245
+
246
+
247
+ <span id="ctl00_cphContent_repMP_ctl00_grdParliamentaryAddress_ctl02_repParliamentaryTelephones_ctl00_lblTelephoneType">Telephone:</span>
248
+ <span id="ctl00_cphContent_repMP_ctl00_grdParliamentaryAddress_ctl02_repParliamentaryTelephones_ctl00_lblTelephonenumber">613-996-9778</span><br />
249
+
250
+ <span id="ctl00_cphContent_repMP_ctl00_grdParliamentaryAddress_ctl02_repParliamentaryTelephones_ctl01_lblTelephoneType">Fax:</span>
251
+ <span id="ctl00_cphContent_repMP_ctl00_grdParliamentaryAddress_ctl02_repParliamentaryTelephones_ctl01_lblTelephonenumber">613-996-0785</span><br />
252
+
253
+
254
+ <span id="ctl00_cphContent_repMP_ctl00_grdParliamentaryAddress_ctl02_Label10">E-mail:</span><a id="ctl00_cphContent_repMP_ctl00_grdParliamentaryAddress_ctl02_HyperLink1" href="mailto:Ambrose.R@parl.gc.ca">Ambrose.R@parl.gc.ca</a>
255
+
256
+ </div>
257
+
258
+ <div id="ctl00_cphContent_repMP_ctl00_grdParliamentaryAddress_ctl02_pnlAddressExternal" class="Column1">
259
+
260
+ <span id="ctl00_cphContent_repMP_ctl00_grdParliamentaryAddress_ctl02_Label5">House of Commons</span><br />
261
+ <span id="ctl00_cphContent_repMP_ctl00_grdParliamentaryAddress_ctl02_Label7">Ottawa, Ontario</span><br />
262
+ <span id="ctl00_cphContent_repMP_ctl00_grdParliamentaryAddress_ctl02_Label8">K1A 0A6</span>
263
+
264
+ </div>
265
+ </font></td>
266
+ </tr>
267
+ </table>
268
+ </div>
269
+
270
+ </div>
271
+
272
+ </div>
273
+
274
+ <div id="ctl00_cphContent_repMP_ctl00_pnlSectionConstituencyAddress" class="FileTabSection">
275
+
276
+ <a href="/ParlInfo/Compilations/HouseOfCommons/MemberByPostalCode.aspx?PostalCode=T5S2B9#PageTop" id="ctl00_cphContent_repMP_ctl00_BackToTopArrow2_BackToTopLink" class="BackToTopArrow" title="Back to top of document">^</a>
277
+ <span id="ctl00_cphContent_repMP_ctl00_lblSectionConstituencyAddress" class="lblFileTabSection">Constituency Address</span>
278
+ <div id="ctl00_cphContent_repMP_ctl00_pnlSectionConstituencyAddressContent" class="FileTabSectionContent">
279
+
280
+ <div>
281
+ <table cellspacing="0" cellpadding="0" border="0" id="ctl00_cphContent_repMP_ctl00_grdConstituencyAddress" width="100%">
282
+ <tr class="GridRows">
283
+ <td><font color="Black">
284
+ <div id="ctl00_cphContent_repMP_ctl00_grdConstituencyAddress_ctl02_pnlAddressDetails2" class="Column2">
285
+
286
+
287
+
288
+ <span id="ctl00_cphContent_repMP_ctl00_grdConstituencyAddress_ctl02_repConstituencyTelephones_ctl00_lblTelephoneType">Telephone:</span>
289
+ <span id="ctl00_cphContent_repMP_ctl00_grdConstituencyAddress_ctl02_repConstituencyTelephones_ctl00_lblTelephonenumber">780-495-7705</span><br />
290
+
291
+
292
+ <a id="ctl00_cphContent_repMP_ctl00_grdConstituencyAddress_ctl02_HyperLink1" href="mailto:"></a>
293
+
294
+ </div>
295
+ <div id="ctl00_cphContent_repMP_ctl00_grdConstituencyAddress_ctl02_pnlAddressDetails1" class="Column1">
296
+
297
+ <span id="ctl00_cphContent_repMP_ctl00_grdConstituencyAddress_ctl02_Label3"> 4807 44 Avenue, Suite 102</span><br />
298
+ <span id="ctl00_cphContent_repMP_ctl00_grdConstituencyAddress_ctl02_Label12">Stony Plain</span>,
299
+ <span id="ctl00_cphContent_repMP_ctl00_grdConstituencyAddress_ctl02_Label4">Alberta</span><br />
300
+ <span id="ctl00_cphContent_repMP_ctl00_grdConstituencyAddress_ctl02_Label13">T7Z 1V5</span>
301
+
302
+ </div>
303
+ </font></td>
304
+ </tr><tr class="GridRowsAlt">
305
+ <td><font color="Black">
306
+ <div id="ctl00_cphContent_repMP_ctl00_grdConstituencyAddress_ctl03_pnlAddressDetails2" class="Column2">
307
+
308
+
309
+
310
+ <span id="ctl00_cphContent_repMP_ctl00_grdConstituencyAddress_ctl03_repConstituencyTelephones_ctl00_lblTelephoneType">Telephone:</span>
311
+ <span id="ctl00_cphContent_repMP_ctl00_grdConstituencyAddress_ctl03_repConstituencyTelephones_ctl00_lblTelephonenumber">780-495-7705</span><br />
312
+
313
+ <span id="ctl00_cphContent_repMP_ctl00_grdConstituencyAddress_ctl03_repConstituencyTelephones_ctl01_lblTelephoneType">Fax:</span>
314
+ <span id="ctl00_cphContent_repMP_ctl00_grdConstituencyAddress_ctl03_repConstituencyTelephones_ctl01_lblTelephonenumber">780-495-7741</span><br />
315
+
316
+
317
+ <span id="ctl00_cphContent_repMP_ctl00_grdConstituencyAddress_ctl03_Label10">E-mail:</span><a id="ctl00_cphContent_repMP_ctl00_grdConstituencyAddress_ctl03_HyperLink1" href="mailto:ambror1a@parl.gc.ca%20">ambror1a@parl.gc.ca </a>
318
+
319
+ </div>
320
+ <div id="ctl00_cphContent_repMP_ctl00_grdConstituencyAddress_ctl03_pnlAddressDetails1" class="Column1">
321
+
322
+ <span id="ctl00_cphContent_repMP_ctl00_grdConstituencyAddress_ctl03_Label3">6801 170th Street</span><br />
323
+ <span id="ctl00_cphContent_repMP_ctl00_grdConstituencyAddress_ctl03_Label12">Edmonton</span>,
324
+ <span id="ctl00_cphContent_repMP_ctl00_grdConstituencyAddress_ctl03_Label4">Alberta</span><br />
325
+ <span id="ctl00_cphContent_repMP_ctl00_grdConstituencyAddress_ctl03_Label13">T5T 4W4</span>
326
+
327
+ </div>
328
+ </font></td>
329
+ </tr>
330
+ </table>
331
+ </div>
332
+
333
+
334
+ </div>
335
+
336
+ </div>
337
+
338
+
339
+ </div>
340
+
341
+ </div>
342
+
343
+ <div id="ctl00_cphContent_repMP_ctl01_pnlGroupMPTop">
344
+
345
+ <div id="ctl00_cphContent_repMP_ctl01_pnlMP" class="panelColumnHolder">
346
+
347
+ <span id="ctl00_cphContent_repMP_ctl01_lblYellowBar" class="lblFileTabTitle" style="display:inline-block;">Edmonton--St. Albert, Alberta</span><br />
348
+ <div id="ctl00_cphContent_repMP_ctl01_pnlFileImageHolder" class="panelColumnOne">
349
+
350
+ <a id="ctl00_cphContent_repMP_ctl01_lnkPicture" href="../../Files/Parliamentarian.aspx?Item=548690b8-3ef5-4bfa-b1ad-bb32de4dfaa1&amp;Language=E"><img id="ctl00_cphContent_repMP_ctl01_imgMember" src="../../images/Thumbnail.aspx?Item=2dd7dc19-51e7-4d8d-acb0-d028a5922ec0" border="0" /></a>
351
+
352
+ </div>
353
+ <div id="ctl00_cphContent_repMP_ctl01_pnlFileHeaderData" class="panelColumnTwo">
354
+
355
+ <a id="ctl00_cphContent_repMP_ctl01_lnkPerson" href="../../Files/Parliamentarian.aspx?Item=548690b8-3ef5-4bfa-b1ad-bb32de4dfaa1&amp;Language=E">Rathgeber, Brent</a><br />
356
+ <a id="ctl00_cphContent_repMP_ctl01_lnkParty" href="../../Files/Party.aspx?Item=0c0ef0db-d14a-4438-8818-784c924f06ae&amp;Language=E">Conservative Party of Canada</a>
357
+ <br />
358
+
359
+ </div>
360
+
361
+ </div>
362
+ <div id="ctl00_cphContent_repMP_ctl01_dataLanguagePreference" class="DataSeparatorMargin15">
363
+
364
+ <span id="ctl00_cphContent_repMP_ctl01_lblLanguagePreference" class="DataSeparatorTitleSection">Language Preference:</span>
365
+ <span id="ctl00_cphContent_repMP_ctl01_LanguagePreferenceData" class="DataSeparatorValueSection">English</span>
366
+
367
+ </div>
368
+
369
+ <div id="ctl00_cphContent_repMP_ctl01_pnlAddress" class="FileTabSection">
370
+
371
+ <span id="ctl00_cphContent_repMP_ctl01_lblContactInfo" class="lblFileTabTitle" style="display:inline-block;">Contact Information</span>
372
+
373
+ <div id="ctl00_cphContent_repMP_ctl01_pnlSectionParliamentaryAddress" class="FileTabSection">
374
+
375
+ <a href="/ParlInfo/Compilations/HouseOfCommons/MemberByPostalCode.aspx?PostalCode=T5S2B9#PageTop" id="ctl00_cphContent_repMP_ctl01_BackToTopArrow1_BackToTopLink" class="BackToTopArrow" title="Back to top of document">^</a>
376
+ <span id="ctl00_cphContent_repMP_ctl01_lblSectionParliamentaryAddress" class="lblFileTabSection">Parliamentary Address</span>
377
+ <div id="ctl00_cphContent_repMP_ctl01_pnlSectionParliamentaryAddressContent" class="FileTabSectionContent">
378
+
379
+ <div>
380
+ <table cellspacing="0" cellpadding="0" border="0" id="ctl00_cphContent_repMP_ctl01_grdParliamentaryAddress" width="100%">
381
+ <tr class="GridRows">
382
+ <td><font color="Black">
383
+ <div id="ctl00_cphContent_repMP_ctl01_grdParliamentaryAddress_ctl02_pnlAddressDetails2" class="Column2">
384
+
385
+
386
+
387
+ <span id="ctl00_cphContent_repMP_ctl01_grdParliamentaryAddress_ctl02_repParliamentaryTelephones_ctl00_lblTelephoneType">Telephone:</span>
388
+ <span id="ctl00_cphContent_repMP_ctl01_grdParliamentaryAddress_ctl02_repParliamentaryTelephones_ctl00_lblTelephonenumber">613-996-4722</span><br />
389
+
390
+ <span id="ctl00_cphContent_repMP_ctl01_grdParliamentaryAddress_ctl02_repParliamentaryTelephones_ctl01_lblTelephoneType">Fax:</span>
391
+ <span id="ctl00_cphContent_repMP_ctl01_grdParliamentaryAddress_ctl02_repParliamentaryTelephones_ctl01_lblTelephonenumber">613-995-8880</span><br />
392
+
393
+
394
+ <span id="ctl00_cphContent_repMP_ctl01_grdParliamentaryAddress_ctl02_Label10">E-mail:</span><a id="ctl00_cphContent_repMP_ctl01_grdParliamentaryAddress_ctl02_HyperLink1" href="mailto:Rathgeber.B@parl.gc.ca">Rathgeber.B@parl.gc.ca</a>
395
+
396
+ </div>
397
+
398
+ <div id="ctl00_cphContent_repMP_ctl01_grdParliamentaryAddress_ctl02_pnlAddressExternal" class="Column1">
399
+
400
+ <span id="ctl00_cphContent_repMP_ctl01_grdParliamentaryAddress_ctl02_Label5">House of Commons</span><br />
401
+ <span id="ctl00_cphContent_repMP_ctl01_grdParliamentaryAddress_ctl02_Label7">Ottawa, Ontario</span><br />
402
+ <span id="ctl00_cphContent_repMP_ctl01_grdParliamentaryAddress_ctl02_Label8">K1A 0A6</span>
403
+
404
+ </div>
405
+ </font></td>
406
+ </tr>
407
+ </table>
408
+ </div>
409
+
410
+ </div>
411
+
412
+ </div>
413
+
414
+ <div id="ctl00_cphContent_repMP_ctl01_pnlSectionConstituencyAddress" class="FileTabSection">
415
+
416
+ <a href="/ParlInfo/Compilations/HouseOfCommons/MemberByPostalCode.aspx?PostalCode=T5S2B9#PageTop" id="ctl00_cphContent_repMP_ctl01_BackToTopArrow2_BackToTopLink" class="BackToTopArrow" title="Back to top of document">^</a>
417
+ <span id="ctl00_cphContent_repMP_ctl01_lblSectionConstituencyAddress" class="lblFileTabSection">Constituency Address</span>
418
+ <div id="ctl00_cphContent_repMP_ctl01_pnlSectionConstituencyAddressContent" class="FileTabSectionContent">
419
+
420
+ <div>
421
+ <table cellspacing="0" cellpadding="0" border="0" id="ctl00_cphContent_repMP_ctl01_grdConstituencyAddress" width="100%">
422
+ <tr class="GridRows">
423
+ <td><font color="Black">
424
+ <div id="ctl00_cphContent_repMP_ctl01_grdConstituencyAddress_ctl02_pnlAddressDetails2" class="Column2">
425
+
426
+
427
+
428
+ <span id="ctl00_cphContent_repMP_ctl01_grdConstituencyAddress_ctl02_repConstituencyTelephones_ctl00_lblTelephoneType">Telephone:</span>
429
+ <span id="ctl00_cphContent_repMP_ctl01_grdConstituencyAddress_ctl02_repConstituencyTelephones_ctl00_lblTelephonenumber">780-475-6906</span><br />
430
+
431
+
432
+ <a id="ctl00_cphContent_repMP_ctl01_grdConstituencyAddress_ctl02_HyperLink1" href="mailto:"></a>
433
+
434
+ </div>
435
+ <div id="ctl00_cphContent_repMP_ctl01_grdConstituencyAddress_ctl02_pnlAddressDetails1" class="Column1">
436
+
437
+ <span id="ctl00_cphContent_repMP_ctl01_grdConstituencyAddress_ctl02_Label3">White Oaks Square<br>12222-137 Avenue North West, Suite 107</span><br />
438
+ <span id="ctl00_cphContent_repMP_ctl01_grdConstituencyAddress_ctl02_Label12">Edmonton</span>,
439
+ <span id="ctl00_cphContent_repMP_ctl01_grdConstituencyAddress_ctl02_Label4">Alberta</span><br />
440
+ <span id="ctl00_cphContent_repMP_ctl01_grdConstituencyAddress_ctl02_Label13">T5L 4X5</span>
441
+
442
+ </div>
443
+ </font></td>
444
+ </tr><tr class="GridRowsAlt">
445
+ <td><font color="Black">
446
+ <div id="ctl00_cphContent_repMP_ctl01_grdConstituencyAddress_ctl03_pnlAddressDetails2" class="Column2">
447
+
448
+
449
+
450
+ <span id="ctl00_cphContent_repMP_ctl01_grdConstituencyAddress_ctl03_repConstituencyTelephones_ctl00_lblTelephoneType">Telephone:</span>
451
+ <span id="ctl00_cphContent_repMP_ctl01_grdConstituencyAddress_ctl03_repConstituencyTelephones_ctl00_lblTelephonenumber">780-459-0809</span><br />
452
+
453
+ <span id="ctl00_cphContent_repMP_ctl01_grdConstituencyAddress_ctl03_repConstituencyTelephones_ctl01_lblTelephoneType">Fax:</span>
454
+ <span id="ctl00_cphContent_repMP_ctl01_grdConstituencyAddress_ctl03_repConstituencyTelephones_ctl01_lblTelephonenumber">780-460-1246</span><br />
455
+
456
+
457
+ <a id="ctl00_cphContent_repMP_ctl01_grdConstituencyAddress_ctl03_HyperLink1" href="mailto:"></a>
458
+
459
+ </div>
460
+ <div id="ctl00_cphContent_repMP_ctl01_grdConstituencyAddress_ctl03_pnlAddressDetails1" class="Column1">
461
+
462
+ <span id="ctl00_cphContent_repMP_ctl01_grdConstituencyAddress_ctl03_Label3">20 Perron Street, Suite 220</span><br />
463
+ <span id="ctl00_cphContent_repMP_ctl01_grdConstituencyAddress_ctl03_Label12">St. Albert</span>,
464
+ <span id="ctl00_cphContent_repMP_ctl01_grdConstituencyAddress_ctl03_Label4">Alberta</span><br />
465
+ <span id="ctl00_cphContent_repMP_ctl01_grdConstituencyAddress_ctl03_Label13">T8N 1E4</span>
466
+
467
+ </div>
468
+ </font></td>
469
+ </tr>
470
+ </table>
471
+ </div>
472
+
473
+
474
+ </div>
475
+
476
+ </div>
477
+
478
+
479
+ </div>
480
+
481
+ </div>
482
+
483
+
484
+ </div>
485
+
486
+
487
+ <a href="/ParlInfo/Compilations/HouseOfCommons/MemberByPostalCode.aspx?PostalCode=T5S2B9#PageTop" id="ctl00_BackToTopArrow2_BackToTopLink" class="BackToTopArrowFooter" title="Back to top of document">^</a>
488
+
489
+ </div>
490
+
491
+ </div>
492
+
493
+
494
+
495
+ <div id="ctl00_ParlFooter">
496
+
497
+ <div class="parlwebsite-footer">
498
+ <a href="http://www.parl.gc.ca/Default.aspx?Language=E">Home</a> |
499
+ <a href="http://www.parl.gc.ca/ImportantNotices.aspx?Language=E">Important Notices</a>
500
+ </div>
501
+
502
+ </div>
503
+
504
+
505
+ <script type="text/javascript">
506
+ //<![CDATA[
507
+ doPopups();//]]>
508
+ </script>
509
+ </form>
510
+ </body>
511
+ </html>