Linux cesa-www-main 6.1.0-49-cloud-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.174-1 (2026-05-26) x86_64
Apache/2.4.68 (Debian)
Server IP : 10.218.0.2 & Your IP : 216.73.216.28
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
var /
www /
cesa.co.za /
cpdadmin /
calendar /
Delete
Unzip
Name
Size
Permission
Date
Action
doc
[ DIR ]
drwxr-sr-x
2022-04-19 07:00
lang
[ DIR ]
drwxr-sr-x
2022-04-19 07:00
skins
[ DIR ]
drwxr-sr-x
2022-04-19 07:00
ChangeLog
24.51
KB
-rw-r--r--
2022-04-19 06:59
README
910
B
-rw-r--r--
2022-04-19 06:59
bugtest-hidden-selects.html
4
KB
-rw-r--r--
2022-04-19 06:59
calendar-blue.css
4.72
KB
-rw-r--r--
2022-04-19 06:59
calendar-blue2.css
4.89
KB
-rw-r--r--
2022-04-19 06:59
calendar-brown.css
4.61
KB
-rw-r--r--
2022-04-19 06:59
calendar-green.css
4.67
KB
-rw-r--r--
2022-04-19 06:59
calendar-setup.js
8.65
KB
-rw-r--r--
2022-04-19 06:59
calendar-setup_ew.js
8.98
KB
-rw-r--r--
2022-04-19 06:59
calendar-setup_stripped.js
4.8
KB
-rw-r--r--
2022-04-19 06:59
calendar-system.css
5.57
KB
-rw-r--r--
2022-04-19 06:59
calendar-tas.css
5.18
KB
-rw-r--r--
2022-04-19 06:59
calendar-win2k-1.css
5.85
KB
-rw-r--r--
2022-04-19 06:59
calendar-win2k-2.css
5.85
KB
-rw-r--r--
2022-04-19 06:59
calendar-win2k-cold-1.css
5.65
KB
-rw-r--r--
2022-04-19 06:59
calendar-win2k-cold-2.css
5.85
KB
-rw-r--r--
2022-04-19 06:59
calendar.js
52.57
KB
-rw-r--r--
2022-04-19 06:59
calendar.php
4.38
KB
-rw-r--r--
2022-04-19 06:59
calendar_stripped.js
33.51
KB
-rw-r--r--
2022-04-19 06:59
dayinfo.html
2.97
KB
-rw-r--r--
2022-04-19 06:59
img.gif
223
B
-rw-r--r--
2022-04-19 06:59
index.html
12.41
KB
-rw-r--r--
2022-04-19 06:59
menuarrow.gif
68
B
-rw-r--r--
2022-04-19 06:59
menuarrow2.gif
49
B
-rw-r--r--
2022-04-19 06:59
multiple-dates.html
2.86
KB
-rw-r--r--
2022-04-19 06:59
release-notes.html
18
KB
-rw-r--r--
2022-04-19 06:59
simple-1.html
9.23
KB
-rw-r--r--
2022-04-19 06:59
simple-2.html
3.65
KB
-rw-r--r--
2022-04-19 06:59
simple-3.html
4.38
KB
-rw-r--r--
2022-04-19 06:59
test-position.html
1.46
KB
-rw-r--r--
2022-04-19 06:59
test.php
3.2
KB
-rw-r--r--
2022-04-19 06:59
Save
Rename
<html xmlns="http://www.w3.org/1999/xhtml"> <head> <title>Sample for the multiple dates feature</title> <!-- calendar stylesheet --> <link rel="stylesheet" type="text/css" media="all" href="calendar-win2k-cold-1.css" title="win2k-cold-1" /> <!-- main calendar program --> <script type="text/javascript" src="calendar.js"></script> <!-- language for the calendar --> <script type="text/javascript" src="lang/calendar-en.js"></script> <!-- the following script defines the Calendar.setup helper function, which makes adding a calendar a matter of 1 or 2 lines of code. --> <script type="text/javascript" src="calendar-setup.js"></script> </head> <body> <h1>Sample for the multiple dates feature</h1> <p> Starting version 0.9.7, the calendar is able to handle multiple dates selection, in either flat or popup form. For this to happen one needs to pass the "<tt>multiple: true</tt>" parameter to <tt>Calendar.setup</tt> and to install an <tt>onUpdate</tt> handler that watches for modifications. </p> <a id="trigger" href="#">[open calendar...]</a> <div id="output"></div> <script type="text/javascript">//<![CDATA[ // the default multiple dates selected, first time the calendar is instantiated var MA = []; function closed(cal) { // here we'll write the output; this is only for example. You // will normally fill an input field or something with the dates. var el = document.getElementById("output"); // reset initial content. el.innerHTML = ""; // Reset the "MA", in case one triggers the calendar again. // CAREFUL! You don't want to do "MA = [];". We need to modify // the value of the current array, instead of creating a new one. // Calendar.setup is called only once! :-) So be careful. MA.length = 0; // walk the calendar's multiple dates selection hash for (var i in cal.multiple) { var d = cal.multiple[i]; // sometimes the date is not actually selected, that's why we need to check. if (d) { // OK, selected. Fill an input field. Or something. Just for example, // we will display all selected dates in the element having the id "output". el.innerHTML += d.print("%A, %Y %B %d") + "<br />"; // and push it in the "MA", in case one triggers the calendar again. MA[MA.length] = d; } } cal.hide(); return true; }; Calendar.setup({ align : "BR", showOthers : true, multiple : MA, // pass the initial or computed array of multiple dates to be initially selected onClose : closed, button : "trigger" }); //]]></script> <hr /> <address><a href="http://dynarch.com/mishoo/">mishoo</a></address> <!-- hhmts start --> Last modified: Thu Mar 3 20:17:42 EET 2005 <!-- hhmts end --> </body> </html>