source: gs3-extensions/solr/trunk/src/collect/solr-jdbm-demo/etc/conf/currency.xml@ 30001

Last change on this file since 30001 was 30001, checked in by ak19, 9 years ago

Final commit (I think) to get update to solr getTerms() to work on gs3 checkout. The solr-jdbm-demo collection needed to be rebuilt with the changes to the index. This time added in other .xml files from the lucene/solr upgrade to the colleciton, and updated schema.xml and solrconfig.xml. This last is especially necessary as it uses the new Greenstone custom SearchHandler to get getTerms() to work.

File size: 3.9 KB
Line 
1<?xml version="1.0" ?>
2<!--
3 Licensed to the Apache Software Foundation (ASF) under one or more
4 contributor license agreements. See the NOTICE file distributed with
5 this work for additional information regarding copyright ownership.
6 The ASF licenses this file to You under the Apache License, Version 2.0
7 (the "License"); you may not use this file except in compliance with
8 the License. You may obtain a copy of the License at
9
10 http://www.apache.org/licenses/LICENSE-2.0
11
12 Unless required by applicable law or agreed to in writing, software
13 distributed under the License is distributed on an "AS IS" BASIS,
14 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 See the License for the specific language governing permissions and
16 limitations under the License.
17-->
18
19<!-- Example exchange rates file for CurrencyField type named "currency" in example schema -->
20
21<currencyConfig version="1.0">
22 <rates>
23 <!-- Updated from http://www.exchangerate.com/ at 2011-09-27 -->
24 <rate from="USD" to="ARS" rate="4.333871" comment="ARGENTINA Peso" />
25 <rate from="USD" to="AUD" rate="1.025768" comment="AUSTRALIA Dollar" />
26 <rate from="USD" to="EUR" rate="0.743676" comment="European Euro" />
27 <rate from="USD" to="BRL" rate="1.881093" comment="BRAZIL Real" />
28 <rate from="USD" to="CAD" rate="1.030815" comment="CANADA Dollar" />
29 <rate from="USD" to="CLP" rate="519.0996" comment="CHILE Peso" />
30 <rate from="USD" to="CNY" rate="6.387310" comment="CHINA Yuan" />
31 <rate from="USD" to="CZK" rate="18.47134" comment="CZECH REP. Koruna" />
32 <rate from="USD" to="DKK" rate="5.515436" comment="DENMARK Krone" />
33 <rate from="USD" to="HKD" rate="7.801922" comment="HONG KONG Dollar" />
34 <rate from="USD" to="HUF" rate="215.6169" comment="HUNGARY Forint" />
35 <rate from="USD" to="ISK" rate="118.1280" comment="ICELAND Krona" />
36 <rate from="USD" to="INR" rate="49.49088" comment="INDIA Rupee" />
37 <rate from="USD" to="XDR" rate="0.641358" comment="INTNL MON. FUND SDR" />
38 <rate from="USD" to="ILS" rate="3.709739" comment="ISRAEL Sheqel" />
39 <rate from="USD" to="JPY" rate="76.32419" comment="JAPAN Yen" />
40 <rate from="USD" to="KRW" rate="1169.173" comment="KOREA (SOUTH) Won" />
41 <rate from="USD" to="KWD" rate="0.275142" comment="KUWAIT Dinar" />
42 <rate from="USD" to="MXN" rate="13.85895" comment="MEXICO Peso" />
43 <rate from="USD" to="NZD" rate="1.285159" comment="NEW ZEALAND Dollar" />
44 <rate from="USD" to="NOK" rate="5.859035" comment="NORWAY Krone" />
45 <rate from="USD" to="PKR" rate="87.57007" comment="PAKISTAN Rupee" />
46 <rate from="USD" to="PEN" rate="2.730683" comment="PERU Sol" />
47 <rate from="USD" to="PHP" rate="43.62039" comment="PHILIPPINES Peso" />
48 <rate from="USD" to="PLN" rate="3.310139" comment="POLAND Zloty" />
49 <rate from="USD" to="RON" rate="3.100932" comment="ROMANIA Leu" />
50 <rate from="USD" to="RUB" rate="32.14663" comment="RUSSIA Ruble" />
51 <rate from="USD" to="SAR" rate="3.750465" comment="SAUDI ARABIA Riyal" />
52 <rate from="USD" to="SGD" rate="1.299352" comment="SINGAPORE Dollar" />
53 <rate from="USD" to="ZAR" rate="8.329761" comment="SOUTH AFRICA Rand" />
54 <rate from="USD" to="SEK" rate="6.883442" comment="SWEDEN Krona" />
55 <rate from="USD" to="CHF" rate="0.906035" comment="SWITZERLAND Franc" />
56 <rate from="USD" to="TWD" rate="30.40283" comment="TAIWAN Dollar" />
57 <rate from="USD" to="THB" rate="30.89487" comment="THAILAND Baht" />
58 <rate from="USD" to="AED" rate="3.672955" comment="U.A.E. Dirham" />
59 <rate from="USD" to="UAH" rate="7.988582" comment="UKRAINE Hryvnia" />
60 <rate from="USD" to="GBP" rate="0.647910" comment="UNITED KINGDOM Pound" />
61
62 <!-- Cross-rates for some common currencies -->
63 <rate from="EUR" to="GBP" rate="0.869914" />
64 <rate from="EUR" to="NOK" rate="7.800095" />
65 <rate from="GBP" to="NOK" rate="8.966508" />
66 </rates>
67</currencyConfig>
Note: See TracBrowser for help on using the repository browser.