Skip to content

Commit a4ec399

Browse files
committed
Add modified data and attachments from trac
1 parent 424ab3f commit a4ec399

File tree

1,509 files changed

+1265897
-1
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,509 files changed

+1265897
-1
lines changed

_data/attachments.json

Lines changed: 15032 additions & 0 deletions
Large diffs are not rendered by default.

_data/changes.json

Lines changed: 521403 additions & 0 deletions
Large diffs are not rendered by default.

_data/milestones.json

Lines changed: 623 additions & 0 deletions
Large diffs are not rendered by default.

_data/tickets.json

Lines changed: 661044 additions & 0 deletions
Large diffs are not rendered by default.

_data/wiki.json

Lines changed: 622 additions & 0 deletions
Large diffs are not rendered by default.

eleventy.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ module.exports = function (eleventyConfig) {
2222
})
2323

2424
const attachTicket =
25-
process.env.ATTACHMENT_TICKET || (process.env.ATTACHMENT_TICKET = '25')
25+
process.env.ATTACHMENT_TICKET || (process.env.ATTACHMENT_TICKET = '2208')
2626

2727
// Limit the number of copies during development builds
2828
if (process.env.NODE_ENV === 'development') {
Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
258,290d257
2+
< /**
3+
< * Given the activated element and an object describing the disabled selectors,
4+
< * returns true if the element is disabled, otherwise false. If "excepts" is a
5+
< * string, checks if "clicked" matches that selector. If "excepts" is an array,
6+
< * checks if "clicked" matches any of the selectors in the array.
7+
< *
8+
< * @param clicked The activated element.
9+
< * @param excepts Either a single selector or an array of selectors.
10+
< * @return true if "clicked" matches any of the selectors.
11+
< */
12+
< function isDisabled(clicked, excepts) {
13+
<
14+
< if (!excepts) {
15+
< return false;
16+
< }
17+
<
18+
< if (typeof excepts == 'string') {
19+
< return clicked.is(excepts);
20+
< }
21+
<
22+
< if (excepts instanceof Array) {
23+
< for (i in excepts) {
24+
< if (clicked.is(excepts[i])) {
25+
< return true;
26+
< }
27+
< }
28+
< return false;
29+
< }
30+
<
31+
< return false;
32+
< }
33+
<
34+
<
35+
322,324c289,290
36+
< // if animations are still active, or the active header is the target, or
37+
< // the element matches the exceptFor selector, ignore click
38+
< if (options.running || (options.alwaysOpen && clickedActive) || isDisabled(clicked, options.exceptFor)) {
39+
---
40+
> // if animations are still active, or the active header is the target, ignore click
41+
> if (options.running || (options.alwaysOpen && clickedActive)) {
42+
370d335
43+
< exceptFor: null,
Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
Index: ui.dialog.js
2+
===================================================================
3+
--- ui.dialog.js (revision 384)
4+
+++ ui.dialog.js (working copy)
5+
@@ -247,7 +247,11 @@
6+
this.overlay = this.options.modal ? new $.ui.dialog.overlay(this) : null;
7+
(this.uiDialog.next().length > 0) && this.uiDialog.appendTo('body');
8+
this.position(this.options.position);
9+
- this.uiDialog.show(this.options.show);
10+
+ if ( !!this.options.show && !!this.options.show.effect ) {
11+
+ this.uiDialog.show(this.options.show.effect,this.options.show.options,this.options.show.speed);
12+
+ } else {
13+
+ this.uiDialog.show(this.options.show);
14+
+ }
15+
this.options.autoResize && this.size();
16+
this.moveToTop(true);
17+
18+
@@ -278,7 +282,11 @@
19+
20+
close: function() {
21+
(this.overlay && this.overlay.destroy());
22+
- this.uiDialog.hide(this.options.hide);
23+
+ if ( !!this.options.hide && !!this.options.hide.effect ) {
24+
+ this.uiDialog.hide(this.options.hide.effect,this.options.hide.options,this.options.hide.speed);
25+
+ } else {
26+
+ this.uiDialog.hide(this.options.hide);
27+
+ }
28+
29+
// CALLBACK: close
30+
var closeEV = null;
Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
Index: ui.dialog.js
2+
===================================================================
3+
--- ui.dialog.js (revision 384)
4+
+++ ui.dialog.js (working copy)
5+
@@ -247,7 +247,15 @@
6+
this.overlay = this.options.modal ? new $.ui.dialog.overlay(this) : null;
7+
(this.uiDialog.next().length > 0) && this.uiDialog.appendTo('body');
8+
this.position(this.options.position);
9+
- this.uiDialog.show(this.options.show);
10+
+ if ( !!this.options.show && !!this.options.show.effect ) {
11+
+ this.options.show.effect == "fade" ?
12+
+ this.uiDialog.fadeIn(this.options.show.speed) :
13+
+ this.uiDialog.show(this.options.show.effect,this.options.show.options,this.options.show.speed);
14+
+ } else {
15+
+ this.options.show == "fade" ?
16+
+ this.uiDialog.fadeIn() :
17+
+ this.uiDialog.show(this.options.show);
18+
+ }
19+
this.options.autoResize && this.size();
20+
this.moveToTop(true);
21+
22+
@@ -278,7 +286,15 @@
23+
24+
close: function() {
25+
(this.overlay && this.overlay.destroy());
26+
- this.uiDialog.hide(this.options.hide);
27+
+ if ( !!this.options.hide && !!this.options.hide.effect ) {
28+
+ this.options.hide.effect == "fade" ?
29+
+ this.uiDialog.fadeOut(this.options.hide.speed) :
30+
+ this.uiDialog.hide(this.options.hide.effect,this.options.hide.options,this.options.hide.speed);
31+
+ } else {
32+
+ this.options.hide == "fade" ?
33+
+ this.uiDialog.fadeOut() :
34+
+ this.uiDialog.hide(this.options.hide);
35+
+ }
36+
37+
// CALLBACK: close
38+
var closeEV = null;
Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
Index: ../jquery/1.7.2/ui/ui.dialog.js
2+
===================================================================
3+
--- ../jquery/1.7.2/ui/ui.dialog.js (revision 2949)
4+
+++ ../jquery/1.7.2/ui/ui.dialog.js (working copy)
5+
@@ -169,6 +169,21 @@
6+
})
7+
: self.uiDialog.hide() && self._trigger('close', event));
8+
9+
+ if ( !!this.options.hide && !!this.options.hide.effect ) {
10+
+ this.options.hide.effect == "fade" ?
11+
+ this.uiDialog.fadeOut(this.options.hide.speed, function() {
12+
+ self._trigger('close', event);
13+
+ })
14+
+ : this.uiDialog.hide(this.options.hide.effect,this.options.hide.options,this.options.hide.speed, function() {
15+
+ self._trigger('close', event);
16+
+ });
17+
+ } else {
18+
+ this.options.hide == "fade" ?
19+
+ this.uiDialog.fadeOut() :
20+
+ this.uiDialog.hide();
21+
+ self._trigger('close', event);
22+
+ }
23+
+
24+
$.ui.dialog.overlay.resize();
25+
26+
self._isOpen = false;
27+
@@ -221,7 +236,15 @@
28+
(uiDialog.next().length && uiDialog.appendTo('body'));
29+
this._size();
30+
this._position(options.position);
31+
- uiDialog.show(options.show);
32+
+ if ( !!this.options.show && !!this.options.show.effect ) {
33+
+ this.options.show.effect == "fade" ?
34+
+ this.uiDialog.fadeIn(this.options.show.speed) :
35+
+ this.uiDialog.show(this.options.show.effect,this.options.show.options,this.options.show.speed);
36+
+ } else {
37+
+ this.options.show == "fade" ?
38+
+ this.uiDialog.fadeIn() :
39+
+ this.uiDialog.show(this.options.show);
40+
+ }
41+
this.moveToTop(true);
42+
43+
// prevent tabbing out of modal dialogs

0 commit comments

Comments
 (0)