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,467 @@
1
+ HTTP/1.1 200 OK\r\n
2
+ Server: Apache/2.2.3 (CentOS)
3
+ X-Powered-By: PHP/5.2.12
4
+ Set-Cookie: PHPSESSID=r5nvda1dl2sjkg61hb5rmq7b56; path=/
5
+ Expires: Thu, 19 Nov 1981 08:52:00 GMT
6
+ Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0
7
+ Pragma: no-cache
8
+ Vary: Accept-Encoding
9
+ Content-Type: text/html; charset=UTF-8
10
+ X-Cache: BYPASS - not cacheable
11
+ Content-Length: 24981
12
+ Date: Sun, 05 Jun 2011 03:16:44 GMT
13
+ X-Varnish: 1166542129
14
+ Age: 0
15
+ Via: 1.1 varnish
16
+ Connection: close
17
+
18
+ <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
19
+ <html>
20
+ <head>
21
+ <title>Meet Our MPs</title>
22
+ <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
23
+ <meta http-equiv="robots" content="index, follow">
24
+ <meta http-equiv="window-target" content="_top">
25
+ <meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7">
26
+
27
+ <meta name="description" content="Latest news and information from the Conservative Party of Canada. A Canadian political party led by Stephen Harper.">
28
+ <meta name="keywords" content="conservative party of canada, conservative party, conservative, conservatives, harper, stephen harper, stand up for canada, trades, transit, accountability, child care, tools tax credit, transit tax credit, accountability act, child care tax credit, canada, political party, politics, federal politics">
29
+
30
+ <meta name="Identifier-URL" content="www.conservative.ca">
31
+ <meta name="revisit-after" content="7 days">
32
+ <meta name="distribution" content="global">
33
+ <meta name="Coverage" content="Worldwide">
34
+ <meta name="resource-type" content="document">
35
+ <meta name="Content-Language" content="EN">
36
+ <meta name="generator" content="Expression v (1.8.6) - Backbone Technology Inc - http://www.backbonetechnology.com">
37
+
38
+ <meta name="rating" content="General">
39
+ <meta name="author" content="Conservative Party Of Canada">
40
+ <meta name="copyright" content="Conservative Party Of Canada">
41
+
42
+ <link rel="icon" href="http://www.conservative.ca/media/www_conservative_ca.ico">
43
+ <link rel="shortcut icon" href="http://www.conservative.ca/media/www_conservative_ca.ico">
44
+ <script src="/includes/libs/js/jquery/jquery-1.4.2.min.js" type="text/javascript"></script>
45
+
46
+ <!--script type="text/javascript" src="/includes/libs/js/jquery.tools/jquery.tools.min.js"></script-->
47
+
48
+ <!--[if lt IE 7]>
49
+ <script type="text/javascript" src="/includes/libs/js/unitpngfix/unitpngfix.js"></script>
50
+ <![endif]-->
51
+
52
+
53
+
54
+ <link rel="stylesheet" type="text/css" href="http://www.conservative.ca/includes/www.conservative.ca.css">
55
+ <script language="JavaScript" src="http://www.conservative.ca/includes/www.conservative.ca.js"></script>
56
+
57
+
58
+
59
+ </head>
60
+ <body onload=";if (typeof onXprPageLoad != 'undefined') { onXprPageLoad(); }" marginwidth="0" marginheight="0" topmargin="0" bottommargin="0" leftmargin="0" rightmargin="0">
61
+
62
+ <script>
63
+
64
+ </script>
65
+ <div id="edaBody">
66
+ <div id="edaContentBG">
67
+ <div id="edaContent">
68
+ <table cellpadding="0" cellspacing="0" width="100%">
69
+ <tbody>
70
+ <tr>
71
+ <td valign="middle"><div class="left">
72
+
73
+ <a href="/" style="outline:none;display: block;padding-left: 20px;">
74
+ <img src="http://www.conservative.ca/media/templates/sep10-here-for-canada.png" border="0" alt="" title="Here for Canada">
75
+ </a>
76
+
77
+ </div>
78
+ <div class="absolute">
79
+ <div class="sep10-bio"><img src="http://www.conservative.ca/media/templates/sharper.png" /></div>
80
+ </div></td>
81
+ <td valign="top">
82
+ <div align="right"><table cellspacing=0 cellpadding=0>
83
+ <tr><td valign=top>
84
+ <img src="http://www.conservative.ca/media/templates/edaTopNavCorner.png" border="0" alt="">
85
+ </td><td valign=top>
86
+ <a href="/action_centre/find_my_candidate" class="sep10-action-link">Find My Candidate</a>
87
+ </td><td valign=top>
88
+ <a href="http://www.conservative.ca/footer/contact_us" class="sep10-action-link">Contact</a>
89
+ </td><td valign=top>
90
+ <span class="sep10-lang">LANGUAGE:</span><a href="/team/our_MPs/?postal_code=K0A1K0&language_id=0" class="sep10-lang-link-active">E</a><a href="/team/our_MPs/?postal_code=K0A1K0&language_id=2" class="sep10-lang-link">F</a>
91
+ </td>
92
+
93
+ </tr></table><a href="http://www.conservative.ca" style="outline:none;margin-top:30px;margin-bottom: 25px;display: block;margin-right: 20px;">
94
+ <img src="http://www.conservative.ca/media/templates/edaLogo1.png" border="0" alt="" title="Conservative">
95
+ </a></div>
96
+ </td>
97
+ </tr>
98
+ </tbody>
99
+ </table>
100
+ <div id="edaMainMenu">
101
+ <table border="0" cellpadding="0" cellspacing="0" width="100%">
102
+ <tbody>
103
+ <tr>
104
+ <td valign="top" width="12">
105
+ <div class="edaNavLeft"><img src="/media/templates/edaNavLeftCorner.png" border="0" /></div>
106
+ </td>
107
+ <td class="edaItemBG" valign="top"><div class="menuItem" onmouseover="javascript: showDiv('sub-2444');" onmouseout="javascript: hideDiv('sub-2444');" style="height:36px;">
108
+
109
+ <div class="menuItem">
110
+ <a href="/home/" class="edaMainMenuItem">Home</a>
111
+ </div>
112
+
113
+ <div id="sub-2444" style="display: none; position: absolute;" class=edaMainMenuLevel2>
114
+ </div>
115
+
116
+ </div></td><td valign=top class="edaItemBG"><div class="menuItem" onmouseover="javascript: showDiv('sub-998');" onmouseout="javascript: hideDiv('sub-998');" style="height:36px;">
117
+
118
+ <div class="menuItem">
119
+ <a href="/leader/" class="edaMainMenuItem">Leader</a>
120
+ </div>
121
+
122
+ <div id="sub-998" style="display: none; position: absolute;" class=edaMainMenuLevel2><a href="/leader/stephen_harper/" class="edaMainMenuItemLevel2">Stephen Harper</a><a href="/leader/laureen_harper/" class="edaMainMenuItemLevel2">Laureen Harper</a>
123
+ </div>
124
+
125
+ </div></td><td valign=top class="edaItemBG"><div class="menuItem" onmouseover="javascript: showDiv('sub-1018');" onmouseout="javascript: hideDiv('sub-1018');" style="height:36px;">
126
+
127
+ <div class="menuItem">
128
+ <a href="/party/" class="edaMainMenuItem">Party</a>
129
+ </div>
130
+
131
+ <div id="sub-1018" style="display: none; position: absolute;" class=edaMainMenuLevel2><a href="/party/founding_principles/" class="edaMainMenuItemLevel2">Founding Principles</a><a href="/party/key_documents/" class="edaMainMenuItemLevel2">Key Documents</a><a href="/party/history/" class="edaMainMenuItemLevel2">History</a><a href="/party/national_council/" class="edaMainMenuItemLevel2">National Council</a><a href="http://www.cpcconvention.ca/" class="edaMainMenuItemLevel2">Convention 2011</a>
132
+ </div>
133
+
134
+ </div></td><td valign=top class="edaItemBG"><div class="menuItem" onmouseover="javascript: showDiv('sub-1049');" onmouseout="javascript: hideDiv('sub-1049');" style="height:36px;">
135
+
136
+ <div class="menuItem">
137
+ <a href="/team/" class="edaMainMenuItemActive">
138
+ TEAM
139
+ </a>
140
+ </div>
141
+
142
+ <div id="sub-1049" style="display: none; position: absolute;" class=edaMainMenuLevel2>
143
+ <a href="/team/the_ministry/" class="edaMainMenuItemLevel2">The Ministry</a><a href="/team/our_senators/" class="edaMainMenuItemLevel2">Our Senators</a><a href="/team/our_MPs/" class="edaMainMenuItemLevel2Active">Our MPs</a>
144
+
145
+ </div>
146
+ </div></td><td valign=top class="edaItemBG"><div class="menuItem" onmouseover="javascript: showDiv('sub-1143');" onmouseout="javascript: hideDiv('sub-1143');" style="height:36px;">
147
+
148
+ <div class="menuItem">
149
+ <a href="/policy/" class="edaMainMenuItem">Policy</a>
150
+ </div>
151
+
152
+ <div id="sub-1143" style="display: none; position: absolute;" class=edaMainMenuLevel2><a href="/policy/platform_2011/" class="edaMainMenuItemLevel2">Platform 2011</a><a href="/policy/budget_2009/" class="edaMainMenuItemLevel2">Budget 2011</a>
153
+ </div>
154
+
155
+ </div></td><td valign=top class="edaItemBG"><div class="menuItem" onmouseover="javascript: showDiv('sub-1107');" onmouseout="javascript: hideDiv('sub-1107');" style="height:36px;">
156
+
157
+ <div class="menuItem">
158
+ <a href="/press/" class="edaMainMenuItem">Press</a>
159
+ </div>
160
+
161
+ <div id="sub-1107" style="display: none; position: absolute;" class=edaMainMenuLevel2><a href="/press/news_releases/" class="edaMainMenuItemLevel2">News Releases</a><a href="/press/rss/" class="edaMainMenuItemLevel2">RSS</a>
162
+ </div>
163
+
164
+ </div></td><td valign=top class="edaItemBG"><div class="menuItem" onmouseover="javascript: showDiv('sub-2201');" onmouseout="javascript: hideDiv('sub-2201');" style="height:36px;">
165
+
166
+ <div class="menuItem">
167
+ <a href="/multimedia/" class="edaMainMenuItem">Multimedia</a>
168
+ </div>
169
+
170
+ <div id="sub-2201" style="display: none; position: absolute;" class=edaMainMenuLevel2><a href="/multimedia/photo_gallery/" class="edaMainMenuItemLevel2">Photo Gallery</a><a href="/multimedia/wallpaper/" class="edaMainMenuItemLevel2">Wallpaper</a>
171
+ </div>
172
+
173
+ </div></td>
174
+ <td valign="top" width="11">
175
+ <div class="edaNavLeft"><img src="/media/templates/edaNavRightCorner.png" border="0" /></div>
176
+ </td>
177
+ </tr>
178
+ </tbody>
179
+ </table>
180
+ </div>
181
+ <table class="edaContentTable" cellpadding="0" cellspacing="0">
182
+ <tbody>
183
+ <tr>
184
+ <td class="edaContentBody" valign="top">
185
+ <div class="edaContentBodyContainer"><div id=edaArticle>
186
+
187
+ <div id=aug08ArticleTitle>Meet Our MPs</div>
188
+
189
+ <div id=aug08ArticleDate></div>
190
+
191
+ <script>
192
+
193
+ var startDate = '';
194
+
195
+ if (startDate == '') {
196
+
197
+ hideDiv('aug08ArticleDate');
198
+
199
+ }
200
+
201
+ </script>
202
+
203
+ <!--
204
+ <div id=aug08ArticleDescription>
205
+
206
+ </div>
207
+ //-->
208
+
209
+ <div id=aug08ArticleBody>
210
+ <div> </div><div><form action="/?section_id=1051" method="GET"><input type="hidden" name="section_id" value="1051"><input type="hidden" name="section_copy_id" value="">
211
+ <table cellpadding="0" cellspacing="0" border="0"> <tr> <td valign="middle"> <div id=cpocRidingHeadertext>Search By Province</div>
212
+
213
+ <div id=cpocRidingInput align=right><select name="regionId"><option value="27">Newfoundland & Labrador</option><option value="28">Prince Edward Island</option><option value="29">Nova Scotia</option><option value="30">New Brunswick</option><option value="31">Quebec</option><option value="32">Ontario</option><option value="33">Manitoba</option><option value="34">Saskatchewan</option><option value="35">Alberta</option><option value="36">British Columbia</option><option value="37">Yukon</option><option value="38">Northwest Territories</option><option value="39">Nunavut</option></select></div>
214
+ <br><div id=cpocRidingHeadertext>Search By Postal Code</div>
215
+
216
+ <div id=cpocRidingInput style="margin-left:42px;margin-left:expression('60px');"><input type="text" name="postal_code" value="K0A1K0" style="" class=""></div>
217
+
218
+ </td><td valign="middle">
219
+
220
+ <input name="submit" value="" style="padding-top: 3px;margin-left: 15px;" class="cpocFrenchSearchButton" src="/media/templates/cpocRiding_go_button.gif" type="image" style="border: 1px solid#FFFFFF;"> </td></tr></table>
221
+ </div>
222
+ </form> <br /></div><div><!--div id=cpocRididngProfileTitle>[$errorMessage]</div//-->
223
+
224
+ <!--div id=cpocRididngProfileTitle>Ontario</div//-->
225
+
226
+ <div id=aug08cpocRidingProfileTitle>Carleton - Mississippi Mills</div><div id=cpocRidingListItem> <a href="/team/our_MPs/?linkTo=true&districtId=1469" class=cpocRidingListItemLink> <div id=cpocRidingListItemTitle>Carleton - Mississippi Mills</div> <div id=cpocRidingListItemText>MP - Gordon O'Connor</div> </a> </div><div id=cpocRidingListItem> <a href="/team/our_MPs/?linkTo=true&districtId=1495" class=cpocRidingListItemLink> <div id=cpocRidingListItemTitle>Glengarry - Prescott - Russell</div> <div id=cpocRidingListItemText>MP - Pierre Lemieux</div> </a> </div><div id=cpocRidingListItem> <a href="/team/our_MPs/?linkTo=true&districtId=1525" class=cpocRidingListItemLink> <div id=cpocRidingListItemTitle>Lanark - Frontenac - Lennox and Addington</div> <div id=cpocRidingListItemText>MP - Scott Reid</div> </a> </div><div id=cpocRidingListItem> <a href="/team/our_MPs/?linkTo=true&districtId=1549" class=cpocRidingListItemLink> <div id=cpocRidingListItemTitle>Nepean - Carleton</div> <div id=cpocRidingListItemText>MP - Pierre Poilievre</div> </a> </div><div id=cpocRidingListItem> <a href="/team/our_MPs/?linkTo=true&districtId=1571" class=cpocRidingListItemLink> <div id=cpocRidingListItemTitle>Ottawa - Orléans</div> <div id=cpocRidingListItemText>MP - Royal Galipeau</div> </a> </div><div id=cpocRidingListItem> <a href="/team/our_MPs/?linkTo=true&districtId=1619" class=cpocRidingListItemLink> <div id=cpocRidingListItemTitle>Stormont - Dundas - South Glengarry</div> <div id=cpocRidingListItemText>MP - Guy Lauzon</div> </a> </div> </div> <div id=edaArticleFooter>
227
+ <div id=aug08userToolsTitle>
228
+ <img src="http://www.conservative.ca/media/templateElements/articleelement/3679/20080508-getActive.jpg" border=0></div>
229
+ <table width=530 cellspacing=0 cellpadding=0>
230
+ <tr><td width="34%" id=1>
231
+ <a href="/donate/" class="aug08ArticleFooterLink"> <div id=aug08ArticleFooterDonate>Donate</div>
232
+ </a>
233
+
234
+
235
+ <a href="javascript: expPopupWindow('/EN/4714/78224',776,800,1,1,1,1,1,1,1,1,1);" class="aug08ArticleFooterLink"> <div id=aug08ArticleFooterJoin>Join</div>
236
+ </a>
237
+
238
+
239
+ <a href="/EN/4714/74610" class="aug08ArticleFooterLink"> <div id=aug08ArticleFooterHelp>Help</div>
240
+ </a>
241
+
242
+
243
+ <a href="javascript: expPopupWindow('/team/our_MPs/meet_our_mps?tpid=3171&postal_code=K0A1K0&language_id=0',776,800,1,1,1,1,1,1,1,1,1);" class="aug08ArticleFooterLink">
244
+ <div id=aug08ArticleFooterPrinter>Print</div> </a>
245
+
246
+
247
+ </td><td width="33%" id=2>
248
+
249
+
250
+ <a href="/EN/4794/92497" class="aug08ArticleFooterLink"> <div id=aug08ArticleFooterSign>Sign</div>
251
+ </a>
252
+
253
+
254
+ <a href="http://www.conservative.ca/EN/footer/contact_us" class="aug08ArticleFooterLink"> <div id=aug08ArticleFooterContactUs>Contact</div>
255
+ </a>
256
+
257
+
258
+ <a href="http://www.cboutique.ca" class="aug08ArticleFooterLink">
259
+ <div id=aug08ArticleFooterEmail>Shop</div>
260
+ </a>
261
+
262
+
263
+
264
+ <a href="/EN/4714/74625/" class="aug08ArticleFooterLink">
265
+ <div id=aug08ArticleFooterRegister>eNews</div>
266
+ </a>
267
+
268
+
269
+ </td><td width="33%" id=3>
270
+
271
+
272
+ <a href="/EN/4811" class="aug08ArticleFooterLink"> <div id=aug08ArticleFooterRSS>RSS</div>
273
+ </a>
274
+
275
+
276
+
277
+ <!-- table cellspacing=5 cellpadding=0>
278
+ <tr><td>
279
+
280
+ <script type="text/javascript"
281
+ src="http://d.yimg.com/ds/badge2.js"
282
+ badgetype="logo">
283
+ javascript: expPopupWindow('http://www.conservative.ca/?section_id=1051&section_copy_id=7862&tpid=115&postal_code=K0A1K0&',500,600,1,1,1,1,1,1,1,1);</script>
284
+ </td><td>
285
+
286
+
287
+ <div class="aug08ArticleFooterLinkBuzz">Buzz
288
+ </div>
289
+
290
+ </td></tr></table //-->
291
+
292
+
293
+ <a href="http://www.facebook.com/sharer.php?u=http://www.conservative.ca/EN/1051/7862" class="aug08ArticleFooterLink" target="_blank"> <div id=aug08ArticleFooterFacebook>Facebook</div>
294
+ </a>
295
+
296
+
297
+ <a href="http://digg.com/remote-submit?phase=2&url=http://www.conservative.ca/EN/1051/7862" class="aug08ArticleFooterLink" target="_blank"> <div id=aug08ArticleFooterDigg>Digg</div>
298
+ </a>
299
+
300
+
301
+ <a href="http://del.icio.us/post?url=http://www.conservative.ca/EN/1051/7862" class="aug08ArticleFooterLink" target="_blank"> <div id=aug08ArticleFooterDelicious>Del.icio.us</div>
302
+ </a>
303
+
304
+
305
+
306
+ </td></tr></table>
307
+ </div>
308
+ </div>
309
+
310
+ </div></div>
311
+ </td>
312
+ <td class="sep10-nav-right" valign="top"><div class="sep2010-action-centre" style="#padding:24px 10px;">
313
+ <img src="http://www.conservative.ca/media/templates/sep2010-take-actions.jpg" alt="" border="0" align="center" style="padding-left:7px;">
314
+ <table id=actionCenter border=0 cellpadding=0 cellspacing=0 align=center style="width:270px;text-align:center;margin-top:15px;">
315
+
316
+ <script type="text/javascript">
317
+
318
+ setupTable('actionCenter','2');
319
+
320
+ </script><script type="text/javascript">
321
+
322
+ tableData = '<a href="https://secure.conservative.ca/contribute_online/"><img src="/media/sep2010-donate.jpg" border=0 vspace=2></a>';
323
+
324
+ addTableCell(tableData);
325
+
326
+ </script><script type="text/javascript">
327
+
328
+ tableData = '<a href="https://secure.conservative.ca/become_a_member/"><img src="/media/sep2010-join.jpg" border=0 vspace=2></a>';
329
+
330
+ addTableCell(tableData);
331
+
332
+ </script><script type="text/javascript">
333
+
334
+ tableData = '<a href="http://www.conservative.ca/action_centre/become_a_volunteer"><img src="/media/sep2010-volunteer.jpg" border=0 vspace=2></a>';
335
+
336
+ addTableCell(tableData);
337
+
338
+ </script><script type="text/javascript">
339
+
340
+ tableData = '<a href="http://www.conservative.ca/action_centre/reserve_a_sign"><img src="/media/sep2010-signs.jpg" border=0 vspace=2></a>';
341
+
342
+ addTableCell(tableData);
343
+
344
+ </script><script type="text/javascript">
345
+
346
+ tableData = '<a href="http://www.cboutique.ca"><img src="/media/sep2010-shop.jpg" border=0 vspace=2></a>';
347
+
348
+ addTableCell(tableData);
349
+
350
+ </script><script type="text/javascript">
351
+
352
+ tableData = '<a href="/action_centre/enews_signup?language_id=0"><img src="/media/sep2010-enews.jpg" border=0 vspace=2></a>';
353
+
354
+ addTableCell(tableData);
355
+
356
+ </script></table>
357
+
358
+ </div><form action="/?section_id=1051" method="GET"><input type="hidden" name="section_id" value="1051"><input type="hidden" name="section_copy_id" value="">
359
+
360
+ <div class="sep2010-action-centre" style="#padding:24px 10px;">
361
+ <img src="http://www.conservative.ca/media/templates/cpcm2011-findcandidate.jpg" alt="" border="0" align="center" style="padding-left:7px;">
362
+ <div style="width:286px;#width:255px;text-align:center;margin-top:15px;">
363
+
364
+ <table cellpadding="0" cellspacing="0" border="0">
365
+ <tr>
366
+ <td valign="middle" width="209">
367
+ <div class="cpcm2011-input-text">Search by province</div>
368
+ <div id=cp09RidingInput><select name="regionId"><option value="27">Newfoundland & Labrador</option><option value="28">Prince Edward Island</option><option value="29">Nova Scotia</option><option value="30">New Brunswick</option><option value="31">Quebec</option><option value="32">Ontario</option><option value="33">Manitoba</option><option value="34">Saskatchewan</option><option value="35">Alberta</option><option value="36">British Columbia</option><option value="37">Yukon</option><option value="38">Northwest Territories</option><option value="39">Nunavut</option></select></div>
369
+ <br><div class="cpcm2011-input-text">Enter postal code</div>
370
+ <div id=cp09RidingInput style="margin-left:46px;">
371
+ <input name="postal_code" value="" onfocus="this.value = '';" type="text" class="cpcm2011-input-po">
372
+ </div>
373
+ </td><td valign="middle">
374
+ <div style="padding-top: 3px;margin-left: 15px;">
375
+ <input value="" name="Submit" type="image" src="http://www.conservative.ca/media/templates/cpcm2011-findriding-submit.jpg" style="border:0px;">
376
+ </div>
377
+
378
+ </td></tr></table>
379
+
380
+ </div>
381
+
382
+ </div>
383
+
384
+ </form><a href="http://www.torynation.ca" target="_blank" class="tn">
385
+ <img src="http://www.conservative.ca/media/templates/20110324-RightColumnIcon-ToryNation-e.jpg" border="0" alt=""/>
386
+ </a><div class="sep2010-action-centre">
387
+ <img src="http://www.conservative.ca/media/templates/sep2010-facebook-header.jpg" alt="" border="0" align="center" style="margin-bottom:20px;"><div style="padding:0px 20px 25px 20px;#padding:0px 25px 25px 20px;cursor:pointer;" onclick="javascript: expPopupWindow('http://www.facebook.com/pmharper?ref=ts',1024,800,1,1,1,1,1,1,1,1);">
388
+
389
+ <img src="/media/q9106562109_5243.jpg" border=0 vspace=2 align="left">
390
+ <div class="sep10-facebook-title">Stephen Harper</div>
391
+ <iframe src="http://www.facebook.com/plugins/like.php?href=http://www.facebook.com/pmharper?ref=ts&layout=standard&show_faces=false&width=220&action=like&colorscheme=light&height=40" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:220px; height:40px;" allowTransparency="true"></iframe>
392
+
393
+ </div><div style="padding:0px 20px 25px 20px;#padding:0px 25px 25px 20px;cursor:pointer;" onclick="javascript: expPopupWindow('http://www.facebook.com/pages/Conservative-Party-of-Canada-Parti-conservateur-du-Canada/5661704203?ref=mf',1024,800,1,1,1,1,1,1,1,1);">
394
+
395
+ <img src="/media/q5661704203_5582.jpg" border=0 vspace=2 align="left">
396
+ <div class="sep10-facebook-title">Conservative Party</div>
397
+ <iframe src="http://www.facebook.com/plugins/like.php?href=http://www.facebook.com/pages/Conservative-Party-of-Canada-Parti-conservateur-du-Canada/5661704203?ref=mf&layout=standard&show_faces=false&width=220&action=like&colorscheme=light&height=40" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:220px; height:40px;" allowTransparency="true"></iframe>
398
+
399
+ </div></div><div align="center"><a href="javascript: expPopupWindow('http://www.youtube.com/cpcpcc',1024,800,1,1,1,1,1,1,1,1);" class="sep10-social-media-icon"><img src="/media/resampled/articleMenuElement/3951/resampled_sep10-youtube.jpg" alt="" border="0"></a><a href="javascript: expPopupWindow('http://www.flickr.com/photos/30107029@N04/',1024,800,1,1,1,1,1,1,1,1);" class="sep10-social-media-icon"><img src="/media/resampled/articleMenuElement/3951/resampled_sep10-digg.jpg" alt="" border="0"></a><a href="javascript: expPopupWindow('http://twitter.com/PMHarper',1024,800,1,1,1,1,1,1,1,1);" class="sep10-social-media-icon"><img src="/media/resampled/articleMenuElement/3951/resampled_sep10-twitter.jpg" alt="" border="0"></a><a href="javascript: expPopupWindow('http://www.facebook.com/pages/Conservative-Party-of-Canada-Parti-conservateur-du-Canada/5661704203',1024,800,1,1,1,1,1,1,1,1);" class="sep10-social-media-icon"><img src="/media/resampled/articleMenuElement/3951/resampled_sep10-facebook-social.jpg" alt="" border="0"></a><a href="javascript: expPopupWindow('/press/rss/?language_id=0',1024,800,1,1,1,1,1,1,1,1);" class="sep10-social-media-icon"><img src="/media/resampled/articleMenuElement/3951/resampled_sep10-rss.jpg" alt="" border="0"></a></div></td>
400
+ </tr>
401
+ </tbody>
402
+ </table>
403
+ <div class="edaFooter"><div class="edaFooterMenu">
404
+
405
+ <ul class="eda-footer-ul"><li>
406
+ <a href="/home/" class="edaFooterMenuItemLevel1">Home</a>
407
+ </li><li>
408
+ <a href="/leader/" class="edaFooterMenuItemLevel1">Leader</a><a href="/leader/stephen_harper/" class="edaFooterMenuItemLevel2">Stephen Harper</a><a href="/leader/laureen_harper/" class="edaFooterMenuItemLevel2">Laureen Harper</a>
409
+ </li><li>
410
+ <a href="/party/" class="edaFooterMenuItemLevel1">Party</a><a href="/party/founding_principles/" class="edaFooterMenuItemLevel2">Founding Principles</a><a href="/party/key_documents/" class="edaFooterMenuItemLevel2">Key Documents</a><a href="/party/history/" class="edaFooterMenuItemLevel2">History</a><a href="/party/national_council/" class="edaFooterMenuItemLevel2">National Council</a><a href="http://www.cpcconvention.ca/" class="edaFooterMenuItemLevel2">Convention 2011</a>
411
+ </li><li>
412
+ <a href="/team/" class="edaFooterMenuItemLevel1">TEAM</a><a href="/team/the_ministry/" class="edaFooterMenuItemLevel2">The Ministry</a><a href="/team/our_senators/" class="edaFooterMenuItemLevel2">Our Senators</a><a href="/team/our_MPs/" class="edaFooterMenuItemLevel2">Our MPs</a>
413
+ </li><li>
414
+ <a href="/policy/" class="edaFooterMenuItemLevel1">Policy</a><a href="/policy/platform_2011/" class="edaFooterMenuItemLevel2">Platform 2011</a><a href="/policy/budget_2009/" class="edaFooterMenuItemLevel2">Budget 2011</a>
415
+ </li><li>
416
+ <a href="/press/" class="edaFooterMenuItemLevel1">Press</a><a href="/press/news_releases/" class="edaFooterMenuItemLevel2">News Releases</a><a href="/press/rss/" class="edaFooterMenuItemLevel2">RSS</a>
417
+ </li><li>
418
+ <a href="/multimedia/" class="edaFooterMenuItemLevel1">Multimedia</a><a href="/multimedia/photo_gallery/" class="edaFooterMenuItemLevel2">Photo Gallery</a><a href="/multimedia/wallpaper/" class="edaFooterMenuItemLevel2">Wallpaper</a>
419
+ </li></ul>
420
+
421
+ </div>
422
+
423
+ <script type="text/javascript">
424
+
425
+ jQuery(".eda-footer-ul > li:first").remove();
426
+
427
+ </script><div id="edaFooter">This website is the property of the Conservative Party of Canada and may not be reproduced in whole or in part without express written permission. <br>Copyright © 2011 Authorized by the Registered Agent of the Conservative Party of Canada.
428
+ <script type="text/javascript">
429
+
430
+ var _gaq = _gaq || [];
431
+ _gaq.push(['_setAccount', 'UA-20595972-1']);
432
+ _gaq.push(['_trackPageview']);
433
+
434
+ (function() {
435
+ var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
436
+ ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
437
+ var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
438
+ })();
439
+
440
+ </script> - <a href="/footer/privacy_policy" class="cp09FooterLink">Privacy Policy</a>
441
+
442
+ <script type="text/javascript">
443
+ var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
444
+ document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
445
+ </script>
446
+ <script type="text/javascript">
447
+ try {
448
+ var pageTracker = _gat._getTracker("UA-7469779-2");
449
+ pageTracker._trackPageview();
450
+ } catch(err) {}
451
+ </script> - <a href="/footer/contact_us" class="cp09FooterLink">Contact us</a>
452
+
453
+ <script type="text/javascript">
454
+ var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
455
+ document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
456
+ </script>
457
+ <script type="text/javascript">
458
+ try {
459
+ var pageTracker = _gat._getTracker("UA-7469779-2");
460
+ pageTracker._trackPageview();
461
+ } catch(err) {}
462
+ </script></div></div>
463
+ </div>
464
+ </div>
465
+ </div> </body>
466
+ </html>
467
+