phpgroupware-cvs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Phpgroupware-cvs] phpgwapi/js/jscalendar jscalendar-setup.php


From: Dave Hall
Subject: [Phpgroupware-cvs] phpgwapi/js/jscalendar jscalendar-setup.php
Date: Mon, 27 Nov 2006 05:29:10 +0000

CVSROOT:        /sources/phpgwapi
Module name:    phpgwapi
Changes by:     Dave Hall <skwashd>     06/11/27 05:29:10

Modified files:
        js/jscalendar  : jscalendar-setup.php 

Log message:
        update config to fit with jscal v1.0

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/phpgwapi/js/jscalendar/jscalendar-setup.php?cvsroot=phpgwapi&r1=1.7&r2=1.8

Patches:
Index: jscalendar-setup.php
===================================================================
RCS file: /sources/phpgwapi/phpgwapi/js/jscalendar/jscalendar-setup.php,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -b -r1.7 -r1.8
--- jscalendar-setup.php        26 Mar 2006 12:54:14 -0000      1.7
+++ jscalendar-setup.php        27 Nov 2006 05:29:10 -0000      1.8
@@ -9,7 +9,7 @@
        * @license http://www.gnu.org/licenses/lgpl.html GNU Lesser General 
Public License
        * @package phpgwapi
        * @subpackage javascript
-       * @version $Id: jscalendar-setup.php,v 1.7 2006/03/26 12:54:14 skwashd 
Exp $
+       * @version $Id: jscalendar-setup.php,v 1.8 2006/11/27 05:29:10 skwashd 
Exp $
        */
 
 $GLOBALS['phpgw_info']['flags'] = Array(
@@ -22,6 +22,8 @@
        'nocachecontrol' => True        // allow caching
 );
 
+Header('Content-Type: text/javascript');
+
 /**
 * Include phpgroupware header
 */
@@ -68,6 +70,8 @@
  * than modifying calendar.js itself).
  */
 
+// $Id: jscalendar-setup.php,v 1.8 2006/11/27 05:29:10 skwashd Exp $
+
 /**
  *  This function "patches" an input field (or other element) to use a calendar
  *  widget for date selection.
@@ -83,8 +87,8 @@
  *   ifFormat      | date format that will be stored in the input field
  *   daFormat      | the date format that will be used to display the date in 
displayArea
  *   singleClick   | (true/false) wether the calendar is in single click mode 
or not (default: true)
- *   mondayFirst   | (true/false) if true Monday is the first day of week, 
Sunday otherwise (default: true)
- *   align         | alignment (default: "Bl"); if you don't know what's this 
see the calendar documentation
+ *   firstDay      | numeric: 0 to 6.  "0" means display Sunday first, "1" 
means display Monday first, etc.
+ *   align         | alignment (default: "Br"); if you don't know what's this 
see the calendar documentation
  *   range         | array with 2 elements.  Default: [1900, 2999] -- the 
range of years available
  *   weekNumbers   | (true/false) if it's true (default) the calendar will 
display week numbers
  *   flat          | null or element ID; if not null the calendar will be a 
flat calendar having the parent with the given ID
@@ -96,12 +100,16 @@
  *   date          | the date that the calendar will be initially displayed to
  *   showsTime     | default: false; if true the calendar will include a time 
selector
  *   timeFormat    | the time format; can be "12" or "24", default is "12"
+ *   electric      | if true (default) then given fields/date areas are 
updated for each move; otherwise they're updated only on close
+ *   step          | configures the step of the years in drop-down boxes; 
default: 2
+ *   position      | configures the calendar absolute position; default: null
+ *   cache         | if "true" (but default: "false") it will reuse the same 
calendar object, where possible
+ *   showOthers    | if "true" (but default: "false") it will show days from 
other months too
  *
  *  None of them is required, they all have default values.  However, if you
  *  pass none of "inputField", "displayArea" or "button" you'll get a warning
  *  saying "nothing to setup".
  */
