Index: openacs-4/packages/ajaxhelper/www/resources/dojo-ajax/src/crypto/LICENSE =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/ajaxhelper/www/resources/dojo-ajax/src/crypto/Attic/LICENSE,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ openacs-4/packages/ajaxhelper/www/resources/dojo-ajax/src/crypto/LICENSE 7 Nov 2006 03:41:50 -0000 1.1 @@ -0,0 +1,11 @@ +License Disclaimer: + +All contents of this directory are Copyright (c) the Dojo Foundation, with the +following exceptions: +------------------------------------------------------------------------------- + +MD5.js, SHA1.js: + * Copyright 1998-2005, Paul Johnstone + Distributed under the terms of the BSD License + + Index: openacs-4/packages/ajaxhelper/www/resources/dojo-ajax/src/data/csv/CsvStore.js =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/ajaxhelper/www/resources/dojo-ajax/src/data/csv/Attic/CsvStore.js,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ openacs-4/packages/ajaxhelper/www/resources/dojo-ajax/src/data/csv/CsvStore.js 7 Nov 2006 03:41:50 -0000 1.1 @@ -0,0 +1,220 @@ +/* + Copyright (c) 2004-2006, The Dojo Foundation + All Rights Reserved. + + Licensed under the Academic Free License version 2.1 or above OR the + modified BSD license. For more information on Dojo licensing, see: + + http://dojotoolkit.org/community/licensing.shtml +*/ + +dojo.provide("dojo.data.csv.CsvStore"); +dojo.require("dojo.data.Read"); +dojo.require("dojo.lang.assert"); + +dojo.declare("dojo.data.csv.CsvStore", dojo.data.Read, { + /* summary: + * The CsvStore implements the dojo.data.Read API. + */ + + /* examples: + * var csvStore = new dojo.data.csv.CsvStore({url:"movies.csv"); + * var csvStore = new dojo.data.csv.CsvStore({url:"http://example.com/movies.csv"); + * var fileContents = dojo.hostenv.getText("movies.csv"); + * var csvStore = new dojo.data.csv.CsvStore({string:fileContents); + */ + initializer: + function(/* object */ keywordParameters) { + // keywordParameters: {string: String, url: String} + this._arrayOfItems = []; + this._loadFinished = false; + this._csvFileUrl = keywordParameters["url"]; + this._csvFileContents = keywordParameters["string"]; + }, + get: + function(/* item */ item, /* attribute or attribute-name-string */ attribute, /* value? */ defaultValue) { + // summary: See dojo.data.Read.get() + var attributeValue = item[attribute] || defaultValue; + return attributeValue; // a literal, an item, null, or undefined (never an array) + }, + getValues: + function(/* item */ item, /* attribute or attribute-name-string */ attribute) { + // summary: See dojo.data.Read.getValues() + var array = [this.get(item, attribute)]; + return array; // an array that may contain literals and items + }, + getAttributes: + function(/* item */ item) { + // summary: See dojo.data.Read.getAttributes() + var array = this._arrayOfKeys; + return array; // array + }, + hasAttribute: + function(/* item */ item, /* attribute or attribute-name-string */ attribute) { + // summary: See dojo.data.Read.hasAttribute() + for (var i in this._arrayOfKeys) { + if (this._arrayOfKeys[i] == attribute) { + return true; + } + } + return false; // boolean + }, + hasAttributeValue: + function(/* item */ item, /* attribute or attribute-name-string */ attribute, /* anything */ value) { + // summary: See dojo.data.Read.hasAttributeValue() + return (this.get(item, attribute) == value); // boolean + }, + isItem: + function(/* anything */ something) { + // summary: See dojo.data.Read.isItem() + for (var i in this._arrayOfItems) { + if (this._arrayOfItems[i] == something) { + return true; + } + } + return false; // boolean + }, + find: + function(/* implementation-dependent */ query, /* object */ optionalKeywordArgs ) { + // summary: See dojo.data.Read.find() + if (!this._loadFinished) { + if (this._csvFileUrl) { + this._csvFileContents = dojo.hostenv.getText(this._csvFileUrl); + } + var arrayOfArrays = this._getArrayOfArraysFromCsvFileContents(this._csvFileContents); + if (arrayOfArrays.length == 0) { + this._arrayOfKeys = []; + } else { + this._arrayOfKeys = arrayOfArrays[0]; + } + this._arrayOfItems = this._getArrayOfItemsFromArrayOfArrays(arrayOfArrays); + } + var result = new dojo.data.csv.Result(this._arrayOfItems, this); + return result; // dojo.data.csv.Result + }, + getIdentity: + function(/* item */ item) { + // summary: See dojo.data.Read.getIdentity() + for (var i in this._arrayOfItems) { + if (this._arrayOfItems[i] == item) { + return i; + } + } + return null; // boolean + }, + getByIdentity: + function(/* string */ id) { + // summary: See dojo.data.Read.getByIdentity() + var i = parseInt(id); + if (i < this._arrayOfItems.length) { + return this._arrayOfItems[i]; + } else { + return null; + } + }, + + // ------------------------------------------------------------------- + // Private methods + _getArrayOfArraysFromCsvFileContents: + function(/* string */ csvFileContents) { + /* summary: + * Parses a string of CSV records into a nested array structure. + * description: + * Given a string containing CSV records, this method parses + * the string and returns a data structure containing the parsed + * content. The data structure we return is an array of length + * R, where R is the number of rows (lines) in the CSV data. The + * return array contains one sub-array for each CSV line, and each + * sub-array contains C string values, where C is the number of + * columns in the CSV data. + */ + + /* example: + * For example, given this CSV string as input: + * "Title, Year, Producer \n Alien, 1979, Ridley Scott \n Blade Runner, 1982, Ridley Scott" + * We will return this data structure: + * [["Title", "Year", "Producer"] + * ["Alien", "1979", "Ridley Scott"], + * ["Blade Runner", "1982", "Ridley Scott"]] + */ + dojo.lang.assertType(csvFileContents, String); + + var lineEndingCharacters = new RegExp("\r\n|\n|\r"); + var leadingWhiteSpaceCharacters = new RegExp("^\\s+",'g'); + var trailingWhiteSpaceCharacters = new RegExp("\\s+$",'g'); + var doubleQuotes = new RegExp('""','g'); + var arrayOfOutputRecords = []; + + var arrayOfInputLines = csvFileContents.split(lineEndingCharacters); + for (var i in arrayOfInputLines) { + var singleLine = arrayOfInputLines[i]; + if (singleLine.length > 0) { + var listOfFields = singleLine.split(','); + var j = 0; + while (j < listOfFields.length) { + var space_field_space = listOfFields[j]; + var field_space = space_field_space.replace(leadingWhiteSpaceCharacters, ''); // trim leading whitespace + var field = field_space.replace(trailingWhiteSpaceCharacters, ''); // trim trailing whitespace + var firstChar = field.charAt(0); + var lastChar = field.charAt(field.length - 1); + var secondToLastChar = field.charAt(field.length - 2); + var thirdToLastChar = field.charAt(field.length - 3); + if ((firstChar == '"') && + ((lastChar != '"') || + ((lastChar == '"') && (secondToLastChar == '"') && (thirdToLastChar != '"')) )) { + if (j+1 === listOfFields.length) { + // alert("The last field in record " + i + " is corrupted:\n" + field); + return null; + } + var nextField = listOfFields[j+1]; + listOfFields[j] = field_space + ',' + nextField; + listOfFields.splice(j+1, 1); // delete element [j+1] from the list + } else { + if ((firstChar == '"') && (lastChar == '"')) { + field = field.slice(1, (field.length - 1)); // trim the " characters off the ends + field = field.replace(doubleQuotes, '"'); // replace "" with " + } + listOfFields[j] = field; + j += 1; + } + } + arrayOfOutputRecords.push(listOfFields); + } + } + return arrayOfOutputRecords; // Array + }, + + _getArrayOfItemsFromArrayOfArrays: + function(/* array */ arrayOfArrays) { + /* summary: + * Converts a nested array structure into an array of keyword objects. + */ + + /* example: + * For example, given this as input: + * [["Title", "Year", "Producer"] + * ["Alien", "1979", "Ridley Scott"], + * ["Blade Runner", "1982", "Ridley Scott"]] + * We will return this as output: + * [{"Title":"Alien", "Year":"1979", "Producer":"Ridley Scott"}, + * {"Title":"Blade Runner", "Year":"1982", "Producer":"Ridley Scott"}] + */ + dojo.lang.assertType(arrayOfArrays, Array); + var arrayOfItems = []; + if (arrayOfArrays.length > 1) { + var arrayOfKeys = arrayOfArrays[0]; + for (var i = 1; i < arrayOfArrays.length; ++i) { + var row = arrayOfArrays[i]; + var item = {}; + for (var j in row) { + var value = row[j]; + var key = arrayOfKeys[j]; + item[key] = value; + } + arrayOfItems.push(item); + } + } + return arrayOfItems; // Array + } +}); + Index: openacs-4/packages/ajaxhelper/www/resources/dojo-ajax/src/data/csv/Result.js =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/ajaxhelper/www/resources/dojo-ajax/src/data/csv/Attic/Result.js,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ openacs-4/packages/ajaxhelper/www/resources/dojo-ajax/src/data/csv/Result.js 7 Nov 2006 03:41:50 -0000 1.1 @@ -0,0 +1,81 @@ +/* + Copyright (c) 2004-2006, The Dojo Foundation + All Rights Reserved. + + Licensed under the Academic Free License version 2.1 or above OR the + modified BSD license. For more information on Dojo licensing, see: + + http://dojotoolkit.org/community/licensing.shtml +*/ + +dojo.provide("dojo.data.csv.Result"); +dojo.require("dojo.data.Result"); +dojo.require("dojo.lang.assert"); + +dojo.declare("dojo.data.csv.Result", dojo.data.Result, { + /* summary: + * dojo.data.csv.Result implements the dojo.data.Result API. This + * is a fairly general purpose Result object that could be used + * by any datastore implementation that can provide an array of items + * in response to a query. + */ + initializer: + function(/* array */ arrayOfItems, /* object */ dataStore) { + dojo.lang.assertType(arrayOfItems, Array); + this._arrayOfItems = arrayOfItems; + this._dataStore = dataStore; + this._cancel = false; + this._inProgress = false; + }, + forEach: + function(/* function */ callbackFunction, /* object? */ callbackObject, /* object? */ optionalKeywordArgs) { + // summary: See dojo.data.Result.forEach() + dojo.lang.assertType(callbackFunction, Function); + dojo.lang.assertType(callbackObject, Object, {optional:true}); + dojo.lang.assertType(optionalKeywordArgs, "pureobject", {optional:true}); + this._inProgress = true; + for (var i in this._arrayOfItems) { + var item = this._arrayOfItems[i]; + if (!this._cancel) { + callbackFunction.call(callbackObject, item, i, this); + } + } + this._inProgress = false; + this._cancel = false; + + return true; // boolean + }, + getLength: + function() { + // summary: See dojo.data.Result.getLength() + return this._arrayOfItems.length; // integer + }, + inProgress: + function() { + // summary: See dojo.data.Result.inProgress() + return this._inProgress; // boolean + }, + cancel: + function() { + // summary: See dojo.data.Result.cancel() + if (this._inProgress) { + this._cancel = true; + } + }, + setOnFindCompleted: + function(/* function */ callbackFunction, /* object? */ callbackObject) { + // summary: See dojo.data.Result.setOnFindCompleted() + dojo.unimplemented('dojo.data.csv.Result.setOnFindCompleted'); + }, + setOnError: + function(/* function */ errorCallbackFunction, /* object? */ callbackObject) { + // summary: See dojo.data.Result.setOnError() + dojo.unimplemented('dojo.data.csv.Result.setOnError'); + }, + getStore: + function() { + // summary: See dojo.data.Result.getStore() + return this._dataStore; // an object that implements dojo.data.Read + } +}); + Index: openacs-4/packages/ajaxhelper/www/resources/dojo-ajax/src/data/csv/__package__.js =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/ajaxhelper/www/resources/dojo-ajax/src/data/csv/Attic/__package__.js,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ openacs-4/packages/ajaxhelper/www/resources/dojo-ajax/src/data/csv/__package__.js 7 Nov 2006 03:41:50 -0000 1.1 @@ -0,0 +1,21 @@ +/* + Copyright (c) 2004-2006, The Dojo Foundation + All Rights Reserved. + + Licensed under the Academic Free License version 2.1 or above OR the + modified BSD license. For more information on Dojo licensing, see: + + http://dojotoolkit.org/community/licensing.shtml +*/ + +dojo.require("dojo.experimental"); + +dojo.experimental("dojo.data.csv.*"); +dojo.kwCompoundRequire({ + common: [ + "dojo.data.csv.CsvStore", + "dojo.data.csv.Result" + ] +}); +dojo.provide("dojo.data.csv.*"); + Index: openacs-4/packages/ajaxhelper/www/resources/dojo-ajax/src/graphics/color/hsl.js =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/ajaxhelper/www/resources/dojo-ajax/src/graphics/color/Attic/hsl.js,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ openacs-4/packages/ajaxhelper/www/resources/dojo-ajax/src/graphics/color/hsl.js 7 Nov 2006 03:41:50 -0000 1.1 @@ -0,0 +1,33 @@ +/* + Copyright (c) 2004-2006, The Dojo Foundation + All Rights Reserved. + + Licensed under the Academic Free License version 2.1 or above OR the + modified BSD license. For more information on Dojo licensing, see: + + http://dojotoolkit.org/community/licensing.shtml +*/ + +dojo.provide("dojo.graphics.color.hsl"); +dojo.require("dojo.gfx.color.hsl"); + +dojo.deprecated("dojo.graphics.color.hsl has been replaced with dojo.gfx.color.hsl", "0.5"); + +dojo.graphics.color.rgb2hsl = function(r, g, b){ + dojo.deprecated("dojo.graphics.color.rgb2hsl has been replaced with dojo.gfx.color.rgb2hsl", "0.5"); + return dojo.gfx.color.rgb2hsl(r, g, b); +} +dojo.graphics.color.hsl2rgb = function(h, s, l){ + dojo.deprecated("dojo.graphics.color.hsl2rgb has been replaced with dojo.gfx.color.hsl2rgb", "0.5"); + return dojo.gfx.color.hsl2rgb(h, s, l); +} + +dojo.graphics.color.hsl2hex = function(h, s, l){ + dojo.deprecated("dojo.graphics.color.hsl2hex has been replaced with dojo.gfx.color.hsl2hex", "0.5"); + return dojo.gfx.color.hsl2hex(h, s, l); +} + +dojo.graphics.color.hex2hsl = function(hex){ + dojo.deprecated("dojo.graphics.color.hex2hsl has been replaced with dojo.gfx.color.hex2hsl", "0.5"); + return dojo.gfx.color.hex2hsl(hex); +} Index: openacs-4/packages/ajaxhelper/www/resources/dojo-ajax/src/graphics/color/hsv.js =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/ajaxhelper/www/resources/dojo-ajax/src/graphics/color/Attic/hsv.js,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ openacs-4/packages/ajaxhelper/www/resources/dojo-ajax/src/graphics/color/hsv.js 7 Nov 2006 03:41:50 -0000 1.1 @@ -0,0 +1,23 @@ +/* + Copyright (c) 2004-2006, The Dojo Foundation + All Rights Reserved. + + Licensed under the Academic Free License version 2.1 or above OR the + modified BSD license. For more information on Dojo licensing, see: + + http://dojotoolkit.org/community/licensing.shtml +*/ + +dojo.provide("dojo.graphics.color.hsv"); +dojo.require("dojo.gfx.color.hsv"); + +dojo.deprecated("dojo.graphics.color.hsv has been replaced by dojo.gfx.color.hsv", "0.5"); + +dojo.graphics.color.rgb2hsv = function(r, g, b){ + dojo.deprecated("dojo.graphics.color.rgb2hsv has been replaced by dojo.gfx.color.rgb2hsv", "0.5"); + return dojo.gfx.color.rgb2hsv(r, g, b); +} +dojo.graphics.color.hsv2rgb = function(h, s, v){ + dojo.deprecated("dojo.graphics.color.hsv2rgb has been replaced by dojo.gfx.color.hsv2rgb", "0.5"); + return dojo.gfx.color.hsv2rgb(h, s, v); +} Index: openacs-4/packages/ajaxhelper/www/resources/dojo-ajax/src/i18n/currency/nls/README =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/ajaxhelper/www/resources/dojo-ajax/src/i18n/currency/nls/Attic/README,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ openacs-4/packages/ajaxhelper/www/resources/dojo-ajax/src/i18n/currency/nls/README 7 Nov 2006 03:41:51 -0000 1.1 @@ -0,0 +1,6 @@ +All files within this directory and subdirectories were manually derived from http://unicode.org/cldr + +See terms of use: http://www.unicode.org/copyright.html#Exhibit1 + +Eventually, this data should be generated directly from the XML in the CLDR repository to provide +accurate and full support for the full set of locales. Index: openacs-4/packages/ajaxhelper/www/resources/dojo-ajax/src/i18n/currency/nls/en/EUR.js =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/ajaxhelper/www/resources/dojo-ajax/src/i18n/currency/nls/en/Attic/EUR.js,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ openacs-4/packages/ajaxhelper/www/resources/dojo-ajax/src/i18n/currency/nls/en/EUR.js 7 Nov 2006 03:41:51 -0000 1.1 @@ -0,0 +1,13 @@ +/* + Copyright (c) 2004-2006, The Dojo Foundation + All Rights Reserved. + + Licensed under the Academic Free License version 2.1 or above OR the + modified BSD license. For more information on Dojo licensing, see: + + http://dojotoolkit.org/community/licensing.shtml +*/ + +({ + displayName: "Euro" +}) \ No newline at end of file Index: openacs-4/packages/ajaxhelper/www/resources/dojo-ajax/src/i18n/currency/nls/en/GBP.js =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/ajaxhelper/www/resources/dojo-ajax/src/i18n/currency/nls/en/Attic/GBP.js,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ openacs-4/packages/ajaxhelper/www/resources/dojo-ajax/src/i18n/currency/nls/en/GBP.js 7 Nov 2006 03:41:51 -0000 1.1 @@ -0,0 +1,13 @@ +/* + Copyright (c) 2004-2006, The Dojo Foundation + All Rights Reserved. + + Licensed under the Academic Free License version 2.1 or above OR the + modified BSD license. For more information on Dojo licensing, see: + + http://dojotoolkit.org/community/licensing.shtml +*/ + +({ + displayName: "British Pound Sterling" +}) \ No newline at end of file Index: openacs-4/packages/ajaxhelper/www/resources/dojo-ajax/src/i18n/currency/nls/en/INR.js =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/ajaxhelper/www/resources/dojo-ajax/src/i18n/currency/nls/en/Attic/INR.js,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ openacs-4/packages/ajaxhelper/www/resources/dojo-ajax/src/i18n/currency/nls/en/INR.js 7 Nov 2006 03:41:51 -0000 1.1 @@ -0,0 +1,13 @@ +/* + Copyright (c) 2004-2006, The Dojo Foundation + All Rights Reserved. + + Licensed under the Academic Free License version 2.1 or above OR the + modified BSD license. For more information on Dojo licensing, see: + + http://dojotoolkit.org/community/licensing.shtml +*/ + +({ + displayName: "Indian Rupee" +}) \ No newline at end of file Index: openacs-4/packages/ajaxhelper/www/resources/dojo-ajax/src/i18n/currency/nls/en/ITL.js =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/ajaxhelper/www/resources/dojo-ajax/src/i18n/currency/nls/en/Attic/ITL.js,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ openacs-4/packages/ajaxhelper/www/resources/dojo-ajax/src/i18n/currency/nls/en/ITL.js 7 Nov 2006 03:41:51 -0000 1.1 @@ -0,0 +1,13 @@ +/* + Copyright (c) 2004-2006, The Dojo Foundation + All Rights Reserved. + + Licensed under the Academic Free License version 2.1 or above OR the + modified BSD license. For more information on Dojo licensing, see: + + http://dojotoolkit.org/community/licensing.shtml +*/ + +({ + displayName: "Italian Lira" +}) \ No newline at end of file Index: openacs-4/packages/ajaxhelper/www/resources/dojo-ajax/src/i18n/currency/nls/en/JPY.js =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/ajaxhelper/www/resources/dojo-ajax/src/i18n/currency/nls/en/Attic/JPY.js,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ openacs-4/packages/ajaxhelper/www/resources/dojo-ajax/src/i18n/currency/nls/en/JPY.js 7 Nov 2006 03:41:51 -0000 1.1 @@ -0,0 +1,13 @@ +/* + Copyright (c) 2004-2006, The Dojo Foundation + All Rights Reserved. + + Licensed under the Academic Free License version 2.1 or above OR the + modified BSD license. For more information on Dojo licensing, see: + + http://dojotoolkit.org/community/licensing.shtml +*/ + +({ + displayName: "Japanese Yen" +}) \ No newline at end of file Index: openacs-4/packages/ajaxhelper/www/resources/dojo-ajax/src/i18n/currency/nls/en/USD.js =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/ajaxhelper/www/resources/dojo-ajax/src/i18n/currency/nls/en/Attic/USD.js,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ openacs-4/packages/ajaxhelper/www/resources/dojo-ajax/src/i18n/currency/nls/en/USD.js 7 Nov 2006 03:41:51 -0000 1.1 @@ -0,0 +1,14 @@ +/* + Copyright (c) 2004-2006, The Dojo Foundation + All Rights Reserved. + + Licensed under the Academic Free License version 2.1 or above OR the + modified BSD license. For more information on Dojo licensing, see: + + http://dojotoolkit.org/community/licensing.shtml +*/ + +({ + displayName: "US Dollar", + symbol: "US$" +}) \ No newline at end of file Index: openacs-4/packages/ajaxhelper/www/resources/dojo-ajax/src/i18n/currency/nls/en-us/USD.js =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/ajaxhelper/www/resources/dojo-ajax/src/i18n/currency/nls/en-us/Attic/USD.js,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ openacs-4/packages/ajaxhelper/www/resources/dojo-ajax/src/i18n/currency/nls/en-us/USD.js 7 Nov 2006 03:41:51 -0000 1.1 @@ -0,0 +1,13 @@ +/* + Copyright (c) 2004-2006, The Dojo Foundation + All Rights Reserved. + + Licensed under the Academic Free License version 2.1 or above OR the + modified BSD license. For more information on Dojo licensing, see: + + http://dojotoolkit.org/community/licensing.shtml +*/ + +({ + symbol: "$" +}) \ No newline at end of file Index: openacs-4/packages/ajaxhelper/www/resources/dojo-ajax/src/i18n/currency/nls/hi/EUR.js =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/ajaxhelper/www/resources/dojo-ajax/src/i18n/currency/nls/hi/Attic/EUR.js,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ openacs-4/packages/ajaxhelper/www/resources/dojo-ajax/src/i18n/currency/nls/hi/EUR.js 7 Nov 2006 03:41:51 -0000 1.1 @@ -0,0 +1,13 @@ +/* + Copyright (c) 2004-2006, The Dojo Foundation + All Rights Reserved. + + Licensed under the Academic Free License version 2.1 or above OR the + modified BSD license. For more information on Dojo licensing, see: + + http://dojotoolkit.org/community/licensing.shtml +*/ + +({ + displayName: "युरो" +}) \ No newline at end of file Index: openacs-4/packages/ajaxhelper/www/resources/dojo-ajax/src/i18n/currency/nls/hi/GBP.js =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/ajaxhelper/www/resources/dojo-ajax/src/i18n/currency/nls/hi/Attic/GBP.js,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ openacs-4/packages/ajaxhelper/www/resources/dojo-ajax/src/i18n/currency/nls/hi/GBP.js 7 Nov 2006 03:41:51 -0000 1.1 @@ -0,0 +1,13 @@ +/* + Copyright (c) 2004-2006, The Dojo Foundation + All Rights Reserved. + + Licensed under the Academic Free License version 2.1 or above OR the + modified BSD license. For more information on Dojo licensing, see: + + http://dojotoolkit.org/community/licensing.shtml +*/ + +({ + displayName: "ब्रितन का पौन्ड स्टर्लिग" +}) \ No newline at end of file Index: openacs-4/packages/ajaxhelper/www/resources/dojo-ajax/src/i18n/currency/nls/hi/INR.js =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/ajaxhelper/www/resources/dojo-ajax/src/i18n/currency/nls/hi/Attic/INR.js,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ openacs-4/packages/ajaxhelper/www/resources/dojo-ajax/src/i18n/currency/nls/hi/INR.js 7 Nov 2006 03:41:51 -0000 1.1 @@ -0,0 +1,14 @@ +/* + Copyright (c) 2004-2006, The Dojo Foundation + All Rights Reserved. + + Licensed under the Academic Free License version 2.1 or above OR the + modified BSD license. For more information on Dojo licensing, see: + + http://dojotoolkit.org/community/licensing.shtml +*/ + +({ + displayName: "भारतीय रूपया", + symbol: "रु." +}) \ No newline at end of file Index: openacs-4/packages/ajaxhelper/www/resources/dojo-ajax/src/i18n/currency/nls/hi/ITL.js =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/ajaxhelper/www/resources/dojo-ajax/src/i18n/currency/nls/hi/Attic/ITL.js,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ openacs-4/packages/ajaxhelper/www/resources/dojo-ajax/src/i18n/currency/nls/hi/ITL.js 7 Nov 2006 03:41:51 -0000 1.1 @@ -0,0 +1,13 @@ +/* + Copyright (c) 2004-2006, The Dojo Foundation + All Rights Reserved. + + Licensed under the Academic Free License version 2.1 or above OR the + modified BSD license. For more information on Dojo licensing, see: + + http://dojotoolkit.org/community/licensing.shtml +*/ + +({ + displayName: "इतली का लीरा" +}) \ No newline at end of file Index: openacs-4/packages/ajaxhelper/www/resources/dojo-ajax/src/i18n/currency/nls/hi/JPY.js =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/ajaxhelper/www/resources/dojo-ajax/src/i18n/currency/nls/hi/Attic/JPY.js,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ openacs-4/packages/ajaxhelper/www/resources/dojo-ajax/src/i18n/currency/nls/hi/JPY.js 7 Nov 2006 03:41:51 -0000 1.1 @@ -0,0 +1,13 @@ +/* + Copyright (c) 2004-2006, The Dojo Foundation + All Rights Reserved. + + Licensed under the Academic Free License version 2.1 or above OR the + modified BSD license. For more information on Dojo licensing, see: + + http://dojotoolkit.org/community/licensing.shtml +*/ + +({ + displayName: "जापानी येन" +}) \ No newline at end of file Index: openacs-4/packages/ajaxhelper/www/resources/dojo-ajax/src/i18n/currency/nls/hi/USD.js =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/ajaxhelper/www/resources/dojo-ajax/src/i18n/currency/nls/hi/Attic/USD.js,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ openacs-4/packages/ajaxhelper/www/resources/dojo-ajax/src/i18n/currency/nls/hi/USD.js 7 Nov 2006 03:41:51 -0000 1.1 @@ -0,0 +1,13 @@ +/* + Copyright (c) 2004-2006, The Dojo Foundation + All Rights Reserved. + + Licensed under the Academic Free License version 2.1 or above OR the + modified BSD license. For more information on Dojo licensing, see: + + http://dojotoolkit.org/community/licensing.shtml +*/ + +({ + displayName: "अमरीकी डालर" +}) \ No newline at end of file Index: openacs-4/packages/ajaxhelper/www/resources/dojo-ajax/src/i18n/currency/nls/ja/EUR.js =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/ajaxhelper/www/resources/dojo-ajax/src/i18n/currency/nls/ja/Attic/EUR.js,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ openacs-4/packages/ajaxhelper/www/resources/dojo-ajax/src/i18n/currency/nls/ja/EUR.js 7 Nov 2006 03:41:51 -0000 1.1 @@ -0,0 +1,13 @@ +/* + Copyright (c) 2004-2006, The Dojo Foundation + All Rights Reserved. + + Licensed under the Academic Free License version 2.1 or above OR the + modified BSD license. For more information on Dojo licensing, see: + + http://dojotoolkit.org/community/licensing.shtml +*/ + +({ + displayName: "ユーロ" +}) \ No newline at end of file Index: openacs-4/packages/ajaxhelper/www/resources/dojo-ajax/src/i18n/currency/nls/ja/GBP.js =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/ajaxhelper/www/resources/dojo-ajax/src/i18n/currency/nls/ja/Attic/GBP.js,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ openacs-4/packages/ajaxhelper/www/resources/dojo-ajax/src/i18n/currency/nls/ja/GBP.js 7 Nov 2006 03:41:51 -0000 1.1 @@ -0,0 +1,13 @@ +/* + Copyright (c) 2004-2006, The Dojo Foundation + All Rights Reserved. + + Licensed under the Academic Free License version 2.1 or above OR the + modified BSD license. For more information on Dojo licensing, see: + + http://dojotoolkit.org/community/licensing.shtml +*/ + +({ + displayName: "英国ポンド" +}) \ No newline at end of file Index: openacs-4/packages/ajaxhelper/www/resources/dojo-ajax/src/i18n/currency/nls/ja/INR.js =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/ajaxhelper/www/resources/dojo-ajax/src/i18n/currency/nls/ja/Attic/INR.js,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ openacs-4/packages/ajaxhelper/www/resources/dojo-ajax/src/i18n/currency/nls/ja/INR.js 7 Nov 2006 03:41:51 -0000 1.1 @@ -0,0 +1,14 @@ +/* + Copyright (c) 2004-2006, The Dojo Foundation + All Rights Reserved. + + Licensed under the Academic Free License version 2.1 or above OR the + modified BSD license. For more information on Dojo licensing, see: + + http://dojotoolkit.org/community/licensing.shtml +*/ + +({ + displayName: "インド ルピー", + symbol: "INR" +}) \ No newline at end of file Index: openacs-4/packages/ajaxhelper/www/resources/dojo-ajax/src/i18n/currency/nls/ja/ITL.js =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/ajaxhelper/www/resources/dojo-ajax/src/i18n/currency/nls/ja/Attic/ITL.js,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ openacs-4/packages/ajaxhelper/www/resources/dojo-ajax/src/i18n/currency/nls/ja/ITL.js 7 Nov 2006 03:41:51 -0000 1.1 @@ -0,0 +1,13 @@ +/* + Copyright (c) 2004-2006, The Dojo Foundation + All Rights Reserved. + + Licensed under the Academic Free License version 2.1 or above OR the + modified BSD license. For more information on Dojo licensing, see: + + http://dojotoolkit.org/community/licensing.shtml +*/ + +({ + displayName: "イタリア リラ" +}) \ No newline at end of file Index: openacs-4/packages/ajaxhelper/www/resources/dojo-ajax/src/i18n/currency/nls/ja/JPY.js =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/ajaxhelper/www/resources/dojo-ajax/src/i18n/currency/nls/ja/Attic/JPY.js,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ openacs-4/packages/ajaxhelper/www/resources/dojo-ajax/src/i18n/currency/nls/ja/JPY.js 7 Nov 2006 03:41:51 -0000 1.1 @@ -0,0 +1,14 @@ +/* + Copyright (c) 2004-2006, The Dojo Foundation + All Rights Reserved. + + Licensed under the Academic Free License version 2.1 or above OR the + modified BSD license. For more information on Dojo licensing, see: + + http://dojotoolkit.org/community/licensing.shtml +*/ + +({ + displayName: "日本円", + symbol: "¥" +}) \ No newline at end of file Index: openacs-4/packages/ajaxhelper/www/resources/dojo-ajax/src/i18n/currency/nls/ja/USD.js =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/ajaxhelper/www/resources/dojo-ajax/src/i18n/currency/nls/ja/Attic/USD.js,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ openacs-4/packages/ajaxhelper/www/resources/dojo-ajax/src/i18n/currency/nls/ja/USD.js 7 Nov 2006 03:41:51 -0000 1.1 @@ -0,0 +1,13 @@ +/* + Copyright (c) 2004-2006, The Dojo Foundation + All Rights Reserved. + + Licensed under the Academic Free License version 2.1 or above OR the + modified BSD license. For more information on Dojo licensing, see: + + http://dojotoolkit.org/community/licensing.shtml +*/ + +({ + displayName: "米ドル" +}) \ No newline at end of file