Home
last modified time | relevance | path

Searched refs:event (Results 1 – 25 of 97) sorted by relevance

1234

/webtrees/resources/js/
H A Dtreeview.js46 tv.treeview.on('mousedown touchstart', function (event) { argument
48 let pageX = (event.type === 'touchstart') ? event.touches[0].pageX : event.pageX;
49 let pageY = (event.type === 'touchstart') ? event.touches[0].pageY : event.pageY;
56 $(document).on('mousemove touchmove', function (event) { argument
58 event.preventDefault();
61 let pageX = (event.type === 'touchmove') ? event.touches[0].pageX : event.pageX;
62 let pageY = (event.type === 'touchmove') ? event.touches[0].pageY : event.pageY;
71 $(document).on('mouseup touchend', function (event) { argument
74 event.preventDefault();
291 TreeViewHandler.prototype.expandBox = function (box, event) { argument
[all …]
H A Dwebtrees.js856 webtrees.createRecordModalSubmit = function (event) { argument
857 event.preventDefault();
858 const form = event.target;
887 form.addEventListener('submit', function (event) { argument
888 event.target.querySelectorAll('textarea[data-wt-pattern]').forEach(function (element) {
892 event.preventDefault();
893 event.stopPropagation();
1014 document.addEventListener('submit', function (event) { argument
1015 if (event.target.method === 'POST') {
1016 if (event.target.classList.contains('form-is-submitting')) {
[all …]
/webtrees/resources/views/modules/timeline-chart/
H A Dchart.phtml287 <?php foreach ($indifacts as $factcount => $event) : ?>
289 $desc = $event->value();
290 $gdate = $event->date();
328 $col = array_search($event->record(), $individuals, true);
331 $col = array_search($event->record()->husband(), $individuals, true);
335 $col = array_search($event->record()->wife(), $individuals, true);
341 echo $event->record()->fullName() . ' — ';
343 $record = $event->record();
344 echo $event->label();
347 …echo view('fact-date', ['cal_link' => 'false', 'fact' => $event, 'record' => $record, 'time' => fa…
[all …]
/webtrees/resources/views/
H A Dchart-box.phtml164 $event = $individual->facts([$birttag])->first(); variable
165 if ($event instanceof Fact) {
166 echo $event->summary();
174 $event = $individual->facts([$tag])->first(); variable
175 if ($event instanceof Fact) {
176 echo $event->summary();
183 $event = $individual->facts([$deattag])->first(); variable
184 if ($event instanceof Fact) {
185 echo $event->summary();
194 $event = $individual->facts([$tag])->first(); variable
[all …]
/webtrees/app/Module/
H A DModuleThemeTrait.php85 $event = $individual->facts([$birttag])->first();
86 if ($event instanceof Fact) {
87 $html .= $event->summary();
95 $event = $individual->facts([$tag])->first();
96 if ($event instanceof Fact) {
97 $html .= $event->summary();
104 $event = $individual->facts([$deattag])->first();
105 if ($event instanceof Fact) {
106 $html .= $event->summary();
115 $event = $individual->facts([$tag])->first();
[all …]
H A DTimelineChartModule.php263 foreach ($facts as $event) {
264 if (!in_array($event->tag(), self::NON_FACTS, true)) {
266 $date = $event->date();
276 $indifacts->push($event);
H A DFixMissingDeaths.php77 foreach (Gedcom::DEATH_EVENTS as $event) {
78 $query->where('i_gedcom', 'NOT LIKE', "%\n1 " . $event . '%');
H A DOnThisDayModule.php257 foreach (self::ALL_EVENTS as $event => $tag) {
258 $all_events[$event] = Registry::elementFactory()->make($tag)->label();
H A DUpcomingAnniversariesModule.php288 foreach (self::ALL_EVENTS as $event => $tag) {
289 $all_events[$event] = Registry::elementFactory()->make($tag)->label();
/webtrees/app/
H A DIndividual.php463 foreach (Gedcom::BIRTH_EVENTS as $event) {
464 $dates = $this->getAllEventDates([$event]);
481 foreach (Gedcom::BIRTH_EVENTS as $event) {
482 $places = $this->getAllEventPlaces([$event]);
499 foreach (Gedcom::DEATH_EVENTS as $event) {
500 $dates = $this->getAllEventDates([$event]);
517 foreach (Gedcom::DEATH_EVENTS as $event) {
518 $places = $this->getAllEventPlaces([$event]);
H A DFamily.php284 foreach (Gedcom::MARRIAGE_EVENTS as $event) {
285 $array = $this->getAllEventDates([$event]);
302 foreach (Gedcom::MARRIAGE_EVENTS as $event) {
303 $places = $this->getAllEventPlaces([$event]);
H A DGedcomRecord.php576 foreach ($this->facts($events, false, null, true) as $event) {
577 if ($event->date()->isOK()) {
578 $dates[] = $event->date();
595 foreach ($this->facts($events) as $event) {
596 … if (preg_match_all('/\n(?:2 PLAC|3 (?:ROMN|FONE|_HEB)) +(.+)/', $event->gedcom(), $ged_places)) {
/webtrees/app/Services/
H A DRelationshipService.php358 … $event = $family->facts(['ANUL', 'DIV', 'ENGA', 'MARR'], true, Auth::PRIV_HIDE, true)->last();
360 if ($event instanceof Fact) {
361 switch ($event->tag()) {
382 … $event = $family->facts(['ANUL', 'DIV', 'ENGA', 'MARR'], true, Auth::PRIV_HIDE, true)->last();
384 if ($event instanceof Fact) {
385 switch ($event->tag()) {
405 … $event = $family->facts(['ANUL', 'DIV', 'ENGA', 'MARR'], true, Auth::PRIV_HIDE, true)->last();
407 if ($event instanceof Fact) {
408 switch ($event->tag()) {
/webtrees/public/ckeditor-4.15.1-custom/
H A DCHANGES.md20 …/CKEDITOR.html#method-domReady) method connected with not removing `load` event listeners. Thanks …
27 …tps://ckeditor.com/docs/ckeditor4/latest/api/CKEDITOR_editor.html#event-stylesRemove) editor event.
264 …m/docs/ckeditor4/latest/guide/dev_readonly.html) mode is set by the mouse event listener with the …
380 …EDITOR_tools.html#method-eventsBuffer) was extracted into [`tools.buffers.event`](https://ckeditor…
394 …ceReady`](https://ckeditor.com/docs/ckeditor4/latest/api/CKEDITOR_editor.html#event-instanceReady).
510 …[`change`](https://ckeditor.com/docs/ckeditor4/latest/api/CKEDITOR_editor.html#event-change) event.
609 …ttps://ckeditor.com/docs/ckeditor4/latest/api/CKEDITOR_editor.html#event-change) event not fired w…
728 * [#17027](https://dev.ckeditor.com/ticket/17027): Fixed: Command event data should be initialized …
962 …ditor.drop`](https://ckeditor.com/docs/ckeditor4/latest/api/CKEDITOR_editor.html#event-drop) event.
1130event-paste) event and a set of new editor events was introduced &mdash; [`dragstart`](https://cke…
[all …]
H A Dckeditor.js18 "unloaded"==CKEDITOR.status&&function(){CKEDITOR.event.implementOn(CKEDITOR);CKEDITOR.loadFullCore=…
38 …ak;document.domain=a}return!!a},eventsBuffer:function(a,b,c){return new this.buffers.event(a,b,c)},
58 this._args)};CKEDITOR.tools.buffers={};CKEDITOR.tools.buffers.event=a;CKEDITOR.tools.buffers.thrott…
70 CKEDITOR.dom.event=function(a){this.$=a};
71 CKEDITOR.dom.event.prototype={getKey:function(){return this.$.keyCode||this.$.which},getKeystroke:f…
74event(c))}};return{getPrivate:function(){var a;(a=this.getCustomData("_"))||this.setCustomData("_"…
75 d,b));return CKEDITOR.event.prototype.on.apply(this,arguments)},removeListener:function(a){CKEDITOR… class
76 …}catch(f){if(!CKEDITOR.env.edge||-2146828218!==f.number)throw f;}CKEDITOR.event.prototype.removeAl…
78 …"]||(this.$["data-cke-expando"]=CKEDITOR.tools.getNextNumber())};CKEDITOR.event.implementOn(a)})(C…
221 …Focus:1,contextSensitive:!!d.context,state:CKEDITOR.TRISTATE_DISABLED});CKEDITOR.event.call(this)};
[all …]
/webtrees/
H A Dcomposer.lock1739 "psr/event-dispatcher": "^1.0",
2917 "name": "psr/event-dispatcher",
2921 "url": "https://github.com/php-fig/event-dispatcher.git",
2926 …"url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab830…
2954 "description": "Standard interfaces for event handling.",
2961 "issues": "https://github.com/php-fig/event-dispatcher/issues",
2962 "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
4068 "symfony/event-dispatcher": "<6.4",
4079 "symfony/event-dispatcher": "^6.4|^7.0",
4206 "name": "symfony/event-dispatcher",
[all …]
H A DREADME.md231 In the unlikely event you do fetch the file (you will just see a semicolon),
/webtrees/public/ckeditor-4.15.1-custom/plugins/smiley/dialogs/
H A Dsmiley.js6 new CKEDITOR.dom.event(a);c=new CKEDITOR.dom.element(c);var b;b=a.getKeystroke();var d="rtl"==f.lan…
/webtrees/public/ckeditor-4.15.1-custom/plugins/specialchar/dialogs/
H A Dspecialchar.js7 k=void 0)};q=CKEDITOR.tools.addFunction(function(c){c=new CKEDITOR.dom.event(c);var b=c.getTarget()…
/webtrees/public/ckeditor-4.15.1-custom/plugins/colordialog/dialogs/
H A Dcolordialog.js6 …<=.2126*b[0]+.7152*b[1]+.0722*b[2]}function z(a){!a.name&&(a=new CKEDITOR.event(a));var c=!/mouse/…
/webtrees/resources/lang/en-GB/
H A Dmessages.po4310 msgid "Custom event"
4311 msgstr "Custom event"
4567 msgid "Date of event"
4568 msgstr "Date of event"
4623 msgid "Date ranges are used to indicate that an event, such as a birth, happened on an unknown date…
4624 msgstr "Date ranges are used to indicate that an event, such as a birth, happened on an unknown dat…
5308 …t. Where possible, you should enter dates using the calendar in which the event was originally rec…
5309 …t. Where possible, you should enter dates using the calendar in which the event was originally rec…
6019 msgid "Fact or event"
6020 msgstr "Fact or event"
[all …]
/webtrees/resources/lang/en-AU/
H A Dmessages.po4310 msgid "Custom event"
4311 msgstr "Custom event"
4567 msgid "Date of event"
4568 msgstr "Date of event"
4623 msgid "Date ranges are used to indicate that an event, such as a birth, happened on an unknown date…
4624 msgstr "Date ranges are used to indicate that an event, such as a birth, happened on an unknown dat…
5308 …t. Where possible, you should enter dates using the calendar in which the event was originally rec…
5309 …t. Where possible, you should enter dates using the calendar in which the event was originally rec…
6019 msgid "Fact or event"
6020 msgstr "Fact or event"
[all …]
/webtrees/public/ckeditor-4.15.1-custom/plugins/wsc/dialogs/
H A Dwsc.js15 …usTab=d;a.setIframe(c,d);var h=function(h){d=b._.currentTabId;h=h||window.event;h.data.getTarget()…
32 …sable()},TextCorrect:function(){w(a.langList)}},H=function(a){a=a||window.event;var d;try{d=window…
/webtrees/resources/lang/ku/
H A Dmessages.po4309 msgid "Custom event"
4566 msgid "Date of event"
4622 msgid "Date ranges are used to indicate that an event, such as a birth, happened on an unknown date…
4623 msgstr "Date ranges are used to indicate that an event, such as a birth, happened on an unknown dat…
5307 …t. Where possible, you should enter dates using the calendar in which the event was originally rec…
5308 …t. Where possible, you should enter dates using the calendar in which the event was originally rec…
6018 msgid "Fact or event"
6019 msgstr "Fact or event"
6507 msgid "First event"
6608 msgid "For example, we can quickly find individuals that do not have a death event, but it is much …
[all …]
/webtrees/resources/lang/zh-Hans/
H A Dmessages.po513 # I18N: Description of an individual’s age at an event. For example, Died 14 Jan 1900 (aged 43 year…
4630 msgid "Custom event"
4903 msgid "Date of event"
4960 msgid "Date ranges are used to indicate that an event, such as a birth, happened on an unknown date…
5681 …t. Where possible, you should enter dates using the calendar in which the event was originally rec…
6446 msgid "Fact or event"
6968 msgid "First event"
7075 msgid "For example, we can quickly find individuals that do not have a death event, but it is much …
8145 msgid "If a media object is linked to an individual, when it should be linked to a fact or event, t…
8319 …set. The conversion process does not take account of the time, so for any event that occurs betwee…
[all …]

1234