-
 Calendar.setup = function (params) {
        function param_default(pname, def) { if (typeof params[pname] == 
"undefined") { params[pname] = def; } };
 
@@ -113,12 +121,27 @@
        param_default("daFormat",      "<?php echo $jsDateFormat; ?>");
        param_default("singleClick",   true);
        param_default("disableFunc",   null);
-       param_default("mondayFirst",   <?php echo 
$GLOBALS['phpgw_info']['user']['preferences']['common']['weekdaysstarts'] != 
'sunday' ? 'true' : 'false'; ?>);
-       param_default("align",         "Bl");
+       param_default("dateStatusFunc", params["disableFunc"]); // takes 
precedence if both are defined
+       param_default("dateText",       null);
+       param_default("firstDay",       <?php echo 
isset($GLOBALS['phpgw_info']['user']['preferences']['common']['weekdaysstarts'])
 
+                                                                               
&& $GLOBALS['phpgw_info']['user']['preferences']['common']['weekdaysstarts'] == 
'sunday' ? 0 : 1; ?>);
+       param_default("align",          "Br");
        param_default("range",         [1900, 2999]);
        param_default("weekNumbers",   true);
        param_default("flat",          null);
        param_default("flatCallback",  null);
+       param_default("onSelect",       null);
+       param_default("onClose",        null);
+       param_default("onUpdate",       null);
+       param_default("date",           null);
+       param_default("showsTime",      false);
+       param_default("timeFormat",     "24");
+       param_default("electric",       true);
+       param_default("step",           2);
+       param_default("position",       null);
+       param_default("cache",          false);
+       param_default("showOthers",     false);
+       param_default("multiple",       null);
 
        var tmp = ["inputField", "displayArea", "button"];
        for (var i in tmp) {
@@ -126,42 +149,53 @@
                        params[tmp[i]] = 
document.getElementById(params[tmp[i]]);
                }
        }
