Home
last modified time | relevance | path

Searched full:events (Results 1 – 25 of 1099) sorted by relevance

12345678910>>...44

/plugin/calendar/lang/en/
H A Dlang.php11 $lang['events'] = 'Events';
45 // Recurring events
94 $lang['no_events'] = 'No events';
95 $lang['no_events_today'] = 'No events today';
96 $lang['no_events_this_month'] = 'No events this month';
97 $lang['no_events_found'] = 'No events match your search';
117 $lang['manage_events'] = 'Manage Events';
122 $lang['cleanup_events'] = 'Cleanup Old Events';
125 $lang['upcoming_events'] = 'Upcoming Events';
126 $lang['important_events'] = 'Important Events';
[all …]
/plugin/sequencediagram/bower_components/lodash/vendor/backbone/test/
Devents.js3 QUnit.module('Backbone.Events');
8 _.extend(obj, Backbone.Events);
19 QUnit.test('binding and triggering multiple events', function(assert) {
22 _.extend(obj, Backbone.Events);
42 _.extend(obj, Backbone.Events);
73 _.extend(obj, Backbone.Events);
103 _.extend(obj, Backbone.Events);
120 var a = _.extend({}, Backbone.Events);
121 var b = _.extend({}, Backbone.Events);
131 var a = _.extend({}, Backbone.Events);
[all …]
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Calendar/Resource/
DEvents.php22 use Google\Service\Calendar\Events as EventsModel;
25 * The "events" collection of methods.
29 * $events = $calendarService->events;
32 class Events extends \Google\Service\Resource class
35 * Deletes an event. (events.delete)
58 * Returns an event. (events.get)
85 * event to a calendar. (events.import)
109 * Creates an event. (events.insert)
144 * Returns instances of the specified recurring event. (events.instances)
159 * @opt_param int maxResults Maximum number of events returned on one result
[all …]
/plugin/authgooglesheets/vendor/google/apiclient-services/src/GamesManagement/Resource/
DEvents.php23 * The "events" collection of methods.
27 * $events = $gamesManagementService->events;
30 class Events extends \Google\Service\Resource class
35 * accounts for your application. (events.reset)
47 * Resets all player progress on all events for the currently authenticated
49 * your application. (events.resetAll)
60 * Resets all draft events for all players. This method is only available to
61 * user accounts for your developer console. (events.resetAllForAllPlayers)
73 * available to user accounts for your developer console. Only draft events can
74 * be reset. (events.resetForAllPlayers)
[all …]
/plugin/diagramsnet/lib/
Dshortcuts.svg4events="all"/><rect x="7" y="457" width="340" height="30" fill="#ffffff" stroke="none" pointer-eve…
/plugin/calendar/classes/
H A DEventManager.php65 * Load events for a specific month
71 * @return array Events indexed by date
82 $events = [];
86 $events = self::loadMonthMultiNamespace($namespace, $year, $month);
89 $events = CalendarFileHandler::readJson($eventFile);
94 CalendarEventCache::setMonthEvents($namespace, $year, $month, $events);
97 return $events;
101 * Load events from multiple namespaces
106 * @return array Merged events indexed by date
114 $events = CalendarFileHandler::readJson($eventFile);
[all …]
H A DGoogleCalendarSync.php29 …https://www.googleapis.com/auth/calendar.readonly https://www.googleapis.com/auth/calendar.events';
321 * Import events from Google Calendar
345 $url = self::CALENDAR_API . '/calendars/' . urlencode($calendarId) . '/events';
349 'singleEvents' => 'true', // Expand recurring events
359 'error' => $response['error']['message'] ?? 'Failed to fetch events'
363 // Process and save events
400 // Skip cancelled events
420 // Google all-day events end on the next day
480 // Load existing events
481 $events = [];
[all …]
/plugin/editsections2/
Dscript.js4 * Replaces section edit highlighting events
38 * Replaces mouseover events on section edit buttons
167 * Replaces mouseover events on section edit buttons
174 events,
197 // remove events and collect section info
199 events = sectionEditForms[i].events;
201 // remove all of the previously-set mouseover events from the button
202 if (events && events.mouseover) {
203 for (guid in events.mouseover) {
205 sectionEditForms[i], 'mouseover', events.mouseover[guid]
[all …]
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Games/Resource/
DEvents.php26 * The "events" collection of methods.
30 * $events = $gamesService->events;
33 class Events extends \Google\Service\Resource class
36 * Returns a list showing the current progress on events in this application for
37 * the currently authenticated user. (events.listByPlayer)
43 * @opt_param int maxResults The maximum number of events to return in the
44 * response, used for paging. For any response, the actual number of events to
57 * (events.listDefinitions)
76 * Records a batch of changes to the number of times events have occurred for
77 * the currently authenticated user of this application. (events.record)
[all …]
/plugin/authgooglesheets/vendor/google/apiclient-services/src/RecommendationsAI/Resource/
DProjectsLocationsCatalogsEventStoresUserEvents.php67 * Bulk import of User events. Request processing might be synchronous. Events
69 * user events. Operation.response is of type ImportResponse. Note that it is
86 * Gets a list of user events within a time range, with potential filtering. The
87 * method does not list unjoined user events. Unjoined user event definition:
100 * restrictions over returned events. This is a sequence of terms, where each
101 * term applies some kind of a restriction to the returned user events. Use this
102 * expression to restrict results to a specific time range, or filter events by
110 * restrict results to events for which catalog items were not found in the
111 * catalog. The default behavior is to return only those events for which
133 * Deletes permanently all user events specified by the filter provided.
[all …]
/plugin/jplayer/vendor/happyworm/jplayer/lib/
Dpopcorn.ie8.js4 var events = {};
15 if ( !events[ eventName ] ) {
16 events[ eventName ] = { variable
17 events: [], property
23 if ( events[ eventName ].active ) {
24 events[ eventName ].queue.push( callBack );
26 events[ eventName ].events.push( callBack );
35 listeners = events[ eventName ];
46 for ( i = listeners.events.length - 1; i >= 0; i-- ) {
47 if ( callBack === listeners.events[ i ] ) {
[all …]
Dpopcorn.player.js33 // List of events
40 events = {},
192 if ( !events[ evtName ] ) {
194 events[ evtName ] = [];
197 events[ evtName ].push( fn );
205 listeners = events[ evtName ];
213 for ( i = events[ evtName ].length - 1; i >= 0; i-- ) {
236 eventInterface = Popcorn.events.getInterface( eventName );
245 if ( events[ eventName ] ) {
247 for ( var i = events[ eventName ].length - 1; i >= 0; i-- ) {
[all …]
/plugin/calendar/
H A DPROJECT_HISTORY.md9 …i calendar allowing users to add, edit, and delete events on specific dates within wiki pages. Eve…
11 … in the early versions included namespace support (events scoped to wiki namespaces), multi-day ev…
18 …ar}}` — compact week-grid widget for DokuWiki sidebars showing today, tomorrow, and upcoming events
20 - `{{eventlist range=N}}` — upcoming events for the next N days
23 ### Recurring Events
24 - Events can be marked as recurring with a `recurring: true` flag and `recurringId`
33 - Overlapping events on the same date/time flagged with ⚠️ badge
124 - **v6.4.4**: Past events toggle background uses `__background_neu__`
137 ## v6.4.6: Recurring Events Rescan & Detection Improvements
139 - Added green "�� Rescan" button to refresh recurring events table via AJAX
[all …]
H A Daction.php332 // But normalize wildcards and multi-namespace to empty for NEW events
335 … // Normalize namespace: treat wildcards and multi-namespace as empty (default) for NEW events
360 // If recurring, generate multiple events
416 $events = [];
418 $events = json_decode(file_get_contents($eventFile), true);
419 … $this->debugLog("Calendar saveEvent: Loaded " . count($events) . " dates from new location");
456 … $this->debugLog("Calendar saveEvent: Events on date before=$countBefore, after=$countAfter");
465 … $this->debugLog("Calendar saveEvent: No events found on deleteDate='$deleteDate' in old file");
474 if (!isset($events[$date])) {
475 $events[$date] = [];
[all …]
H A DREADME.md3 A feature-rich calendar plugin for DokuWiki with multiple themes, Outlook sync, recurring events, a…
10 - **Sidebar Widget** - Compact upcoming events widget
14 - Create, edit, and delete events
15 - Recurring events (daily, weekly, monthly, yearly)
16 - Multi-day events with date ranges
60 {{calendar title="Club Events" static}}
73 | `title="X"` | Custom title (supports spaces) | `title="Team Events"` |
99 - **Manage Events** - Browse, search, move events between namespaces
100 - **Recurring Events** - Manage series, extend, trim, pause/resume
H A DCHANGELOG.md6 Fixed critical bug where events appeared shifted by one day in timezones ahead of UTC (e.g., Europe…
28 - Import events from Google Calendar to DokuWiki
29 - Export events from DokuWiki to Google Calendar
30 - Support for all-day and timed events
33 - Duplicate detection prevents re-importing same events
86 - Arrow Up/Down navigates between events in popups
91 - Added `aria-label` descriptions for calendar days and events
195 - Tracks mousedown/focus/blur/change events on all form inputs
249 - Tracks mousedown/focus/blur/change events on time and date inputs
278 - Existing events and settings preserved
[all …]
/plugin/webdavclient/vendor/sabre/vobject/bin/
Dgenerateicalendardata.php12 Currently it just generates events in a single calendar.
16 {$cmd} [events]
24 $events = 100; variable
26 if (isset($argv[1])) $events = (int)$argv[1]; variable
30 fwrite(STDERR, "Generating " . $events . " events\n");
32 $currentDate = new DateTime('-' . round($events/2) . ' days');
40 while($ii < $events) {
/plugin/icalevents/vendor/sabre/vobject/bin/
Dgenerateicalendardata.php12 Currently it just generates events in a single calendar.
16 {$cmd} [events]
24 $events = 100; variable
26 if (isset($argv[1])) $events = (int)$argv[1]; variable
30 fwrite(STDERR, "Generating " . $events . " events\n");
32 $currentDate = new DateTime('-' . round($events / 2) . ' days');
38 while ($ii < $events) {
/plugin/davcard/vendor/sabre/vobject/bin/
Dgenerateicalendardata.php12 Currently it just generates events in a single calendar.
16 {$cmd} [events]
24 $events = 100; variable
26 if (isset($argv[1])) $events = (int)$argv[1]; variable
30 fwrite(STDERR, "Generating " . $events . " events\n");
32 $currentDate = new DateTime('-' . round($events/2) . ' days');
40 while($ii < $events) {
/plugin/davcal/vendor/sabre/vobject/bin/
H A Dgenerateicalendardata.php12 Currently it just generates events in a single calendar.
16 {$cmd} [events]
24 $events = 100; variable
26 if (isset($argv[1])) $events = (int)$argv[1]; variable
30 fwrite(STDERR, "Generating " . $events . " events\n");
32 $currentDate = new DateTime('-' . round($events/2) . ' days');
40 while($ii < $events) {
/plugin/authgooglesheets/vendor/google/apiclient-services/src/CloudRetail/Resource/
DProjectsLocationsCatalogsUserEvents.php65 * Bulk import of User events. Request processing might be synchronous. Events
67 * user events. Operation.response is of type ImportResponse. Note that it is
84 * Deletes permanently all user events specified by the filter provided.
85 * Depending on the number of events specified by the filter, this operation
90 * the events are created. The format is
103 * Starts a user event rejoin operation with latest product catalog. Events will
105 * the catalog at the time the user event is ingested, and these events are
106 * stored as unjoined events with a limited usage on training and serving. This
107 * method can be used to start a join operation on specified events with latest
108 * version of product catalog. It can also be used to correct events joined with
/plugin/sequencediagram/bower_components/lodash/vendor/backbone/
Dbackbone.js119 // Backbone.Events
128 // _.extend(object, Backbone.Events);
132 var Events = Backbone.Events = {};
138 // space-separated events `"change blur", callback` and jQuery-style event
140 var eventsApi = function(iteratee, events, name, callback, opts) { argument
146 events = eventsApi(iteratee, events, names[i], name[names[i]], opts);
151 events = iteratee(events, names[i], callback, opts);
154 // Finally, standard events.
155 events = iteratee(events, name, callback, opts);
157 return events;
[all …]
/plugin/matrixnotifierwas/vendor/meet-kinksters/php-matrix-sdk/tests/
DTestHelper.php9 "events" => [
20 "events" => [
33 "events" => [
47 "events" => [
78 "events" => [
90 "events" => [
114 "events" => [
143 'events' => [
/plugin/authgooglesheets/vendor/google/apiclient-services/src/AlertCenter/
DSuspiciousActivity.php22 protected $collection_key = 'events';
47 public function setEvents($events) argument
49 $this->events = $events;
56 return $this->events;
DDeviceCompromised.php22 protected $collection_key = 'events';
47 public function setEvents($events) argument
49 $this->events = $events;
56 return $this->events;

12345678910>>...44