taxplorer 0.0.8

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (43) hide show
  1. checksums.yaml +7 -0
  2. data/.coveralls.yml +1 -0
  3. data/.gitignore +14 -0
  4. data/.travis.yml +8 -0
  5. data/Gemfile +4 -0
  6. data/LICENSE.txt +22 -0
  7. data/README.md +31 -0
  8. data/Rakefile +11 -0
  9. data/bin/taxplorer +4 -0
  10. data/data/taxonomies/uk-gaap/presentation/uk-aurep-2009-09-01-presentation.xml +133 -0
  11. data/data/taxonomies/uk-gaap/presentation/uk-bus-2009-09-01-presentation.xml +614 -0
  12. data/data/taxonomies/uk-gaap/presentation/uk-countries-2009-09-01-presentation.xml +552 -0
  13. data/data/taxonomies/uk-gaap/presentation/uk-currencies-2009-09-01-presentation.xml +388 -0
  14. data/data/taxonomies/uk-gaap/presentation/uk-direp-2009-09-01-presentation.xml +550 -0
  15. data/data/taxonomies/uk-gaap/presentation/uk-exchanges-2009-09-01-presentation.xml +381 -0
  16. data/data/taxonomies/uk-gaap/presentation/uk-gaap-2009-09-01-presentation.xml +11652 -0
  17. data/data/taxonomies/uk-gaap/presentation/uk-languages-2009-09-01-presentation.xml +222 -0
  18. data/data/taxonomies/uk-gaap/xsds/uk-aurep-2009-09-01.xsd +79 -0
  19. data/data/taxonomies/uk-gaap/xsds/uk-bus-2009-09-01.xsd +460 -0
  20. data/data/taxonomies/uk-gaap/xsds/uk-cd-ref-2009-09-01.xsd +62 -0
  21. data/data/taxonomies/uk-gaap/xsds/uk-common-2009-09-01.xsd +15 -0
  22. data/data/taxonomies/uk-gaap/xsds/uk-countries-2009-09-01.xsd +299 -0
  23. data/data/taxonomies/uk-gaap/xsds/uk-currencies-2009-09-01.xsd +215 -0
  24. data/data/taxonomies/uk-gaap/xsds/uk-direp-2009-09-01.xsd +348 -0
  25. data/data/taxonomies/uk-gaap/xsds/uk-exchanges-2009-09-01.xsd +209 -0
  26. data/data/taxonomies/uk-gaap/xsds/uk-gaap-2009-09-01.xsd +7283 -0
  27. data/data/taxonomies/uk-gaap/xsds/uk-gaap-ref-2009-09-01.xsd +32 -0
  28. data/data/taxonomies/uk-gaap/xsds/uk-languages-2009-09-01.xsd +134 -0
  29. data/data/taxonomies/uk-gaap/xsds/uk-types-2009-09-01.xsd +70 -0
  30. data/lib/taxplorer/command.rb +80 -0
  31. data/lib/taxplorer/find.rb +40 -0
  32. data/lib/taxplorer/parse.rb +95 -0
  33. data/lib/taxplorer/version.rb +3 -0
  34. data/lib/taxplorer/view.rb +23 -0
  35. data/lib/taxplorer.rb +29 -0
  36. data/taxplorer.gemspec +28 -0
  37. data/test/command_test.rb +6 -0
  38. data/test/find_test.rb +50 -0
  39. data/test/parse_test.rb +46 -0
  40. data/test/taxplorer_test.rb +19 -0
  41. data/test/test_helper.rb +4 -0
  42. data/test/view_test.rb +32 -0
  43. metadata +191 -0
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 9a9e2e06cce247d4c4b91914a908cd5b6f675f23
4
+ data.tar.gz: e5f20d093ef9caa2d4275a8cbdb41aff75f1a49a
5
+ SHA512:
6
+ metadata.gz: 48e125f90c1a95d3794957e6f76f0234bf479059d820326ab5b3893c0892705162aac899883249775297f6dc510a0f10e4b13a60a1b6b2ddc38a1da07370bc59
7
+ data.tar.gz: 353565218e2e2b9b07c2eb43ee032edfbe4865c09c24a43bcd57362a9ea36c85ac9781217ccdc3fb00f31bf6cee84802c455d3702bbb9aab9f84e4fe82220ac3
data/.coveralls.yml ADDED
@@ -0,0 +1 @@
1
+ service_name: travis-ci
data/.gitignore ADDED
@@ -0,0 +1,14 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /Gemfile.lock
4
+ /_yardoc/
5
+ /coverage/
6
+ /doc/
7
+ /pkg/
8
+ /spec/reports/
9
+ /tmp/
10
+ *.bundle
11
+ *.so
12
+ *.o
13
+ *.a
14
+ mkmf.log
data/.travis.yml ADDED
@@ -0,0 +1,8 @@
1
+ language: ruby
2
+ cache: bundler
3
+
4
+ rvm:
5
+ - 2.2.0
6
+
7
+ script: 'bundle exec rake'
8
+
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in taxplorer.gemspec
4
+ gemspec
data/LICENSE.txt ADDED
@@ -0,0 +1,22 @@
1
+ Copyright (c) 2015 Seosamh Cahill
2
+
3
+ MIT License
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining
6
+ a copy of this software and associated documentation files (the
7
+ "Software"), to deal in the Software without restriction, including
8
+ without limitation the rights to use, copy, modify, merge, publish,
9
+ distribute, sublicense, and/or sell copies of the Software, and to
10
+ permit persons to whom the Software is furnished to do so, subject to
11
+ the following conditions:
12
+
13
+ The above copyright notice and this permission notice shall be
14
+ included in all copies or substantial portions of the Software.
15
+
16
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
20
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
21
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
22
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,31 @@
1
+ # Taxplorer
2
+
3
+ TODO: Write a gem description
4
+
5
+ ## Installation
6
+
7
+ Add this line to your application's Gemfile:
8
+
9
+ ```ruby
10
+ gem 'taxplorer'
11
+ ```
12
+
13
+ And then execute:
14
+
15
+ $ bundle
16
+
17
+ Or install it yourself as:
18
+
19
+ $ gem install taxplorer
20
+
21
+ ## Usage
22
+
23
+ TODO: Write usage instructions here
24
+
25
+ ## Contributing
26
+
27
+ 1. Fork it ( https://github.com/[my-github-username]/taxplorer/fork )
28
+ 2. Create your feature branch (`git checkout -b my-new-feature`)
29
+ 3. Commit your changes (`git commit -am 'Add some feature'`)
30
+ 4. Push to the branch (`git push origin my-new-feature`)
31
+ 5. Create a new Pull Request
data/Rakefile ADDED
@@ -0,0 +1,11 @@
1
+ require "bundler/gem_tasks"
2
+
3
+ require 'rake/testtask'
4
+
5
+ Rake::TestTask.new do |t|
6
+ t.libs << 'test'
7
+ t.pattern = "test/*_test.rb"
8
+ end
9
+
10
+ desc "Run tests"
11
+ task :default => :test
data/bin/taxplorer ADDED
@@ -0,0 +1,4 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require 'taxplorer'
4
+ Application.new
@@ -0,0 +1,133 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <!--
3
+ UK-AuditorsReport-Presentation linkbase
4
+ Copyright and other information - see http://www.xbrl.org/uk/legal.aspx
5
+ -->
6
+ <linkbase xmlns="http://www.xbrl.org/2003/linkbase" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xlink="http://www.w3.org/1999/xlink" xsi:schemaLocation=" http://www.xbrl.org/2003/linkbase http://www.xbrl.org/2003/xbrl-linkbase-2003-12-31.xsd">
7
+ <roleRef xlink:type="simple" xlink:href="uk-aurep-2009-09-01.xsd#AuditorsReport" roleURI="http://www.xbrl.org/uk/role/AuditorsReport" />
8
+ <presentationLink xlink:type="extended" xlink:role="http://www.xbrl.org/uk/role/AuditorsReport" xlink:title="Auditors' Report ">
9
+ <loc xlink:type="locator" xlink:href="uk-aurep-2009-09-01.xsd#uk-aurep_AuditorInformationHeading" xlink:label="uk-aurep_AuditorInformationHeading" />
10
+ <loc xlink:type="locator" xlink:href="uk-aurep-2009-09-01.xsd#uk-aurep_DimensionMembersUsedToIdentifyThirdPartyAgentAsAuditorAccountantHeading" xlink:label="uk-aurep_DimensionMembersUsedToIdentifyThirdPartyAgentAsAuditorAccountantHeading" />
11
+ <presentationArc xlink:type="arc" xlink:arcrole="http://www.xbrl.org/2003/arcrole/parent-child" xlink:from="uk-aurep_AuditorInformationHeading" xlink:to="uk-aurep_DimensionMembersUsedToIdentifyThirdPartyAgentAsAuditorAccountantHeading" order="1" use="optional" />
12
+ <loc xlink:type="locator" xlink:href="../../../cd/business/2009-09-01/uk-bus-2009-09-01.xsd#uk-bus_EntityAccountantsOrAuditors" xlink:label="uk-bus_EntityAccountantsOrAuditors" />
13
+ <presentationArc xlink:type="arc" xlink:arcrole="http://www.xbrl.org/2003/arcrole/parent-child" xlink:from="uk-aurep_DimensionMembersUsedToIdentifyThirdPartyAgentAsAuditorAccountantHeading" xlink:to="uk-bus_EntityAccountantsOrAuditors" order="1" use="optional" />
14
+ <loc xlink:type="locator" xlink:href="uk-aurep-2009-09-01.xsd#uk-aurep_DimensionMembersUsedToDistinguishDifferentAuditorsHeading" xlink:label="uk-aurep_DimensionMembersUsedToDistinguishDifferentAuditorsHeading" />
15
+ <presentationArc xlink:type="arc" xlink:arcrole="http://www.xbrl.org/2003/arcrole/parent-child" xlink:from="uk-aurep_DimensionMembersUsedToIdentifyThirdPartyAgentAsAuditorAccountantHeading" xlink:to="uk-aurep_DimensionMembersUsedToDistinguishDifferentAuditorsHeading" order="2" use="optional" />
16
+ <loc xlink:type="locator" xlink:href="../../../cd/business/2009-09-01/uk-bus-2009-09-01.xsd#uk-bus_TotalAgentsDefault" xlink:label="uk-bus_TotalAgentsDefault" />
17
+ <presentationArc xlink:type="arc" xlink:arcrole="http://www.xbrl.org/2003/arcrole/parent-child" xlink:from="uk-aurep_DimensionMembersUsedToDistinguishDifferentAuditorsHeading" xlink:to="uk-bus_TotalAgentsDefault" order="1" use="optional" />
18
+ <loc xlink:type="locator" xlink:href="../../../cd/business/2009-09-01/uk-bus-2009-09-01.xsd#uk-bus_PrincipalAgent" xlink:label="uk-bus_PrincipalAgent" />
19
+ <presentationArc xlink:type="arc" xlink:arcrole="http://www.xbrl.org/2003/arcrole/parent-child" xlink:from="uk-bus_TotalAgentsDefault" xlink:to="uk-bus_PrincipalAgent" order="1" use="optional" />
20
+ <loc xlink:type="locator" xlink:href="../../../cd/business/2009-09-01/uk-bus-2009-09-01.xsd#uk-bus_JointAgent1" xlink:label="uk-bus_JointAgent1" />
21
+ <presentationArc xlink:type="arc" xlink:arcrole="http://www.xbrl.org/2003/arcrole/parent-child" xlink:from="uk-bus_TotalAgentsDefault" xlink:to="uk-bus_JointAgent1" order="2" use="optional" />
22
+ <loc xlink:type="locator" xlink:href="../../../cd/business/2009-09-01/uk-bus-2009-09-01.xsd#uk-bus_JointAgent2" xlink:label="uk-bus_JointAgent2" />
23
+ <presentationArc xlink:type="arc" xlink:arcrole="http://www.xbrl.org/2003/arcrole/parent-child" xlink:from="uk-bus_TotalAgentsDefault" xlink:to="uk-bus_JointAgent2" order="3" use="optional" />
24
+ <loc xlink:type="locator" xlink:href="../../../cd/business/2009-09-01/uk-bus-2009-09-01.xsd#uk-bus_JointAgent3" xlink:label="uk-bus_JointAgent3" />
25
+ <presentationArc xlink:type="arc" xlink:arcrole="http://www.xbrl.org/2003/arcrole/parent-child" xlink:from="uk-bus_TotalAgentsDefault" xlink:to="uk-bus_JointAgent3" order="4" use="optional" />
26
+ <loc xlink:type="locator" xlink:href="../../../cd/business/2009-09-01/uk-bus-2009-09-01.xsd#uk-bus_DescriptionOrOtherInformationOnThirdPartyAgent" xlink:label="uk-bus_DescriptionOrOtherInformationOnThirdPartyAgent" />
27
+ <presentationArc xlink:type="arc" xlink:arcrole="http://www.xbrl.org/2003/arcrole/parent-child" xlink:from="uk-aurep_AuditorInformationHeading" xlink:to="uk-bus_DescriptionOrOtherInformationOnThirdPartyAgent" order="1.7" use="optional" />
28
+ <loc xlink:type="locator" xlink:href="../../../cd/business/2009-09-01/uk-bus-2009-09-01.xsd#uk-bus_NameThirdPartyAgent" xlink:label="uk-bus_NameThirdPartyAgent" />
29
+ <presentationArc xlink:type="arc" xlink:arcrole="http://www.xbrl.org/2003/arcrole/parent-child" xlink:from="uk-aurep_AuditorInformationHeading" xlink:to="uk-bus_NameThirdPartyAgent" order="1.5" use="optional" />
30
+ <loc xlink:type="locator" xlink:href="uk-aurep-2009-09-01.xsd#uk-aurep_NameOrLocationOfficePerformingAudit" xlink:label="uk-aurep_NameOrLocationOfficePerformingAudit" xlink:title="Go down to: nameLocationOfOfficePerformingAudit" />
31
+ <presentationArc xlink:type="arc" xlink:arcrole="http://www.xbrl.org/2003/arcrole/parent-child" xlink:from="uk-aurep_AuditorInformationHeading" xlink:to="uk-aurep_NameOrLocationOfficePerformingAudit" xlink:title="Go down to: nameLocationOfOfficePerformingAudit" order="4" use="optional" />
32
+ <loc xlink:type="locator" xlink:href="uk-aurep-2009-09-01.xsd#uk-aurep_NameIndividualAuditorOrAccountant" xlink:label="uk-aurep_NameIndividualAuditorOrAccountant" />
33
+ <presentationArc xlink:type="arc" xlink:arcrole="http://www.xbrl.org/2003/arcrole/parent-child" xlink:from="uk-aurep_AuditorInformationHeading" xlink:to="uk-aurep_NameIndividualAuditorOrAccountant" order="5" use="optional" />
34
+ <loc xlink:type="locator" xlink:href="uk-aurep-2009-09-01.xsd#uk-aurep_NameSeniorStatutoryAuditor" xlink:label="uk-aurep_NameSeniorStatutoryAuditor" />
35
+ <presentationArc xlink:type="arc" xlink:arcrole="http://www.xbrl.org/2003/arcrole/parent-child" xlink:from="uk-aurep_AuditorInformationHeading" xlink:to="uk-aurep_NameSeniorStatutoryAuditor" order="6" use="optional" />
36
+ <loc xlink:type="locator" xlink:href="uk-aurep-2009-09-01.xsd#uk-aurep_ForMoreInformationSeeThirdPartyAgentsInEntityInformationSectionCross-reference" xlink:label="uk-aurep_ForMoreInformationSeeThirdPartyAgentsInEntityInformationSectionCross-reference" />
37
+ <presentationArc xlink:type="arc" xlink:arcrole="http://www.xbrl.org/2003/arcrole/parent-child" xlink:from="uk-aurep_AuditorInformationHeading" xlink:to="uk-aurep_ForMoreInformationSeeThirdPartyAgentsInEntityInformationSectionCross-reference" order="7" use="optional" />
38
+ <loc xlink:type="locator" xlink:href="uk-aurep-2009-09-01.xsd#uk-aurep_AuditorsReportHeading" xlink:label="uk-aurep_AuditorsReportHeading" />
39
+ <loc xlink:type="locator" xlink:href="uk-aurep-2009-09-01.xsd#uk-aurep_StatementOnScopeAuditReport" xlink:label="uk-aurep_StatementOnScopeAuditReport" />
40
+ <presentationArc xlink:type="arc" xlink:arcrole="http://www.xbrl.org/2003/arcrole/parent-child" xlink:from="uk-aurep_AuditorsReportHeading" xlink:to="uk-aurep_StatementOnScopeAuditReport" order="2" use="optional" />
41
+ <loc xlink:type="locator" xlink:href="uk-aurep-2009-09-01.xsd#uk-aurep_StatementResponsibilities" xlink:label="uk-aurep_StatementResponsibilities" />
42
+ <presentationArc xlink:type="arc" xlink:arcrole="http://www.xbrl.org/2003/arcrole/parent-child" xlink:from="uk-aurep_AuditorsReportHeading" xlink:to="uk-aurep_StatementResponsibilities" order="3" use="optional" />
43
+ <loc xlink:type="locator" xlink:href="uk-aurep-2009-09-01.xsd#uk-aurep_BasisAuditOpinion" xlink:label="uk-aurep_BasisAuditOpinion" />
44
+ <presentationArc xlink:type="arc" xlink:arcrole="http://www.xbrl.org/2003/arcrole/parent-child" xlink:from="uk-aurep_AuditorsReportHeading" xlink:to="uk-aurep_BasisAuditOpinion" order="4" use="optional" />
45
+ <loc xlink:type="locator" xlink:href="uk-aurep-2009-09-01.xsd#uk-aurep_OpinionAuditorsOnEntity" xlink:label="uk-aurep_OpinionAuditorsOnEntity" />
46
+ <presentationArc xlink:type="arc" xlink:arcrole="http://www.xbrl.org/2003/arcrole/parent-child" xlink:from="uk-aurep_AuditorsReportHeading" xlink:to="uk-aurep_OpinionAuditorsOnEntity" order="5" use="optional" />
47
+ <loc xlink:type="locator" xlink:href="uk-aurep-2009-09-01.xsd#uk-aurep_EmphasisMatterStatement" xlink:label="uk-aurep_EmphasisMatterStatement" />
48
+ <presentationArc xlink:type="arc" xlink:arcrole="http://www.xbrl.org/2003/arcrole/parent-child" xlink:from="uk-aurep_AuditorsReportHeading" xlink:to="uk-aurep_EmphasisMatterStatement" order="6" use="optional" />
49
+ <loc xlink:type="locator" xlink:href="uk-aurep-2009-09-01.xsd#uk-aurep_StatementByAuditorThatCompanyEntitledToDeliverAbbreviatedAccountsAccountsProperlyPrepared" xlink:label="uk-aurep_StatementByAuditorThatCompanyEntitledToDeliverAbbreviatedAccountsAccountsProperlyPrepared" />
50
+ <presentationArc xlink:type="arc" xlink:arcrole="http://www.xbrl.org/2003/arcrole/parent-child" xlink:from="uk-aurep_AuditorsReportHeading" xlink:to="uk-aurep_StatementByAuditorThatCompanyEntitledToDeliverAbbreviatedAccountsAccountsProperlyPrepared" order="7" use="optional" />
51
+ <loc xlink:type="locator" xlink:href="uk-aurep-2009-09-01.xsd#uk-aurep_StatementOnReasonsForAnyQualificationOpinion" xlink:label="uk-aurep_StatementOnReasonsForAnyQualificationOpinion" />
52
+ <presentationArc xlink:type="arc" xlink:arcrole="http://www.xbrl.org/2003/arcrole/parent-child" xlink:from="uk-aurep_AuditorsReportHeading" xlink:to="uk-aurep_StatementOnReasonsForAnyQualificationOpinion" order="8" use="optional" />
53
+ <loc xlink:type="locator" xlink:href="uk-aurep-2009-09-01.xsd#uk-aurep_DateAuditorsReport" xlink:label="uk-aurep_DateAuditorsReport" />
54
+ <presentationArc xlink:type="arc" xlink:arcrole="http://www.xbrl.org/2003/arcrole/parent-child" xlink:from="uk-aurep_AuditorsReportHeading" xlink:to="uk-aurep_DateAuditorsReport" order="9" use="optional" />
55
+ <loc xlink:type="locator" xlink:href="uk-aurep-2009-09-01.xsd#uk-aurep_StatementOnResponsibilityForMaintenanceIntegrityFinancialStatementsOnWebsite" xlink:label="uk-aurep_StatementOnResponsibilityForMaintenanceIntegrityFinancialStatementsOnWebsite" />
56
+ <presentationArc xlink:type="arc" xlink:arcrole="http://www.xbrl.org/2003/arcrole/parent-child" xlink:from="uk-aurep_AuditorsReportHeading" xlink:to="uk-aurep_StatementOnResponsibilityForMaintenanceIntegrityFinancialStatementsOnWebsite" order="10" use="optional" />
57
+ <loc xlink:type="locator" xlink:href="uk-aurep-2009-09-01.xsd#uk-aurep_StatementOnScopeLegislationCoveringFinancialStatements" xlink:label="uk-aurep_StatementOnScopeLegislationCoveringFinancialStatements" />
58
+ <presentationArc xlink:type="arc" xlink:arcrole="http://www.xbrl.org/2003/arcrole/parent-child" xlink:from="uk-aurep_AuditorsReportHeading" xlink:to="uk-aurep_StatementOnScopeLegislationCoveringFinancialStatements" order="11" use="optional" />
59
+ <loc xlink:type="locator" xlink:href="uk-aurep-2009-09-01.xsd#uk-aurep_FeesToAuditorsHeading" xlink:label="uk-aurep_FeesToAuditorsHeading" />
60
+ <loc xlink:type="locator" xlink:href="uk-aurep-2009-09-01.xsd#uk-aurep_TotalFeesToAuditors" xlink:label="uk-aurep_TotalFeesToAuditors" />
61
+ <presentationArc xlink:type="arc" xlink:arcrole="http://www.xbrl.org/2003/arcrole/parent-child" xlink:from="uk-aurep_FeesToAuditorsHeading" xlink:to="uk-aurep_TotalFeesToAuditors" order="2" use="optional" />
62
+ <loc xlink:type="locator" xlink:href="uk-aurep-2009-09-01.xsd#uk-aurep_AuditFeesExpenses" xlink:label="uk-aurep_AuditFeesExpenses" />
63
+ <presentationArc xlink:type="arc" xlink:arcrole="http://www.xbrl.org/2003/arcrole/parent-child" xlink:from="uk-aurep_TotalFeesToAuditors" xlink:to="uk-aurep_AuditFeesExpenses" order="1" use="optional" />
64
+ <loc xlink:type="locator" xlink:href="uk-aurep-2009-09-01.xsd#uk-aurep_DescriptionBenefitsInKindForAuditServices" xlink:label="uk-aurep_DescriptionBenefitsInKindForAuditServices" />
65
+ <presentationArc xlink:type="arc" xlink:arcrole="http://www.xbrl.org/2003/arcrole/parent-child" xlink:from="uk-aurep_AuditFeesExpenses" xlink:to="uk-aurep_DescriptionBenefitsInKindForAuditServices" order="1" use="optional" />
66
+ <loc xlink:type="locator" xlink:href="uk-aurep-2009-09-01.xsd#uk-aurep_EstimatedMoneyValueBenefitsInKindForAuditServices" xlink:label="uk-aurep_EstimatedMoneyValueBenefitsInKindForAuditServices" />
67
+ <presentationArc xlink:type="arc" xlink:arcrole="http://www.xbrl.org/2003/arcrole/parent-child" xlink:from="uk-aurep_AuditFeesExpenses" xlink:to="uk-aurep_EstimatedMoneyValueBenefitsInKindForAuditServices" order="2" use="optional" />
68
+ <loc xlink:type="locator" xlink:href="uk-aurep-2009-09-01.xsd#uk-aurep_FeesForNon-auditServices" xlink:label="uk-aurep_FeesForNon-auditServices" />
69
+ <presentationArc xlink:type="arc" xlink:arcrole="http://www.xbrl.org/2003/arcrole/parent-child" xlink:from="uk-aurep_TotalFeesToAuditors" xlink:to="uk-aurep_FeesForNon-auditServices" order="2" use="optional" />
70
+ <loc xlink:type="locator" xlink:href="uk-aurep-2009-09-01.xsd#uk-aurep_AuditingAccountsAssociatesPursuantToLegislationFees" xlink:label="uk-aurep_AuditingAccountsAssociatesPursuantToLegislationFees" />
71
+ <presentationArc xlink:type="arc" xlink:arcrole="http://www.xbrl.org/2003/arcrole/parent-child" xlink:from="uk-aurep_FeesForNon-auditServices" xlink:to="uk-aurep_AuditingAccountsAssociatesPursuantToLegislationFees" order="1" use="optional" />
72
+ <loc xlink:type="locator" xlink:href="uk-aurep-2009-09-01.xsd#uk-aurep_AuditingAccountsOfAssociatesPursuantToLegislationPensionSchemesFees" xlink:label="uk-aurep_AuditingAccountsOfAssociatesPursuantToLegislationPensionSchemesFees" />
73
+ <presentationArc xlink:type="arc" xlink:arcrole="http://www.xbrl.org/2003/arcrole/parent-child" xlink:from="uk-aurep_AuditingAccountsAssociatesPursuantToLegislationFees" xlink:to="uk-aurep_AuditingAccountsOfAssociatesPursuantToLegislationPensionSchemesFees" order="1" use="optional" />
74
+ <loc xlink:type="locator" xlink:href="uk-aurep-2009-09-01.xsd#uk-aurep_AuditingAccountsOfAssociatesPursuantToLegislationEntityAndSubsidiariesFees" xlink:label="uk-aurep_AuditingAccountsOfAssociatesPursuantToLegislationEntityAndSubsidiariesFees" />
75
+ <presentationArc xlink:type="arc" xlink:arcrole="http://www.xbrl.org/2003/arcrole/parent-child" xlink:from="uk-aurep_AuditingAccountsAssociatesPursuantToLegislationFees" xlink:to="uk-aurep_AuditingAccountsOfAssociatesPursuantToLegislationEntityAndSubsidiariesFees" order="2" use="optional" />
76
+ <loc xlink:type="locator" xlink:href="uk-aurep-2009-09-01.xsd#uk-aurep_OtherServicesPursuantToSuchLegislationFees" xlink:label="uk-aurep_OtherServicesPursuantToSuchLegislationFees" />
77
+ <presentationArc xlink:type="arc" xlink:arcrole="http://www.xbrl.org/2003/arcrole/parent-child" xlink:from="uk-aurep_FeesForNon-auditServices" xlink:to="uk-aurep_OtherServicesPursuantToSuchLegislationFees" order="2" use="optional" />
78
+ <loc xlink:type="locator" xlink:href="uk-aurep-2009-09-01.xsd#uk-aurep_OtherServicesPursuantToSuchLegislationPensionSchemesFees" xlink:label="uk-aurep_OtherServicesPursuantToSuchLegislationPensionSchemesFees" />
79
+ <presentationArc xlink:type="arc" xlink:arcrole="http://www.xbrl.org/2003/arcrole/parent-child" xlink:from="uk-aurep_OtherServicesPursuantToSuchLegislationFees" xlink:to="uk-aurep_OtherServicesPursuantToSuchLegislationPensionSchemesFees" order="1" use="optional" />
80
+ <loc xlink:type="locator" xlink:href="uk-aurep-2009-09-01.xsd#uk-aurep_OtherServicesPursuantToSuchLegislationEntitySubsidiariesFees" xlink:label="uk-aurep_OtherServicesPursuantToSuchLegislationEntitySubsidiariesFees" />
81
+ <presentationArc xlink:type="arc" xlink:arcrole="http://www.xbrl.org/2003/arcrole/parent-child" xlink:from="uk-aurep_OtherServicesPursuantToSuchLegislationFees" xlink:to="uk-aurep_OtherServicesPursuantToSuchLegislationEntitySubsidiariesFees" order="2" use="optional" />
82
+ <loc xlink:type="locator" xlink:href="uk-aurep-2009-09-01.xsd#uk-aurep_TaxationServicesFees" xlink:label="uk-aurep_TaxationServicesFees" />
83
+ <presentationArc xlink:type="arc" xlink:arcrole="http://www.xbrl.org/2003/arcrole/parent-child" xlink:from="uk-aurep_FeesForNon-auditServices" xlink:to="uk-aurep_TaxationServicesFees" order="3" use="optional" />
84
+ <loc xlink:type="locator" xlink:href="uk-aurep-2009-09-01.xsd#uk-aurep_TaxationServicesPensionSchemesFees" xlink:label="uk-aurep_TaxationServicesPensionSchemesFees" />
85
+ <presentationArc xlink:type="arc" xlink:arcrole="http://www.xbrl.org/2003/arcrole/parent-child" xlink:from="uk-aurep_TaxationServicesFees" xlink:to="uk-aurep_TaxationServicesPensionSchemesFees" order="1" use="optional" />
86
+ <loc xlink:type="locator" xlink:href="uk-aurep-2009-09-01.xsd#uk-aurep_TaxationServicesEntitySubsidiariesFees" xlink:label="uk-aurep_TaxationServicesEntitySubsidiariesFees" />
87
+ <presentationArc xlink:type="arc" xlink:arcrole="http://www.xbrl.org/2003/arcrole/parent-child" xlink:from="uk-aurep_TaxationServicesFees" xlink:to="uk-aurep_TaxationServicesEntitySubsidiariesFees" order="2" use="optional" />
88
+ <loc xlink:type="locator" xlink:href="uk-aurep-2009-09-01.xsd#uk-aurep_InformationTechnologyServicesFees" xlink:label="uk-aurep_InformationTechnologyServicesFees" />
89
+ <presentationArc xlink:type="arc" xlink:arcrole="http://www.xbrl.org/2003/arcrole/parent-child" xlink:from="uk-aurep_FeesForNon-auditServices" xlink:to="uk-aurep_InformationTechnologyServicesFees" order="4" use="optional" />
90
+ <loc xlink:type="locator" xlink:href="uk-aurep-2009-09-01.xsd#uk-aurep_InformationTechnologyServicesPensionSchemesFees" xlink:label="uk-aurep_InformationTechnologyServicesPensionSchemesFees" />
91
+ <presentationArc xlink:type="arc" xlink:arcrole="http://www.xbrl.org/2003/arcrole/parent-child" xlink:from="uk-aurep_InformationTechnologyServicesFees" xlink:to="uk-aurep_InformationTechnologyServicesPensionSchemesFees" order="1" use="optional" />
92
+ <loc xlink:type="locator" xlink:href="uk-aurep-2009-09-01.xsd#uk-aurep_InformationTechnologyServicesEntitySubsidiariesFees" xlink:label="uk-aurep_InformationTechnologyServicesEntitySubsidiariesFees" />
93
+ <presentationArc xlink:type="arc" xlink:arcrole="http://www.xbrl.org/2003/arcrole/parent-child" xlink:from="uk-aurep_InformationTechnologyServicesFees" xlink:to="uk-aurep_InformationTechnologyServicesEntitySubsidiariesFees" order="2" use="optional" />
94
+ <loc xlink:type="locator" xlink:href="uk-aurep-2009-09-01.xsd#uk-aurep_InternalAuditFees" xlink:label="uk-aurep_InternalAuditFees" />
95
+ <presentationArc xlink:type="arc" xlink:arcrole="http://www.xbrl.org/2003/arcrole/parent-child" xlink:from="uk-aurep_FeesForNon-auditServices" xlink:to="uk-aurep_InternalAuditFees" order="5" use="optional" />
96
+ <loc xlink:type="locator" xlink:href="uk-aurep-2009-09-01.xsd#uk-aurep_InternalAuditPensionSchemesFees" xlink:label="uk-aurep_InternalAuditPensionSchemesFees" />
97
+ <presentationArc xlink:type="arc" xlink:arcrole="http://www.xbrl.org/2003/arcrole/parent-child" xlink:from="uk-aurep_InternalAuditFees" xlink:to="uk-aurep_InternalAuditPensionSchemesFees" order="1" use="optional" />
98
+ <loc xlink:type="locator" xlink:href="uk-aurep-2009-09-01.xsd#uk-aurep_InternalAuditEntitySubsidiariesFees" xlink:label="uk-aurep_InternalAuditEntitySubsidiariesFees" />
99
+ <presentationArc xlink:type="arc" xlink:arcrole="http://www.xbrl.org/2003/arcrole/parent-child" xlink:from="uk-aurep_InternalAuditFees" xlink:to="uk-aurep_InternalAuditEntitySubsidiariesFees" order="2" use="optional" />
100
+ <loc xlink:type="locator" xlink:href="uk-aurep-2009-09-01.xsd#uk-aurep_LitigationServicesFees" xlink:label="uk-aurep_LitigationServicesFees" />
101
+ <presentationArc xlink:type="arc" xlink:arcrole="http://www.xbrl.org/2003/arcrole/parent-child" xlink:from="uk-aurep_FeesForNon-auditServices" xlink:to="uk-aurep_LitigationServicesFees" order="6" use="optional" />
102
+ <loc xlink:type="locator" xlink:href="uk-aurep-2009-09-01.xsd#uk-aurep_LitigationServicesPensionSchemesFees" xlink:label="uk-aurep_LitigationServicesPensionSchemesFees" />
103
+ <presentationArc xlink:type="arc" xlink:arcrole="http://www.xbrl.org/2003/arcrole/parent-child" xlink:from="uk-aurep_LitigationServicesFees" xlink:to="uk-aurep_LitigationServicesPensionSchemesFees" order="1" use="optional" />
104
+ <loc xlink:type="locator" xlink:href="uk-aurep-2009-09-01.xsd#uk-aurep_LitigationServicesEntitySubsidiariesFees" xlink:label="uk-aurep_LitigationServicesEntitySubsidiariesFees" />
105
+ <presentationArc xlink:type="arc" xlink:arcrole="http://www.xbrl.org/2003/arcrole/parent-child" xlink:from="uk-aurep_LitigationServicesFees" xlink:to="uk-aurep_LitigationServicesEntitySubsidiariesFees" order="2" use="optional" />
106
+ <loc xlink:type="locator" xlink:href="uk-aurep-2009-09-01.xsd#uk-aurep_RecruitmentRemunerationServicesFees" xlink:label="uk-aurep_RecruitmentRemunerationServicesFees" />
107
+ <presentationArc xlink:type="arc" xlink:arcrole="http://www.xbrl.org/2003/arcrole/parent-child" xlink:from="uk-aurep_FeesForNon-auditServices" xlink:to="uk-aurep_RecruitmentRemunerationServicesFees" order="7" use="optional" />
108
+ <loc xlink:type="locator" xlink:href="uk-aurep-2009-09-01.xsd#uk-aurep_RecruitmentRemunerationServicesPensionSchemesFees" xlink:label="uk-aurep_RecruitmentRemunerationServicesPensionSchemesFees" />
109
+ <presentationArc xlink:type="arc" xlink:arcrole="http://www.xbrl.org/2003/arcrole/parent-child" xlink:from="uk-aurep_RecruitmentRemunerationServicesFees" xlink:to="uk-aurep_RecruitmentRemunerationServicesPensionSchemesFees" order="1" use="optional" />
110
+ <loc xlink:type="locator" xlink:href="uk-aurep-2009-09-01.xsd#uk-aurep_RecruitmentRemunerationServicesEntitySubsidiariesFees" xlink:label="uk-aurep_RecruitmentRemunerationServicesEntitySubsidiariesFees" />
111
+ <presentationArc xlink:type="arc" xlink:arcrole="http://www.xbrl.org/2003/arcrole/parent-child" xlink:from="uk-aurep_RecruitmentRemunerationServicesFees" xlink:to="uk-aurep_RecruitmentRemunerationServicesEntitySubsidiariesFees" order="2" use="optional" />
112
+ <loc xlink:type="locator" xlink:href="uk-aurep-2009-09-01.xsd#uk-aurep_CorporateFinanceTransactionsFees" xlink:label="uk-aurep_CorporateFinanceTransactionsFees" />
113
+ <presentationArc xlink:type="arc" xlink:arcrole="http://www.xbrl.org/2003/arcrole/parent-child" xlink:from="uk-aurep_FeesForNon-auditServices" xlink:to="uk-aurep_CorporateFinanceTransactionsFees" order="8" use="optional" />
114
+ <loc xlink:type="locator" xlink:href="uk-aurep-2009-09-01.xsd#uk-aurep_CorporateFinanceTransactionsPensionSchemesFees" xlink:label="uk-aurep_CorporateFinanceTransactionsPensionSchemesFees" />
115
+ <presentationArc xlink:type="arc" xlink:arcrole="http://www.xbrl.org/2003/arcrole/parent-child" xlink:from="uk-aurep_CorporateFinanceTransactionsFees" xlink:to="uk-aurep_CorporateFinanceTransactionsPensionSchemesFees" order="1" use="optional" />
116
+ <loc xlink:type="locator" xlink:href="uk-aurep-2009-09-01.xsd#uk-aurep_CorporateFinanceTransactionsEntitySubsidiariesFees" xlink:label="uk-aurep_CorporateFinanceTransactionsEntitySubsidiariesFees" />
117
+ <presentationArc xlink:type="arc" xlink:arcrole="http://www.xbrl.org/2003/arcrole/parent-child" xlink:from="uk-aurep_CorporateFinanceTransactionsFees" xlink:to="uk-aurep_CorporateFinanceTransactionsEntitySubsidiariesFees" order="2" use="optional" />
118
+ <loc xlink:type="locator" xlink:href="uk-aurep-2009-09-01.xsd#uk-aurep_OtherNon-auditServicesFees" xlink:label="uk-aurep_OtherNon-auditServicesFees" />
119
+ <presentationArc xlink:type="arc" xlink:arcrole="http://www.xbrl.org/2003/arcrole/parent-child" xlink:from="uk-aurep_FeesForNon-auditServices" xlink:to="uk-aurep_OtherNon-auditServicesFees" order="9" use="optional" />
120
+ <loc xlink:type="locator" xlink:href="uk-aurep-2009-09-01.xsd#uk-aurep_OtherNon-auditServicesPensionSchemesFees" xlink:label="uk-aurep_OtherNon-auditServicesPensionSchemesFees" />
121
+ <presentationArc xlink:type="arc" xlink:arcrole="http://www.xbrl.org/2003/arcrole/parent-child" xlink:from="uk-aurep_OtherNon-auditServicesFees" xlink:to="uk-aurep_OtherNon-auditServicesPensionSchemesFees" order="1" use="optional" />
122
+ <loc xlink:type="locator" xlink:href="uk-aurep-2009-09-01.xsd#uk-aurep_OtherNon-auditServicesEntitySubsidiariesFees" xlink:label="uk-aurep_OtherNon-auditServicesEntitySubsidiariesFees" />
123
+ <presentationArc xlink:type="arc" xlink:arcrole="http://www.xbrl.org/2003/arcrole/parent-child" xlink:from="uk-aurep_OtherNon-auditServicesFees" xlink:to="uk-aurep_OtherNon-auditServicesEntitySubsidiariesFees" order="2" use="optional" />
124
+ <loc xlink:type="locator" xlink:href="uk-aurep-2009-09-01.xsd#uk-aurep_DescriptionBenefitsInKindForNon-auditServices" xlink:label="uk-aurep_DescriptionBenefitsInKindForNon-auditServices" />
125
+ <presentationArc xlink:type="arc" xlink:arcrole="http://www.xbrl.org/2003/arcrole/parent-child" xlink:from="uk-aurep_FeesForNon-auditServices" xlink:to="uk-aurep_DescriptionBenefitsInKindForNon-auditServices" order="10" use="optional" />
126
+ <loc xlink:type="locator" xlink:href="uk-aurep-2009-09-01.xsd#uk-aurep_EstimatedMoneyValueBenefitsInKindForNon-auditServices" xlink:label="uk-aurep_EstimatedMoneyValueBenefitsInKindForNon-auditServices" />
127
+ <presentationArc xlink:type="arc" xlink:arcrole="http://www.xbrl.org/2003/arcrole/parent-child" xlink:from="uk-aurep_FeesForNon-auditServices" xlink:to="uk-aurep_EstimatedMoneyValueBenefitsInKindForNon-auditServices" order="11" use="optional" />
128
+ <loc xlink:type="locator" xlink:href="uk-aurep-2009-09-01.xsd#uk-aurep_UseDimensionsToIdentifyDifferentAuditorsAccountantsToDistinguishPaymentsByRegionExplanation" xlink:label="uk-aurep_UseDimensionsToIdentifyDifferentAuditorsAccountantsToDistinguishPaymentsByRegionExplanation" />
129
+ <presentationArc xlink:type="arc" xlink:arcrole="http://www.xbrl.org/2003/arcrole/parent-child" xlink:from="uk-aurep_TotalFeesToAuditors" xlink:to="uk-aurep_UseDimensionsToIdentifyDifferentAuditorsAccountantsToDistinguishPaymentsByRegionExplanation" order="3" use="optional" />
130
+ <loc xlink:type="locator" xlink:href="uk-aurep-2009-09-01.xsd#uk-aurep_FeesToAuditorsFree-textComment" xlink:label="uk-aurep_FeesToAuditorsFree-textComment" />
131
+ <presentationArc xlink:type="arc" xlink:arcrole="http://www.xbrl.org/2003/arcrole/parent-child" xlink:from="uk-aurep_FeesToAuditorsHeading" xlink:to="uk-aurep_FeesToAuditorsFree-textComment" order="3" use="optional" />
132
+ </presentationLink>
133
+ </linkbase>