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,12 @@
1
+ HTTP/1.1 302 Found
2
+ Date: Sun, 05 Jun 2011 03:16:31 GMT
3
+ Server: Apache/2.2.3 (CentOS)
4
+ X-Powered-By: PHP/5.2.6
5
+ Set-Cookie: SESS5c288a5395bb01cca478a305f2697ce9=qq9pl9hl7vupiqstnu8onstp55; expires=Tue, 28 Jun 2011 06:49:51 GMT; path=/; domain=.ndp.ca
6
+ Expires: Sun, 19 Nov 1978 05:00:00 GMT
7
+ Last-Modified: Sun, 05 Jun 2011 03:16:31 GMT
8
+ Cache-Control: store, no-cache, must-revalidate, post-check=0, pre-check=0
9
+ Location: http://www.ndp.ca/district/10007
10
+ Connection: close
11
+ Content-Type: text/html; charset=utf-8
12
+
@@ -0,0 +1,12 @@
1
+ HTTP/1.1 302 Found
2
+ Date: Sun, 05 Jun 2011 03:16:31 GMT
3
+ Server: Apache/2.2.3 (CentOS)
4
+ X-Powered-By: PHP/5.2.6
5
+ Set-Cookie: SESS5c288a5395bb01cca478a305f2697ce9=qvm47ippmndoue3jku3bq9sph3; expires=Tue, 28 Jun 2011 06:49:51 GMT; path=/; domain=.ndp.ca
6
+ Expires: Sun, 19 Nov 1978 05:00:00 GMT
7
+ Last-Modified: Sun, 05 Jun 2011 03:16:31 GMT
8
+ Cache-Control: store, no-cache, must-revalidate, post-check=0, pre-check=0
9
+ Location: http://www.ndp.ca/district/24019
10
+ Connection: close
11
+ Content-Type: text/html; charset=utf-8
12
+
@@ -0,0 +1,12 @@
1
+ HTTP/1.1 302 Found
2
+ Date: Sun, 05 Jun 2011 03:16:33 GMT
3
+ Server: Apache/2.2.3 (CentOS)
4
+ X-Powered-By: PHP/5.2.6
5
+ Set-Cookie: SESS5c288a5395bb01cca478a305f2697ce9=9qt12gh9pn0hrv2muhn1b9dd92; expires=Tue, 28 Jun 2011 06:49:53 GMT; path=/; domain=.ndp.ca
6
+ Expires: Sun, 19 Nov 1978 05:00:00 GMT
7
+ Last-Modified: Sun, 05 Jun 2011 03:16:33 GMT
8
+ Cache-Control: store, no-cache, must-revalidate, post-check=0, pre-check=0
9
+ Location: http://www.ndp.ca/
10
+ Connection: close
11
+ Content-Type: text/html; charset=utf-8
12
+
@@ -0,0 +1,12 @@
1
+ HTTP/1.1 302 Found
2
+ Date: Sun, 05 Jun 2011 03:16:32 GMT
3
+ Server: Apache/2.2.3 (CentOS)
4
+ X-Powered-By: PHP/5.2.6
5
+ Set-Cookie: SESS5c288a5395bb01cca478a305f2697ce9=lmr1r4rtjde28cbkr8ikkgrv32; expires=Tue, 28 Jun 2011 06:49:52 GMT; path=/; domain=.ndp.ca
6
+ Expires: Sun, 19 Nov 1978 05:00:00 GMT
7
+ Last-Modified: Sun, 05 Jun 2011 03:16:32 GMT
8
+ Cache-Control: store, no-cache, must-revalidate, post-check=0, pre-check=0
9
+ Location: http://www.ndp.ca/
10
+ Connection: close
11
+ Content-Type: text/html; charset=utf-8
12
+
@@ -0,0 +1,12 @@
1
+ HTTP/1.1 302 Found
2
+ Date: Sun, 05 Jun 2011 03:16:32 GMT
3
+ Server: Apache/2.2.3 (CentOS)
4
+ X-Powered-By: PHP/5.2.6
5
+ Set-Cookie: SESS5c288a5395bb01cca478a305f2697ce9=6t8bujjo27jpi5hjcnh1tn7re1; expires=Tue, 28 Jun 2011 06:49:52 GMT; path=/; domain=.ndp.ca
6
+ Expires: Sun, 19 Nov 1978 05:00:00 GMT
7
+ Last-Modified: Sun, 05 Jun 2011 03:16:32 GMT
8
+ Cache-Control: store, no-cache, must-revalidate, post-check=0, pre-check=0
9
+ Location: http://www.ndp.ca/district/48015
10
+ Connection: close
11
+ Content-Type: text/html; charset=utf-8
12
+
@@ -0,0 +1,12 @@
1
+ HTTP/1.1 302 Found
2
+ Date: Sun, 05 Jun 2011 03:16:33 GMT
3
+ Server: Apache/2.2.3 (CentOS)
4
+ X-Powered-By: PHP/5.2.6
5
+ Set-Cookie: SESS5c288a5395bb01cca478a305f2697ce9=b8mu48d6ltqq19ndh1teerlrr0; expires=Tue, 28 Jun 2011 06:49:53 GMT; path=/; domain=.ndp.ca
6
+ Expires: Sun, 19 Nov 1978 05:00:00 GMT
7
+ Last-Modified: Sun, 05 Jun 2011 03:16:33 GMT
8
+ Cache-Control: store, no-cache, must-revalidate, post-check=0, pre-check=0
9
+ Location: http://www.ndp.ca/
10
+ Connection: close
11
+ Content-Type: text/html; charset=utf-8
12
+
@@ -0,0 +1,337 @@
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:06 GMT
9
+ Connection: close
10
+ Content-Length: 23060
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=A1A1A1" id="aspnetForm">
22
+ <input type="hidden" name="__VIEWSTATE" id="__VIEWSTATE" value="/wEPDwUJMjEzNjczNDc3ZBgCBTNjdGwwMCRjcGhDb250ZW50JHJlcE1QJGN0bDAwJGdyZENvbnN0aXR1ZW5jeUFkZHJlc3MPPCsACgEIAgFkBTRjdGwwMCRjcGhDb250ZW50JHJlcE1QJGN0bDAwJGdyZFBhcmxpYW1lbnRhcnlBZGRyZXNzDzwrAAoBCAIBZP9hafS7qD6dwv3PlbKnICtNMcDb" />
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="/wEWBQLX9ZXXCQKXra4YAtyNkoUNApPP9foMAvCHuoIP6qik/DaJKhJ60atgsZdaTIDG+Ho=" />
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=A1A1A1&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="A1A1A1" 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"></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;">St. John's South--Mount Pearl, Newfoundland and Labrador</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=fafe6874-861e-4e93-a90e-0817e5765d67&amp;Language=E"><img id="ctl00_cphContent_repMP_ctl00_imgMember" src="../../images/Thumbnail.aspx?Item=02f6f1ad-22b5-4d4a-9503-906cf27f4c79" 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=fafe6874-861e-4e93-a90e-0817e5765d67&amp;Language=E">Cleary, Ryan</a><br />
216
+ <a id="ctl00_cphContent_repMP_ctl00_lnkParty" href="../../Files/Party.aspx?Item=78f08bac-f67d-4621-9381-c4f18b1a0380&amp;Language=E">New Democratic Party</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=A1A1A1#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
+
248
+ <span id="ctl00_cphContent_repMP_ctl00_grdParliamentaryAddress_ctl02_Label10">E-mail:</span><a id="ctl00_cphContent_repMP_ctl00_grdParliamentaryAddress_ctl02_HyperLink1" href="mailto:Ryan.Cleary@parl.gc.ca">Ryan.Cleary@parl.gc.ca</a>
249
+
250
+ </div>
251
+
252
+ <div id="ctl00_cphContent_repMP_ctl00_grdParliamentaryAddress_ctl02_pnlAddressExternal" class="Column1">
253
+
254
+ <span id="ctl00_cphContent_repMP_ctl00_grdParliamentaryAddress_ctl02_Label5">House of Commons</span><br />
255
+ <span id="ctl00_cphContent_repMP_ctl00_grdParliamentaryAddress_ctl02_Label7">Ottawa, Ontario</span><br />
256
+ <span id="ctl00_cphContent_repMP_ctl00_grdParliamentaryAddress_ctl02_Label8">K1A 0A6</span>
257
+
258
+ </div>
259
+ </font></td>
260
+ </tr>
261
+ </table>
262
+ </div>
263
+
264
+ </div>
265
+
266
+ </div>
267
+
268
+ <div id="ctl00_cphContent_repMP_ctl00_pnlSectionConstituencyAddress" class="FileTabSection">
269
+
270
+ <a href="/ParlInfo/Compilations/HouseOfCommons/MemberByPostalCode.aspx?PostalCode=A1A1A1#PageTop" id="ctl00_cphContent_repMP_ctl00_BackToTopArrow2_BackToTopLink" class="BackToTopArrow" title="Back to top of document">^</a>
271
+ <span id="ctl00_cphContent_repMP_ctl00_lblSectionConstituencyAddress" class="lblFileTabSection">Constituency Address</span>
272
+ <div id="ctl00_cphContent_repMP_ctl00_pnlSectionConstituencyAddressContent" class="FileTabSectionContent">
273
+
274
+ <div>
275
+ <table cellspacing="0" cellpadding="0" border="0" id="ctl00_cphContent_repMP_ctl00_grdConstituencyAddress" width="100%">
276
+ <tr class="GridRows">
277
+ <td><font color="Black">
278
+ <div id="ctl00_cphContent_repMP_ctl00_grdConstituencyAddress_ctl02_pnlAddressDetails2" class="Column2">
279
+
280
+
281
+
282
+
283
+ <a id="ctl00_cphContent_repMP_ctl00_grdConstituencyAddress_ctl02_HyperLink1" href="mailto:"></a>
284
+
285
+ </div>
286
+ <div id="ctl00_cphContent_repMP_ctl00_grdConstituencyAddress_ctl02_pnlAddressDetails1" class="Column1">
287
+
288
+ <span id="ctl00_cphContent_repMP_ctl00_grdConstituencyAddress_ctl02_Label3">Pending</span><br />
289
+ <span id="ctl00_cphContent_repMP_ctl00_grdConstituencyAddress_ctl02_Label12"></span>,
290
+ <span id="ctl00_cphContent_repMP_ctl00_grdConstituencyAddress_ctl02_Label4"></span><br />
291
+ <span id="ctl00_cphContent_repMP_ctl00_grdConstituencyAddress_ctl02_Label13"></span>
292
+
293
+ </div>
294
+ </font></td>
295
+ </tr>
296
+ </table>
297
+ </div>
298
+
299
+
300
+ </div>
301
+
302
+ </div>
303
+
304
+
305
+ </div>
306
+
307
+ </div>
308
+
309
+
310
+ </div>
311
+
312
+
313
+ <a href="/ParlInfo/Compilations/HouseOfCommons/MemberByPostalCode.aspx?PostalCode=A1A1A1#PageTop" id="ctl00_BackToTopArrow2_BackToTopLink" class="BackToTopArrowFooter" title="Back to top of document">^</a>
314
+
315
+ </div>
316
+
317
+ </div>
318
+
319
+
320
+
321
+ <div id="ctl00_ParlFooter">
322
+
323
+ <div class="parlwebsite-footer">
324
+ <a href="http://www.parl.gc.ca/Default.aspx?Language=E">Home</a> |
325
+ <a href="http://www.parl.gc.ca/ImportantNotices.aspx?Language=E">Important Notices</a>
326
+ </div>
327
+
328
+ </div>
329
+
330
+
331
+ <script type="text/javascript">
332
+ //<![CDATA[
333
+ doPopups();//]]>
334
+ </script>
335
+ </form>
336
+ </body>
337
+ </html>