openaustralia 1.0.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,43 @@
1
+ # XML mapping classes for OA queries
2
+ # relating to debates
3
+
4
+ require 'xml/mapping'
5
+ require 'openaustralia/search_info'
6
+
7
+ module OpenAustralia
8
+
9
+ # a record returned by a debate search
10
+ #
11
+ # represents a debate in parliament
12
+ class DebateSearchResult
13
+ include XML::Mapping
14
+
15
+ text_node :gid, 'gid'
16
+ text_node :hdate, 'hdate'
17
+ numeric_node :htype, 'htype'
18
+ numeric_node :subsection_id, 'subsection_id'
19
+ numeric_node :relevance, 'relevance'
20
+ numeric_node :speaker_id, 'speaker_id'
21
+ numeric_node :hpos, 'hpos'
22
+ text_node :body, 'body'
23
+ text_node :listurl, 'listurl'
24
+
25
+ # FIXME: incomplete
26
+ end
27
+
28
+ # wrapper for debate search results
29
+ class DebateSearch
30
+ include XML::Mapping
31
+
32
+ # general information about the
33
+ # search results
34
+ object_node :info, 'info', :class => SearchInfo, :default_value => nil
35
+
36
+ # a human-readable description
37
+ # of the search
38
+ text_node :search_description, 'searchdescription', :default_value => nil
39
+
40
+ # search result records
41
+ array_node :results, 'rows', 'match', :class => DebateSearchResult, :default_value=>[]
42
+ end
43
+ end
@@ -0,0 +1,22 @@
1
+ # XML mapping classes relating to divisions
2
+ # for OA queries
3
+
4
+ require 'xml/mapping'
5
+
6
+ module OpenAustralia
7
+
8
+ # a record for a division search
9
+ class DivisionMatch
10
+ include XML::Mapping
11
+
12
+ text_node :name, "name"
13
+ end
14
+
15
+ # a resultset for a division search
16
+ class DivisionResult
17
+ include XML::Mapping
18
+
19
+ array_node :matches, "result", "match", :class=>DivisionMatch, :default_value=>[]
20
+ end
21
+
22
+ end
@@ -0,0 +1,62 @@
1
+ # XML mapping classes for OA Hansard queries
2
+
3
+ require 'xml/mapping'
4
+ require 'openaustralia/search_info'
5
+
6
+ module OpenAustralia
7
+
8
+ # office held by a hansard speaker
9
+ class HansardOffice
10
+ include XML::Mapping
11
+
12
+ text_node :dept, 'dept'
13
+ text_node :position, 'position'
14
+ text_node :pretty, 'pretty'
15
+ end
16
+
17
+ # speaker in a hansard entry (1 per entry)
18
+ class HansardSpeaker
19
+ include XML::Mapping
20
+
21
+ numeric_node :member_id, 'member_id'
22
+ text_node :title, 'title'
23
+ text_node :first_name, 'first_name'
24
+ text_node :last_name, 'last_name'
25
+ numeric_node :house, 'house'
26
+ text_node :constituency, 'constituency'
27
+ text_node :party, 'party'
28
+ numeric_node :person_id, 'person_id'
29
+ text_node :url, 'url'
30
+ array_node :offices, 'office', 'match', :class => HansardOffice,
31
+ :default => []
32
+ end
33
+
34
+ # search hit for a hansard search
35
+ class Hansard
36
+ include XML::Mapping
37
+
38
+ text_node :body, 'body'
39
+ text_node :listurl, 'listurl'
40
+ numeric_node :section_id, 'section_id'
41
+ numeric_node :subsection_id, 'subsection_id'
42
+ numeric_node :relevance, 'relevance'
43
+ numeric_node :speaker_id, 'speaker_id'
44
+ numeric_node :hpos, 'hpos'
45
+ numeric_node :htype, 'htype'
46
+ numeric_node :major, 'major'
47
+
48
+ object_node :speaker, 'speaker', :class => HansardSpeaker,
49
+ :default_value => nil
50
+
51
+ end
52
+
53
+ # hansard query container
54
+ class HansardSearch
55
+ include XML::Mapping
56
+
57
+ object_node :info, "info", :class=>SearchInfo, :default_value => nil
58
+ text_node :search_description, 'searchdescription', :deafult_value => nil
59
+ array_node :results, 'rows', 'match', :class => Hansard, :default_value => []
60
+ end
61
+
62
+ end
@@ -0,0 +1,51 @@
1
+ # XML mapping classes for OA query results
2
+ # relating to representatives
3
+
4
+ require 'xml/mapping'
5
+
6
+ module OpenAustralia
7
+
8
+ # office held by a representative
9
+ class RepresentativeOffice
10
+ include XML::Mapping
11
+
12
+ text_node :department, 'dept'
13
+ text_node :position, 'position'
14
+ text_node :from_date, 'from_date'
15
+ text_node :to_date, 'to_date'
16
+ text_node :person, 'person'
17
+ text_node :source, 'source'
18
+ end
19
+
20
+ # record for an individual representative
21
+ class Representative
22
+ include XML::Mapping
23
+
24
+ numeric_node :member_id, 'member_id'
25
+ numeric_node :person_id, 'person_id'
26
+ text_node :constituency, 'constituency'
27
+ text_node :party, 'party'
28
+ numeric_node :house, 'house', :default_value => nil
29
+ text_node :first_name, 'first_name', :default_value => nil
30
+ text_node :last_name, 'last_name', :default_value => nil
31
+ text_node :entered_house, 'entered_house', :default_value => nil
32
+ text_node :entered_reason, 'entered_reason', :default_value => nil
33
+ text_node :left_house, 'left_house', :default_value => nil
34
+ text_node :left_reason, 'left_reason', :default_value => nil
35
+ text_node :title, 'title', :default_value => nil
36
+ text_node :full_name, 'full_name', :default_value => nil
37
+ text_node :name, 'name', :default_value => nil
38
+ text_node :image_url, 'image', :default_value => nil
39
+ array_node :offices, "office", "match", :class=>RepresentativeOffice,
40
+ :default_value =>[]
41
+ end
42
+
43
+ # record for foresults of a representative search
44
+ class RepresentativeResult
45
+ include XML::Mapping
46
+
47
+ array_node :matches, "result", "match", :class=>Representative,
48
+ :default_value=>[]
49
+ end
50
+
51
+ end
@@ -0,0 +1,14 @@
1
+ require 'xml/mapping'
2
+
3
+ module OpenAustralia
4
+ # debate search info
5
+ class SearchInfo
6
+ include XML::Mapping
7
+
8
+ text_node :s, 's', :default_value => nil #what to call this?
9
+ numeric_node :results_per_age, 'results_per_page', :default_value => nil
10
+ numeric_node :page, 'page', :default_value => nil
11
+ numeric_node :total_results, 'total_results', :default_value => nil
12
+ numeric_node :first_result, 'first_result', :default_value => nil
13
+ end
14
+ end
@@ -0,0 +1,51 @@
1
+ # XML mapping objects for OA queries
2
+ # relating to senators
3
+
4
+ require 'xml/mapping'
5
+
6
+ module OpenAustralia
7
+
8
+ #search result for an individual senator
9
+ class Senator
10
+ include XML::Mapping
11
+
12
+ numeric_node :member_id, 'member_id'
13
+ numeric_node :house, 'house'
14
+ text_node :first_name, 'first_name'
15
+ text_node :last_name, 'last_name'
16
+ text_node :constituency, 'constituency'
17
+ text_node :party, 'party'
18
+ text_node :entered_house, 'entered_house'
19
+ text_node :entered_reason, 'entered_reason'
20
+ text_node :left_house, 'left_house'
21
+ text_node :left_reason, 'left_reason'
22
+ numeric_node :person_id, 'person_id'
23
+ text_node :title, 'title'
24
+ text_node :full_name, 'full_name'
25
+ end
26
+
27
+ # record for foresults of a representative search
28
+ class SenatorResult
29
+ include XML::Mapping
30
+
31
+ array_node :matches, "result", "match", :class=>Senator, :default_value=>[]
32
+ end
33
+
34
+ # search results for a list of senators
35
+ class SenatorFound
36
+ include XML::Mapping
37
+
38
+ numeric_node :member_id, 'member_id'
39
+ text_node :name, 'name'
40
+ numeric_node :person_id, 'person_id'
41
+ text_node :party, 'party'
42
+ end
43
+
44
+ # record for foresults of a representative search
45
+ class SenatorSearchResult
46
+ include XML::Mapping
47
+
48
+ array_node :matches, "result", "match", :class=>SenatorFound, :default_value=>[]
49
+ end
50
+
51
+ end
@@ -0,0 +1,3 @@
1
+ module OpenAustralia
2
+ VERSION = "1.0.0"
3
+ end
@@ -0,0 +1,20 @@
1
+ # -*- encoding: utf-8 -*-
2
+ require File.expand_path('../lib/openaustralia/version', __FILE__)
3
+
4
+ Gem::Specification.new do |gem|
5
+ gem.authors = ["Henare Degan", "Alex Cooper"]
6
+ gem.email = ["henare.degan@gmail.com"]
7
+ gem.description = 'OpenAustralia API'
8
+ gem.summary = 'Ruby wrapper for the OpenAustralia API'
9
+ gem.homepage = 'https://github.com/henare/openaustralia-api/'
10
+
11
+ gem.files = `git ls-files`.split($\)
12
+ gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
13
+ gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
14
+ gem.name = "openaustralia"
15
+ gem.require_paths = ["lib"]
16
+ gem.version = OpenAustralia::VERSION
17
+
18
+ gem.add_dependency 'xml-mapping'
19
+ gem.add_dependency 'rake'
20
+ end
@@ -0,0 +1,282 @@
1
+ <?xml version="1.0" encoding="iso-8859-1"?>
2
+ <result>
3
+ <comments>
4
+ <match>
5
+ <comment_id>195</comment_id>
6
+ <user_id>722</user_id>
7
+ <epobject_id>231713</epobject_id>
8
+ <body>Dennis
9
+ There a lot of discrimentary practices by Government with ADF super indexation being the main one. Other matters are Defence widow gets 62.5% of her Veteran husbands DFRDB, PS widow 67% and MPs widows 82.2%, War Widow should get same as MP widow;Commutation (lump sum) taken out by ADF memeber continues to be repaid till one dies and not ceased when original sum is repaid = continual deduction of repayment regardless; if ADF member does not commute the current CPI indexation is applied as though one had commuted = indexation of much lower figure than full FN entitlement; Vietnam era War widow entitlement to bury her husband is much lower than entitlement experienced by present day &quot;Digger's wives&quot;- costs same to bury a Digger regardles of which War they fough in; use of 1962 Actuarial Tables in 2009 = how rude and financially crippling is that for Digers from the 50s to the 90's who come under DFRB/DFRDB entitlements; Howard Government used the same stall tactics over 12 years in power; 2% COMPULSORY decrease in CPI indexation not paid by Hawke/Keating Govt in the 19770s/80s and NEVER reinstated for Defence superannuants; Officer discrimination for early retirement before Notional Retirement (Maj = 42 in 1980s) age of 2% discount from entitlements for each year under age; Defence couple cannot &quot;SPLIT&quot; yearly entitlements in half for Taxation purposes, PS and MPs (pre 1998 can = why????); Annual 2009 DFRDB entitlement is $22,092 PA = below Hendereson Poverty Line and well below Age Pension people = why as DFRDB/DFRB is paid for, taxed by three times (During service, on discharge, and last when entitlements are paid?) and Centrelink Age pension financially souced from Taxpayers of Australia; finally in the last 20 years military retirees? superannuation entitlements have increased by just under 70%, whereas the Age pension has more than doubled, by 110%, and MPs? superannuation entitlements have increased by over 130% = speaks volumes of UNJUST, UNEQUAL &amp; UNFAIR indexation of Defence superannuation!!!!WE just wish to be treated the same!!!!!
10
+ Bernie mcGurgan (A Vietnam veteran &amp; DFRDB superannuant)
11
+ Brisbane
12
+ </body>
13
+ <posted>2009-11-27 13:42:53</posted>
14
+ <major>1</major>
15
+ <gid>uk.org.publicwhip/debate/2009-11-25.124.3</gid>
16
+ <firstname>Bernie</firstname>
17
+ <lastname>McGurgan</lastname>
18
+ <url>/debate/?id=2009-11-25.124.3#c195</url>
19
+ </match>
20
+ <match>
21
+ <comment_id>180</comment_id>
22
+ <user_id>634</user_id>
23
+ <epobject_id>226813</epobject_id>
24
+ <body>A couple of points on Warren Truss's speech:
25
+
26
+ &quot;There is no emissions trading scheme planned anywhere in the world that includes agriculture&quot; This is not the case, our near neighbour New Zealand is considering its conclusion in its proposed legislation.
27
+
28
+ You talk about increased costs from the proposed CPRS from cheaper imports due to the lack of a carbon price in foreign and international markets. The evident momentum globally for a carbon price or regulation otherwise to reduce GHG emissions makes this unlikely, but there is an alternative in the form of a big stick. Despite the Coalition's previous enthusiasm for American policy on this issue, you do not seek the alternative sought in the US, that of possible tarrifs on imports from nations that have no equivalent regulation.
29
+
30
+ &quot;Because Australia signed the Kyoto accord, Australian farmers cannot get credits for the carbon abatement activities that they undertake...This is the nonsense of Labor?s CPRS&quot; Strange how one can blame a treaty that the Coalition itself designed for it's own interests, allowing for a 108% increase in emmisions in Australia due to its special situation and now you can blame a Labor bill for a problem not of its own making? The ability of farmers to gain credits or offsets that can be sold on international markets is determined by international regulations and scientific reality of their measurement.
31
+
32
+ Farmers should certainly be recognised, like all sectors that emit GHG for their potential to be constructive in this regard. Which brings us on to your next point, in which you bring up the tired old myth about baseload power. While I welcome a debate on the merits of all sources of energy, nuclear included, the potential of renewables should not be debased in favour of the status quo. To prove this, simply take a look at Spain, where just last Monday (9.11.09) 53% of demand was catered for through wind power alone (http://www.guardian.co.uk/environment/2009/nov/09/spain-national-record-power-windfarms), equivalent to apparently 11 nuclear power plants or 11.4 Gigawatts, which was only a fraction of their potential, 18 gw and many other countries in which renewables play a vital role.
33
+
34
+ I would also like to recognise your party's support for voluntary reductions of emissions that can be factored in to the national cap, just as the greens have yet the government has not.
35
+ </body>
36
+ <posted>2009-11-17 22:27:41</posted>
37
+ <major>1</major>
38
+ <gid>uk.org.publicwhip/debate/2009-11-16.71.1</gid>
39
+ <firstname>Shaun</firstname>
40
+ <lastname>Lambert</lastname>
41
+ <url>/debate/?id=2009-11-16.71.1#c180</url>
42
+ </match>
43
+ <match>
44
+ <comment_id>177</comment_id>
45
+ <user_id>634</user_id>
46
+ <epobject_id>226230</epobject_id>
47
+ <body>I'd like to thank Mark Coulton, whom I have not had the pleasure of reading before. Your remarks are above the level of debate that is reported in mainstream media and what I would otherwise expect of this current Opposition and would seem to be much more constructive criticism than otherwise is usual. I would add but a few points in response:
48
+
49
+ 1)That it is important for all sides to not inflame the debate with hysterics, as some have and provide both constructive criticism as well as debate that frames our predicament as a crisis that results in opportunity, spurred on by government and individual action.
50
+
51
+ 2) That the criticism of Australia's individual participation in a global effort should never be misconstrued as a waste of effort on our part. Our effort is not about saving the entire planet on our own. No. It is about what forms the guiding principle for the UN and the Kyoto protocol on these matters, the principle of &quot;common but differentiated responsibilities&quot;. Australia's role in reducing our emissions is important not just for it's own sake, but a part of a greater and global movement to reduce emissions- to think that we should become some sort of a haven for carbon-intensive industries is flawed and wrong, not that we already aren't one...
52
+
53
+ 3)You make the point well about our trade-exposed emissions intensive industries and what an ETS might mean for them. Surely there is a solution? Even Ross Garnaut advocated for these industries to be compensated- for their loss of competitiveness only, and a tariff system could also be put in place for those trading partners that are not playing their proportionate part as we should and will be.
54
+
55
+
56
+ 4)You speak also of reductions on an individual basis and with agriculture specifically in mind- surely the Nationals could be talking constructively to the Greens on such an issue?
57
+
58
+ Keep up the good work, just don't forget our 'common but differentiated responsibility'.
59
+ </body>
60
+ <posted>2009-11-01 13:11:39</posted>
61
+ <major>1</major>
62
+ <gid>uk.org.publicwhip/debate/2009-10-29.35.1</gid>
63
+ <firstname>Shaun</firstname>
64
+ <lastname>Lambert</lastname>
65
+ <url>/debate/?id=2009-10-29.35.1#c177</url>
66
+ </match>
67
+ <match>
68
+ <comment_id>141</comment_id>
69
+ <user_id>557</user_id>
70
+ <epobject_id>207472</epobject_id>
71
+ <body>What is needed is a total shift in community attitudes at all levels.
72
+
73
+ If community members instigated sustainability efforts on the home front, such as urban food gardening, recycling, hanging clothes on the line, turning off power points, composting, grey water systems, shorter showers etc., were less worried about 'stuff' they want (not need), then maybe we might stand a chance.
74
+
75
+ However, government needs to be BRAVE by putting in place legislation that may be unpopular. For example, not decreasing the size of urban blocks but limiting the size of houses on blocks. Our blocks have been getting smaller, houses have been getting bigger, back yards smaller (our kids have been getting fatter too).
76
+
77
+ If you have not seen this film, then please watch it. Each person I have shown this to has been impacted by it. It shows the process of 'stuff' we use. It is called THE STORY OF STUFF
78
+ http://www.storyofstuff.com
79
+
80
+ This film has been watched/downloaded by over 7 million people. It is brutal, makes sense &amp; certainly gets you thinking.
81
+
82
+ We have 20 years to start turning back the effects of climate change and global warming.
83
+
84
+ At a recent climate change launch at a university in Melbourne, we were shown the Story of Stuff (above) and the following movie:
85
+ WAKE UP, FREAK OUT - then GET A GRIP
86
+ http://www.vimeo.com/1709110
87
+
88
+ For people who lack the education (disbelievers) regarding climate change, both these movies put a lot of the facts in perspective. You cannot argue with the content. It is backed up by evidence. ALL politicians should be made to put aside 1/2 hours of their time to watch these. Maybe then they will not fight the change that needs to happen.
89
+
90
+ I look forward to seeing the courage being displayed that I hope the Labour Party has regarding this issue.
91
+
92
+ Thank you.
93
+ </body>
94
+ <posted>2009-08-15 16:31:31</posted>
95
+ <major>101</major>
96
+ <gid>uk.org.publicwhip/lords/2009-06-22.19.14</gid>
97
+ <firstname>Judie</firstname>
98
+ <lastname>Gade</lastname>
99
+ <url>/senate/?gid=2009-06-22.19.14#c141</url>
100
+ </match>
101
+ <match>
102
+ <comment_id>140</comment_id>
103
+ <user_id>552</user_id>
104
+ <epobject_id>210764</epobject_id>
105
+ <body>People wonder who is behind the town hall riots when anyone discusses health care reform, or Obamacare ? the answer is Conservatives for Patients' Rights. Conservatives for Patients Rights, or the CPR, is headed by one Rick Scott ? who isn't a doctor ? but used to be the CEO of a hospital, and under his watch, his medical administration defrauded Medicare of $1.7 billion through a practice called upcoding, wherein a Medicare patient gets treated, but Medicare is billed for additional tests that never took place. (That's fraud.) Realistically, Conservatives for Patients Rights and Mr. Scott will never need short term loans, and the only reason why they oppose the bill is that they want the money from the program for themselves.Read more click http://personalmoneystore.com/moneyblog/2009/08/06/rick-scott/</body>
106
+ <posted>2009-08-13 17:17:49</posted>
107
+ <major>101</major>
108
+ <gid>uk.org.publicwhip/lords/2009-08-11.25.2</gid>
109
+ <firstname>LalaM</firstname>
110
+ <lastname>hgj</lastname>
111
+ <url>/senate/?gid=2009-08-11.25.2#c140</url>
112
+ </match>
113
+ <match>
114
+ <comment_id>139</comment_id>
115
+ <user_id>548</user_id>
116
+ <epobject_id>210556</epobject_id>
117
+ <body>The Right Honorable PM Mr Rudd,
118
+
119
+ Can you please explain why your environment Minister is at odds with expert opinion on the Four Mile Creek (Beverley) Uranium Mine? A Miner which is clearly breaking Australian laws ( Mark Parnell - SA Parliament - Atomic General - duress - Native Title - ATLA).
120
+
121
+ Is this to become a standard for the operation of business in this country and is the federal government planning to cover the costs of land rehabilitation post the ISL Chemical Leaching of uranium and the re-pumping of waste materials back into these same aquifers. Is the Minister Garrett going to be let off his lead and resume a position of intelligence, in opposing for the good of all Australians, a business and a process which from so many angles is producing so much harm.
122
+
123
+ Does the PM see a relationship between the lack of oversight with the Beverley Mine and the Federal governments plans to purchase military hardware from the US parent General Atomic? If this is the case can the PM explain why the impacts of the conflict are not placed now on the public record.
124
+
125
+ Can the PM explain why Clean Energy funding is channeled to Petratherm and partners Tru Energy and Beach Petroleum in supply of the above Uranium Mine with electricity and can the PM explain how the ISL Chemical Leaching process fits the definition of 'clean energy' or for that matter how the process and large embodied energy costs of the uranium mining process is equated in these grants with 'clean energy'?
126
+
127
+ Can the Minister explain why the Australian Government is not following the example of Australian Ethical Investment in removing itself from the reach of such mining processes which are causing damage to the indigenous population in the area and the water systems connected to the Great Artesian Basin?
128
+
129
+ http://sydney.indymedia.org.au/image/australian-ethical-gets-cold-feet-hot-rocks-paralana
130
+
131
+ Thankyou Mr Prime Minsiter we look forward to truth and straight answers to these questions and hope the Parliament of Australia can resume the business of honest government without the distraction of the nonsense ETS legislation which will no doubt be opposed on good grounds.
132
+ </body>
133
+ <posted>2009-08-12 11:55:09</posted>
134
+ <major>1</major>
135
+ <gid>uk.org.publicwhip/debate/2009-08-11.26.3</gid>
136
+ <firstname>Hadley</firstname>
137
+ <lastname>Baker</lastname>
138
+ <url>/debate/?id=2009-08-11.26.3#c139</url>
139
+ </match>
140
+ <match>
141
+ <comment_id>108</comment_id>
142
+ <user_id>309</user_id>
143
+ <epobject_id>164297</epobject_id>
144
+ <body>I think the better Idea would be to adjust the legal drinking age to 25 years of age,also more heavy penalties or loss of licence for the vendors that sell these alcopops to under age drinkers,and also anyone that is of legal age should be prosecuted to the fullest of the law if they purchase the drinks for them.
145
+ No youth under the age of 25 should be allowed hard spirits whether watered down or not and should only be allowed to consume a low Abv of beer which should only be dispensed to them in a controlled environment , when aged between 18 &amp; 25 and not sold as takeaways so they can fall about the streets making an absolute fool of themselves then bragging to their mates the following day on how they had a terrific night which was most probably at someone elses expense or discomfort.
146
+ </body>
147
+ <posted>2009-03-17 17:16:59</posted>
148
+ <major>101</major>
149
+ <gid>uk.org.publicwhip/lords/2009-03-16.78.1</gid>
150
+ <firstname>James</firstname>
151
+ <lastname>Hay</lastname>
152
+ <url>/senate/?gid=2009-03-16.78.1#c108</url>
153
+ </match>
154
+ <match>
155
+ <comment_id>99</comment_id>
156
+ <user_id>309</user_id>
157
+ <epobject_id>160759</epobject_id>
158
+ <body>Lets have some backbone , eject the troublemakers it only hinders policy by all this interjecting.</body>
159
+ <posted>2009-02-25 09:38:02</posted>
160
+ <major>1</major>
161
+ <gid>uk.org.publicwhip/debate/2009-02-24.13.20</gid>
162
+ <firstname>James</firstname>
163
+ <lastname>Hay</lastname>
164
+ <url>/debate/?id=2009-02-24.13.20#c99</url>
165
+ </match>
166
+ <match>
167
+ <comment_id>63</comment_id>
168
+ <user_id>234</user_id>
169
+ <epobject_id>149884</epobject_id>
170
+ <body>Dear Senator Conry
171
+
172
+ I would like to point to a couple of flaws in your statements to the public. First one:
173
+
174
+ &quot; However, the Australian Government has no plans to stop adults from viewing material that is currently legal, if they wish to view such material.&quot;
175
+
176
+ Senator Conroy, you have stipulated that the Australian Government does have plans to stop adults from viewing material that is currently legal, because you nominated the ACMA Prohibited Content list as the basis for mandatory filtering. The list contains material classified X18+, R18+ and MA15+ as well as RC material which is legal to possess or display in Australia, and was originally designed by the previous Government to track material unsuitable for children. To use it as a list of material unsuitable for adults demonstrates profound misunderstanding of the existing regulatory system, and strongly suggests that the Government hasn't thought this thing through.
177
+
178
+ Now you want to filter all &quot;inappropriate&quot; and &quot;unwanted&quot; material
179
+
180
+ Care to explain better?
181
+
182
+ Then you go on to say that
183
+
184
+ &quot;This will be informed by the technology adopted in countries such as the United Kingdom, France, Sweden, Norway, Finland and Canada where ISP filtering, predominantly of child pornography, has been successfully introduced without affecting internet performance to a noticeable level.The proposed ISP filtering policy is being developed through an informed and considered approach, including through industry consultation and close examination of overseas models to assess their suitability for Australia. &quot;
185
+
186
+ There are no other overseas models suitable for Australia. The only countries which do anything like the Government has proposed are regressive regimes such as China, U.A.E and Iran. There are no democratic states anywhere in the world which practice mandatory Government-controlled Internet censorship. All of the examples the Government has ever referred to are cited here:
187
+ http://libertus.net/censor/ispfiltering-gl.html with plenty of debunking data.
188
+ The &quot;industry consultation&quot; has been roundly ignored by the Government: The IIA has made statements against this idea, and its members are on record doubting its feasibility and indicating their disagreement with it, but the Government is ploughing on regardless. What use is consultation if one ignores the results? None of the above countries have adopted what you are proposing. Also I would like to say that there is also the whole ethical position of how appropriate is it for the Australian Government to start acting like the Chinese Government
189
+
190
+ But then you make statement like this
191
+
192
+ &quot;We are committed to working closely with internet industries to address any concerns, including costs and internet speeds.&quot;
193
+ Industry experts, including CEOs from some of Australia's largest ISPs, have almost unanimously come out against this proposal.
194
+ http://www.zdnet.com.au/insight/communications/soa/ISP-level-content-filtering-won-t-work/0,139023754,339292158,00.htm
195
+ The Internet Watch Foundation in the UK has doubted its technical feasibility:
196
+ http://www.theregister.co.uk/2008/11/05/aussie_internet/page2.html
197
+ The Government's own study has indicated its unsuitability to application to any ISP with core network speeds greater than 1 Gbit/sec (and, lets face it, most ISPs with core network speeds under 1 Gbit/sec) Even the parts of the industry who support these systems are against making them mandatory
198
+
199
+ I can only strongly agree with this statement. It is one of fundamentals in our upbringing of children.
200
+ &quot;The internet is an essential tool for all Australian children through which they can exchange information, be entertained, socialise and do school work and research. The ability to use online tools effectively provides both a skill for life and the means to acquire new skills.&quot;
201
+
202
+ Statement like this below just makes me nervous.
203
+
204
+ &quot;However, while the internet has created substantial benefits for children it has also exposed them to a number of dangers, including exposure to offensive content. As such, parents rightly expect the Government to play its part in the protection of children online.&quot;
205
+
206
+ Does it mean that I am unfit parent for my children? That I don't know how to make a sound decision what is appropriate for my children and what is not. I beg the differ. Let me ask you how would you feel if I was to tell, indirectly, that you are unfit parent ( if you have children)? No offence intended by comment in the brackets.
207
+
208
+ Why such an insult Senator
209
+
210
+ It's only woolly-headed wishful thinking by people who don't know what they're talking about that makes people think this idea can work at all in the first place, when your own study has proven that and this is take out of Governments document ( chapter 1, page 15 Executive summary ) &quot; Despite of a general nature of advances in current trial and previous trial most filters are not presently able to identify illegal content and content that may be regarded as inappropriate that is carried via majority of non-web protocols&quot;
211
+
212
+ To conclude
213
+ I support the $125m expenditure, with the exception of the line-item for &quot;clean feed&quot;, which is clearly inappropriate for Australia. World contains literally hundreds of nations who haven't felt the need to go down this path, and I question why the Honourable Member thinks Australia is such a basket-case that it's literally the only democracy on the planet that feels the need to implement this kind of scheme.
214
+ I would like to say that I do not by any means support any kind of child online exploitation but I am afraid that if this legislation goes through that there will be nothing stopping next governments censoring more and more of internet content.
215
+
216
+ There is an ISP already providing &quot;clean feed&quot; internet called WEBSHIELD.
217
+
218
+ Why don't you look into it
219
+
220
+ If in writing this response I have offended you by any means that was not my intention at all and I apologise for such mistake.
221
+
222
+ Awaiting you reply.
223
+
224
+ Kind regards
225
+ Rastko Petrovic
226
+ 50A Hines Rd
227
+ Hilton WA 6163
228
+ 0402392345
229
+ </body>
230
+ <posted>2008-11-22 00:06:38</posted>
231
+ <major>101</major>
232
+ <gid>uk.org.publicwhip/lords/2008-11-13.114.2</gid>
233
+ <firstname>Rastko</firstname>
234
+ <lastname>Petrovic</lastname>
235
+ <url>/senate/?gid=2008-11-13.114.2#c63</url>
236
+ </match>
237
+ <match>
238
+ <comment_id>60</comment_id>
239
+ <user_id>228</user_id>
240
+ <epobject_id>142329</epobject_id>
241
+ <body>Can I start by saying yes its a fantastic thing that Andrew Johns is doing I am sure every dollar is appreciated by those who receive it. Ok the fun stuff over !! Mental Illness not Mental Health is the topic here, Kevin Rudd your speech was all about mental HEALTH...those of us fortunate enough to have it dont need it, call it what you like, phrase it how you wish, after 30+ years working in Mental Health Institutions, Mental Health Public Hospital Wards (Psychiatric Inpatient Units) and being a manager of Community Mental Health Services and now on the &quot;dark side&quot; the NGO Sector I can stake my reputation on the fact that the term is Mental Illness and by avoiding that term we all contribute to the continuing stigma associated with Mental Illness.
242
+
243
+ Let me digress do people who have a broken leg talk about leg health, do people who have a heart attack then talk about heart health or do we all simply call it what it is this person had a heart attack has cardiovascular disease and so on and so forth. Why then do we all talk incessantly about mental health, I heard today that someone got diagnosed with mental health. I wish more of us had that diagnosis.
244
+
245
+ Mental Health is simply defined as the absence of a mental illness, more like the absence of a noticeable or diagnosable mental illness.
246
+
247
+ After 30 years of caring and working closely with thousands of people who are most unfortunately afflicted with significant and serious mental illnesses I can safely say that their collective interpretation of their definite plight is more genuine that the &quot;Mental Health&quot; clan.
248
+
249
+ Stop I implore you STOP! and think, ok Andrew Johns may have a diagnosis of Bi Polar disorder but in his defense he has millions in the bank, enjoys notoriety, and well even from a cynic like me is the best rugby player of all time which I agree is no mean feat for a person with mental illness.
250
+
251
+ Lets spare a though for those of us suffering from mental illness......and I am talking about the significant portion of people who remain confined to hospital for significant periods of time, those who are severely affected and have significant life skills deficits.
252
+
253
+ I implore all of the theorists to cease immediately the inane pursuit of freedom for all. Stop I tell you stop! the over riding principle for care and protection of people with a mental illness is the simple phrase &quot;the least restrictive form of care&quot; well at least that's what the theorists will have the policy makers believe. I have a real problem with the above quoted statement. well really I would like to add one word to it, I firmly believe that the statement should be and always was &quot;the least restrictive form of APPROPRIATE care.
254
+
255
+ Some of you wont like this but for some people who have a serious mental illness the least restrictive form of care may be a straight jacket with buckles and padded wool skin restraints. Thankfully that would apply to a minority, but the essence is that for many people where the debate rages or is totally silent... is some misguided theoretical synapse that no matter what, everyone should live in the community.
256
+
257
+ After thirty years+ I can firmly conclude without question a number of points.....
258
+
259
+ 1. A significant proportion of the population who suffer from a severe mental illness will need some sort of supervised care in the long term. This supervision is not always because they are dangerous but simply because the cognitive deficits experienced are so severe that they are not able to safely care for themselves in an unsupervised environment.
260
+
261
+ 2. Many clients with severe mental illnesses lack the insight to properly regulate their behaviors and so fail to recognize the basic principles of community living, so are unable to live in the community.
262
+
263
+ 3. Remaining long term in a secure closed environment for ones own safety is a real possibility for some people experiencing severe mental illness.
264
+
265
+ 4. We should immediately pass a law that prohibits journalists from reporting serious crimes and coupling them with a persons recent visits to a psychiatrist. How many times have you heard the following, a man was stabbed today, his assailant was caught and sources say he was suffering from, .....diabetes.....whooping cough.....had recently seen his heart surgeon....NO of course not what we always hear is ....he had recently consulted his Psychiatrist or he had a history of mental illness. In many of these cases, yes he had been sent to a Psychiatrist...who found that he was not mentally ill, or he had a history of getting admitted to psychiatric facilities because he was mentally disordered, eg out of control on alcohol or drugs or responding to a major stressor. None of these things makes this person mentally ill.
266
+
267
+ 5. There are two kinds of people in this world, those of us who are inherently good and those of us who are !@#$%^&amp; not so good. With 30 years experience in the field I believe if someone is inherently good then when they develop a mental illness they continue with those good traits, if someone is a !@#$..or inherently bad then if they develop a mental illness then they are likely to continue with their original traits. Point being there is as much chance of a nasty person developing a mental illness as a good person so for a person who has a significant illness we should not automatically attribute their behavior to their illness.
268
+
269
+ 6. Can the &quot;do goodie&quot;, theorists and policy makers stop the &quot;crappola&quot; and concentrate on funneling the money to programs which understand the sentence &quot;least restrictive form of APPROPRIATE care&quot;
270
+
271
+ 7. Lastly anyone who reached this point must be a saint..so stick with me one more time.....can we get some new money to funnel towards the people who are unfortunate to be stuck in this group....yes yes those people confined to secure environments with their difficult behaviors and their inability to subscribe to the a aforementioned principles of community living...you know the ones who are marginalized, stigmatized and forgotten. Kevin Rudd hey how about for those clients you provide amenities cash.......i mean totally separated, from the doctors nurses and administrators...I mean real cash, real items, real belongings for these clients........cummon !!! In the words of a recent acquaintence suffering form a severe mental illness.....I am a real person, I am still a person, I am a human living on this planet, I am only going to get one spin like the rest of you more fortunate people, I might not vote, I might not connect with many of you....but I am in here......I see the adverts on the TV oh how I would cherish an IPOD, How I would love that WII, PS3, new jeans...new hat.....that cool makeup......I know whats happening....I have dreams like everyone else.
272
+ </body>
273
+ <posted>2008-11-20 21:15:03</posted>
274
+ <major>1</major>
275
+ <gid>uk.org.publicwhip/debate/2008-10-20.47.3</gid>
276
+ <firstname>Mental Health</firstname>
277
+ <lastname>Nurse</lastname>
278
+ <url>/debate/?id=2008-10-20.47.3#c60</url>
279
+ </match>
280
+ </comments>
281
+ <search>ets</search>
282
+ </result>