code stringlengths 1 2.08M | language stringclasses 1
value |
|---|---|
// I18N constants
// LANG: "pl", ENCODING: UTF-8
// translated: Krzysztof Kotowicz koto@webworkers.pl
{
"Styles": "Style"
};
| JavaScript |
// I18N constants
// LANG: "fr", ENCODING: UTF-8
{
"Styles": "Styles"
}; | JavaScript |
// I18N constants
// LANG: "no", ENCODING: UTF-8
// translated: Kim Steinhaug, http://www.steinhaug.com/, kim@steinhaug.com
{
"Styles": "Stiler"
}; | JavaScript |
/**
* Add an empty css_style to Config object's prototype
* the format is { '.className' : 'Description' }
*/
HTMLArea.Config.prototype.css_style = { };
/**
* This method loads an external stylesheet and uses it in the stylist
*/
HTMLArea.Config.prototype.stylistLoadStylesheet = function(url, altnames)
{
if(!... | JavaScript |
// LANG: "de", ENCODING: UTF-8 | ISO-8859-1
// Sponsored by http://www.schaffrath-neuemedien.de
// Author: Udo Schmal (gocher), http://www.schaffrath-neuemedien.de/, udo.schmal@t-online.de
{
"The file you are uploading doesn't have the correct extension.": "Die hochgeladene Datei ist im falschen Format.",
"The file... | JavaScript |
// I18N constants
// LANG: "sv", ENCODING: UTF-8
// Swedish version for rev. 477 (Mar 2006) by Thomas Loo <tloo@saltstorm.net>
{
"Insert Image": "Infoga bild",
"Image Preview:": "Förhandsgranskning:",
"Image URL:": "Bildens URL:",
"Preview": "Förhandsgranska",
"Alternate text:": "Alternativ text:",
"Layout... | JavaScript |
// I18N constants
// LANG: "fr", ENCODING: UTF-8
{
"Insert Image": "Insérer une image",
"Image Preview:": "Prévisualisation",
"Image URL:": "URL",
"Preview": "Prévisualisation",
"Alternate text:": "Texte alternatif",
"Layout": "Layout",
"Alignment:": "Alignement",
"Border thickness:": "Epaisseur bordure... | JavaScript |
// LANG: "de", ENCODING: UTF-8 | ISO-8859-1
// Sponsored by http://www.schaffrath-neuemedien.de
// translated: Kim Steinhaug, http://www.steinhaug.com/, kim@steinhaug.com
{
"Insert Image": "Sett inn bilde",
"Image Preview:": "Forhåndsvisning:",
"Image URL:": "Bildets URL:",
"Preview": "Forhåndsvisning",
"Alte... | JavaScript |
// Insert Image plugin for HTMLArea
// Original Author - Udo Schmal
//
// (c) www.Schaffrath-NeueMedien.de 2004
// Distributed under the same terms as HTMLArea itself.
// This notice MUST stay intact for use (see license.txt).
//Usage:
// if(typeof InsertPicture != 'undefined')
// { InsertPicture.PictureP... | JavaScript |
// Character Map plugin for HTMLArea
// Original Author - Bernhard Pfeifer novocaine@gmx.net
HTMLArea.loadStyle( 'CharacterMap.css', 'CharacterMap' );
function CharacterMap( editor )
{
this.editor = editor;
var cfg = editor.config;
var self = this;
cfg.registerButton(
{
id : 'insertcharacter',
... | JavaScript |
// I18N constants
// LANG: "nl", ENCODING: UTF-8
// Sponsored by http://www.systemconcept.de
// Author: Holger Hees, <hhees@systemconcept.de>
// (c) systemconcept.de 2004
// Distributed under the same terms as HTMLArea itself.
// This notice MUST stay intact for use (see license.txt).
{
"Insert special character": "S... | JavaScript |
// I18N constants
// LANG: "it", ENCODING: UTF-8
{
"Insert special character": "Inserisca il carattere speciale",
"Cancel": "Annullamento"
};
| JavaScript |
// I18N constants
// LANG: "de", ENCODING: UTF-8
// Sponsored by http://www.systemconcept.de
// Author: Holger Hees, <hhees@systemconcept.de>
// (c) systemconcept.de 2004
// Distributed under the same terms as HTMLArea itself.
// This notice MUST stay intact for use (see license.txt).
{
"Insert special character": "S... | JavaScript |
// I18N constants
// LANG: "ru", ENCODING: UTF-8
// Author: Andrei Blagorazumov, a@fnr.ru
{
"Insert special character": "Вставить специальный символ",
"Cancel": "Отменить"
}; | JavaScript |
// I18N constants
// LANG: "sv" (Swedish), ENCODING: UTF-8
// translated: Erik Dalén <dalen@jpl.se>
{
"Insert special character": "Infoga tecken",
"Cancel": "Avbryt"
};
| JavaScript |
// I18N constants
// LANG: "fr", ENCODING: UTF-8
{
"Insert special character": "Insérer caractère spécial",
"Cancel": "Annuler"
}; | JavaScript |
// I18N constants
// LANG: "no", ENCODING: UTF-8
// translated: Kim Steinhaug, http://www.steinhaug.com/, kim@steinhaug.com
{
"Insert special character": "Sett inn tegn",
"Cancel": "Avbryt"
}; | JavaScript |
// I18N constants
// LANG: "de", ENCODING: UTF-8
{
"Insert Snippet": "Snippet einfügen",
"Cancel": "Abbrechen",
"Variable":"Variable",
"Insert as":"Einfügen als",
"Show preview":"Vorschau zeigen",
"Hide preview":"Vorschau verbergen"
}; | JavaScript |
// I18N constants
// LANG: "no", ENCODING: UTF-8
// translated: Kim Steinhaug, http://www.steinhaug.com/, kim@steinhaug.com
{
"Insert Snippet": "Sett inn snutt",
"Cancel": "Avbryt",
"Variable":"Variabel",
"Insert as":"Sett inn som",
"Show preview":"Vis forhåndsvisning",
"Hide preview":"Skjul forhåndsvisning"
}; | JavaScript |
/*------------------------------------------*\
InsertSnippet for Xinha
_______________________
Insert HTML fragments or template variables
Usage:
1. Choose the file that contains the snippets
You can either use a JS array (standard config: ./snippets.js) or a combination of PHP/HTML
where the... | JavaScript |
var snippets = new Array();
var i = 0;
snippets[i] = new Object();
snippets[i]['id'] = 'Box 1';
snippets[i]['HTML'] = '<div class="message_box red">\n Visit the <a href="http://xinha.org">Xinha website</a></div>';
i++;
snippets[i] = new Object();
snippets[i]['id'] = 'INFORMATION ABOUT SOMETHING';
snippets[i]['HTML'] ... | JavaScript |
// GUIDO Music Notation plugin for HTMLArea
// Implementation by Richard Christophe
// Original Author - Richard Christophe cvrichard@infonie.fr
//
// Distributed under the same terms as HTMLArea itself.
// This notice MUST stay intact for use (see license.txt).
// this is a collection of JavaScript routines that
// f... | JavaScript |
// I18N constants
// LANG: "de", ENCODING: UTF-8 | ISO-8859-1
// Sponsored by http://www.systemconcept.de
// Author: Holger Hees, <hhees@systemconcept.de>
// (c) systemconcept.de 2004
// Distributed under the same terms as HTMLArea itself.
// This notice MUST stay intact for use (see license.txt).
{
"Insert ... | JavaScript |
// I18N constants
// LANG: "fr", ENCODING: UTF-8
{
"Insert GUIDO Music Notation": "Insérer une partition musicale GUIDO",
"Guido code": "Code Guido",
"Options": "Options",
"Format": "Format",
"Image in applet": "Image dans une applet",
"Zoom": "Zoom",
"MIDI File": "Fichier MIDI",
"Image Preview": "Aperç... | JavaScript |
// I18N constants
// LANG: "no", ENCODING: UTF-8
// translated: Kim Steinhaug, http://www.steinhaug.com/, kim@steinhaug.com
{
"Insert GUIDO Music Notation": "Sett inn GUIDO-noter",
"Guido code": "GUIDO-kode",
"Options": "Muligheter",
"Format": "Format",
"Image in applet": "Bilde i applet",
"Zoom": "Forstørr... | JavaScript |
// Context Menu Plugin for HTMLArea-3.0
// Sponsored by www.americanbible.org
// Implementation by Mihai Bazon, http://dynarch.com/mishoo/
//
// (c) dynarch.com 2003.
// Distributed under the same terms as HTMLArea itself.
// This notice MUST stay intact for use (see license.txt).
//
// $Id: context-menu.js 506 2006-05... | JavaScript |
// I18N constants
// LANG: "nl", ENCODING: UTF-8
// Author: Michel Weegeerink (info@mmc-shop.nl), http://mmc-shop.nl
{
"Cut": "Knippen",
"Copy": "Kopiëren",
"Paste": "Plakken",
"_Image Properties...": "Eigenschappen afbeelding...",
"_Modify Link...": "Hyperlin_k aanpassen...",
"Chec_k Link...": "Controleer ... | JavaScript |
// I18N constants
// LANG: "de", ENCODING: UTF-8
// translated: Raimund Meyer xinha@ray-of-light.org
{
"Cut": "Ausschneiden",
"Copy": "Kopieren",
"Paste": "Einfügen",
"_Image Properties...": "Eigenschaften",
"Show the image properties dialog": "Fenster für die Bildoptionen anzeigen",
"_Modify Link...": "Lin... | JavaScript |
// I18N constants
// LANG: "pl", ENCODING: UTF-8
// translated: Krzysztof Kotowicz, http://www.eskot.krakow.pl/portfolio/, koto@webworkers.pl
{
"Cut": "Wytnij",
"Copy": "Kopiuj",
"Paste": "Wklej",
"_Image Properties...": "Właściwości obrazka",
"Show the image properties dialog": "Pokaż okienko właściwości obr... | JavaScript |
// I18N constants
// LANG: "sv", ENCODING: UTF-8
// Swedish version for rev. 477 (Mar 2006) by Thomas Loo <tloo@saltstorm.net>
// TODO: Proper keybindings
// C,D,e, ,I, ,k,k,l,M, ,n,o,R, ,s,T, ,w : English
// H B j R m F v : Swedish
{
"Cut": "Klipp ut",
"Copy": "Kopiera",
"Paste": "Kl... | JavaScript |
// I18N constants
// LANG: "fr", ENCODING: UTF-8
{
"Cut": "Couper",
"Copy": "Copier",
"Paste": "Coller",
"_Image Properties...": "_Propriétés de l'image...",
"_Modify Link...": "_Modifier le lien...",
"Chec_k Link...": "_Vérifier le lien...",
"_Remove Link...": "_Supprimer le lien...",
"C_ell Properties... | JavaScript |
// I18N constants
// LANG: "no", ENCODING: UTF-8
// translated: Kim Steinhaug, http://www.steinhaug.com/, kim@steinhaug.com
// Used key commands
// C,D,e, ,I, ,k,k,l,M, ,n,o,R, ,s,T, ,w : English
// H B j R m F v : Norwegian
{
"Cut": "Klipp ut",
"Copy": "Kopier",
"Paste": "Lim inn",
... | JavaScript |
// I18N constants
// LANG: "he", ENCODING: UTF-8
// Author: Liron Newman, http://www.eesh.net, <plastish at ultinet dot org>
{
"Cut": "גזור",
"Copy": "העתק",
"Paste": "הדבק",
"_Image Properties...": "_מאפייני תמונה...",
"_Modify Link...": "_שנה קישור...",
"Chec_k Link...": "בדו_ק קישור...",
"_Remove Link.... | JavaScript |
// I18N constants
// LANG: "de", ENCODING: UTF-8
// Author: Udo Schmal (gocher), http://www.schaffrath-neuemedien.de/, udo.schmal@t-online.de
{
"Chars": "Zeichen",
"Words": "Worte",
"... in progress": "... in Bearbeitung"
};
| JavaScript |
// I18N constants
// LANG: "fr", ENCODING: UTF-8
{
"Chars": "Caractères",
"Words": "Mots"
}; | JavaScript |
// I18N constants
// LANG: "no", ENCODING: UTF-8
// translated: Kim Steinhaug, http://www.steinhaug.com/, kim@steinhaug.com
{
"Chars": "Tegn"
}; | JavaScript |
// Charcounter for HTMLArea-3.0
// (c) Udo Schmal & L.N.Schaffrath NeueMedien
// Distributed under the same terms as HTMLArea itself.
// This notice MUST stay intact for use (see license.txt).
function CharCounter(editor) {
this.editor = editor;
}
HTMLArea.Config.prototype.CharCounter =
{
'showChar': t... | JavaScript |
// tabs 2
/**
* @fileoverview By Adam Wright, for The University of Western Australia
*
* Distributed under the same terms as HTMLArea itself.
* This notice MUST stay intact for use (see license.txt).
*
* Heavily modified by Yermo Lamers of DTLink, LLC, College Park, Md., USA.
* For more info see http://www.areaedit.c... | JavaScript |
/** htmlArea - James' Fork - Linker Plugin **/
Linker._pluginInfo =
{
name : "Linker",
version : "1.0",
developer: "James Sleeman",
developer_url: "http://www.gogo.co.nz/",
c_owner : "Gogo Internet Services",
license : "htmlArea",
sponsor : "Gogo Internet Services",
sponsor_url : "h... | JavaScript |
// I18N constants
// LANG: "de", ENCODING: UTF-8
// translated: Udo Schmal (gocher), http://www.schaffrath-neuemedien.de/, udo.schmal@t-online.de
{
"You must select some text before making a new link.": "Sie müssen einen Text markieren um einen Link zu erstellen",
"Are you sure you wish to remove this link?": "Woll... | JavaScript |
// I18N constants
// LANG: "pl", ENCODING: UTF-8
// translated: Krzysztof Kotowicz, http://www.eskot.krakow.pl/portfolio/, koto@webworkers.pl
{
"You must select some text before making a new link.": "Zaznacz tekst przed dodaniem odnośnika.",
"Are you sure you wish to remove this link?": "Na pewno chcesz usunąć odno... | JavaScript |
// I18N constants
// LANG: "fr", ENCODING: UTF-8
{
"You must select some text before making a new link.": "Vous devez sélectionner un texte avant de créer un nouveau lien",
"Are you sure you wish to remove this link?": "Confirmez-vous la suppression de ce lien ?",
"REMOVE LINK": "Supprimer",
"CANCEL": "Annuler"... | JavaScript |
// I18N constants
// LANG: "no", ENCODING: UTF-8
// translated: Kim Steinhaug, http://www.steinhaug.com/, kim@steinhaug.com
{
"You must select some text before making a new link.": "Du må markere tekst eller et bilde før du kan lage en lenke.",
"Are you sure you wish to remove this link?": "Er du sikker på at du vi... | JavaScript |
/*--------------------------------------------------|
| dTree 2.05 | www.destroydrop.com/javascript/tree/ |
|---------------------------------------------------|
| Copyright (c) 2002-2003 Geir Landr? |
| |
| This script can be used freely as long as a... | JavaScript |
// I18N constants
// LANG: "de", ENCODING: UTF-8
// translated: Raimund Meyer xinha@ray-of-light.org
{
"Maximize/Minimize Editor": "Editor maximieren/verkleinern"
};
| JavaScript |
// I18N constants
// LANG: "pl", ENCODING: UTF-8
// translated: Krzysztof Kotowicz, koto1sa@o2.pl, http://www.eskot.krakow.pl/portfolio
{
"Maximize/Minimize Editor": "Maksymalizuj/minimalizuj edytor"
};
| JavaScript |
// I18N constants
// LANG: "ru", ENCODING: UTF-8
// Author: Andrei Blagorazumov, a@fnr.ru
{
"Maximize/Minimize Editor": "Развернуть/Свернуть редактор"
}; | JavaScript |
// I18N constants
// LANG: "sv" (Swedish), ENCODING: UTF-8
// translated: Erik Dalén, <dalen@jpl.se>
{
"Maximize/Minimize Editor": "Maximera/Minimera WYSIWYG fönster"
};
| JavaScript |
// I18N constants
// LANG: "fr", ENCODING: UTF-8
{
"Maximize/Minimize Editor": "Agrandir/Réduire l'éditeur"
}; | JavaScript |
// I18N constants
// LANG: "no", ENCODING: UTF-8
// translated: Kim Steinhaug, http://www.steinhaug.com/, kim@steinhaug.com
{
"Maximize/Minimize Editor": "Maksimer/Minimer WYSIWYG vindu"
}; | JavaScript |
function FullScreen(editor, args)
{
this.editor = editor;
editor._superclean_on = false;
cfg = editor.config;
cfg.registerButton
( 'fullscreen',
this._lc("Maximize/Minimize Editor"),
[_editor_url + cfg.imgURL + 'ed_buttons_main.gif',8,0], true,
function(e, objname, obj)
{
e._fullS... | JavaScript |
// Form plugin for HTMLArea
// Distributed under the same terms as HTMLArea itself.
// This notice MUST stay intact for use (see license.txt).
function Forms(editor) {
this.editor = editor;
var cfg = editor.config;
var bl = Forms.btnList;
var self = this;
// register the toolbar buttons provided by this plugin
... | JavaScript |
// I18N constants
// LANG: "nl", ENCODING: UTF-8
// Author: Mihai Bazon, http://dynarch.com/mishoo
{
"Decimal numbers": "Decimale nummers",
"Lower roman numbers": "Romeinse nummers klein",
"Upper roman numbers": "Romeinse nummers groot",
"Lower latin letters": "Latijnse letters klein",
"Upper latin letters": ... | JavaScript |
// I18N constants
// LANG: "de", ENCODING: UTF-8
// translated: Raimund Meyer xinha@ray-of-light.org
{
"Decimal numbers": "Zahlen",
"Lower roman numbers": "Römisch klein",
"Upper roman numbers": "Römisch groß",
"Lower latin letters": "Zeichen klein",
"Upper latin letters": "Zeichen groß",
"Lower greek lette... | JavaScript |
// I18N constants
// LANG: "pl", ENCODING: UTF-8
// translated: Krzysztof Kotowicz, koto1sa@o2.pl, http://www.eskot.krakow.pl/portfolio
{
"Decimal numbers": "Cyfry arabskie",
"Lower roman numbers": "Małe rzymskie",
"Upper roman numbers": "Duże rzymskie",
"Lower latin letters": "Małe litery",
"Upper latin lett... | JavaScript |
// I18N constants
// LANG: "ru", ENCODING: UTF-8
// Author: Andrei Blagorazumov, a@fnr.ru
{
"Decimal numbers": "Десятичные числа",
"Lower roman numbers": "Строчные романские числа",
"Upper roman numbers": "Заглавные романские числа",
"Lower latin letters": "Строчные латинские символы",
"Upper latin l... | JavaScript |
// I18N constants
// LANG: "sv" (Swedish), ENCODING: UTF-8
// translated: Erik Dalén, <dalen@jpl.se>
{
"Decimal numbers": "Desimaltal",
"Lower roman numbers": "Små romerska siffror",
"Upper roman numbers": "Stora romerska siffror",
"Lower latin letters": "Små latinska bokstäver",
"Upper latin letters... | JavaScript |
// I18N constants
// LANG: "fr", ENCODING: UTF-8
{
"Decimal numbers": "Nombres décimaux",
"Lower roman numbers": "Nombres romains minuscule",
"Upper roman numbers": "Nombres romains majuscule",
"Lower latin letters": "Lettres latines minuscule",
"Upper latin letters": "Lettres latines majuscule",
"Lower gre... | JavaScript |
// I18N constants
// LANG: "no", ENCODING: UTF-8
// translated: Kim Steinhaug, http://www.steinhaug.com/, kim@steinhaug.com
{
"Decimal numbers": "Desimaltall",
"Lower roman numbers": "Lower roman numbers",
"Upper roman numbers": "Upper roman numbers",
"Lower latin letters": "Lower latin letters",
"Upp... | JavaScript |
// ListType Plugin for Xinha
// Toolbar Implementation by Mihai Bazon, http://dynarch.com/mishoo/
HTMLArea.loadStyle( 'ListType.css', 'ListType' );
function ListType( editor )
{
this.editor = editor;
var cfg = editor.config;
var self = this;
if ( cfg.ListType.mode == 'toolbar' )
{
var options = {};
op... | JavaScript |
// Marquee plugin for HTMLArea
// Implementation by Udo Schmal based on HTMLArea 3.0
// Original Author - Udo Schmal, Schaffrath-NeueMedien
//
// (c) Udo Schmal.2004
// Distributed under the same terms as HTMLArea itself.
// This notice MUST stay intact for use (see license.txt).
function InsertMarquee(editor)... | JavaScript |
// I18N constants
// LANG: "it", ENCODING: UTF-8 | ISO-8859-1
// Author: Udo Schmal (gocher), http://www.schaffrath-neuemedien.de/, udo.schmal@t-online.de
{
"Insert scrolling marquee": "Inserisca marquee",
"Cancel": "Annullamento"
}; | JavaScript |
// I18N constants
// LANG: "de", ENCODING: UTF-8 | ISO-8859-1
// Author: Udo Schmal (gocher), http://www.schaffrath-neuemedien.de/, udo.schmal@t-online.de
{
"Insert scrolling marquee": "Marquee einfügen",
"Insert marquee": "Marquee einfügen",
"Direction:": "Ausrichtung:",
"Behavior:": "Bewegung:",
"Te... | JavaScript |
// I18N constants
// LANG: "fr", ENCODING: UTF-8
{
"Name/ID:": "Nom/ID",
"Insert scrolling marquee": "Insérer marquee défilant",
"Insert marquee": "Insérer marquee",
"Direction:": "Direction",
"Behavior:": "Comportement",
"Text:": "Texte",
"Background-Color:": "Couleur de fond",
"Width:": "Lar... | JavaScript |
// I18N constants
// LANG: "no", ENCODING: UTF-8
// translated: Kim Steinhaug, http://www.steinhaug.com/, kim@steinhaug.com
{
"Name/ID:": "Navn/ID:",
"Insert scrolling marquee": "Sett inn rulletekst",
"Insert marquee": "Sett inn rulletekst",
"Direction:": "Rettning:",
"Behavior:": "Oppførsel:",
"Text:": "... | JavaScript |
// I18N constants
// LANG: "de", ENCODING: UTF-8
// translated: Raimund Meyer xinha@ray-of-light.org
{
"Set Id and Name": "Objekt ID und Name einfügen",
"Name/Id": "Name (ID)",
"Delete": "Löschen"
};
| JavaScript |
// I18N constants
// LANG: "no", ENCODING: UTF-8
// translated: Kim Steinhaug, http://www.steinhaug.com/, kim@steinhaug.com
{
"Set Id and Name": "Sett ID og navn",
"Name/Id": "Navn (ID)",
"Delete": "Slett"
};
| JavaScript |
function SetId(editor) {
this.editor = editor;
var cfg = editor.config;
var self = this;
// register the toolbar buttons provided by this plugin
cfg.registerButton({
id : "setid",
tooltip : this._lc("Set Id and Name"),
image : editor.imgURL("set-id.gif", "SetId"),
textMode : false... | JavaScript |
/**
* Gogo Internet Services Color Picker Javascript Widget
* colorPicker for short.
*
* @author James Sleeman <james@gogo.co.nz>
* @date June, 2005
*
* The colorPicker class provides access to a color map for selecting
* colors which will be passed back to a callback (usually such a callback... | JavaScript |
// htmlArea v3.0 - Copyright (c) 2002, 2003 interactivetools.com, inc.
// This copyright notice MUST stay intact for use (see license.txt).
//
// Portions (c) dynarch.com, 2003
//
// A free WYSIWYG editor replacement for <textarea> fields.
// For full source code and docs, visit http://www.interactivetools.com/
//
// V... | JavaScript |
/*
* app/assistants/stage-assistant.js
*/
/* FeedReader - A RSS Feed Aggregator for Palm WebOS
* Copyright (C) 2009-2012 Timo Tegtmeier
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation;... | JavaScript |
/*
* app/assistants/feedlist-assistant.js
*/
/* FeedReader - A RSS Feed Aggregator for Palm WebOS
* Copyright (C) 2009-2012 Timo Tegtmeier
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundati... | JavaScript |
/*
* app/assistants/storylist-assistant.js
*/
/* FeedReader - A RSS Feed Aggregator for Palm WebOS
* Copyright (C) 2009-2012 Timo Tegtmeier
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundat... | JavaScript |
/*
* app/assistants/preferences-assistant.js
*/
/* FeedReader - A RSS Feed Aggregator for Palm WebOS
* Copyright (C) 2009-2012 Timo Tegtmeier
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Found... | JavaScript |
/*
* app/assistants/app-assistant.js
*/
/* FeedReader - A RSS Feed Aggregator for Palm WebOS
* Copyright (C) 2009-2012 Timo Tegtmeier
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foun... | JavaScript |
/*
* app/assistants/license-assistant.js
*/
/* FeedReader - A RSS Feed Aggregator for Palm WebOS
* Copyright (C) 2009-2012 Timo Tegtmeier
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundatio... | JavaScript |
/*
* app/assistants/import-assistant.js
*/
/* FeedReader - A RSS Feed Aggregator for Palm WebOS
* Copyright (C) 2009-2012 Timo Tegtmeier
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation... | JavaScript |
/*
* app/assistants/dashboard-assistant.js
*/
/* FeedReader - A RSS Feed Aggregator for Palm WebOS
* Copyright (C) 2009-2012 Timo Tegtmeier
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Softwar... | JavaScript |
/*
* app/assistants/addfeed-assistant.js
*/
/* FeedReader - A RSS Feed Aggregator for Palm WebOS
* Copyright (C) 2009-2012 Timo Tegtmeier
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundatio... | JavaScript |
function ChangelogAssistant(controller) {
this.controller = controller;
}
ChangelogAssistant.prototype.setup = function(widget) {
this.widget = widget;
this.controller.setupWidget("okButton",
{type: Mojo.Widget.defaultButton},
{label: $LL("OK"), disabled: false});
this.controller.listen("okButton",... | JavaScript |
/*
* app/assistants/fullStory-assistant.js
*/
/* FeedReader - A RSS Feed Aggregator for Palm WebOS
* Copyright (C) 2009-2012 Timo Tegtmeier
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundat... | JavaScript |
/*
* app/assistants/license-assistant.js
*/
/* FeedReader - A RSS Feed Aggregator for Palm WebOS
* Copyright (C) 2009-2012 Timo Tegtmeier
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundatio... | JavaScript |
/*
* app/models/readitlater.js - Read it Later support
*/
/* FeedReader - A RSS Feed Aggregator for Palm WebOS
* Copyright (C) 2009-2012 Timo Tegtmeier
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the ... | JavaScript |
/*
* app/models/prefs.js - preferences data model
*/
/* FeedReader - A RSS Feed Aggregator for Palm WebOS
* Copyright (C) 2009-2012 Timo Tegtmeier
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free ... | JavaScript |
/*
* app/models/database.js - Database functions
*
* The classes defined here communicate with the FeedReader SQLite
* database. It does not contain the migration code used to migrate
* the older Depot-based database into the current structure.
*/
/* FeedReader - A RSS Feed Aggregator for Palm WebOS
* Copyrigh... | JavaScript |
/*
* app/models/feeds.js - Feed data model
*/
/* FeedReader - A RSS Feed Aggregator for Palm WebOS
* Copyright (C) 2009-2012 Timo Tegtmeier
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Softwar... | JavaScript |
/*
* app/utils/spooler.js - activity spooler
*/
/* FeedReader - A RSS Feed Aggregator for Palm WebOS
* Copyright (C) 2009-2012 Timo Tegtmeier
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Found... | JavaScript |
/**
*
* Base64 encode / decode
* http://www.webtoolkit.info/
*
**/
var Base64 = {
// private property
_keyStr : "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=",
// public method for encoding
encode : function (input) {
var output = "";
var chr1, chr2, chr3, enc1, enc2, enc3, enc4;
... | JavaScript |
/*
* app/utils/migrator.js - Database migration functions
*/
/* FeedReader - A RSS Feed Aggregator for Palm WebOS
* Copyright (C) 2009-2012 Timo Tegtmeier
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free S... | JavaScript |
/*
* app/utils/scenecontrol.js
*/
/* FeedReader - A RSS Feed Aggregator for Palm WebOS
* Copyright (C) 2009-2012 Timo Tegtmeier
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either ... | JavaScript |
/*
* app/utils/dashboard.js
*/
/* FeedReader - A RSS Feed Aggregator for Palm WebOS
* Copyright (C) 2009-2012 Timo Tegtmeier
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either ver... | JavaScript |
/*
* app/utils/connection.js - Internet connection checking
*/
/* FeedReader - A RSS Feed Aggregator for Palm WebOS
* Copyright (C) 2009-2012 Timo Tegtmeier
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free... | JavaScript |
/*
* app/models/date.js
*/
var dateConverter = Class.create({
formatting: null,
initialize: function(formatting) {
this.formatting = formatting;
},
convertRFC822: function(dateString) {
var d = new Date(dateString);
return d.getTime();
},
convertRFC2822: function(dateString) {
// Wed Mar 31 12:00 ... | JavaScript |
enyo.depends(
// Launcher
"source/launcher.js",
// Models
"source/models/prefs.js",
"source/models/database.js",
"source/models/feeds.js",
"source/models/readitlater.js",
// Commons
"commonjs/constants.js",
"commonjs/helper.js",
"commonjs/story.js",
"commonjs/feed.js",
"commonjs/simplehtmlparser.js... | JavaScript |
/*
* source/feedlist/feedlist.js
*/
/* FeedReader - A RSS Feed Aggregator for Palm WebOS
* Copyright (C) 2009-2012 Timo Tegtmeier
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; eithe... | JavaScript |
/*
* source/controls/starbutton.js
*/
/* FeedReader - A RSS Feed Aggregator for Palm WebOS
* Copyright (C) 2009-2012 Timo Tegtmeier
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; eit... | JavaScript |
/*
* source/controls/selectoritem.js
*/
/* FeedReader - A RSS Feed Aggregator for Palm WebOS
* Copyright (C) 2009-2012 Timo Tegtmeier
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; e... | JavaScript |
/*
* source/controls/dottedseparator.js
*/
/* FeedReader - A RSS Feed Aggregator for Palm WebOS
* Copyright (C) 2009-2012 Timo Tegtmeier
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation... | JavaScript |
/*
* source/controls/enhancedmenu.js - Improved Menu
*
* The API reference states, that the Menu kind has a method
* 'setItems'. It's sad, but this method does not exist.
* EnhancedMenu fills this gap.
*/
/* FeedReader - A RSS Feed Aggregator for Palm WebOS
* Copyright (C) 2009-2012 Timo Tegtmeier
*
* Thi... | JavaScript |
/*
* source/controls/silverseparator.js
*/
/* FeedReader - A RSS Feed Aggregator for Palm WebOS
* Copyright (C) 2009-2012 Timo Tegtmeier
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software F... | JavaScript |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.