code
stringlengths
1
2.08M
language
stringclasses
1 value
/* * Port of a script by Masanao Izumo. * * Only changes : wrap all the variables in a function and add the * main function to JSZip (DEFLATE compression method). * Everything else was written by M. Izumo. * * Original code can be found here: http://www.onicos.com/staff/iz/amuse/javascript/expert/inflate.txt *...
JavaScript
// Spectrum: The No Hassle Colorpicker // https://github.com/bgrins/spectrum // Author: Brian Grinstead // License: MIT // Requires: jQuery, spectrum.css (function (window, $, undefined) { var defaultOpts = { // Events beforeShow: noop, move: noop, change: noop, sho...
JavaScript
/** * A class to parse color values * @author Stoyan Stefanov <sstoo@gmail.com> * @link http://www.phpied.com/rgb-color-parser-in-javascript/ * @license Use it if you like it */ function RGBColor(color_string) { this.ok = false; // strip any leading # if (color_string.charAt(0) == '#') { ...
JavaScript
/* * canvg.js - Javascript SVG parser and renderer on Canvas * MIT Licensed * Gabe Lerner (gabelerner@gmail.com) * http://code.google.com/p/canvg/ * * Requires: rgbcolor.js - http://www.phpied.com/rgb-color-parser-in-javascript/ */ if(!window.console) { window.console = {}; window.console.log = func...
JavaScript
setDefaults({ weekMode: 'fixed' }); function BasicView(element, calendar, viewName) { var t = this; // exports t.renderBasic = renderBasic; t.setHeight = setHeight; t.setWidth = setWidth; t.renderDayOverlay = renderDayOverlay; t.defaultSelectionEnd = defaultSelectionEnd; t.renderSelection = renderSelect...
JavaScript
fcViews.basicDay = BasicDayView; //TODO: when calendar's date starts out on a weekend, shouldn't happen function BasicDayView(element, calendar) { var t = this; // exports t.render = render; // imports BasicView.call(t, element, calendar, 'basicDay'); var opt = t.opt; var renderBasic = t.renderBasic;...
JavaScript
fcViews.basicWeek = BasicWeekView; function BasicWeekView(element, calendar) { var t = this; // exports t.render = render; // imports BasicView.call(t, element, calendar, 'basicWeek'); var opt = t.opt; var renderBasic = t.renderBasic; var formatDates = calendar.formatDates; function render(date...
JavaScript
fcViews.month = MonthView; function MonthView(element, calendar) { var t = this; // exports t.render = render; // imports BasicView.call(t, element, calendar, 'month'); var opt = t.opt; var renderBasic = t.renderBasic; var formatDate = calendar.formatDate; function render(date, delta) { if (d...
JavaScript
function BasicEventRenderer() { var t = this; // exports t.renderEvents = renderEvents; t.compileDaySegs = compileSegs; // for DayEventRenderer t.clearEvents = clearEvents; t.bindDaySeg = bindDaySeg; // imports DayEventRenderer.call(t); var opt = t.opt; var trigger = t.trigger; //var setOverflowHidd...
JavaScript
fcViews.resourceDay = ResourceDayView; function ResourceDayView(element, calendar) { var t = this; // exports t.render = render; // imports ResourceView.call(t, element, calendar, 'resourceDay'); var opt = t.opt; var renderResource = t.renderResource; var formatDate = calendar.formatDate; funct...
JavaScript
function ResourceEventRenderer() { var t = this; // exports t.renderEvents = renderEvents; t.compileDaySegs = compileDaySegs; // for DayEventRenderer t.clearEvents = clearEvents; t.slotSegHtml = slotSegHtml; t.bindDaySeg = bindDaySeg; // imports DayEventRenderer.call(t); ...
JavaScript
setDefaults({ allDaySlot: true, allDayText: 'all-day', firstHour: 6, slotMinutes: 30, defaultEventMinutes: 120, axisFormat: 'h(:mm)tt', timeFormat: { agenda: 'h:mm{ - h:mm}' }, dragOpacity: { agenda: .5 }, minTime: 0, maxTime: 24 }); // TODO: make it wo...
JavaScript
startload(); js('gcal.js'); endload();
JavaScript
/* * FullCalendar v@VERSION Google Calendar Plugin * * Copyright (c) 2011 Adam Shaw * Dual licensed under the MIT and GPL licenses, located in * MIT-LICENSE.txt and GPL-LICENSE.txt respectively. * * Date: @DATE * */ (function($) { var fc = $.fullCalendar; var formatDate = fc.formatDate; var parseISO8601 = ...
JavaScript
fc.applyAll = applyAll; /* Event Date Math -----------------------------------------------------------------------------*/ function exclEndDay(event) { if (event.end) { return _exclEndDay(event.end, event.allDay); }else{ return addDays(cloneDate(event.start), 1); } } function _exclEndDay(end, allDay) { e...
JavaScript
function AgendaEventRenderer() { var t = this; // exports t.renderEvents = renderEvents; t.compileDaySegs = compileDaySegs; // for DayEventRenderer t.clearEvents = clearEvents; t.slotSegHtml = slotSegHtml; t.bindDaySeg = bindDaySeg; // imports DayEventRenderer.call(t); var opt = t.opt; var trigger =...
JavaScript
fcViews.agendaDay = AgendaDayView; function AgendaDayView(element, calendar) { var t = this; // exports t.render = render; // imports AgendaView.call(t, element, calendar, 'agendaDay'); var opt = t.opt; var renderAgenda = t.renderAgenda; var formatDate = calendar.formatDate; function render(dat...
JavaScript
setDefaults({ allDaySlot: true, allDayText: 'all-day', firstHour: 6, slotMinutes: 30, defaultEventMinutes: 120, axisFormat: 'h(:mm)tt', timeFormat: { agenda: 'h:mm{ - h:mm}' }, dragOpacity: { agenda: .5 }, minTime: 0, maxTime: 24 }); // TODO: make it work in quirks mode (event corners, all-day height...
JavaScript
fcViews.agendaWeek = AgendaWeekView; function AgendaWeekView(element, calendar) { var t = this; // exports t.render = render; // imports AgendaView.call(t, element, calendar, 'agendaWeek'); var opt = t.opt; var renderAgenda = t.renderAgenda; var formatDates = calendar.formatDates; function rend...
JavaScript
})(jQuery);
JavaScript
(function() { var JQUERY = 'jquery-1.8.1.min.js'; var JQUERY_UI = 'jquery-ui-1.8.23.custom.min.js'; var JQUERY_LEGACY = 'jquery-1.3.2.min.js'; var JQUERY_UI_LEGACY = 'jquery-ui-1.7.3.custom.min.js'; var qs = window.location.href.match(/(\?.*)?$/)[0]; var legacy = qs.indexOf('legacy') != -1; var noui = qs.indexOf('nou...
JavaScript
fc.addDays = addDays; fc.cloneDate = cloneDate; fc.parseDate = parseDate; fc.parseISO8601 = parseISO8601; fc.parseTime = parseTime; fc.formatDate = formatDate; fc.formatDates = formatDates; /* Date Math -----------------------------------------------------------------------------*/ var dayIDs = ['sun', 'mon', 'tu...
JavaScript
var fc = $.fullCalendar = { version: "@VERSION" }; var fcViews = fc.views = {}; $.fn.fullCalendar = function(options) { // method calling if (typeof options == 'string') { var args = Array.prototype.slice.call(arguments, 1); var res; this.each(function() { var calendar = $.data(this, 'fullCalendar'); ...
JavaScript
/** * @preserve * FullCalendar v@VERSION * http://arshaw.com/fullcalendar/ * * Use fullcalendar.css for basic styling. * For event drag & drop, requires jQuery UI draggable. * For event resizing, requires jQuery UI resizable. * * Copyright (c) 2011 Adam Shaw * Dual licensed under the MIT and GPL licenses, loc...
JavaScript
fc.sourceNormalizers = []; fc.sourceFetchers = []; var ajaxDefaults = { dataType: 'json', cache: false }; var eventGUID = 1; function EventManager(options, _sources) { var t = this; // exports t.isFetchNeeded = isFetchNeeded; t.fetchEvents = fetchEvents; t.addEventSource = addEventSource; t.removeEvent...
JavaScript
/* * Responsible for resources. Resource source object is anything that provides * data about resources. It can be function, a JSON object or URL to a JSON * feed. */ function ResourceManager(options) { var t = this; // exports t.fetchResources = fetchResources; // local var sources =...
JavaScript
function Calendar(element, options, eventSources, resourceSources) { var t = this; // exports t.options = options; t.render = render; t.destroy = destroy; t.refetchEvents = refetchEvents; t.reportEvents = reportEvents; t.reportEventChange = reportEventChange; t.rerenderEvents = rerenderEvents; t.change...
JavaScript
function Header(calendar, options) { var t = this; // exports t.render = render; t.destroy = destroy; t.updateTitle = updateTitle; t.activateButton = activateButton; t.deactivateButton = deactivateButton; t.disableButton = disableButton; t.enableButton = enableButton; // locals var element = $([]); ...
JavaScript
function CoordinateGrid(buildFunc) { var t = this; var rows; var cols; t.build = function() { rows = []; cols = []; buildFunc(rows, cols); }; t.cell = function(x, y) { var rowCnt = rows.length; var colCnt = cols.length; var i, r=-1, c=-1; for (i=0; i<rowCnt; i++) { if (y >= rows[i][0] &...
JavaScript
function HoverListener(coordinateGrid) { var t = this; var bindType; var change; var firstCell; var cell; t.start = function(_change, ev, _bindType) { change = _change; firstCell = cell = null; coordinateGrid.build(); mouse(ev); bindType = _bindType || 'mousemove'; $(document).bind(bindType, mo...
JavaScript
function View(element, calendar, viewName) { var t = this; // exports t.element = element; t.calendar = calendar; t.name = viewName; t.opt = opt; t.trigger = trigger; //t.setOverflowHidden = setOverflowHidden; t.isEventDraggable = isEventDraggable; t.isEventResizable = isEventResizable; t.reportEvents ...
JavaScript
function OverlayManager() { var t = this; // exports t.renderOverlay = renderOverlay; t.clearOverlays = clearOverlays; // locals var usedOverlays = []; var unusedOverlays = []; function renderOverlay(rect, parent) { var e = unusedOverlays.shift(); if (!e) { e = $("<div class='fc-cell-overla...
JavaScript
//BUG: unselect needs to be triggered when events are dragged+dropped function SelectionManager() { var t = this; // exports t.select = select; t.unselect = unselect; t.reportSelection = reportSelection; t.daySelectionMousedown = daySelectionMousedown; // imports var opt = t.opt; var trigger = t.trig...
JavaScript
function DayEventRenderer() { var t = this; // exports t.renderDaySegs = renderDaySegs; t.resizableDayEvent = resizableDayEvent; // imports var opt = t.opt; var trigger = t.trigger; var isEventDraggable = t.isEventDraggable; var isEventResizable = t.isEventResizable; var ...
JavaScript
function HorizontalPositionCache(getElement) { var t = this, elements = {}, lefts = {}, rights = {}; function e(i) { return elements[i] = elements[i] || getElement(i); } t.left = function(i) { return lefts[i] = lefts[i] === undefined ? e(i).position().left : lefts[i]; }; t.right = function(i) {...
JavaScript
var defaults = { // display defaultView: 'month', aspectRatio: 1.35, header: { left: 'title', center: '', right: 'today prev,next' }, weekends: true, // editing //editable: false, //disableDragging: false, //disableResizing: false, allDayDefault: true, ignoreTimezone: true, // event ajax laz...
JavaScript
/** * SyntaxHighlighter * http://alexgorbatchev.com/SyntaxHighlighter * * SyntaxHighlighter is donationware. If you are using it, please donate. * http://alexgorbatchev.com/SyntaxHighlighter/donate.html * * @version * 3.0.83 (July 02 2010) * * @copyright * Copyright (C) 2004-2010 Alex Gorbatchev. * * @lic...
JavaScript
/** * jqPlot * Pure JavaScript plotting plugin using jQuery * * Version: 1.0.8 * Revision: 1250 * * Copyright (c) 2009-2013 Chris Leonello * jqPlot is currently available for use in all personal or commercial projects * under both the MIT (http://www.opensource.org/licenses/mit-license.php) and GPL * versio...
JavaScript
/** * jqPlot * Pure JavaScript plotting plugin using jQuery * * Version: 1.0.8 * Revision: 1250 * * Copyright (c) 2009-2013 Chris Leonello * jqPlot is currently available for use in all personal or commercial projects * under both the MIT (http://www.opensource.org/licenses/mit-license.php) and GPL * versio...
JavaScript
/** * jqPlot * Pure JavaScript plotting plugin using jQuery * * Version: 1.0.8 * Revision: 1250 * * Copyright (c) 2009-2013 Chris Leonello * jqPlot is currently available for use in all personal or commercial projects * under both the MIT (http://www.opensource.org/licenses/mit-license.php) and GPL * versio...
JavaScript
/** * jqPlot * Pure JavaScript plotting plugin using jQuery * * Version: 1.0.8 * Revision: 1250 * * Copyright (c) 2009-2013 Chris Leonello * jqPlot is currently available for use in all personal or commercial projects * under both the MIT (http://www.opensource.org/licenses/mit-license.php) and GPL * versio...
JavaScript
/** * jqPlot * Pure JavaScript plotting plugin using jQuery * * Version: 1.0.8 * Revision: 1250 * * Copyright (c) 2009-2013 Chris Leonello * jqPlot is currently available for use in all personal or commercial projects * under both the MIT (http://www.opensource.org/licenses/mit-license.php) and GPL * versio...
JavaScript
/** * jqPlot * Pure JavaScript plotting plugin using jQuery * * Version: 1.0.8 * Revision: 1250 * * Copyright (c) 2009-2013 Chris Leonello * jqPlot is currently available for use in all personal or commercial projects * under both the MIT (http://www.opensource.org/licenses/mit-license.php) and GPL * versio...
JavaScript
/** * jqPlot * Pure JavaScript plotting plugin using jQuery * * Version: 1.0.8 * Revision: 1250 * * Copyright (c) 2009-2013 Chris Leonello * jqPlot is currently available for use in all personal or commercial projects * under both the MIT (http://www.opensource.org/licenses/mit-license.php) and GPL * versio...
JavaScript
/** * jqPlot * Pure JavaScript plotting plugin using jQuery * * Version: 1.0.8 * Revision: 1250 * * Copyright (c) 2009-2013 Chris Leonello * jqPlot is currently available for use in all personal or commercial projects * under both the MIT (http://www.opensource.org/licenses/mit-license.php) and GPL * versio...
JavaScript
/** * jqPlot * Pure JavaScript plotting plugin using jQuery * * Version: 1.0.8 * Revision: 1250 * * Copyright (c) 2009-2013 Chris Leonello * jqPlot is currently available for use in all personal or commercial projects * under both the MIT (http://www.opensource.org/licenses/mit-license.php) and GPL * versio...
JavaScript
/** * jqplot.jquerymobile plugin * jQuery Mobile virtual event support. * * Version: 1.0.8 * Revision: 1250 * * Copyright (c) 2011 Takashi Okamoto * jqPlot is currently available for use in all personal or commercial projects * under both the MIT (http://www.opensource.org/licenses/mit-license.php) a...
JavaScript
/** * jqPlot * Pure JavaScript plotting plugin using jQuery * * Version: 1.0.8 * Revision: 1250 * * Copyright (c) 2009-2013 Chris Leonello * jqPlot is currently available for use in all personal or commercial projects * under both the MIT (http://www.opensource.org/licenses/mit-license.php) and GPL * versio...
JavaScript
/** * jqPlot * Pure JavaScript plotting plugin using jQuery * * Version: 1.0.8 * Revision: 1250 * * Copyright (c) 2009-2013 Chris Leonello * jqPlot is currently available for use in all personal or commercial projects * under both the MIT (http://www.opensource.org/licenses/mit-license.php) and GPL * versio...
JavaScript
/** * jqPlot * Pure JavaScript plotting plugin using jQuery * * Version: 1.0.8 * Revision: 1250 * * Copyright (c) 2009-2013 Chris Leonello * jqPlot is currently available for use in all personal or commercial projects * under both the MIT (http://www.opensource.org/licenses/mit-license.php) and GPL * versio...
JavaScript
/** * jqPlot * Pure JavaScript plotting plugin using jQuery * * Version: 1.0.8 * Revision: 1250 * * Copyright (c) 2009-2013 Chris Leonello * jqPlot is currently available for use in all personal or commercial projects * under both the MIT (http://www.opensource.org/licenses/mit-license.php) and GPL * versio...
JavaScript
/** * jqPlot * Pure JavaScript plotting plugin using jQuery * * Version: 1.0.8 * Revision: 1250 * * Copyright (c) 2009-2013 Chris Leonello * jqPlot is currently available for use in all personal or commercial projects * under both the MIT (http://www.opensource.org/licenses/mit-license.php) and GPL * versio...
JavaScript
/** * jqPlot * Pure JavaScript plotting plugin using jQuery * * Version: 1.0.8 * Revision: 1250 * * Copyright (c) 2009-2013 Chris Leonello * jqPlot is currently available for use in all personal or commercial projects * under both the MIT (http://www.opensource.org/licenses/mit-license.php) and GPL * versio...
JavaScript
/** * jqPlot * Pure JavaScript plotting plugin using jQuery * * Version: 1.0.8 * Revision: 1250 * * Copyright (c) 2009-2013 Chris Leonello * jqPlot is currently available for use in all personal or commercial projects * under both the MIT (http://www.opensource.org/licenses/mit-license.php) and GPL * versio...
JavaScript
/** * jqPlot * Pure JavaScript plotting plugin using jQuery * * Version: 1.0.8 * Revision: 1250 * * Copyright (c) 2009-2013 Chris Leonello * jqPlot is currently available for use in all personal or commercial projects * under both the MIT (http://www.opensource.org/licenses/mit-license.php) and GPL * versio...
JavaScript
/** * jqPlot * Pure JavaScript plotting plugin using jQuery * * Version: 1.0.8 * Revision: 1250 * * Copyright (c) 2009-2013 Chris Leonello * jqPlot is currently available for use in all personal or commercial projects * under both the MIT (http://www.opensource.org/licenses/mit-license.php) and GPL * versio...
JavaScript
/** * jqPlot * Pure JavaScript plotting plugin using jQuery * * Version: 1.0.8 * Revision: 1250 * * Copyright (c) 2009-2013 Chris Leonello * jqPlot is currently available for use in all personal or commercial projects * under both the MIT (http://www.opensource.org/licenses/mit-license.php) and GPL * versio...
JavaScript
/** * jqPlot * Pure JavaScript plotting plugin using jQuery * * Version: 1.0.8 * Revision: 1250 * * Copyright (c) 2009-2013 Chris Leonello * jqPlot is currently available for use in all personal or commercial projects * under both the MIT (http://www.opensource.org/licenses/mit-license.php) and GPL * versio...
JavaScript
/** * jqPlot * Pure JavaScript plotting plugin using jQuery * * Version: 1.0.8 * Revision: 1250 * * Copyright (c) 2009-2013 Chris Leonello * jqPlot is currently available for use in all personal or commercial projects * under both the MIT (http://www.opensource.org/licenses/mit-license.php) and GPL * versio...
JavaScript
/** * jqPlot * Pure JavaScript plotting plugin using jQuery * * Version: 1.0.8 * Revision: 1250 * * Copyright (c) 2009-2013 Chris Leonello * jqPlot is currently available for use in all personal or commercial projects * under both the MIT (http://www.opensource.org/licenses/mit-license.php) and GPL * versio...
JavaScript
/** * jqPlot * Pure JavaScript plotting plugin using jQuery * * Version: 1.0.8 * Revision: 1250 * * Copyright (c) 2009-2013 Chris Leonello * jqPlot is currently available for use in all personal or commercial projects * under both the MIT (http://www.opensource.org/licenses/mit-license.php) and GPL * versio...
JavaScript
/* 2010-11-01 Chris Leonello Slightly modified version of the original json2.js to put JSON functions under the $.jqplot namespace. licensing and orignal comments follow: http://www.JSON.org/json2.js 2010-08-25 Public Domain. NO WARRANTY EXPRESSED OR IMPLIED. USE AT ...
JavaScript
/** * jqPlot * Pure JavaScript plotting plugin using jQuery * * Version: 1.0.8 * Revision: 1250 * * Copyright (c) 2009-2013 Chris Leonello * jqPlot is currently available for use in all personal or commercial projects * under both the MIT (http://www.opensource.org/licenses/mit-license.php) and GPL * versio...
JavaScript
/** * jqPlot * Pure JavaScript plotting plugin using jQuery * * Version: 1.0.8 * Revision: 1250 * * Copyright (c) 2009-2013 Chris Leonello * jqPlot is currently available for use in all personal or commercial projects * under both the MIT (http://www.opensource.org/licenses/mit-license.php) and GPL * versio...
JavaScript
/** * jqPlot * Pure JavaScript plotting plugin using jQuery * * Version: 1.0.8 * Revision: 1250 * * Copyright (c) 2009-2013 Chris Leonello * jqPlot is currently available for use in all personal or commercial projects * under both the MIT (http://www.opensource.org/licenses/mit-license.php) and GPL * versio...
JavaScript
/** * jqPlot * Pure JavaScript plotting plugin using jQuery * * Version: 1.0.8 * Revision: 1250 * * Copyright (c) 2009-2013 Chris Leonello * jqPlot is currently available for use in all personal or commercial projects * under both the MIT (http://www.opensource.org/licenses/mit-license.php) and GPL * versio...
JavaScript
/** * jqPlot * Pure JavaScript plotting plugin using jQuery * * Version: 1.0.8 * Revision: 1250 * * Copyright (c) 2009-2013 Chris Leonello * jqPlot is currently available for use in all personal or commercial projects * under both the MIT (http://www.opensource.org/licenses/mit-license.php) and GPL * versio...
JavaScript
/** * Anonymous function that is immediately called * for making sure that we can use the $-shortcut for jQuery. */ (function($) { /** * Rights tooltip plugin. * @param Object options Plugin options * @return the jQuery element */ $.fn.rightsTooltip = function(options) { // Default values var defaults = { ...
JavaScript
 //---------------------------------------------------- // Inicializar todos los datos de la pagina //---------------------------------------------------- $("#button-consola").click(function () { sendData(); }); //---------------------------------------------------- // Funciones para los eventos de la ...
JavaScript
// Copyright 2008 Google Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in ...
JavaScript
/* * Autocomplete - jQuery plugin 1.0.2 * * Copyright (c) 2007 Dylan Verheul, Dan G. Switzer, Anjesh Tuladhar, Jörn Zaefferer * * Dual licensed under the MIT and GPL licenses: * http://www.opensource.org/licenses/mit-license.php * http://www.gnu.org/licenses/gpl.html * * Revision: $Id: jquery.autocomplete....
JavaScript
/** * Ajax Queue Plugin * * Homepage: http://jquery.com/plugins/project/ajaxqueue * Documentation: http://docs.jquery.com/AjaxQueue */ /** <script> $(function(){ jQuery.ajaxQueue({ url: "test.php", success: function(html){ jQuery("ul").append(html); } }); jQuery.ajaxQueue({ url: "test.p...
JavaScript
/*! * pickadate.js v2.1.0 - 28 January, 2013 * By Amsul (http://amsul.ca) * Hosted on https://github.com/amsul/pickadate.js * Licensed under MIT ("expat" flavour) license. */ /*jshint debug: true, devel: true, browser: true, asi: true, unused: true, eqnull: true */ ;(function( $, document, u...
JavaScript
// Italian $.extend( $.fn.pickadate.defaults, { monthsFull: [ 'gennaio', 'febbraio', 'marzo', 'aprile', 'maggio', 'giugno', 'luglio', 'agosto', 'settembre', 'ottobre', 'novembre', 'dicembre' ], monthsShort: [ 'gen', 'feb', 'mar', 'apr', 'mag', 'giu', 'lug', 'ago', 'set', 'ott', 'nov', 'dic' ], weekdaysFull...
JavaScript
//** Accordion Content script: By Dynamic Drive, at http://www.dynamicdrive.com //** Created: Jan 7th, 08'. Last updated: Feb 16th, 2012 to v2.0 //Version 1.9: June 7th, 2010': //**1) Ajax content support added, so a given header's content can be dynamically fetched from an external file and on demand. //**2) Optimize...
JavaScript
/*######################################################################### # Amparok Server by Saggi Mizrahi. # # # # This program is free software; you can redistribute it and/or modify # # it under the...
JavaScript
/*######################################################################### # Ampache Adapter Server by Saggi Mizrahi. # # # # This program is free software; you can redistribute it and/or modify # # it under the...
JavaScript
/*######################################################################### # Amparok by Saggi Mizrahi. # # # # This program is free software; you can redistribute it and/or modify # # it under the...
JavaScript
/*######################################################################### # Boolbool Server by Saggi Mizrahi. # # # # This program is free software; you can redistribute it and/or modify # # it under the...
JavaScript
/*######################################################################### # Amparok by Saggi Mizrahi. # # # # This program is free software; you can redistribute it and/or modify # # it under the...
JavaScript
/*######################################################################### # Amparok Server by Saggi Mizrahi. # # # # This program is free software; you can redistribute it and/or modify # # it under the...
JavaScript
/*######################################################################### # Ampache Adapter Server by Saggi Mizrahi. # # # # This program is free software; you can redistribute it and/or modify # # it under the...
JavaScript
/*######################################################################### # Amparok by Saggi Mizrahi. # # # # This program is free software; you can redistribute it and/or modify # # it under the...
JavaScript
/*######################################################################### # Boolbool Server by Saggi Mizrahi. # # # # This program is free software; you can redistribute it and/or modify # # it under the...
JavaScript
/*######################################################################### # Amparok by Saggi Mizrahi. # # # # This program is free software; you can redistribute it and/or modify # # it under the...
JavaScript
/*######################################################################### # Amparok Server by Saggi Mizrahi. # # # # This program is free software; you can redistribute it and/or modify # # it under the...
JavaScript
/*######################################################################### # Ampache Adapter Server by Saggi Mizrahi. # # # # This program is free software; you can redistribute it and/or modify # # it under the...
JavaScript
/*######################################################################### # Amparok by Saggi Mizrahi. # # # # This program is free software; you can redistribute it and/or modify # # it under the...
JavaScript
/*######################################################################### # Boolbool Server by Saggi Mizrahi. # # # # This program is free software; you can redistribute it and/or modify # # it under the...
JavaScript
/*######################################################################### # Amparok by Saggi Mizrahi. # # # # This program is free software; you can redistribute it and/or modify # # it under the...
JavaScript
/*######################################################################### # Amparok Server by Saggi Mizrahi. # # # # This program is free software; you can redistribute it and/or modify # # it under the...
JavaScript
/*######################################################################### # Ampache Adapter Server by Saggi Mizrahi. # # # # This program is free software; you can redistribute it and/or modify # # it under the...
JavaScript
/*######################################################################### # Amparok by Saggi Mizrahi. # # # # This program is free software; you can redistribute it and/or modify # # it under the...
JavaScript
/*######################################################################### # Boolbool Server by Saggi Mizrahi. # # # # This program is free software; you can redistribute it and/or modify # # it under the...
JavaScript
/*######################################################################### # Amparok by Saggi Mizrahi. # # # # This program is free software; you can redistribute it and/or modify # # it under the...
JavaScript
/*######################################################################### # Amparok Server by Saggi Mizrahi. # # # # This program is free software; you can redistribute it and/or modify # # it under the...
JavaScript
/*######################################################################### # Ampache Adapter Server by Saggi Mizrahi. # # # # This program is free software; you can redistribute it and/or modify # # it under the...
JavaScript
/*######################################################################### # Amparok by Saggi Mizrahi. # # # # This program is free software; you can redistribute it and/or modify # # it under the...
JavaScript
/*######################################################################### # Boolbool Server by Saggi Mizrahi. # # # # This program is free software; you can redistribute it and/or modify # # it under the...
JavaScript
/*######################################################################### # Amparok by Saggi Mizrahi. # # # # This program is free software; you can redistribute it and/or modify # # it under the...
JavaScript