addHEAD( $setup )that can automatically add the required headers to the page being rendered.
$setup
is the name of the calendar setup module; it can either be ommitted, in which case the method described in the Mishoo documentation can be used to create calendars, or it can be 'twiki'
, in which case a helper function is added that simplifies using calendars to set a value in a text field. For example,
# Add styles and javascript for the calendar require TWiki::Contrib::JSCalendarContrib; if( $@ || !$TWiki::Contrib::JSCalendarContrib::VERSION || $TWiki::Contrib::JSCalendarContrib::VERSION < 0.961 ) { TWiki::Func::writeWarning('JSCalendarContrib >=0.961 not found '.$@); } else { TWiki::Contrib::JSCalendarContrib::addHEAD( 'twiki' ); } $html .= CGI::textfield( { name => 'datefield', id => "id_datefield" }); $html .= CGI::image_button( -name => 'datefield_calendar', -onclick => "return showCalendar('id_datefield','%e %B %Y')", -src=> TWiki::Func::getPubUrlPath() . '/' . TWiki::Func::getTwikiWebname() . '/JSCalendarContrib/img.gif', -alt => 'Calendar', -align => 'MIDDLE' ); } }The first parameter to showCalendar is the id of the textfield. See the Mishoo documentation for details of the '$e %B %Y' parameter. Note that the header will only be added once, regardless of the number of times that addHEAD is called.
addHEAD
can be called from commonTagsHandler
for adding the header to all pages, or to beforeEditHandler
just for edit pages etc.
File: | Description: |
---|---|
data/TWiki/JSCalendarContrib.txt | |
lib/TWiki/Contrib/JSCalendarContrib.pm | |
pub/TWiki/JSCalendarContrib/twiki.js | |
pub/TWiki/JSCalendarContrib/bugtest-hidden-selects.html | |
pub/TWiki/JSCalendarContrib/calendar-blue2.css | |
pub/TWiki/JSCalendarContrib/calendar-blue.css | |
pub/TWiki/JSCalendarContrib/calendar-brown.css | |
pub/TWiki/JSCalendarContrib/calendar-green.css | |
pub/TWiki/JSCalendarContrib/calendar.js | |
pub/TWiki/JSCalendarContrib/calendar.php | |
pub/TWiki/JSCalendarContrib/calendar-setup.js | |
pub/TWiki/JSCalendarContrib/calendar-setup_stripped.js | |
pub/TWiki/JSCalendarContrib/calendar_stripped.js | |
pub/TWiki/JSCalendarContrib/calendar-system.css | |
pub/TWiki/JSCalendarContrib/calendar-tas.css | |
pub/TWiki/JSCalendarContrib/calendar-win2k-1.css | |
pub/TWiki/JSCalendarContrib/calendar-win2k-2.css | |
pub/TWiki/JSCalendarContrib/calendar-win2k-cold-1.css | |
pub/TWiki/JSCalendarContrib/calendar-win2k-cold-2.css | |
pub/TWiki/JSCalendarContrib/ChangeLog | |
pub/TWiki/JSCalendarContrib/dayinfo.html | |
pub/TWiki/JSCalendarContrib/doc/html/field-button.jpg | |
pub/TWiki/JSCalendarContrib/doc/html/reference.css | |
pub/TWiki/JSCalendarContrib/doc/html/reference.html | |
pub/TWiki/JSCalendarContrib/doc/html/reference-Z-S.css | |
pub/TWiki/JSCalendarContrib/doc/reference.pdf | |
pub/TWiki/JSCalendarContrib/img.gif | |
pub/TWiki/JSCalendarContrib/index.html | |
pub/TWiki/JSCalendarContrib/lang/calendar-af.js | |
pub/TWiki/JSCalendarContrib/lang/calendar-al.js | |
pub/TWiki/JSCalendarContrib/lang/calendar-bg.js | |
pub/TWiki/JSCalendarContrib/lang/calendar-big5.js | |
pub/TWiki/JSCalendarContrib/lang/calendar-big5-utf8.js | |
pub/TWiki/JSCalendarContrib/lang/calendar-br.js | |
pub/TWiki/JSCalendarContrib/lang/calendar-ca.js | |
pub/TWiki/JSCalendarContrib/lang/calendar-cs-utf8.js | |
pub/TWiki/JSCalendarContrib/lang/calendar-cs-win.js | |
pub/TWiki/JSCalendarContrib/lang/calendar-da.js | |
pub/TWiki/JSCalendarContrib/lang/calendar-de.js | |
pub/TWiki/JSCalendarContrib/lang/calendar-du.js | |
pub/TWiki/JSCalendarContrib/lang/calendar-el.js | |
pub/TWiki/JSCalendarContrib/lang/calendar-en.js | |
pub/TWiki/JSCalendarContrib/lang/calendar-es.js | |
pub/TWiki/JSCalendarContrib/lang/calendar-fi.js | |
pub/TWiki/JSCalendarContrib/lang/calendar-fr.js | |
pub/TWiki/JSCalendarContrib/lang/calendar-he-utf8.js | |
pub/TWiki/JSCalendarContrib/lang/calendar-hr.js | |
pub/TWiki/JSCalendarContrib/lang/calendar-hr-utf8.js | |
pub/TWiki/JSCalendarContrib/lang/calendar-hu.js | |
pub/TWiki/JSCalendarContrib/lang/calendar-it.js | |
pub/TWiki/JSCalendarContrib/lang/calendar-jp.js | |
pub/TWiki/JSCalendarContrib/lang/calendar-ko.js | |
pub/TWiki/JSCalendarContrib/lang/calendar-ko-utf8.js | |
pub/TWiki/JSCalendarContrib/lang/calendar-lt.js | |
pub/TWiki/JSCalendarContrib/lang/calendar-lt-utf8.js | |
pub/TWiki/JSCalendarContrib/lang/calendar-lv.js | |
pub/TWiki/JSCalendarContrib/lang/calendar-nl.js | |
pub/TWiki/JSCalendarContrib/lang/calendar-no.js | |
pub/TWiki/JSCalendarContrib/lang/calendar-pl.js | |
pub/TWiki/JSCalendarContrib/lang/calendar-pl-utf8.js | |
pub/TWiki/JSCalendarContrib/lang/calendar-pt.js | |
pub/TWiki/JSCalendarContrib/lang/calendar-ro.js | |
pub/TWiki/JSCalendarContrib/lang/calendar-ru_win_.js | |
pub/TWiki/JSCalendarContrib/lang/calendar-ru.js | |
pub/TWiki/JSCalendarContrib/lang/calendar-si.js | |
pub/TWiki/JSCalendarContrib/lang/calendar-sk.js | |
pub/TWiki/JSCalendarContrib/lang/calendar-sp.js | |
pub/TWiki/JSCalendarContrib/lang/calendar-sv.js | |
pub/TWiki/JSCalendarContrib/lang/calendar-tr.js | |
pub/TWiki/JSCalendarContrib/lang/calendar-zh.js | |
pub/TWiki/JSCalendarContrib/lang/cn_utf8.js | |
pub/TWiki/JSCalendarContrib/skins/aqua/active-bg.gif | |
pub/TWiki/JSCalendarContrib/skins/aqua/dark-bg.gif | |
pub/TWiki/JSCalendarContrib/skins/aqua/hover-bg.gif | |
pub/TWiki/JSCalendarContrib/skins/aqua/menuarrow.gif | |
pub/TWiki/JSCalendarContrib/skins/aqua/normal-bg.gif | |
pub/TWiki/JSCalendarContrib/skins/aqua/rowhover-bg.gif | |
pub/TWiki/JSCalendarContrib/skins/aqua/status-bg.gif | |
pub/TWiki/JSCalendarContrib/skins/aqua/theme.css | |
pub/TWiki/JSCalendarContrib/skins/aqua/title-bg.gif | |
pub/TWiki/JSCalendarContrib/skins/aqua/today-bg.gif | |
pub/TWiki/JSCalendarContrib/skins/aqua/transparent-bg.png | |
pub/TWiki/JSCalendarContrib/menuarrow.gif | |
pub/TWiki/JSCalendarContrib/menuarrow2.gif | |
pub/TWiki/JSCalendarContrib/multiple-dates.html | |
pub/TWiki/JSCalendarContrib/README | |
pub/TWiki/JSCalendarContrib/release-notes.html | |
pub/TWiki/JSCalendarContrib/simple-1.html | |
pub/TWiki/JSCalendarContrib/simple-2.html | |
pub/TWiki/JSCalendarContrib/simple-3.html | |
pub/TWiki/JSCalendarContrib/test.php | |
pub/TWiki/JSCalendarContrib/test-position.html |
Author: | TWiki:Main/CrawfordCurrie http://www.c-dot.co.uk |
Version: | 10613 of the Mishoo calendar |
Copyright ©: | See the Mishoo documentation |
License: | GPL (GNU General Public License) |
Dependencies: | None |
Change History: | |
10247 | Item2054 put the calendar at z-index 2000, way above pattern skin divs. |
6634 | Item453 removed EditTablePlugins private copy of the Mishoo JS calendar, and made sure it works with JSCalendarContrib. Improved the documentation of the JSCalendar while I was there. |
6626 | Item468 updated docs for Dakar release |
5048 | Cairo readiness |
5039 | Split from SharedCode? |
27 Dec 2005 | updated to calendar version 1.0; set style for Safari to win2k-1 |
14 Aug 2004 | Separated out from SharedCode? module |
Home: | http://TWiki.org/cgi-bin/view/Plugins/JSCalendarContrib |
Feedback: | http://TWiki.org/cgi-bin/view/Plugins/JSCalendarContribDev |
Appraisal: | http://TWiki.org/cgi-bin/view/Plugins/JSCalendarContribAppraisal |
I | Attachment | Action | Size | Date | Who | Comment |
---|---|---|---|---|---|---|
css | calendar-blue2.css | manage | 4.9 K | 25 Jun 2006 - 16:19 | UnknownUser | |
js | twiki.js | manage | 0.8 K | 25 Jun 2006 - 16:19 | UnknownUser | |
css | calendar-blue.css | manage | 4.7 K | 25 Jun 2006 - 16:19 | UnknownUser | |
html | simple-1.html | manage | 9.2 K | 25 Jun 2006 - 16:19 | UnknownUser | |
EXT | doc | manage | 4.0 K | 25 Jun 2006 - 16:19 | UnknownUser | |
html | index.html | manage | 12.4 K | 25 Jun 2006 - 16:19 | UnknownUser | |
css | calendar-win2k-cold-2.css | manage | 5.8 K | 25 Jun 2006 - 16:19 | UnknownUser | |
js | calendar-setup_stripped.js | manage | 4.8 K | 25 Jun 2006 - 16:19 | UnknownUser | |
EXT | skins | manage | 4.0 K | 25 Jun 2006 - 16:19 | UnknownUser | |
html | multiple-dates.html | manage | 2.9 K | 25 Jun 2006 - 16:19 | UnknownUser | |
EXT | lang | manage | 4.0 K | 25 Jun 2006 - 16:19 | UnknownUser | |
html | simple-2.html | manage | 3.7 K | 25 Jun 2006 - 16:19 | UnknownUser | |
EXT | ChangeLog | manage | 24.5 K | 25 Jun 2006 - 16:19 | UnknownUser | |
js | calendar.js | manage | 48.1 K | 25 Jun 2006 - 16:19 | UnknownUser | |
css | calendar-tas.css | manage | 5.2 K | 25 Jun 2006 - 16:19 | UnknownUser | |
js | calendar-setup.js | manage | 8.6 K | 25 Jun 2006 - 16:19 | UnknownUser | |
gif | img.gif | manage | 0.2 K | 25 Jun 2006 - 16:19 | UnknownUser | |
html | bugtest-hidden-selects.html | manage | 3.9 K | 25 Jun 2006 - 16:19 | UnknownUser | |
php | calendar.php | manage | 4.4 K | 25 Jun 2006 - 16:19 | UnknownUser | |
html | release-notes.html | manage | 18.0 K | 25 Jun 2006 - 16:19 | UnknownUser | |
css | calendar-green.css | manage | 4.7 K | 25 Jun 2006 - 16:19 | UnknownUser | |
css | calendar-win2k-2.css | manage | 5.8 K | 25 Jun 2006 - 16:19 | UnknownUser | |
css | calendar-brown.css | manage | 4.6 K | 25 Jun 2006 - 16:19 | UnknownUser | |
js | calendar_stripped.js | manage | 33.5 K | 25 Jun 2006 - 16:19 | UnknownUser | |
css | calendar-win2k-cold-1.css | manage | 5.6 K | 25 Jun 2006 - 16:19 | UnknownUser | |
html | dayinfo.html | manage | 3.0 K | 25 Jun 2006 - 16:19 | UnknownUser | |
css | calendar-system.css | manage | 5.6 K | 25 Jun 2006 - 16:19 | UnknownUser | |
gif | menuarrow2.gif | manage | 0.1 K | 25 Jun 2006 - 16:19 | UnknownUser | |
php | test.php | manage | 3.2 K | 25 Jun 2006 - 16:19 | UnknownUser | |
css | calendar-win2k-1.css | manage | 5.8 K | 25 Jun 2006 - 16:19 | UnknownUser | |
html | test-position.html | manage | 1.5 K | 25 Jun 2006 - 16:19 | UnknownUser | |
gif | menuarrow.gif | manage | 0.1 K | 25 Jun 2006 - 16:19 | UnknownUser | |
html | simple-3.html | manage | 4.4 K | 25 Jun 2006 - 16:19 | UnknownUser | |
EXT | README | manage | 0.9 K | 25 Jun 2006 - 16:19 | UnknownUser |
USER REFERENCES
ADMIN MAINTENANCE
CATEGORIES WEBS PERSONAL |
Copyright © by the contributing authors. Bernstein - The Memory of Paper http://www.bernstein.oeaw.ac.at Ideas, requests, problems regarding Bernstein? Send feedback Note: Please contribute updates to this topic on TWiki.org at TWiki:TWiki.JSCalendarContrib |