2017-03-22 05:46:24 +03:00
<!DOCTYPE html>
< html >
< head >
< meta http-equiv = "content-type" content = "text/html; charset=UTF-8" >
< meta name = "viewport" content = "width=device-width, initial-scale=1" >
2017-03-22 06:06:35 +03:00
< script type = "text/javascript" src = "/static/js/jquery-1.8.3.js" > < / script >
< link rel = "stylesheet" type = "text/css" href = "/static/css/github-markdown.css" >
< link rel = "stylesheet" type = "text/css" href = "/static/css/menus-min.css" >
< link rel = "stylesheet" type = "text/css" href = "/static/css/base-min.css" >
2017-03-22 17:09:09 +03:00
< link rel = "stylesheet" href = "//cdnjs.cloudflare.com/ajax/libs/highlight.js/9.10.0/styles/default.min.css" >
< script src = "//cdnjs.cloudflare.com/ajax/libs/highlight.js/9.10.0/highlight.min.js" > < / script >
< script type = "text/javascript" src = "/static/js/highlight.pack.js" > < / script >
2017-03-22 05:46:24 +03:00
< style type = "text/css" >
body {
background: #fff;
}
.pure-menu a {
color: #777;
}
#wrap {
position: absolute;
top: 50px;
2017-03-22 17:49:51 +03:00
left: 2%;
right: 2%;
bottom: 2%;
2017-03-22 05:46:24 +03:00
/* border: 3px double #f99;
*/
}
textarea {
width: 100%;
height: 100%;
box-sizing: border-box;
/* For IE and modern versions of Chrome */
-moz-box-sizing: border-box;
/* For Firefox */
-webkit-box-sizing: border-box;
/* For Safari */
position: absolute;
/* padding: 1em 2em;
*/
left: 0;
right: 0;
bottom: 0;
top: 0;
border: 0;
border: none;
outline: none;
-webkit-box-shadow: none;
-moz-box-shadow: none;
box-shadow: none;
resize: none;
}
< / style >
< title > {{ .Page }}< / title >
< script type = 'text/javascript' >
//< ![CDATA[
$(window).load(function() {
// Returns a function, that, as long as it continues to be invoked, will not
// be triggered. The function will be called after it stops being called for
// N milliseconds. If `immediate` is passed, trigger the function on the
// leading edge, instead of the trailing.
function debounce(func, wait, immediate) {
var timeout;
return function() {
$('#saveEditButton').text("Editing");
var context = this,
args = arguments;
var later = function() {
timeout = null;
if (!immediate) func.apply(context, args);
};
var callNow = immediate & & !timeout;
clearTimeout(timeout);
timeout = setTimeout(later, wait);
if (callNow) func.apply(context, args);
};
};
// This will apply the debounce effect on the keyup event
// And it only fires 500ms or half a second after the user stopped typing
$('#userInput').on('keyup', debounce(function() {
console.log('typing occurred');
$('#saveEditButton').text("Saving")
upload();
}, 500));
function upload() {
$.ajax({
type: 'POST',
url: '/update',
data: JSON.stringify({
new_text: $('#userInput').val(),
page: "{{ .Page }}"
}),
success: function(data) {
$('#saveEditButton').text(data.message);
},
error: function(xhr, error) {
$('#saveEditButton').text(error);
},
contentType: "application/json",
dataType: 'json'
});
}
function primeForSelfDestruct() {
$.ajax({
type: 'POST',
url: '/prime',
data: JSON.stringify({
page: "{{ .Page }}"
}),
success: function(data) {
$('#saveEditButton').text(data.message);
},
error: function(xhr, error) {
$('#saveEditButton').text(error);
},
contentType: "application/json",
dataType: 'json'
});
}
function lockPage(passphrase) {
$.ajax({
type: 'POST',
url: '/lock',
data: JSON.stringify({
page: "{{ .Page }}",
passphrase: passphrase
}),
success: function(data) {
$('#saveEditButton').text(data.message);
},
error: function(xhr, error) {
$('#saveEditButton').text(error);
},
contentType: "application/json",
dataType: 'json'
});
}
function encryptPage(passphrase) {
$.ajax({
type: 'POST',
url: '/encrypt',
data: JSON.stringify({
page: "{{ .Page }}",
passphrase: passphrase
}),
success: function(data) {
$('#saveEditButton').text(data.message);
2017-03-22 06:10:41 +03:00
if (data.success == true) {
window.location = "/{{ .Page }}/view";
}
2017-03-22 05:46:24 +03:00
},
error: function(xhr, error) {
$('#saveEditButton').text(error);
},
contentType: "application/json",
dataType: 'json'
});
}
$("#encryptPage").click(function(e) {
e.preventDefault();
var passphrase = prompt("Please enter a passphrase", "");
if (passphrase != null) {
encryptPage(passphrase);
}
});
$("#erasePage").click(function(e) {
e.preventDefault();
var r = confirm("Are you sure you want to erase?");
if (r == true) {
window.location = "/{{ .Page }}/erase";
} else {
x = "You pressed Cancel!";
}
});
$("#selfDestructPage").click(function(e) {
e.preventDefault();
var r = confirm("This will erase the page the next time it is opened, are you sure you want to do that?");
if (r == true) {
primeForSelfDestruct();
} else {
x = "You pressed Cancel!";
}
});
$("#lockPage").click(function(e) {
e.preventDefault();
var passphrase = prompt("Please enter a passphrase to lock", "");
if (passphrase != null) {
lockPage(passphrase);
// POST encrypt page
// reload page
}
});
2017-03-22 17:09:09 +03:00
$("textarea").keydown(function(e) {
if(e.keyCode === 9) { // tab was pressed
// get caret position/selection
var start = this.selectionStart;
var end = this.selectionEnd;
var $this = $(this);
var value = $this.val();
// set textarea value to: text before caret + tab + text after caret
$this.val(value.substring(0, start)
+ "\t"
+ value.substring(end));
// put caret at right position again (add one for the tab)
this.selectionStart = this.selectionEnd = start + 1;
// prevent the focus lose
e.preventDefault();
}
});
2017-03-22 05:46:24 +03:00
}); //]]>
< / script >
2017-03-22 17:09:09 +03:00
< script > hljs . initHighlightingOnLoad ( ) ; < / script >
2017-03-22 05:46:24 +03:00
< / head >
< body >
< article class = "markdown-body" >
< div class = "pure-menu pure-menu-horizontal" >
< ul class = "pure-menu-list" >
< li > < / li >
<!-- Required to keep them level? -->
2017-03-22 17:49:51 +03:00
< li class = "pure-menu-item" > < a href = "/" class = "pure-menu-link" > Cowyo< / a > < / li >
2017-03-22 05:46:24 +03:00
< li class = "pure-menu-item {{ with .EditPage }}pure-menu-selected{{ end }}" > < a href = "/{{ .Page }}/edit" class = "pure-menu-link" > < span id = "saveEditButton" > Edit< / span > < / a > < / li >
< li class = "pure-menu-item {{ with .ViewPage }}pure-menu-selected{{ end }}" > < a href = "/{{ .Page }}/view" class = "pure-menu-link" > View< / a > < / li >
< li class = "pure-menu-item pure-menu-has-children pure-menu-allow-hover" >
< a href = "#" id = "menuLink1" class = "pure-menu-link" > Other< / a >
< ul class = "pure-menu-children" >
2017-03-22 17:50:45 +03:00
< li class = "pure-menu-item {{ with .ListPage }}pure-menu-selected{{ end }}" > < a href = "/{{ .Page }}/list" class = "pure-menu-link" > List< / a > < / li >
2017-03-22 17:49:51 +03:00
< li class = "pure-menu-item" > < a href = "#" class = "pure-menu-link" id = "encryptPage" > {{ if .IsEncrypted }}Decrypt{{ else }}Encrypt{{end}}< / a > < / li >
< li class = "pure-menu-item" > < a href = "#" class = "pure-menu-link" id = "lockPage" > {{ if .IsLocked }}Unlock{{ else }}Lock{{end}}< / a > < / li >
2017-03-22 17:21:49 +03:00
< li class = "pure-menu-item" > < a href = "/{{ .Page }}/raw" class = "pure-menu-link" > Raw< / a > < / li >
2017-03-22 05:46:24 +03:00
< li class = "pure-menu-item" > < a href = "/{{ .Page }}/history" class = "pure-menu-link" > History< / a > < / li >
< hr >
< li class = "pure-menu-item" > < a href = "#" class = "pure-menu-link" id = "selfDestructPage" > Self-destruct< / a > < / li >
< li class = "pure-menu-item" > < a href = "#" class = "pure-menu-link" id = "erasePage" > Erase< / a > < / li >
< / ul >
< / li >
< / ul >
< / div >
< div id = "wrap" >
{{ if .ViewPage }} {{ .RenderedPage }} {{ end }}
2017-03-22 06:06:35 +03:00
{{ if .EditPage }} < textarea autofocus placeholder = "Start typing, it will save automatically." id = "userInput" > {{ .RawPage }}< / textarea > {{ end }}
2017-03-22 05:46:24 +03:00
{{ if .HistoryPage }}
< ul >
2017-03-22 17:16:16 +03:00
{{range $i, $e := .Versions}}
< li > < a href = "/{{ $.Page }}/view?version={{$e}}" > Version {{index $.VersionsText $i}}< / a > < / li >
2017-03-22 05:46:24 +03:00
{{end}}
< / ul >
{{ end }}
< / div >
< / article >
< / body >
< / html >