permissions and regexr

This commit is contained in:
mightypanders 2019-11-03 10:58:37 +01:00
parent d3967a43a4
commit 54250ab4dd
16 changed files with 63 additions and 62 deletions

0
.gitignore vendored Normal file → Executable file
View File

0
LICENSE Normal file → Executable file
View File

0
README.md Normal file → Executable file
View File

0
startpage/README.md Normal file → Executable file
View File

93
startpage/dome.js Normal file → Executable file
View File

@ -34,62 +34,63 @@
// div.innerHTML : {a.innerHTML : a.href}
var sites = {
"E-Mail": {
"GMail" : "https://mail.google.com/mail/u/0/",
"Posteo" : "https://www.posteo.de",
"edata" : "https://mail.edatasystems.de",
"gCal" : "https://calendar.google.com/calendar/r",
"Keep" : "https://keep.google.com/u/0/"
"GMail": "https://mail.google.com/mail/u/0/",
"Posteo": "https://www.posteo.de",
"edata": "https://mail.edatasystems.de",
"gCal": "https://calendar.google.com/calendar/r",
"Keep": "https://keep.google.com/u/0/"
},
"Work": {
"TFS" : "http://192.168.30.70:8080/tfs",
"wiki" : "http://192.168.0.10:83",
"ds.de/admin" : "http://192.168.100.55/administrator",
"mari" : "https://mari.edatasystems.de"
"TFS": "http://192.168.30.70:8080/tfs",
"wiki": "http://192.168.0.10:83",
"ds.de/admin": "http://192.168.100.55/administrator",
"mari": "https://mari.edatasystems.de"
},
"Social": {
"WhatsApp" : "https://web.whatsapp.com",
"Telegram" : "https://web.telegram.com",
"discord" : "https://discordapp.com/channels/@me",
"YouTube" : "https://www.youtube.com/",
"WhatsApp": "https://web.whatsapp.com",
"Telegram": "https://web.telegram.com",
"discord": "https://discordapp.com/channels/@me",
"YouTube": "https://www.youtube.com/",
},
"Games": { // To find the game ID check the url in the store page or the community page
"CS:GO" : "steam://run/730",
"Besiege" : "steam://run/346010",
"Rust" : "steam://run/252490",
"Insurgency" : "steam://run/222880",
"West of Loathing" : "steam://run/597220",
"POSTAL 2" : "steam://run/223470"
"The usual": { // To find the game ID check the url in the store page or the community page
"Amazon": "https://www.amazon.de",
"eBay": "https://www.ebay.de",
"PayPal": "http://www.paypal.com",
"Lieferando": "http://www.lieferando.de",
//"West of Loathing" : "steam://run/597220",
//"POSTAL 2" : "steam://run/223470"
},
"News": {
"worldnews" : "https://reddit.com/r/worldnews",
"golem" : "https://www.golem.de/",
"heise" : "https://www.heise.de/",
"WAZ" : "http://www.waz.de",
"FAZ" : "http://www.faz.net",
"HackerNews" : "https://news.ycombinator.com/"
"worldnews": "https://reddit.com/r/worldnews",
"golem": "https://www.golem.de/",
"heise": "https://www.heise.de/",
"WAZ": "http://www.waz.de",
"FAZ": "http://www.faz.net",
"HackerNews": "https://news.ycombinator.com/"
},
"Programming": {
"/r/programming" : "https://reddit.com/r/programming",
"Github" : "https://github.com/",
"gisthub" : "https://gist.github.com/",
"regex101" : "https://regex101.com/",
"extensions" : "http://extensionmethod.net/csharp"
"/r/programming": "https://reddit.com/r/programming",
"Github": "https://github.com/",
"gisthub": "https://gist.github.com/",
"regex101": "https://regex101.com/",
"regexr": "https://regexr.com/",
"extensions": "http://extensionmethod.net/csharp"
},
"reddit": {
"linux" : "https://reddit.com/r/linux",
"thinkpad" : "https://reddit.com/r/thinkpad",
"unixporn" : "https://reddit.com/r/unixporn",
"games" : "https://reddit.com/r/games",
"switchhaxing" : "https://reddit.com/r/switchhaxing",
"switchhacks" : "https://reddit.com/r/switchhacks",
"linux": "https://reddit.com/r/linux",
"thinkpad": "https://reddit.com/r/thinkpad",
"unixporn": "https://reddit.com/r/unixporn",
"games": "https://reddit.com/r/games",
"switchhaxing": "https://reddit.com/r/switchhaxing",
"switchhacks": "https://reddit.com/r/switchhacks",
}
};
};
var search = {
"default": "https://google.com/search",
"d": "https://duckduckgo.com/",
"s": "https://startpage.com/do/search"
};
};
var pivotmatch = 0;
var totallinks = 0;
@ -144,10 +145,10 @@ function matchLinks(regex = prevregexp) {
document.getElementById("action").children[0].name = "q";
}
}
document.getElementById("main").style.height = document.getElementById("main").children[0].offsetHeight+"px";
document.getElementById("main").style.height = document.getElementById("main").children[0].offsetHeight + "px";
}
document.onkeydown = function(e) {
document.onkeydown = function (e) {
switch (e.keyCode) {
case 38:
pivotmatch = pivotmatch >= 0 ? 0 : pivotmatch + 1;
@ -163,7 +164,7 @@ document.onkeydown = function(e) {
document.getElementById("action").children[0].focus();
}
document.getElementById("action").children[0].onkeypress = function(e) {
document.getElementById("action").children[0].onkeypress = function (e) {
if (e.key == "ArrowDown" || e.key == "ArrowUp") {
return false;
}
@ -171,14 +172,14 @@ document.getElementById("action").children[0].onkeypress = function(e) {
function displayClock() {
now = new Date();
clock = (now.getHours() < 10 ? "0"+now.getHours() : now.getHours())+":"
+(now.getMinutes() < 10 ? "0"+now.getMinutes() : now.getMinutes())+":"
+(now.getSeconds() < 10 ? "0"+now.getSeconds() : now.getSeconds());
clock = (now.getHours() < 10 ? "0" + now.getHours() : now.getHours()) + ":"
+ (now.getMinutes() < 10 ? "0" + now.getMinutes() : now.getMinutes()) + ":"
+ (now.getSeconds() < 10 ? "0" + now.getSeconds() : now.getSeconds());
document.getElementById("clock").innerHTML = clock;
}
window.onload = matchLinks();
document.getElementById("action").onsubmit = function() {
document.getElementById("action").onsubmit = function () {
svalue = this.children[0].value;
if (svalue.charAt(1) == ' ' && search.hasOwnProperty(svalue.charAt(0))) {
this.children[0].value = svalue.substring(2);

0
startpage/favicon.png Normal file → Executable file
View File

Before

Width:  |  Height:  |  Size: 20 KiB

After

Width:  |  Height:  |  Size: 20 KiB

0
startpage/font/Montserrat-Regular.otf Normal file → Executable file
View File

0
startpage/font/SIL Open Font License.txt Normal file → Executable file
View File

0
startpage/index.html Normal file → Executable file
View File

0
startpage/index_old.html Normal file → Executable file
View File

0
startpage/mongoose-free-6.9.exe Normal file → Executable file
View File

0
startpage/mongoose.conf Normal file → Executable file
View File

0
startpage/style.css Normal file → Executable file
View File

0
startpage/style_old.css Normal file → Executable file
View File

0
startpage/styles.css Normal file → Executable file
View File

0
vim/.vimrc Normal file → Executable file
View File