-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathGreasemonkey_Shortcuts.js
182 lines (154 loc) · 5.99 KB
/
Greasemonkey_Shortcuts.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
// ==UserScript==
// @name WikiTree input
// @namespace https://www.wikitree.com/
// @description adding some shortcuts and changing some links (see below for details)
// @match https://*.wikitree.com/*
// @include https://*.wikitree.com/
// ==/UserScript==
/*
Features:
- adding "and" in syntax example containing wiki links to the parents
- keyboard shortcuts for edit (E) and preview (P), see browser manual for details (in Firefox is ALT + SHIFT + shortcut)
- showing private profile after saving instead of leaving edit mask open
- automatically select "no middle name" if field is empty when editing a profile
- show message box when there is no category present
- copy URL parameter wpSummary into the summary field
- show "Add FamilySearch ID" if needed
- do not open links on result page of "Add FamilySearch ID" in new window
- remove right column in edit mode and make input field bigger instead
*/
// automatically select Germany challenge
if(window.location.href.includes("WTChallenge"))
{
var checkboxes = document.getElementsByName("challengex");
for(let i=0;i<checkboxes.length;i++)
{
if(checkboxes[i].value.includes("Germany"))
{
checkboxes[i].checked = true;
break;
}
}
const buttons = document.getElementsByClassName("btn btn-default");
buttons[0].focus();
}
//add "and" in parents linking example
var allExamples = document.getElementsByClassName("EXAMPLE");
if(allExamples[2].innerHTML != null && allExamples[2].innerHTML.search(/\]\] \[\[/)>-1)
{
allExamples[2].innerText = allExamples[2].innerHTML.replace("]] [[", "]] and [[");
}
//show link to add FamilySearch ID if not present
for (var i=0; strongNode = document.getElementsByTagName("strong")[i]; i++)
{
if(strongNode.textContent == "Research")
{
spanRootsSearch = strongNode.parentNode.nextSibling.nextSibling.nextSibling.nextSibling.nextSibling;
brBeforeHere = spanRootsSearch.nextSibling.nextSibling;
if(null == brBeforeHere)
{
var unsafeWindow = window.wrappedJSObject;
var insertTag = document.createElement("span");
var linkAddFamilySearch = '<a href="https://www.wikitree.com/index.php?title=Special:EditFamilySearch&action=viewUser&user_name='+unsafeWindow['wgPageName']+'">Add FamilySearch ID</a>';
var linkSearchFamilyTree = '<a href="https://www.familysearch.org/tree/find/name">search</a>';
insertTag.innerHTML=/* */'<h3>'+ linkAddFamilySearch +'</h3><br>' + linkSearchFamilyTree ;/* */
spanRootsSearch.parentNode.insertBefore(insertTag, spanRootsSearch);
/* HTML of profile without FamilySearch ID looks like this
<span class="large"><strong>Research</strong></span><br/>
<a href="https://apps.wikitree.com/apps/york1423/rootssearch/?profile=Huber-4117" target="_blank">RootsSearch for Lorenz Huber</a>: conveniently search 20+ genealogy websites.
<span class="SMALL">[<a href="/wiki/RootsSearch" target="_Help" title="More information about the RootsSearch app">more info</a>]</span>
</div>
</div> <!-- end 7 -->
*/
}//if
}//if
}//for
//do not open links from the FamilySearch connection result page in new window
if (window.location.search.match(/Special:EditFamilySearch/))
{
for (var i=0; aNode = document.getElementsByTagName("a")[i]; i++)
{
if(aNode.target="_blank")
{
aNode.target="";
}
}
}
//shortcut e for edit button
for (var j=0; aNode = document.getElementsByClassName("profile-tabs")[0].children[j]; j++)
{
if(aNode.title == "Edit Profile and Family Relationships" || aNode.title == "Edit this Profile")
{
aNode.accessKey="e";
break;
}
}
//go to private view after saving (currently not working for FreeSpace pages
if(window.location.search.match(/errcode=saved/) != null)
{
var personID = document.getElementsByClassName("pureCssMenui0")[1].firstChild.innerHTML;
window.location="https://www.wikitree.com/wiki/" + personID + "?public=1";
}
//shortcut p for preview button
var previewButton = document.getElementsByName("preview")[0];
if(null != previewButton)
{
previewButton.accessKey="p";
}
// automatically check "no middle name"
var inputMiddleName = document.getElementById('mMiddleName');
if(null != inputMiddleName)
{
if(inputMiddleName.value == "")
{
document.getElementById('mStatus_MiddleName_blank').checked = true;
}
}
insert_link_before("span", "previewbox", '<a name="preview_box">');
//copy summary from URL parameter wpSummary into summary field (if provided explicitly)
var match = window.location.search.match(/(\?|&)wpSummary\=([^&]*)/);
if(match!=null)
{
var parameterValue = decodeURIComponent(match[2]);
document.getElementById('wpSummary2').value = parameterValue;
}
//show message box when there is no "Category" present
//except summary was provided, because then I want to be fast
var wpTextbox = document.getElementById('wpTextbox1');
if(wpTextbox != null)
{
if(match==null && wpTextbox.value.indexOf("Category") == -1)
{
alert("Category is missing");
}
//remove right column in edit mode and made textbox bigger
wpTextbox.cols="1000"
var rightColumn = document.getElementsByClassName('six columns omega')[0];
rightColumn.remove();
var editdiv = document.getElementsByClassName('ten columns alpha')[0];
editdiv.style.width = "100%";
}
//replace German country names by English ones
/*
var birthLocation = document.getElementById('mBirthLocation');
if(birthLocation != null)
{
birthLocation.value = birthLocation.value.replace("Deutschland", "Germany").replace("Vereinigte Staaten", "United States");
}
//replace German country names by English ones
var deathLocation = document.getElementById('mDeathLocation');
if(deathLocation != null)
{
deathLocation.value = deathLocation.value.replace("Deutschland", "Germany").replace("Vereinigte Staaten", "United States");
}*/
//Insert any tag before any element with an id
function insert_link_before(tagname, previous_element, linkcode)
{
var vl_logout = document.getElementById(previous_element);
if (vl_logout)
{
var ins_li = document.createElement(tagname);
ins_li.innerHTML=/* */linkcode;/* */
vl_logout.parentNode.insertBefore(ins_li, vl_logout);
}
}