-       if (!(params.flat || params.inputField || params.displayArea || 
params.button)) {
+       if (!(params.flat || params.multiple || params.inputField || 
params.displayArea || params.button)) {
                alert("Calendar.setup:\n  Nothing to setup (no fields found).  
Please check your code");
                return false;
        }
 
        function onSelect(cal) {
-               if (cal.params.flat) {
-                       if (typeof cal.params.flatCallback == "function") {
-                               cal.params.flatCallback(cal);
-                       } else {
-                               alert("No flatCallback given -- doing 
nothing.");
+               var p = cal.params;
+               var update = (cal.dateClicked || p.electric);
+               if (update && p.inputField) {
+                       p.inputField.value = cal.date.print(p.ifFormat);
+                       if (typeof p.inputField.onchange == "function")
+                               p.inputField.onchange();
+               }
+               if (update && p.displayArea)
+                       p.displayArea.innerHTML = cal.date.print(p.daFormat);
+               if (update && typeof p.onUpdate == "function")
+                       p.onUpdate(cal);
+               if (update && p.flat) {
+                       if (typeof p.flatCallback == "function")
+                               p.flatCallback(cal);
                        }
-                       return false;
-               }
-               if (cal.params.inputField) {
-                       cal.params.inputField.value = 
cal.date.print(cal.params.ifFormat);
-               }
-               if (cal.params.displayArea) {
-                       cal.params.displayArea.innerHTML = 
cal.date.print(cal.params.daFormat);
-               }
-               if (cal.params.singleClick && cal.dateClicked) {
+               if (update && p.singleClick && cal.dateClicked)
                        cal.callCloseHandler();
-               }
        };
 
        if (params.flat != null) {
+               if (typeof params.flat == "string")
                params.flat = document.getElementById(params.flat);
                if (!params.flat) {
                        alert("Calendar.setup:\n  Flat specified but can't find 
parent.");
                        return false;
                }
-               var cal = new Calendar(params.mondayFirst, null, onSelect);
+               var cal = new Calendar(params.firstDay, params.date, 
params.onSelect || onSelect);
+               cal.showsOtherMonths = params.showOthers;
+               cal.showsTime = params.showsTime;
+               cal.time24 = (params.timeFormat == "24");
                cal.params = params;
                cal.weekNumbers = params.weekNumbers;
                cal.setRange(params.range[0], params.range[1]);
-               cal.setDisabledHandler(params.disableFunc);
+               cal.setDateStatusHandler(params.dateStatusFunc);
+               cal.getDateText = params.dateText;
+               if (params.ifFormat) {
+                       cal.setDateFormat(params.ifFormat);
+               }
+               if (params.inputField && typeof params.inputField.value == 
"string") {
+                       cal.parseDate(params.inputField.value);
+               }
                cal.create(params.flat);
                cal.show();
                return false;
@@ -172,25 +206,49 @@
                var dateEl = params.inputField || params.displayArea;
                var dateFmt = params.inputField ? params.ifFormat : 
params.daFormat;
                var mustCreate = false;
-               if (!window.calendar) {
-                       window.calendar = new Calendar(params.mondayFirst, 
null, onSelect, function(cal) { cal.hide(); });
-                       window.calendar.weekNumbers = params.weekNumbers;
+               var cal = window.calendar;
+               if (dateEl)
+                       params.date = Date.parseDate(dateEl.value || 
dateEl.innerHTML, dateFmt);
+               if (!(cal && params.cache)) {
+                       window.calendar = cal = new Calendar(params.firstDay,
+                                                            params.date,
+                                                            params.onSelect || 
onSelect,
+                                                            params.onClose || 
function(cal) { cal.hide(); });
+                       cal.showsTime = params.showsTime;
+                       cal.time24 = (params.timeFormat == "24");
+                       cal.weekNumbers = params.weekNumbers;
                        mustCreate = true;
                } else {
-                       window.calendar.hide();
+                       if (params.date)
+                               cal.setDate(params.date);
+                       cal.hide();
+               }
+               if (params.multiple) {
+                       cal.multiple = {};
+                       for (var i = params.multiple.length; --i >= 0;) {
+                               var d = params.multiple[i];
+                               var ds = d.print("%Y%m%d");
+                               cal.multiple[ds] = d;
                }
-               window.calendar.setRange(params.range[0], params.range[1]);
-               window.calendar.params = params;
-               window.calendar.setDisabledHandler(params.disableFunc);
-               window.calendar.setDateFormat(dateFmt);
-               if (mustCreate) {
-                       window.calendar.create();
-               }
-               window.calendar.parseDate(dateEl.value || dateEl.innerHTML);
-               window.calendar.refresh();
-               window.calendar.showAtElement(params.displayArea || 
params.inputField, params.align);
+               }
+               cal.showsOtherMonths = params.showOthers;
+               cal.yearStep = params.step;
+               cal.setRange(params.range[0], params.range[1]);
+               cal.params = params;
+               cal.setDateStatusHandler(params.dateStatusFunc);
+               cal.getDateText = params.dateText;
+               cal.setDateFormat(dateFmt);
+               if (mustCreate)
+                       cal.create();
+               cal.refresh();
+               if (!params.position)
+                       cal.showAtElement(params.button || params.displayArea 
|| params.inputField, params.align);
+               else
+                       cal.showAt(params.position[0], params.position[1]);
                return false;
        };
+
+       return cal;
 };
 
 // translations
@@ -216,6 +274,24 @@
 
 // tooltips
 Calendar._TT = {};
+Calendar._TT["INFO"] = "About the calendar";
+
+Calendar._TT["ABOUT"] =
+"DHTML Date/Time Selector\n" +
+"(c) dynarch.com 2002-2005 / Author: Mihai Bazon\n" + // don't translate this 
this ;-)
+"For latest version visit: http://www.dynarch.com/projects/calendar/\n"; +
+"Distributed under GNU LGPL.  See http://gnu.org/licenses/lgpl.html for 
details." +
+"\n\n" +
+"Date selection:\n" +
+"- Use the \xab, \xbb buttons to select year\n" +
+"- Use the " + String.fromCharCode(0x2039) + ", " + 
String.fromCharCode(0x203a) + " buttons to select month\n" +
+"- Hold mouse button on any of the above buttons for faster selection.";
+Calendar._TT["ABOUT_TIME"] = "\n\n" +
+"Time selection:\n" +
+"- Click on any of the time parts to increase it\n" +
+"- or Shift-click to decrease it\n" +
+"- or click and drag for faster selection.";
+
 Calendar._TT["DAY_FIRST"] = "<?php echo lang('Display %s first'); ?>"
 Calendar._TT["TOGGLE"] = "<?php echo lang('Toggle first day of week'); ?>";
 Calendar._TT["PREV_YEAR"] = "<?php echo lang('Prev. year (hold for menu)'); 
?>";




reply via email to

[Prev in Thread] Current Thread [Next in Thread]