Home
last modified time | relevance | path

Searched refs:day (Results 326 – 350 of 355) sorted by path

1...<<1112131415

/plugin/tline/
H A DCHANGES.txt83 * Add English day names to en locale -- LarryK rev 1656
/plugin/tuxquote/
H A Dquotes.txt419 24 hours in a day ... 24 beers in a case ... coincidence?
641 …ive a man a fish and he will eat for a day. Teach him how to fish, and he will sit in a boat & dri…
704 Even a stopped clock is right twice a day. <BR> -- Proverb
1917 The second day of a diet is always easier than the first. By the second day you're off it. <BR> -- …
2169 Any idiot can face a crisis -- it's this day-to-day living that wears you out. <BR> -- Anton Chekho…
2847 Most turkeys taste better the day after; my mother's tasted better the day before. <BR> -- Rita Rud…
3597 A day for firm decisions! Or is it?
3598 A day without sun shine is like, you know, night.
3636 Bald guys never have a bad hair day.
3705 Fine day to work off excess energy. Steal something heavy.
[all …]
/plugin/upgrade/vendor/splitbrain/php-archive/src/
H A DZip.php881 $day = $mdate & 0x001F;
887 $mtime = mktime($hour, $minute, $seconde, $month, $day, $year);
/plugin/webdav/vendor/sabre/dav/
H A DCHANGELOG.md631 and all-day events in the `calendar-query`, `calendar-multiget` and
1354 * Fixed: Correctly checking if recurring, all-day events with no dtstart fall in
1357 * Fixed: All-day recurring events wouldn't match if an occurence ended exactly
1361 * Fixed: Issue 228: DTEND is now non-inclusive for all-day events in the
1403 of the month, if this day did not exist.
1415 or BYMONTHDAY match the first day of the month.
1419 * Fixed: Correctly filtering all-day events.
/plugin/webdav/vendor/sabre/vobject/
H A DCHANGELOG.md78 `fastForward` with all-day events. (@strokyl, thanks you are brilliant).
280 * #250: Recurring all-day events are incorrectly included in time range
370 floating times or all-day events.
372 * #159: `RECURRENCE-ID` for all-day events will now be correct when expanding.
384 * #147: Bugs related to scheduling all-day events.
/plugin/webdav/vendor/sabre/vobject/lib/Recur/
H A DRRuleIterator.php825 foreach ($this->byDay as $day) {
826 $dayName = $this->dayNames[$this->dayMap[substr($day, -2)]];
847 if (strlen($day) > 2) {
848 $offset = (int) substr($day, 0, -2);
/plugin/webdavclient/vendor/sabre/vobject/
H A DChangeLog.md54 * #250: Recurring all-day events are incorrectly included in time range
144 floating times or all-day events.
146 * #159: `RECURRENCE-ID` for all-day events will now be correct when expanding.
158 * #147: Bugs related to scheduling all-day events.
/plugin/webdavclient/vendor/sabre/vobject/lib/Recur/
H A DRRuleIterator.php754 if ($this->byDay) foreach($this->byDay as $day) {
756 $dayName = $this->dayNames[$this->dayMap[substr($day,-2)]];
778 if (strlen($day)>2) {
779 $offset = (int)substr($day,0,-2);
/plugin/wikicalendar/
H A Dstyle.css42 div.dokuwiki table.plugin_wikicalendar td.day,
51 div.dokuwiki table.plugin_wikicalendar td.day:hover,
69 div.dokuwiki table.plugin_wikicalendar td.day div.isevent {
81 div.dokuwiki table.plugin_wikicalendar td.day div.abstract,
86 div.dokuwiki table.plugin_wikicalendar td.day:hover div.abstract,
/plugin/wysiwyg/fckeditor/
H A Dlicense.txt1124 the 60 day notice period specified above.
/plugin/xcom/
H A Dscript.js221 … var day = date_time.getDate() > 9 ? date_time.getDate() : '0'+ date_time.getDate();
222 …r = date_time.getFullYear() + "-" + month + "-" + day + " " + date_time.getHours() + ":" + date_ti…
/plugin/xlsx2dw/packages/exceljs/
H A Dexceljs.js44387 if (this.day = r[0], n) for (var o = 1; o <= 31; o += 1) {
44388 n(o).replace(/\[|\]/g, "") === e && (this.day = o);
44453 a = o.day,
/plugin/xlsx2dw/packages/xlsx/
H A Dxlsx.mjs588 case 100: /* 'd' day */
21924 case 'day': { // <number:day> 16.29.12
21933 case 'day-of-week': { // <number:day-of-week> 16.29.16
22373 case 'day': // 16.27.11 <number:day>
22377 case 'day-of-week': // 16.27.15 <number:day-of-week>
22725 …case "d": case "dd": payload += '<number:day number:style="' + (c.length % 2 ? "short" : "long") +…
22726 …case "ddd": case "dddd": payload += '<number:day-of-week number:style="' + (c.length % 2 ? "short"…
22971 o.push(' <number:day number:style="long"/>\n');
23641 dstr.push(dd + (dstyle == 2 ? " day" + (dd == 1 ? "" : "s") : dstyle == 1 ? "d" : ""));
/plugin/yearbox/_test/
H A DpagenameStrategy.test.php64 $day = '08';
68 $actual_id = $strategy->getPageId($baseNS, $year, $month, $day, $name);
/plugin/yearbox/
H A Dplugin.info.txt6 …TML calendar for the given year, with a link to create a new page for each day of the year. Existi…
H A Dreadme.txt1 Builds a complete HTML calendar for the given year, with a link to create a new page for each day o…
6 3. name=<name> : prefix for new page name, e.g diary, journal, day [default]
/plugin/yearbox/services/pageNameStrategies/
H A DCompletelySeparated.php8 public function getPageId($baseNS, $year, $month, $day, $name) argument
10 return "$baseNS:$year:$month:$day";
H A DPageNameStrategy.php24 abstract public function getPageId($baseNS, $year, $month, $day, $name); argument
H A DYearMonthCombinedNS.php8 public function getPageId($baseNS, $year, $month, $day, $name) argument
10 $pagename = ($name ? "$name-" : '') . "$year-$month-$day";
H A DYearMonthSeperatedNS.php8 public function getPageId($baseNS, $year, $month, $day, $name) argument
10 $pagename = ($name ? "$name-" : '') . "$year-$month-$day";
H A DYearNS.php8 public function getPageId($baseNS, $year, $month, $day, $name) argument
10 $pagename = ($name ? "$name-" : '') . "$year-$month-$day";
/plugin/yuriigantt/3rd/dhtmlxgantt/
H A Ddhtmlxgantt.js13day:86400,week:604800,month:2592e3,quarter:7776e3,year:31536e3};function n(t){return!(!t||"object"… property in AnonymousFunction949e2c6c1300.i
H A Ddhtmlxgantt.js.map1day","week","month","quarter","year","getFullYear","getMonth","getDate","arrayFilter","arr","callb…
/plugin/yuriigantt/3rd/dhtmlxgantt/ext/
H A Ddhtmlxgantt_click_drag.js13 …odebase/",n(n.s=217)}({2:function(t,e){var n={second:1,minute:60,hour:3600,day:86400,week:604800,m… property in AnonymousFunctionfc12088e0400.n
H A Ddhtmlxgantt_click_drag.js.map1day","week","month","quarter","year","isDate","obj","getFullYear","getMonth","getDate","arrayFilte…

1...<<1112131415