2006-02-21 17:01:06 +00:00
|
|
|
const SCHOLAR_CONFIG = {
|
Renamed DB to scholar.sqlite, since that seems to be the current fashion
Added some new core functions:
- Scholar.varDump(), after PHP's var_dump()
- Scholar.flattenArguments(), to flatten mixed array/literal argument lists into a single array
- Scholar.join() -- a version of join() that operates externally, for use on, for example, the arguments object (safer than extending Object)
- Scholar.Hash, a slightly smarter associative array -- not perfect, but brings a proper length property and a few convenience methods (and allows for other additions) -- should probably be limited to places where the length property or other additional additions are needed, since its use is a little non-standard (e.g. you have to remember to do _for (i in arr.items)_ rather than just _for (i in arr)_, to use set(), etc.)
2006-03-14 11:45:19 +00:00
|
|
|
GUID: 'scholar@chnm',
|
|
|
|
DB_FILE: 'scholar.sqlite',
|
2006-03-23 08:51:05 +00:00
|
|
|
DB_VERSION: 3,
|
Renamed DB to scholar.sqlite, since that seems to be the current fashion
Added some new core functions:
- Scholar.varDump(), after PHP's var_dump()
- Scholar.flattenArguments(), to flatten mixed array/literal argument lists into a single array
- Scholar.join() -- a version of join() that operates externally, for use on, for example, the arguments object (safer than extending Object)
- Scholar.Hash, a slightly smarter associative array -- not perfect, but brings a proper length property and a few convenience methods (and allows for other additions) -- should probably be limited to places where the length property or other additional additions are needed, since its use is a little non-standard (e.g. you have to remember to do _for (i in arr.items)_ rather than just _for (i in arr)_, to use set(), etc.)
2006-03-14 11:45:19 +00:00
|
|
|
DB_REBUILD: false, // erase DB and recreate from schema
|
2006-03-22 18:53:26 +00:00
|
|
|
DEBUG_LOGGING: true,
|
|
|
|
DEBUG_TO_CONSOLE: false // dump debug messages to console rather than (much slower) Debug Logger
|
2006-02-21 17:01:06 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Core functions
|
|
|
|
*/
|
2006-03-20 21:47:22 +00:00
|
|
|
var Scholar = new function(){
|
|
|
|
var _initialized = false
|
|
|
|
|
|
|
|
this.testString = 'Sidebar is not registered';
|
|
|
|
|
|
|
|
this.init = init;
|
|
|
|
this.debug = debug;
|
|
|
|
this.varDump = varDump;
|
|
|
|
this.flattenArguments = flattenArguments;
|
|
|
|
this.join = join;
|
|
|
|
this.Hash = Hash;
|
|
|
|
|
2006-02-21 17:01:06 +00:00
|
|
|
/*
|
|
|
|
* Initialize the extension
|
|
|
|
*/
|
2006-03-20 21:47:22 +00:00
|
|
|
function init(){
|
|
|
|
if (!_initialized){
|
|
|
|
Scholar.DB.updateSchema();
|
|
|
|
_initialized = true;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
2006-02-21 17:01:06 +00:00
|
|
|
|
Renamed DB to scholar.sqlite, since that seems to be the current fashion
Added some new core functions:
- Scholar.varDump(), after PHP's var_dump()
- Scholar.flattenArguments(), to flatten mixed array/literal argument lists into a single array
- Scholar.join() -- a version of join() that operates externally, for use on, for example, the arguments object (safer than extending Object)
- Scholar.Hash, a slightly smarter associative array -- not perfect, but brings a proper length property and a few convenience methods (and allows for other additions) -- should probably be limited to places where the length property or other additional additions are needed, since its use is a little non-standard (e.g. you have to remember to do _for (i in arr.items)_ rather than just _for (i in arr)_, to use set(), etc.)
2006-03-14 11:45:19 +00:00
|
|
|
|
2006-02-21 17:01:06 +00:00
|
|
|
/*
|
|
|
|
* Debug logging function
|
|
|
|
*
|
|
|
|
* Uses DebugLogger extension available from http://mozmonkey.com/debuglogger/
|
|
|
|
* if available, otherwise the console
|
|
|
|
*
|
|
|
|
* Defaults to log level 3 if level not provided
|
|
|
|
*/
|
2006-03-20 21:47:22 +00:00
|
|
|
function debug(message, level) {
|
2006-02-21 17:01:06 +00:00
|
|
|
if (!SCHOLAR_CONFIG['DEBUG_LOGGING']){
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!level){
|
|
|
|
level = 3;
|
|
|
|
}
|
|
|
|
|
2006-03-22 18:53:26 +00:00
|
|
|
if (!SCHOLAR_CONFIG['DEBUG_TO_CONSOLE']){
|
|
|
|
try {
|
|
|
|
var logManager =
|
2006-02-21 17:01:06 +00:00
|
|
|
Components.classes["@mozmonkey.com/debuglogger/manager;1"]
|
|
|
|
.getService(Components.interfaces.nsIDebugLoggerManager);
|
2006-03-22 18:53:26 +00:00
|
|
|
var logger = logManager.registerLogger("Firefox Scholar");
|
|
|
|
}
|
|
|
|
catch (e){}
|
2006-02-21 17:01:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (logger){
|
|
|
|
logger.log(level, message);
|
|
|
|
}
|
|
|
|
else {
|
2006-03-22 18:53:26 +00:00
|
|
|
dump('scholar(' + level + '): ' + message + "\n\n");
|
2006-02-21 17:01:06 +00:00
|
|
|
}
|
|
|
|
return true;
|
2006-03-20 21:47:22 +00:00
|
|
|
}
|
Renamed DB to scholar.sqlite, since that seems to be the current fashion
Added some new core functions:
- Scholar.varDump(), after PHP's var_dump()
- Scholar.flattenArguments(), to flatten mixed array/literal argument lists into a single array
- Scholar.join() -- a version of join() that operates externally, for use on, for example, the arguments object (safer than extending Object)
- Scholar.Hash, a slightly smarter associative array -- not perfect, but brings a proper length property and a few convenience methods (and allows for other additions) -- should probably be limited to places where the length property or other additional additions are needed, since its use is a little non-standard (e.g. you have to remember to do _for (i in arr.items)_ rather than just _for (i in arr)_, to use set(), etc.)
2006-03-14 11:45:19 +00:00
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* PHP var_dump equivalent for JS
|
|
|
|
*
|
|
|
|
* Adapted from http://binnyva.blogspot.com/2005/10/dump-function-javascript-equivalent-of.html
|
|
|
|
*/
|
2006-03-20 21:47:22 +00:00
|
|
|
function varDump(arr,level) {
|
Renamed DB to scholar.sqlite, since that seems to be the current fashion
Added some new core functions:
- Scholar.varDump(), after PHP's var_dump()
- Scholar.flattenArguments(), to flatten mixed array/literal argument lists into a single array
- Scholar.join() -- a version of join() that operates externally, for use on, for example, the arguments object (safer than extending Object)
- Scholar.Hash, a slightly smarter associative array -- not perfect, but brings a proper length property and a few convenience methods (and allows for other additions) -- should probably be limited to places where the length property or other additional additions are needed, since its use is a little non-standard (e.g. you have to remember to do _for (i in arr.items)_ rather than just _for (i in arr)_, to use set(), etc.)
2006-03-14 11:45:19 +00:00
|
|
|
var dumped_text = "";
|
|
|
|
if (!level){
|
|
|
|
level = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
// The padding given at the beginning of the line.
|
|
|
|
var level_padding = "";
|
|
|
|
for (var j=0;j<level+1;j++){
|
|
|
|
level_padding += " ";
|
|
|
|
}
|
|
|
|
|
|
|
|
if (typeof(arr) == 'object') { // Array/Hashes/Objects
|
|
|
|
for (var item in arr) {
|
|
|
|
var value = arr[item];
|
|
|
|
|
|
|
|
if (typeof(value) == 'object') { // If it is an array,
|
|
|
|
dumped_text += level_padding + "'" + item + "' ...\n";
|
|
|
|
dumped_text += arguments.callee(value,level+1);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
if (typeof value == 'function'){
|
|
|
|
dumped_text += level_padding + "'" + item + "' => function(...){...} \n";
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
dumped_text += level_padding + "'" + item + "' => \"" + value + "\"\n";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else { // Stings/Chars/Numbers etc.
|
|
|
|
dumped_text = "===>"+arr+"<===("+typeof(arr)+")";
|
|
|
|
}
|
|
|
|
return dumped_text;
|
2006-03-20 21:47:22 +00:00
|
|
|
}
|
Renamed DB to scholar.sqlite, since that seems to be the current fashion
Added some new core functions:
- Scholar.varDump(), after PHP's var_dump()
- Scholar.flattenArguments(), to flatten mixed array/literal argument lists into a single array
- Scholar.join() -- a version of join() that operates externally, for use on, for example, the arguments object (safer than extending Object)
- Scholar.Hash, a slightly smarter associative array -- not perfect, but brings a proper length property and a few convenience methods (and allows for other additions) -- should probably be limited to places where the length property or other additional additions are needed, since its use is a little non-standard (e.g. you have to remember to do _for (i in arr.items)_ rather than just _for (i in arr)_, to use set(), etc.)
2006-03-14 11:45:19 +00:00
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Flattens mixed arrays/values in a passed _arguments_ object and returns
|
|
|
|
* an array of values -- allows for functions to accept both arrays of
|
|
|
|
* values and/or an arbitrary number of individual values
|
|
|
|
*/
|
2006-03-20 21:47:22 +00:00
|
|
|
function flattenArguments(args){
|
Renamed DB to scholar.sqlite, since that seems to be the current fashion
Added some new core functions:
- Scholar.varDump(), after PHP's var_dump()
- Scholar.flattenArguments(), to flatten mixed array/literal argument lists into a single array
- Scholar.join() -- a version of join() that operates externally, for use on, for example, the arguments object (safer than extending Object)
- Scholar.Hash, a slightly smarter associative array -- not perfect, but brings a proper length property and a few convenience methods (and allows for other additions) -- should probably be limited to places where the length property or other additional additions are needed, since its use is a little non-standard (e.g. you have to remember to do _for (i in arr.items)_ rather than just _for (i in arr)_, to use set(), etc.)
2006-03-14 11:45:19 +00:00
|
|
|
var returns = new Array();
|
|
|
|
|
|
|
|
for (var i=0; i<args.length; i++){
|
|
|
|
if (typeof args[i]=='object'){
|
|
|
|
for (var j=0; j<args[i].length; j++){
|
|
|
|
returns.push(args[i][j]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
returns.push(args[i]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return returns;
|
2006-03-20 21:47:22 +00:00
|
|
|
}
|
Renamed DB to scholar.sqlite, since that seems to be the current fashion
Added some new core functions:
- Scholar.varDump(), after PHP's var_dump()
- Scholar.flattenArguments(), to flatten mixed array/literal argument lists into a single array
- Scholar.join() -- a version of join() that operates externally, for use on, for example, the arguments object (safer than extending Object)
- Scholar.Hash, a slightly smarter associative array -- not perfect, but brings a proper length property and a few convenience methods (and allows for other additions) -- should probably be limited to places where the length property or other additional additions are needed, since its use is a little non-standard (e.g. you have to remember to do _for (i in arr.items)_ rather than just _for (i in arr)_, to use set(), etc.)
2006-03-14 11:45:19 +00:00
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* A version of join() that operates externally for use on objects other
|
|
|
|
* than arrays (e.g. _arguments_)
|
|
|
|
*
|
|
|
|
* Note that this is safer than extending Object()
|
|
|
|
*/
|
2006-03-20 21:47:22 +00:00
|
|
|
function join(obj, delim){
|
Renamed DB to scholar.sqlite, since that seems to be the current fashion
Added some new core functions:
- Scholar.varDump(), after PHP's var_dump()
- Scholar.flattenArguments(), to flatten mixed array/literal argument lists into a single array
- Scholar.join() -- a version of join() that operates externally, for use on, for example, the arguments object (safer than extending Object)
- Scholar.Hash, a slightly smarter associative array -- not perfect, but brings a proper length property and a few convenience methods (and allows for other additions) -- should probably be limited to places where the length property or other additional additions are needed, since its use is a little non-standard (e.g. you have to remember to do _for (i in arr.items)_ rather than just _for (i in arr)_, to use set(), etc.)
2006-03-14 11:45:19 +00:00
|
|
|
var a = [];
|
|
|
|
for (var i=0, len=obj.length; i<len; i++){
|
|
|
|
a.push(obj[i]);
|
|
|
|
}
|
|
|
|
return a.join(delim);
|
2006-03-20 21:47:22 +00:00
|
|
|
}
|
Renamed DB to scholar.sqlite, since that seems to be the current fashion
Added some new core functions:
- Scholar.varDump(), after PHP's var_dump()
- Scholar.flattenArguments(), to flatten mixed array/literal argument lists into a single array
- Scholar.join() -- a version of join() that operates externally, for use on, for example, the arguments object (safer than extending Object)
- Scholar.Hash, a slightly smarter associative array -- not perfect, but brings a proper length property and a few convenience methods (and allows for other additions) -- should probably be limited to places where the length property or other additional additions are needed, since its use is a little non-standard (e.g. you have to remember to do _for (i in arr.items)_ rather than just _for (i in arr)_, to use set(), etc.)
2006-03-14 11:45:19 +00:00
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Class for creating hash arrays that behave a bit more sanely
|
|
|
|
*
|
|
|
|
* Hashes can be created in the constructor by alternating key and val:
|
|
|
|
*
|
|
|
|
* var hasharray = new Scholar.Hash('foo','foovalue','bar','barvalue');
|
|
|
|
*
|
|
|
|
* Or using hasharray.set(key, val)
|
|
|
|
*
|
|
|
|
* _val_ defaults to true if not provided
|
|
|
|
*
|
|
|
|
* If using foreach-style looping, be sure to use _for (i in arr.items)_
|
|
|
|
* rather than just _for (i in arr)_, or else you'll end up with the
|
|
|
|
* methods and members instead of the hash items
|
|
|
|
*
|
|
|
|
* Most importantly, hasharray.length will work as expected, even with
|
|
|
|
* non-numeric keys
|
|
|
|
*
|
|
|
|
* Adapated from http://www.mojavelinux.com/articles/javascript_hashes.html
|
|
|
|
* (c) Mojavelinux, Inc.
|
|
|
|
* License: Creative Commons
|
|
|
|
*/
|
2006-03-20 21:47:22 +00:00
|
|
|
function Hash(){
|
Renamed DB to scholar.sqlite, since that seems to be the current fashion
Added some new core functions:
- Scholar.varDump(), after PHP's var_dump()
- Scholar.flattenArguments(), to flatten mixed array/literal argument lists into a single array
- Scholar.join() -- a version of join() that operates externally, for use on, for example, the arguments object (safer than extending Object)
- Scholar.Hash, a slightly smarter associative array -- not perfect, but brings a proper length property and a few convenience methods (and allows for other additions) -- should probably be limited to places where the length property or other additional additions are needed, since its use is a little non-standard (e.g. you have to remember to do _for (i in arr.items)_ rather than just _for (i in arr)_, to use set(), etc.)
2006-03-14 11:45:19 +00:00
|
|
|
this.length = 0;
|
|
|
|
this.items = new Array();
|
|
|
|
|
|
|
|
// Public methods defined on prototype below
|
|
|
|
|
|
|
|
for (var i = 0; i < arguments.length; i += 2) {
|
|
|
|
if (typeof(arguments[i + 1]) != 'undefined') {
|
|
|
|
this.items[arguments[i]] = arguments[i + 1];
|
|
|
|
this.length++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
Scholar.Hash.prototype.get = function(in_key){
|
|
|
|
return this.items[in_key];
|
|
|
|
}
|
|
|
|
|
|
|
|
Scholar.Hash.prototype.set = function(in_key, in_value){
|
|
|
|
// Default to a boolean hash if value not provided
|
|
|
|
if (typeof(in_value) == 'undefined'){
|
|
|
|
in_value = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (typeof(this.items[in_key]) == 'undefined') {
|
|
|
|
this.length++;
|
|
|
|
}
|
|
|
|
|
|
|
|
this.items[in_key] = in_value;
|
|
|
|
|
|
|
|
return in_value;
|
|
|
|
}
|
|
|
|
|
|
|
|
Scholar.Hash.prototype.remove = function(in_key){
|
|
|
|
var tmp_value;
|
|
|
|
if (typeof(this.items[in_key]) != 'undefined') {
|
|
|
|
this.length--;
|
|
|
|
var tmp_value = this.items[in_key];
|
|
|
|
delete this.items[in_key];
|
2006-02-21 17:01:06 +00:00
|
|
|
}
|
Renamed DB to scholar.sqlite, since that seems to be the current fashion
Added some new core functions:
- Scholar.varDump(), after PHP's var_dump()
- Scholar.flattenArguments(), to flatten mixed array/literal argument lists into a single array
- Scholar.join() -- a version of join() that operates externally, for use on, for example, the arguments object (safer than extending Object)
- Scholar.Hash, a slightly smarter associative array -- not perfect, but brings a proper length property and a few convenience methods (and allows for other additions) -- should probably be limited to places where the length property or other additional additions are needed, since its use is a little non-standard (e.g. you have to remember to do _for (i in arr.items)_ rather than just _for (i in arr)_, to use set(), etc.)
2006-03-14 11:45:19 +00:00
|
|
|
|
|
|
|
return tmp_value;
|
2006-02-21 17:01:06 +00:00
|
|
|
}
|
|
|
|
|
Renamed DB to scholar.sqlite, since that seems to be the current fashion
Added some new core functions:
- Scholar.varDump(), after PHP's var_dump()
- Scholar.flattenArguments(), to flatten mixed array/literal argument lists into a single array
- Scholar.join() -- a version of join() that operates externally, for use on, for example, the arguments object (safer than extending Object)
- Scholar.Hash, a slightly smarter associative array -- not perfect, but brings a proper length property and a few convenience methods (and allows for other additions) -- should probably be limited to places where the length property or other additional additions are needed, since its use is a little non-standard (e.g. you have to remember to do _for (i in arr.items)_ rather than just _for (i in arr)_, to use set(), etc.)
2006-03-14 11:45:19 +00:00
|
|
|
Scholar.Hash.prototype.has = function(in_key){
|
|
|
|
return typeof(this.items[in_key]) != 'undefined';
|
|
|
|
}
|
|
|
|
|
2006-02-21 17:01:06 +00:00
|
|
|
window.addEventListener("load", function(e) { Scholar.init(e); }, false);
|