forked from rchern/StackExchangeScripts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSEModifications.user.js
576 lines (472 loc) · 15.6 KB
/
SEModifications.user.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
// ==UserScript==
// @name SE Modifications
// @description A collection of modifications for the Stack Exchange network of sites
// @include http://stackoverflow.com/*
// @include http://meta.stackoverflow.com/*
// @include http://superuser.com/*
// @include http://meta.superuser.com/*
// @include http://serverfault.com/*
// @include http://meta.serverfault.com/*
// @include http://askubuntu.com/*
// @include http://meta.askubuntu.com/*
// @include http://answers.onstartups.com/*
// @include http://meta.answers.onstartups.com/*
// @include http://nothingtoinstall.com/*
// @include http://meta.nothingtoinstall.com/*
// @include http://seasonedadvice.com/*
// @include http://meta.seasonedadvice.com/*
// @include http://stackapps.com/*
// @include http://*.stackexchange.com/*
// @exclude http://chat.stackexchange.com/*
// @exclude http://chat.*.stackexchange.com/*
// @exclude http://api.*.stackexchange.com/*
// @exclude http://data.stackexchange.com/*
// @exclude http://*/reputation
// @author @rchern
// ==/UserScript==
function with_jquery(f) {
var script = document.createElement("script");
script.type = "text/javascript";
script.textContent = "(" + f.toString() + ")(jQuery)";
document.body.appendChild(script);
};
with_jquery(function ($) {
var profile = $('#hlinks-user a.profile-link'),
My = {
'name': profile.text(),
'profile': profile.attr('href')
},
NameRegistry = (function ($) {
var translationTable = {
'th': 'Þ',
'ss': 'ß',
'a': 'àåáâäãåą',
'c': 'çćč',
'e': 'èéêëę',
'i': 'ìíîïı',
'n': 'ñń',
'o': 'òóôõöøő',
'u': 'ùúûü',
'y': 'ýŸ',
'd': 'đ',
'g': 'ğ',
'l': 'ł',
's': 'śşš',
'z': 'żźž'
}, tmp = {};
for (var translation in translationTable) {
var original = translationTable[translation];
for (var i = 0; i < original.length; ++i) {
tmp[original.charAt(i)] = translation;
}
}
translationTable = tmp;
delete(tmp);
return function () {
var availableNames = {},
searched = null;
this.add = function (name) {
seek(name, true);
};
this.getMatches = getMatches;
function getMatches(name) {
return seek(name, false);
};
this.lastSearch = lastSearch;
function lastSearch() {
return searched;
}
function seek(name, add) {
searched = name = translate(name);
var first = name.lookup ? name.lookup.charAt(0) : null,
list, i, j, current, matches = [];
if (first) {
if (list = availableNames[first]) {
for (i = 0; i < list.length; ++i) {
current = list[i].lookup;
if (name.lookup.length === 1) {
matches.push(list[i]);
} else if (current.length >= name.lookup.length) {
for (j = 1; j < name.lookup.length && current; ++j) {
if (current.charAt(j) != name.lookup.charAt(j)) {
current = null;
}
}
if (current) {
matches.push(list[i]);
}
}
}
}
if (add && !matches.length) {
if (!availableNames[first]) {
availableNames[first] = [];
}
availableNames[first].push(name);
}
}
return matches;
}
function translate(name) {
if (!name)
return '';
// Check if the passed argument is jQuery (if so, we're extracting names from the usual places)
if (name instanceof $)
name = name.clone().find('span').remove().end().text();
// The passed argument was already translated
if (typeof name === 'object' && name.lookup)
return name;
// This should never happen
if (typeof name !== 'string')
return '';
// Replace the spaces in the name and lookup
name = {
'original': name.replace(/\s+/g, ''),
'lookup': ''
};
var lookup = name.original.toLowerCase();
for (var i = 0; i < lookup.length; ++i) {
name.lookup += translationTable[lookup.charAt(i)] || lookup.charAt(i);
}
return name;
}
};
})($);
function AutoComplete(target) {
var target = target.addClass('auto-complete'),
active = false,
users = new NameRegistry(),
autocomplete = $('<ul class="auto-complete-matches">').css({
'position': 'absolute',
'width': target.width() + 'px',
'margin-left': '0px',
'margin-bottom': '5px'
})
.hide()
.insertBefore(target),
postSignatures = target.closest('#question, .answer').find('.post-signature');
// Get the list of available user names and add them to the autocomplete list
// First from the comments
target.closest('.comments').find('.comment-user').each(add);
// Then from the post signature of the last editor (if present)
// Also the post author now, by popular demand
postSignatures.find('.user-details a:first').each(add);
// Add the auto-complete options tabber
target.bind('keydown', tabselect);
// TS: If we bind to keypress, the state of the input won't be what we expect it to be
// We could probably work around that though, since keyup is kind of bad
target.bind('keyup click', update);
function update(event) {
var self = $(this),
text = self.val(),
selectionIndex, match, matches;
if (this.selectionStart !== this.selectionEnd || event.which === 9) {
return;
}
selectionIndex = text.indexOf(' ', this.selectionEnd);
selectionIndex = selectionIndex == -1 ? text.length : selectionIndex;
// Check for an auto-completable name; note that it has to be the first instance of @ to work
if (active = ((match = text.substring(0, selectionIndex).match(/@([^\s]+)$/)) && selectionIndex - match[0].length === text.indexOf('@'))) {
// Remove the existing potential matches
autocomplete.empty();
// Get the list of potential matches
matches = users.getMatches(match[1]);
// TS: We could do some sorting here, I suppose
for (var i = 0; i < matches.length; ++i) {
var selected = users.lastSearch().lookup === matches[i].lookup;
$('<li />').css({
'color': '#000000',
'display': 'inline-block',
'background-color': '#FFFFFF',
'padding': '2px 4px 2px 4px',
'margin': '0px 5px 0px 0px',
'cursor': 'pointer',
'border': '1px solid #888888',
'font-weight': selected ? 'bold' : 'normal'
})
.addClass(selected ? 'selected' : '')
.text(matches[i].original)
.click(function () {
var self = $(this);
complete(target, self.text());
// Trigger a keyup event on the input box
target.keyup();
return false;
})
.appendTo(autocomplete);
}
autocomplete.css({
'top': (target.position().top - autocomplete.outerHeight(true)) + 'px',
'left': target.position().left + 'px'
})
.show();
return false;
} else {
autocomplete.hide().empty();
}
}
function tabselect(event) {
var self = $(this);
if (active && event.which == 9) {
var selected = autocomplete.find('.selected'),
next = selected.next(),
current;
if (selected.length) {
selected.removeClass('selected').css('font-weight', 'normal');
if (next.length) {
current = next.addClass('selected').css('font-weight', 'bold');
}
}
if (!next.length) {
current = autocomplete.children(':eq(0)').addClass('selected').css('font-weight', 'bold');
}
if (current && current.length) {
complete(self, current.text());
}
return false;
}
}
function complete(self, text) {
var value = self.val(),
input = self.focus().val(value.replace(/@[^\s]+/, '@' + text))[0];
input.selectionStart = input.selectionEnd = value.indexOf('@') + text.length + 1;
}
function add() {
var self = $(this);
if (self.attr('href') !== My.profile) {
users.add(self);
}
}
}
$(function () {
// Initialize the general stuff here
var locationBits = location.hostname.split('.');
if(locationBits[0] !== 'discuss' && (locationBits[0] !== 'meta' || locationBits[1] === 'stackoverflow')) {
if (window.profileLink) {
var initialized = false;
profileLink._show = profileLink.show;
profileLink.show = function (u, v) {
profileLink._show(u, v);
if (!initialized && (initialized = true)) {
$('<li><a href="/reputation" title="view reputation audit">audit</a></li>').appendTo('.profile-links');
}
};
}
}
initQuestions();
initPostRevisions();
initSearchResults();
});
/*
* Initializes functionality that only appears on the questions page:
* - Question timeline linking
* - Explicit post history linking
* - Comment linking
* - Hidden linked comment revealing
* - Comment auto-completion
*/
function initQuestions() {
if (location.pathname.search("^/questions/\\d+/") === -1) {
return;
}
var needsHighlight = false,
question = $("#question-header a").attr('href');
if (!question) {
return;
}
function linkifyComments(reference, url) {
reference.find('.comment')
.each(function() {
$('.comment-date', this).wrap('<a href="' + url.replace(/#.*/, '#' + this.id) + '" />');
});
}
function highlightComment(comment) {
if(!(comment = $(comment)).length) {
return false;
}
needsHighlight = false;
$(document).scrollTop(comment.offset().top);
comment.css({ 'opacity': 0 })
.animate({ 'opacity': 1 }, 1500, 'linear');
return true;
}
$(document).ajaxComplete(function(event, request, options) {
if (options) {
var id = options.url.match(/^\/posts\/([0-9]+)\/comments/);
if (id) {
id = id[1];
if (needsHighlight) {
highlightComment(location.hash);
}
var post = $('#comments-' + id);
var url = $('#question #comments-' + id).length ? question + '#' :
post.closest('.answer, #question')
.find(".post-menu a:contains('link'):first")
.attr("href");
linkifyComments(post, url);
}
}
});
var post = question.replace("questions", "posts").replace(/\/[^\/]*$/, ""),
timeline = post + "/timeline",
revisions = post + "/revisions",
questionPost = $('#question'),
ownedByMe = $('.post-signature', questionPost).length == 2 && $('.post-signature.owner .user-details a:first').attr('href') === My.profile;
$(".post-menu", questionPost).append(
(ownedByMe ? "<br>" : "<span class='lsep'>|</span>") +
"<a " + (ownedByMe ? 'style="line-height:1.8em;"' : "") + "href='" + timeline + "'>timeline</a>"
);
$(".post-menu").each(function() {
var self = $(this), postLink = self.find("a:contains('link'):first").attr("href");
if (!revisions) {
revisions = "/posts"
+ postLink.replace(question, "").replace(/#.*/, "")
+ "/revisions";
} else {
postLink = question + '#';
}
self.append("<span class='lsep'>|</span><a href='" + revisions + "'>history</a>")
.find('a').each(function () {
var self = $(this), text = self.text();
if (text.indexOf(' ') !== -1) {
self.text(text.replace(' ', '\u00a0'));
}
});
linkifyComments(self.closest('.answer, #question'), postLink);
revisions = null;
});
// try our best to show a linked comment
var commentID = location.hash.match(/#(comment-[0-9]+)/);
if (commentID && !highlightComment(commentID[0])) {
// comment doesn't exist or it's hidden (more likely)
var post = location.pathname;
post = post.substring(post.lastIndexOf('/') + 1);
needsHighlight = true;
$((post.match(/^[0-9]+$/) ? '#answer-' + post : '#question') + ' .comments-link').click();
}
if (!StackExchange.options.enableTabCompletion) {
$(document).bind('keydown', function (event) {
if (!event.shiftKey || event.which != 50)
return;
var target = $(event.target);
if (target.attr('name') === 'comment' && !target.hasClass('auto-complete')) {
new AutoComplete(target);
} else if (target.attr('name') !== 'comment') {
$('.auto-complete-matches').hide();
}
});
$(document).bind('click', function (event) {
$('.auto-complete-matches').hide();
});
}
}
/*
* Initializes functionality that only appears on the post revisions page:
* - Inline revision source loading
*/
function initPostRevisions() {
if (location.pathname.search("^/posts/\\d+/revisions") === -1) {
return;
}
$('.revision, .owner-revision').find('a[href$="/view-source"]').one('click', function () {
var self = $(this),
original = self.text();
self.text('loading...');
$.ajax({
'url': this.href,
'context': self.closest('tr').next().find('.post-text')[0],
'success': function (response) {
var id = "inline-" + this.parentNode.id;
self.removeAttr('target')[0].href = "#" + id;
$('<pre>', {
'text': $(response).filter('pre').text(),
'css': {
'white-space': 'pre-wrap'
}
}).appendTo(this)[0].id = id;
},
'complete': function() {
self.text(original);
}
});
return false;
});
}
/*
* Initializes functionality that only applies to the search results page
* - Removing/untaggifying tags from search results
*/
function initSearchResults() {
var tagpage = false;
if (location.pathname.indexOf('/search') !== 0 &&
!(tagpage = (location.pathname.indexOf('/questions/tagged/') === 0))) {
return;
}
function on() {
$(this).animate({ 'opacity': 1 }, 750);
}
function off() {
$(this).animate({ 'opacity': 0 }, 750);
}
var criteria,
tags = $('#sidebar .tagged a.post-tag');
tags.each(function () {
var tag = $(this),
wrapper = $('<div class="tag-wrapper"></div>')
.append(
$('<span class="modify-options">')
.append(
$('<span class="quote-tag" title="change into search term">"</span>')
.click(function () {
updateCriteria(tag.text(), '"', true);
wrapper.fadeOutAndRemove();
})
.add('<span class="remove-tag" title="remove from search">\u00D7</span>')
.css({
'font-family': 'Consolas, monospace',
'border-radius': '7px 7px',
'display': 'inline-block',
'width': '15px',
'height': '15px',
'margin-right': '3px',
'text-align': 'center',
'border': '1px solid #915857',
'cursor': 'pointer'
})
.last()
.click(function () {
updateCriteria(tag.text(), false, true);
})
.end()
)
.css({
'margin-left': '5px',
'color': '#6C0000',
'font-weight': 'bold',
'opacity': 0
})
.hover(on, off)
)
.insertBefore(this)
.prepend(this);
// Should just not add it in the first place, will fix later
if (tagpage && tags.length === 1) {
wrapper.find('.remove-tag').remove();
}
});
function updateCriteria(existing, update, isTag) {
update = !update ? '' : update + existing + update;
if (isTag) {
existing = '\\[' + existing + '\\]|' + existing;
}
var search = $('#search'), input = search.find('input[name="q"]');
// Temporary until I expand on this feature
input.val(
input.val()
.replace(new RegExp('(^| )(' + existing + ')( |$)'), '$1' + update + '$3')
.replace(/^ +| +$/, '')
);
search.submit();
}
}
});