mirror of
https://github.com/schollz/cowyo.git
synced 2023-08-10 21:13:00 +03:00
Merge pull request #113 from DanielHeath/master
Make the 'view' link do something helpful
This commit is contained in:
commit
dfd9aea863
6
Makefile
6
Makefile
@ -2,7 +2,7 @@
|
|||||||
# make -j4 release
|
# make -j4 release
|
||||||
|
|
||||||
VERSION=$(shell git describe)
|
VERSION=$(shell git describe)
|
||||||
LDFLAGS=-ldflags "-s -w -X main.version=${VERSION}" -a -installsuffix cgo
|
LDFLAGS=-ldflags "-s -w -X main.version=${VERSION} -X main.hotCodeReloading=false" -a -installsuffix cgo
|
||||||
|
|
||||||
.PHONY: build
|
.PHONY: build
|
||||||
build:
|
build:
|
||||||
@ -11,8 +11,8 @@ build:
|
|||||||
|
|
||||||
.PHONY: quick
|
.PHONY: quick
|
||||||
quick:
|
quick:
|
||||||
go-bindata static/... templates/...
|
go-bindata -debug static/... templates/...
|
||||||
go build
|
go build -ldflags "-X main.hotCodeReloading=true"
|
||||||
|
|
||||||
.PHONY: linuxarm
|
.PHONY: linuxarm
|
||||||
linuxarm:
|
linuxarm:
|
||||||
|
52
bindata.go
52
bindata.go
File diff suppressed because one or more lines are too long
47
handlers.go
47
handlers.go
@ -37,16 +37,49 @@ func serve(
|
|||||||
secret string,
|
secret string,
|
||||||
secretCode string,
|
secretCode string,
|
||||||
allowInsecure bool,
|
allowInsecure bool,
|
||||||
|
hotTemplateReloading bool,
|
||||||
) {
|
) {
|
||||||
|
if hotTemplateReloading {
|
||||||
|
gin.SetMode(gin.DebugMode)
|
||||||
|
} else {
|
||||||
|
gin.SetMode(gin.ReleaseMode)
|
||||||
|
}
|
||||||
|
|
||||||
gin.SetMode(gin.ReleaseMode)
|
|
||||||
router := gin.Default()
|
router := gin.Default()
|
||||||
|
|
||||||
|
if hotTemplateReloading {
|
||||||
|
router.LoadHTMLGlob("templates/*.tmpl")
|
||||||
|
} else {
|
||||||
|
router.HTMLRender = loadTemplates("index.tmpl")
|
||||||
|
}
|
||||||
|
|
||||||
store := sessions.NewCookieStore([]byte(secret))
|
store := sessions.NewCookieStore([]byte(secret))
|
||||||
router.Use(sessions.Sessions("mysession", store))
|
router.Use(sessions.Sessions("mysession", store))
|
||||||
if secretCode != "" {
|
if secretCode != "" {
|
||||||
router.Use(secretRequired.RequiresSecretAccessCode(secretCode, "/login/"))
|
cfg := &secretRequired.Config{
|
||||||
|
Secret: secretCode,
|
||||||
|
Path: "/login/",
|
||||||
|
RequireAuth: func(c *gin.Context) bool {
|
||||||
|
page := c.Param("page")
|
||||||
|
cmd := c.Param("command")
|
||||||
|
|
||||||
|
if page == "sitemap.xml" || page == "favicon.ico" || page == "static" {
|
||||||
|
return false // no auth for sitemap
|
||||||
|
}
|
||||||
|
|
||||||
|
if page != "" && cmd == "/read" {
|
||||||
|
p := Open(page)
|
||||||
|
fmt.Printf("p: '%+v'\n", p)
|
||||||
|
if p != nil && p.IsPublished {
|
||||||
|
return false // Published pages don't require auth.
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return true
|
||||||
|
},
|
||||||
|
}
|
||||||
|
router.Use(cfg.Middleware)
|
||||||
}
|
}
|
||||||
router.HTMLRender = loadTemplates("index.tmpl")
|
|
||||||
// router.Use(static.Serve("/static/", static.LocalFile("./static", true)))
|
// router.Use(static.Serve("/static/", static.LocalFile("./static", true)))
|
||||||
router.GET("/", func(c *gin.Context) {
|
router.GET("/", func(c *gin.Context) {
|
||||||
if defaultPage != "" {
|
if defaultPage != "" {
|
||||||
@ -335,6 +368,7 @@ func handlePageRequest(c *gin.Context) {
|
|||||||
"DontKnowPage": command[0:2] != "/e" &&
|
"DontKnowPage": command[0:2] != "/e" &&
|
||||||
command[0:2] != "/v" &&
|
command[0:2] != "/v" &&
|
||||||
command[0:2] != "/l" &&
|
command[0:2] != "/l" &&
|
||||||
|
command[0:2] != "/r" &&
|
||||||
command[0:2] != "/h",
|
command[0:2] != "/h",
|
||||||
"DirectoryPage": page == "ls",
|
"DirectoryPage": page == "ls",
|
||||||
"DirectoryEntries": DirectoryEntries,
|
"DirectoryEntries": DirectoryEntries,
|
||||||
@ -355,6 +389,8 @@ func handlePageRequest(c *gin.Context) {
|
|||||||
"Debounce": debounceTime,
|
"Debounce": debounceTime,
|
||||||
"DiaryMode": diaryMode,
|
"DiaryMode": diaryMode,
|
||||||
"Date": time.Now().Format("2006-01-02"),
|
"Date": time.Now().Format("2006-01-02"),
|
||||||
|
"UnixTime": time.Now().Unix(),
|
||||||
|
"ChildPageNames": p.ChildPageNames(),
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -414,6 +450,7 @@ func handlePageUpdate(c *gin.Context) {
|
|||||||
type QueryJSON struct {
|
type QueryJSON struct {
|
||||||
Page string `json:"page"`
|
Page string `json:"page"`
|
||||||
NewText string `json:"new_text"`
|
NewText string `json:"new_text"`
|
||||||
|
FetchedAt int64 `json:"fetched_at"`
|
||||||
IsEncrypted bool `json:"is_encrypted"`
|
IsEncrypted bool `json:"is_encrypted"`
|
||||||
IsPrimed bool `json:"is_primed"`
|
IsPrimed bool `json:"is_primed"`
|
||||||
Meta string `json:"meta"`
|
Meta string `json:"meta"`
|
||||||
@ -441,6 +478,8 @@ func handlePageUpdate(c *gin.Context) {
|
|||||||
message = "Locked, must unlock first"
|
message = "Locked, must unlock first"
|
||||||
} else if p.IsEncrypted {
|
} else if p.IsEncrypted {
|
||||||
message = "Encrypted, must decrypt first"
|
message = "Encrypted, must decrypt first"
|
||||||
|
} else if json.FetchedAt > 0 && p.LastEditUnixTime() > json.FetchedAt {
|
||||||
|
message = "Refusing to overwrite others work"
|
||||||
} else {
|
} else {
|
||||||
p.Meta = json.Meta
|
p.Meta = json.Meta
|
||||||
p.Update(json.NewText)
|
p.Update(json.NewText)
|
||||||
@ -454,7 +493,7 @@ func handlePageUpdate(c *gin.Context) {
|
|||||||
message = "Saved"
|
message = "Saved"
|
||||||
success = true
|
success = true
|
||||||
}
|
}
|
||||||
c.JSON(http.StatusOK, gin.H{"success": success, "message": message})
|
c.JSON(http.StatusOK, gin.H{"success": success, "message": message, "unix_time": time.Now().Unix()})
|
||||||
}
|
}
|
||||||
|
|
||||||
func handlePrime(c *gin.Context) {
|
func handlePrime(c *gin.Context) {
|
||||||
|
2
main.go
2
main.go
@ -9,6 +9,7 @@ import (
|
|||||||
)
|
)
|
||||||
|
|
||||||
var version string
|
var version string
|
||||||
|
var hotTemplateReloading bool
|
||||||
var pathToData string
|
var pathToData string
|
||||||
|
|
||||||
func main() {
|
func main() {
|
||||||
@ -53,6 +54,7 @@ func main() {
|
|||||||
c.GlobalString("cookie-secret"),
|
c.GlobalString("cookie-secret"),
|
||||||
c.GlobalString("access-code"),
|
c.GlobalString("access-code"),
|
||||||
c.GlobalBool("allow-insecure-markup"),
|
c.GlobalBool("allow-insecure-markup"),
|
||||||
|
hotTemplateReloading,
|
||||||
)
|
)
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
29
page.go
29
page.go
@ -5,6 +5,7 @@ import (
|
|||||||
"io/ioutil"
|
"io/ioutil"
|
||||||
"os"
|
"os"
|
||||||
"path"
|
"path"
|
||||||
|
"path/filepath"
|
||||||
"regexp"
|
"regexp"
|
||||||
"sort"
|
"sort"
|
||||||
"strings"
|
"strings"
|
||||||
@ -27,6 +28,14 @@ type Page struct {
|
|||||||
IsPublished bool
|
IsPublished bool
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (p Page) LastEditTime() time.Time {
|
||||||
|
return time.Unix(p.LastEditUnixTime(), 0)
|
||||||
|
}
|
||||||
|
|
||||||
|
func (p Page) LastEditUnixTime() int64 {
|
||||||
|
return p.Text.LastEditTime() / 1000000000
|
||||||
|
}
|
||||||
|
|
||||||
func Open(name string) (p *Page) {
|
func Open(name string) (p *Page) {
|
||||||
p = new(Page)
|
p = new(Page)
|
||||||
p.Name = name
|
p.Name = name
|
||||||
@ -120,6 +129,26 @@ func (p *Page) Save() error {
|
|||||||
return ioutil.WriteFile(path.Join(pathToData, encodeToBase32(strings.ToLower(p.Name))+".json"), bJSON, 0644)
|
return ioutil.WriteFile(path.Join(pathToData, encodeToBase32(strings.ToLower(p.Name))+".json"), bJSON, 0644)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (p *Page) ChildPageNames() []string {
|
||||||
|
prefix := strings.ToLower(p.Name + ": ")
|
||||||
|
files, err := filepath.Glob(path.Join(pathToData, "*"))
|
||||||
|
if err != nil {
|
||||||
|
panic("Filepath pattern cannot be malformed")
|
||||||
|
}
|
||||||
|
|
||||||
|
result := []string{}
|
||||||
|
for i := range files {
|
||||||
|
basename := filepath.Base(files[i])
|
||||||
|
if strings.HasSuffix(basename, ".json") {
|
||||||
|
cname, err := decodeFromBase32(basename[:len(basename)-len(".json")])
|
||||||
|
if err == nil && strings.HasPrefix(strings.ToLower(cname), prefix) {
|
||||||
|
result = append(result, cname)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return result
|
||||||
|
}
|
||||||
|
|
||||||
func (p *Page) IsNew() bool {
|
func (p *Page) IsNew() bool {
|
||||||
return !exists(path.Join(pathToData, encodeToBase32(strings.ToLower(p.Name))+".json"))
|
return !exists(path.Join(pathToData, encodeToBase32(strings.ToLower(p.Name))+".json"))
|
||||||
}
|
}
|
||||||
|
14
page_test.go
14
page_test.go
@ -55,4 +55,18 @@ func TestGeneral(t *testing.T) {
|
|||||||
t.Errorf("Did not render: '%s'", p2.RenderedPage)
|
t.Errorf("Did not render: '%s'", p2.RenderedPage)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
p3 := Open("testpage: childpage")
|
||||||
|
err = p3.Update("**child content**")
|
||||||
|
if err != nil {
|
||||||
|
t.Error(err)
|
||||||
|
}
|
||||||
|
|
||||||
|
children := p.ChildPageNames()
|
||||||
|
if len(children) != 1 {
|
||||||
|
t.Errorf("Expected 1 child page to be found, got %d", len(children))
|
||||||
|
return
|
||||||
|
}
|
||||||
|
if children[0] != "testpage: childpage" {
|
||||||
|
t.Errorf("Expected child page %s to be found (got %s)", "testpage: childpage", children[0])
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
128
static/css/default.css
Normal file
128
static/css/default.css
Normal file
@ -0,0 +1,128 @@
|
|||||||
|
body.ListPage span {
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
body {
|
||||||
|
background: #fff;
|
||||||
|
}
|
||||||
|
.success {
|
||||||
|
color: #5cb85c;
|
||||||
|
font-weight: bold;
|
||||||
|
}
|
||||||
|
.failure {
|
||||||
|
color: #d9534f;
|
||||||
|
font-weight: bold;
|
||||||
|
}
|
||||||
|
.pure-menu a {
|
||||||
|
color: #777;
|
||||||
|
}
|
||||||
|
.deleting {
|
||||||
|
opacity: 0.5;
|
||||||
|
}
|
||||||
|
#wrap {
|
||||||
|
position: absolute;
|
||||||
|
top: 50px;
|
||||||
|
left: 0px;
|
||||||
|
right: 0px;
|
||||||
|
bottom: 0px;
|
||||||
|
}
|
||||||
|
#pad {
|
||||||
|
height:100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
body.EditPage {
|
||||||
|
overflow:hidden;
|
||||||
|
}
|
||||||
|
|
||||||
|
body#pad textarea {
|
||||||
|
width: 100%;
|
||||||
|
height: 100%;
|
||||||
|
box-sizing: border-box;
|
||||||
|
-moz-box-sizing: border-box;
|
||||||
|
-webkit-box-sizing: border-box;
|
||||||
|
position: absolute;
|
||||||
|
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;
|
||||||
|
font-size: 1.0em;
|
||||||
|
font-family: 'Open Sans','Segoe UI',Tahoma,Arial,sans-serif;
|
||||||
|
}
|
||||||
|
|
||||||
|
body#pad.HasDotInName textarea {
|
||||||
|
font-family: "Lucida Console", Monaco, monospace;
|
||||||
|
}
|
||||||
|
|
||||||
|
.markdown-body ul, .markdown-body ol {
|
||||||
|
padding-left: 0em;
|
||||||
|
}
|
||||||
|
|
||||||
|
@media (min-width: 5em) {
|
||||||
|
div#menu, div#rendered, .ChildPageNames, body#pad textarea {
|
||||||
|
padding-left: 2%;
|
||||||
|
padding-right: 2%;
|
||||||
|
}
|
||||||
|
.pure-menu .pure-menu-horizontal {
|
||||||
|
max-width: 300px;
|
||||||
|
}
|
||||||
|
.pure-menu-disabled, .pure-menu-heading, .pure-menu-link {
|
||||||
|
padding-left:1.2em;
|
||||||
|
padding-right:em;
|
||||||
|
}
|
||||||
|
.ChildPageNames ul {
|
||||||
|
grid-template-columns: repeat(1, 1fr);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
@media (min-width: 50em) {
|
||||||
|
div#menu, div#rendered, .ChildPageNames, body#pad textarea {
|
||||||
|
padding-left: 10%;
|
||||||
|
padding-right: 10%;
|
||||||
|
}
|
||||||
|
.pure-menu-disabled, .pure-menu-heading, .pure-menu-link {
|
||||||
|
padding: .5em 1em;
|
||||||
|
}
|
||||||
|
.ChildPageNames ul {
|
||||||
|
grid-template-columns: repeat(2, 1fr);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
@media (min-width: 70em) {
|
||||||
|
div#menu, div#rendered, .ChildPageNames, body#pad textarea {
|
||||||
|
padding-left: 15%;
|
||||||
|
padding-right: 15%;
|
||||||
|
}
|
||||||
|
.ChildPageNames ul {
|
||||||
|
grid-template-columns: repeat(3, 1fr);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@media (min-width: 100em) {
|
||||||
|
div#menu, div#rendered, .ChildPageNames, body#pad textarea {
|
||||||
|
padding-left: 20%;
|
||||||
|
padding-right: 20%;
|
||||||
|
}
|
||||||
|
.ChildPageNames ul {
|
||||||
|
grid-template-columns: repeat(4, 1fr);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.ChildPageNames ul {
|
||||||
|
margin: 0.3em 0 0 1.6em;
|
||||||
|
padding: 0;
|
||||||
|
display: grid;
|
||||||
|
grid-gap: 0.5rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.ChildPageNames li {
|
||||||
|
margin: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.ChildPageNames a {
|
||||||
|
color: #0645ad;
|
||||||
|
background: none;
|
||||||
|
}
|
354
static/js/cowyo.js
Normal file
354
static/js/cowyo.js
Normal file
@ -0,0 +1,354 @@
|
|||||||
|
"use strict";
|
||||||
|
var oulipo = false;
|
||||||
|
|
||||||
|
$(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').removeClass()
|
||||||
|
$('#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
|
||||||
|
var prevText = $('#userInput').val();
|
||||||
|
$('#userInput').on('keyup', debounce(function() {
|
||||||
|
if (prevText == $('#userInput').val()) {
|
||||||
|
return // no changes
|
||||||
|
}
|
||||||
|
prevText = $('#userInput').val();
|
||||||
|
|
||||||
|
if (oulipo) {
|
||||||
|
$('#userInput').val($('#userInput').val().replace(/e/g,""));
|
||||||
|
}
|
||||||
|
$('#saveEditButton').removeClass()
|
||||||
|
$('#saveEditButton').text("Saving")
|
||||||
|
upload();
|
||||||
|
}, window.debounceMS));
|
||||||
|
|
||||||
|
var latestUpload = null, needAnother = false;
|
||||||
|
function upload() {
|
||||||
|
// Prevent concurrent uploads
|
||||||
|
if (latestUpload != null) {
|
||||||
|
needAnother = true;
|
||||||
|
return
|
||||||
|
}
|
||||||
|
latestUpload = $.ajax({
|
||||||
|
type: 'POST',
|
||||||
|
url: '/update',
|
||||||
|
data: JSON.stringify({
|
||||||
|
new_text: $('#userInput').val(),
|
||||||
|
page: window.cowyo.pageName,
|
||||||
|
fetched_at: window.lastFetch,
|
||||||
|
}),
|
||||||
|
success: function(data) {
|
||||||
|
latestUpload = null;
|
||||||
|
|
||||||
|
$('#saveEditButton').removeClass()
|
||||||
|
if (data.success == true) {
|
||||||
|
$('#saveEditButton').addClass("success");
|
||||||
|
window.lastFetch = data.unix_time;
|
||||||
|
|
||||||
|
if (needAnother) {
|
||||||
|
upload();
|
||||||
|
};
|
||||||
|
} else {
|
||||||
|
$('#saveEditButton').addClass("failure");
|
||||||
|
}
|
||||||
|
$('#saveEditButton').text(data.message);
|
||||||
|
needAnother = false;
|
||||||
|
},
|
||||||
|
error: function(xhr, error) {
|
||||||
|
latestUpload = null;
|
||||||
|
needAnother = false;
|
||||||
|
$('#saveEditButton').removeClass()
|
||||||
|
$('#saveEditButton').addClass("failure");
|
||||||
|
$('#saveEditButton').text(error);
|
||||||
|
},
|
||||||
|
contentType: "application/json",
|
||||||
|
dataType: 'json'
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
function primeForSelfDestruct() {
|
||||||
|
$.ajax({
|
||||||
|
type: 'POST',
|
||||||
|
url: '/prime',
|
||||||
|
data: JSON.stringify({
|
||||||
|
page: window.cowyo.pageName,
|
||||||
|
}),
|
||||||
|
success: function(data) {
|
||||||
|
$('#saveEditButton').removeClass()
|
||||||
|
if (data.success == true) {
|
||||||
|
$('#saveEditButton').addClass("success");
|
||||||
|
} else {
|
||||||
|
$('#saveEditButton').addClass("failure");
|
||||||
|
}
|
||||||
|
$('#saveEditButton').text(data.message);
|
||||||
|
},
|
||||||
|
error: function(xhr, error) {
|
||||||
|
$('#saveEditButton').removeClass()
|
||||||
|
$('#saveEditButton').addClass("failure");
|
||||||
|
$('#saveEditButton').text(error);
|
||||||
|
},
|
||||||
|
contentType: "application/json",
|
||||||
|
dataType: 'json'
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
function lockPage(passphrase) {
|
||||||
|
$.ajax({
|
||||||
|
type: 'POST',
|
||||||
|
url: '/lock',
|
||||||
|
data: JSON.stringify({
|
||||||
|
page: window.cowyo.pageName,
|
||||||
|
passphrase: passphrase
|
||||||
|
}),
|
||||||
|
success: function(data) {
|
||||||
|
$('#saveEditButton').removeClass()
|
||||||
|
if (data.success == true) {
|
||||||
|
$('#saveEditButton').addClass("success");
|
||||||
|
} else {
|
||||||
|
$('#saveEditButton').addClass("failure");
|
||||||
|
}
|
||||||
|
$('#saveEditButton').text(data.message);
|
||||||
|
if (data.success == true && $('#lockPage').text() == "Lock") {
|
||||||
|
window.location = "/" + window.cowyo.pageName + "/view";
|
||||||
|
}
|
||||||
|
if (data.success == true && $('#lockPage').text() == "Unlock") {
|
||||||
|
window.location = "/" + window.cowyo.pageName + "/edit";
|
||||||
|
}
|
||||||
|
},
|
||||||
|
error: function(xhr, error) {
|
||||||
|
$('#saveEditButton').removeClass()
|
||||||
|
$('#saveEditButton').addClass("failure");
|
||||||
|
$('#saveEditButton').text(error);
|
||||||
|
},
|
||||||
|
contentType: "application/json",
|
||||||
|
dataType: 'json'
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
function publishPage() {
|
||||||
|
$.ajax({
|
||||||
|
type: 'POST',
|
||||||
|
url: '/publish',
|
||||||
|
data: JSON.stringify({
|
||||||
|
page: window.cowyo.pageName,
|
||||||
|
publish: $('#publishPage').text() == "Publish"
|
||||||
|
}),
|
||||||
|
success: function(data) {
|
||||||
|
$('#saveEditButton').removeClass()
|
||||||
|
if (data.success == true) {
|
||||||
|
$('#saveEditButton').addClass("success");
|
||||||
|
} else {
|
||||||
|
$('#saveEditButton').addClass("failure");
|
||||||
|
}
|
||||||
|
$('#saveEditButton').text(data.message);
|
||||||
|
if (data.message == "Unpublished") {
|
||||||
|
$('#publishPage').text("Publish");
|
||||||
|
} else {
|
||||||
|
$('#publishPage').text("Unpublish");
|
||||||
|
}
|
||||||
|
},
|
||||||
|
error: function(xhr, error) {
|
||||||
|
$('#saveEditButton').removeClass()
|
||||||
|
$('#saveEditButton').addClass("failure");
|
||||||
|
$('#saveEditButton').text(error);
|
||||||
|
},
|
||||||
|
contentType: "application/json",
|
||||||
|
dataType: 'json'
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
function encryptPage(passphrase) {
|
||||||
|
$.ajax({
|
||||||
|
type: 'POST',
|
||||||
|
url: '/encrypt',
|
||||||
|
data: JSON.stringify({
|
||||||
|
page: window.cowyo.pageName,
|
||||||
|
passphrase: passphrase
|
||||||
|
}),
|
||||||
|
success: function(data) {
|
||||||
|
$('#saveEditButton').removeClass()
|
||||||
|
if (data.success == true) {
|
||||||
|
$('#saveEditButton').addClass("success");
|
||||||
|
} else {
|
||||||
|
$('#saveEditButton').addClass("failure");
|
||||||
|
}
|
||||||
|
$('#saveEditButton').text(data.message);
|
||||||
|
|
||||||
|
if (data.success == true && $('#encryptPage').text() == "Encrypt") {
|
||||||
|
window.location = "/" + window.cowyo.pageName + "/view";
|
||||||
|
}
|
||||||
|
if (data.success == true && $('#encryptPage').text() == "Decrypt") {
|
||||||
|
window.location = "/" + window.cowyo.pageName + "/edit";
|
||||||
|
}
|
||||||
|
},
|
||||||
|
error: function(xhr, error) {
|
||||||
|
$('#saveEditButton').removeClass()
|
||||||
|
$('#saveEditButton').addClass("failure");
|
||||||
|
$('#saveEditButton').text(error);
|
||||||
|
},
|
||||||
|
contentType: "application/json",
|
||||||
|
dataType: 'json'
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
function clearOld() {
|
||||||
|
$.ajax({
|
||||||
|
type: 'DELETE',
|
||||||
|
url: '/oldlist',
|
||||||
|
data: JSON.stringify({
|
||||||
|
page: window.cowyo.pageName
|
||||||
|
}),
|
||||||
|
success: function(data) {
|
||||||
|
$('#saveEditButton').removeClass()
|
||||||
|
if (data.success == true) {
|
||||||
|
$('#saveEditButton').addClass("success");
|
||||||
|
} else {
|
||||||
|
$('#saveEditButton').addClass("failure");
|
||||||
|
}
|
||||||
|
$('#saveEditButton').text(data.message);
|
||||||
|
if (data.success == true) {
|
||||||
|
window.location = "/" + window.cowyo.pageName + "/list";
|
||||||
|
}
|
||||||
|
},
|
||||||
|
error: function(xhr, error) {
|
||||||
|
$('#saveEditButton').removeClass();
|
||||||
|
$('#saveEditButton').addClass("failure");
|
||||||
|
$('#saveEditButton').text(error);
|
||||||
|
},
|
||||||
|
contentType: "application/json",
|
||||||
|
dataType: 'json'
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
$("#encryptPage").click(function(e) {
|
||||||
|
e.preventDefault();
|
||||||
|
var passphrase = prompt("Please enter a passphrase. Note: Encrypting will remove all previous history.", "");
|
||||||
|
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 = "/" + window.cowyo.pageName + "/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) {
|
||||||
|
if ($('#lockPage').text() == "Lock") {
|
||||||
|
$('#saveEditButton').removeClass();
|
||||||
|
$("#saveEditButton").text("Locking");
|
||||||
|
} else {
|
||||||
|
$('#saveEditButton').removeClass();
|
||||||
|
$("#saveEditButton").text("Unlocking");
|
||||||
|
}
|
||||||
|
lockPage(passphrase);
|
||||||
|
// POST encrypt page
|
||||||
|
// reload page
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
$("#publishPage").click(function(e) {
|
||||||
|
e.preventDefault();
|
||||||
|
var message = " This will add your page to the sitemap.xml so it will be indexed by search engines.";
|
||||||
|
if ($('#publishPage').text() == "Unpublish") {
|
||||||
|
message = "";
|
||||||
|
}
|
||||||
|
var confirmed = confirm("Are you sure?" + message);
|
||||||
|
if (confirmed == true) {
|
||||||
|
if ($('#publishPage').text() == "Unpublish") {
|
||||||
|
$('#saveEditButton').removeClass();
|
||||||
|
$("#saveEditButton").text("Unpublishing");
|
||||||
|
} else {
|
||||||
|
$('#saveEditButton').removeClass();
|
||||||
|
$("#saveEditButton").text("Publishing");
|
||||||
|
}
|
||||||
|
publishPage();
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
$("#clearOld").click(function(e) {
|
||||||
|
e.preventDefault();
|
||||||
|
var r = confirm("This will erase all cleared list items, are you sure you want to do that? (Versions will stay in history).");
|
||||||
|
if (r == true) {
|
||||||
|
clearOld()
|
||||||
|
} else {
|
||||||
|
x = "You pressed Cancel!";
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
$("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();
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
$('.deletable').click(function(event) {
|
||||||
|
event.preventDefault();
|
||||||
|
var lineNum = $(this).attr('id');
|
||||||
|
|
||||||
|
$.ajax({
|
||||||
|
url: "/listitem" + '?' + $.param({
|
||||||
|
"lineNum": lineNum,
|
||||||
|
"page": window.cowyo.pageName
|
||||||
|
}),
|
||||||
|
type: 'DELETE',
|
||||||
|
success: function() {
|
||||||
|
window.location.reload(true);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
event.target.classList.add('deleting');
|
||||||
|
});
|
||||||
|
});
|
@ -1,6 +1,5 @@
|
|||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
<html>
|
<html>
|
||||||
|
|
||||||
<head>
|
<head>
|
||||||
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
|
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
@ -22,605 +21,193 @@
|
|||||||
<meta name="msapplication-TileImage" content="/ms-icon-144x144.png">
|
<meta name="msapplication-TileImage" content="/ms-icon-144x144.png">
|
||||||
<meta name="theme-color" content="#fff">
|
<meta name="theme-color" content="#fff">
|
||||||
|
|
||||||
{{ if and .CustomCSS .ReadPage }}
|
{{ if and .CustomCSS .ReadPage }}
|
||||||
<link rel="stylesheet" type="text/css" href="/static/css/custom.css">
|
<link rel="stylesheet" type="text/css" href="/static/css/custom.css">
|
||||||
{{ else }}
|
{{ else }}
|
||||||
<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/github-markdown.css">
|
<link rel="stylesheet" type="text/css" href="/static/css/menus-min.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">
|
||||||
<link rel="stylesheet" type="text/css" href="/static/css/base-min.css">
|
<link rel="stylesheet" href="/static/css/highlight.css">
|
||||||
<link rel="stylesheet" href="/static/css/highlight.css">
|
<link rel="stylesheet" href="/static/css/default.css">
|
||||||
<script src="/static/js/highlight.min.js"></script>
|
<script type="text/javascript" src="/static/js/jquery-1.8.3.js"></script>
|
||||||
<script type="text/javascript" src="/static/js/highlight.pack.js"></script>
|
<script src="/static/js/highlight.min.js"></script>
|
||||||
|
<script type="text/javascript" src="/static/js/highlight.pack.js"></script>
|
||||||
|
{{ end }}
|
||||||
|
|
||||||
<style type="text/css">
|
|
||||||
{{ if .ListPage }}
|
|
||||||
/* Required for lists */
|
|
||||||
span { cursor: pointer; }
|
|
||||||
{{ end }}
|
|
||||||
body {
|
|
||||||
background: #fff;
|
|
||||||
}
|
|
||||||
.success {
|
|
||||||
color: #5cb85c;
|
|
||||||
font-weight: bold;
|
|
||||||
}
|
|
||||||
.failure {
|
|
||||||
color: #d9534f;
|
|
||||||
font-weight: bold;
|
|
||||||
}
|
|
||||||
.pure-menu a {
|
|
||||||
color: #777;
|
|
||||||
}
|
|
||||||
.deleting {
|
|
||||||
opacity: 0.5;
|
|
||||||
}
|
|
||||||
#wrap {
|
|
||||||
position: absolute;
|
|
||||||
top: 50px;
|
|
||||||
left: 0px;
|
|
||||||
right: 0px;
|
|
||||||
bottom: 0px;
|
|
||||||
}
|
|
||||||
#pad {
|
|
||||||
height:100%;
|
|
||||||
}
|
|
||||||
{{ if .EditPage }}
|
|
||||||
body {
|
|
||||||
overflow:hidden;
|
|
||||||
}
|
|
||||||
{{ end }}
|
|
||||||
body#pad textarea {
|
|
||||||
width: 100%;
|
|
||||||
height: 100%;
|
|
||||||
box-sizing: border-box;
|
|
||||||
-moz-box-sizing: border-box;
|
|
||||||
-webkit-box-sizing: border-box;
|
|
||||||
position: absolute;
|
|
||||||
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;
|
|
||||||
font-size: 1.0em;
|
|
||||||
{{ if .HasDotInName }}
|
|
||||||
font-family: "Lucida Console", Monaco, monospace;
|
|
||||||
{{else}}
|
|
||||||
font-family: 'Open Sans','Segoe UI',Tahoma,Arial,sans-serif;
|
|
||||||
{{ end }}
|
|
||||||
}
|
|
||||||
|
|
||||||
.markdown-body ul, .markdown-body ol {
|
|
||||||
padding-left: 0em;
|
|
||||||
}
|
|
||||||
|
|
||||||
@media (min-width: 5em) {
|
|
||||||
div#menu, div#rendered, body#pad textarea {
|
|
||||||
padding-left: 2%;
|
|
||||||
padding-right: 2%;
|
|
||||||
}
|
|
||||||
.pure-menu .pure-menu-horizontal {
|
|
||||||
max-width: 300px;
|
|
||||||
}
|
|
||||||
.pure-menu-disabled, .pure-menu-heading, .pure-menu-link {
|
|
||||||
padding-left:1.2em;
|
|
||||||
padding-right:em;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@media (min-width: 50em) {
|
|
||||||
div#menu, div#rendered, body#pad textarea {
|
|
||||||
padding-left: 10%;
|
|
||||||
padding-right: 10%;
|
|
||||||
}
|
|
||||||
.pure-menu-disabled, .pure-menu-heading, .pure-menu-link {
|
|
||||||
padding: .5em 1em;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@media (min-width: 70em) {
|
|
||||||
div#menu, div#rendered, body#pad textarea {
|
|
||||||
padding-left: 15%;
|
|
||||||
padding-right: 15%;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
@media (min-width: 100em) {
|
|
||||||
div#menu, div#rendered, body#pad textarea {
|
|
||||||
padding-left: 20%;
|
|
||||||
padding-right: 20%;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
</style>
|
|
||||||
{{ end }}
|
|
||||||
<title>{{ .Page }}</title>
|
<title>{{ .Page }}</title>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<script type='text/javascript'>
|
<script type='text/javascript'>
|
||||||
oulipo = false;
|
hljs.initHighlightingOnLoad();
|
||||||
//<![CDATA[
|
window.cowyo = {
|
||||||
$(window).load(function() {
|
debounceMS: {{ .Debounce }},
|
||||||
// Returns a function, that, as long as it continues to be invoked, will not
|
lastFetch: {{ .UnixTime }},
|
||||||
// be triggered. The function will be called after it stops being called for
|
pageName: "{{ .Page }}",
|
||||||
// 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').removeClass()
|
|
||||||
$('#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');
|
|
||||||
if (oulipo == true) { $('#userInput').val($('#userInput').val().replace(/e/g,"")); }
|
|
||||||
$('#saveEditButton').removeClass()
|
|
||||||
$('#saveEditButton').text("Saving")
|
|
||||||
upload();
|
|
||||||
}, {{ .Debounce }}));
|
|
||||||
|
|
||||||
function upload() {
|
|
||||||
$.ajax({
|
|
||||||
type: 'POST',
|
|
||||||
url: '/update',
|
|
||||||
data: JSON.stringify({
|
|
||||||
new_text: $('#userInput').val(),
|
|
||||||
page: "{{ .Page }}"
|
|
||||||
}),
|
|
||||||
success: function(data) {
|
|
||||||
$('#saveEditButton').removeClass()
|
|
||||||
if (data.success == true) {
|
|
||||||
$('#saveEditButton').addClass("success");
|
|
||||||
} else {
|
|
||||||
$('#saveEditButton').addClass("failure");
|
|
||||||
}
|
|
||||||
$('#saveEditButton').text(data.message);
|
|
||||||
},
|
|
||||||
error: function(xhr, error) {
|
|
||||||
$('#saveEditButton').removeClass()
|
|
||||||
$('#saveEditButton').addClass("failure");
|
|
||||||
$('#saveEditButton').text(error);
|
|
||||||
},
|
|
||||||
contentType: "application/json",
|
|
||||||
dataType: 'json'
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
function primeForSelfDestruct() {
|
|
||||||
$.ajax({
|
|
||||||
type: 'POST',
|
|
||||||
url: '/prime',
|
|
||||||
data: JSON.stringify({
|
|
||||||
page: "{{ .Page }}"
|
|
||||||
}),
|
|
||||||
success: function(data) {
|
|
||||||
$('#saveEditButton').removeClass()
|
|
||||||
if (data.success == true) {
|
|
||||||
$('#saveEditButton').addClass("success");
|
|
||||||
} else {
|
|
||||||
$('#saveEditButton').addClass("failure");
|
|
||||||
}
|
|
||||||
$('#saveEditButton').text(data.message);
|
|
||||||
},
|
|
||||||
error: function(xhr, error) {
|
|
||||||
$('#saveEditButton').removeClass()
|
|
||||||
$('#saveEditButton').addClass("failure");
|
|
||||||
$('#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').removeClass()
|
|
||||||
if (data.success == true) {
|
|
||||||
$('#saveEditButton').addClass("success");
|
|
||||||
} else {
|
|
||||||
$('#saveEditButton').addClass("failure");
|
|
||||||
}
|
|
||||||
$('#saveEditButton').text(data.message);
|
|
||||||
if (data.success == true && $('#lockPage').text() == "Lock") {
|
|
||||||
window.location = "/{{ .Page }}/view";
|
|
||||||
}
|
|
||||||
if (data.success == true && $('#lockPage').text() == "Unlock") {
|
|
||||||
window.location = "/{{ .Page }}/edit";
|
|
||||||
}
|
|
||||||
},
|
|
||||||
error: function(xhr, error) {
|
|
||||||
$('#saveEditButton').removeClass()
|
|
||||||
$('#saveEditButton').addClass("failure");
|
|
||||||
$('#saveEditButton').text(error);
|
|
||||||
},
|
|
||||||
contentType: "application/json",
|
|
||||||
dataType: 'json'
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
function publishPage() {
|
|
||||||
$.ajax({
|
|
||||||
type: 'POST',
|
|
||||||
url: '/publish',
|
|
||||||
data: JSON.stringify({
|
|
||||||
page: "{{ .Page }}",
|
|
||||||
publish: $('#publishPage').text() == "Publish"
|
|
||||||
}),
|
|
||||||
success: function(data) {
|
|
||||||
$('#saveEditButton').removeClass()
|
|
||||||
if (data.success == true) {
|
|
||||||
$('#saveEditButton').addClass("success");
|
|
||||||
} else {
|
|
||||||
$('#saveEditButton').addClass("failure");
|
|
||||||
}
|
|
||||||
$('#saveEditButton').text(data.message);
|
|
||||||
if (data.message == "Unpublished") {
|
|
||||||
$('#publishPage').text("Publish");
|
|
||||||
} else {
|
|
||||||
$('#publishPage').text("Unpublish");
|
|
||||||
}
|
|
||||||
},
|
|
||||||
error: function(xhr, error) {
|
|
||||||
$('#saveEditButton').removeClass()
|
|
||||||
$('#saveEditButton').addClass("failure");
|
|
||||||
$('#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').removeClass()
|
|
||||||
if (data.success == true) {
|
|
||||||
$('#saveEditButton').addClass("success");
|
|
||||||
} else {
|
|
||||||
$('#saveEditButton').addClass("failure");
|
|
||||||
}
|
|
||||||
$('#saveEditButton').text(data.message);
|
|
||||||
if (data.success == true && $('#encryptPage').text() == "Encrypt") {
|
|
||||||
window.location = "/{{ .Page }}/view";
|
|
||||||
}
|
|
||||||
if (data.success == true && $('#encryptPage').text() == "Decrypt") {
|
|
||||||
window.location = "/{{ .Page }}/edit";
|
|
||||||
}
|
|
||||||
},
|
|
||||||
error: function(xhr, error) {
|
|
||||||
$('#saveEditButton').removeClass()
|
|
||||||
$('#saveEditButton').addClass("failure");
|
|
||||||
$('#saveEditButton').text(error);
|
|
||||||
},
|
|
||||||
contentType: "application/json",
|
|
||||||
dataType: 'json'
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
function clearOld() {
|
|
||||||
$.ajax({
|
|
||||||
type: 'DELETE',
|
|
||||||
url: '/oldlist',
|
|
||||||
data: JSON.stringify({
|
|
||||||
page: "{{ .Page }}"
|
|
||||||
}),
|
|
||||||
success: function(data) {
|
|
||||||
$('#saveEditButton').removeClass()
|
|
||||||
if (data.success == true) {
|
|
||||||
$('#saveEditButton').addClass("success");
|
|
||||||
} else {
|
|
||||||
$('#saveEditButton').addClass("failure");
|
|
||||||
}
|
|
||||||
$('#saveEditButton').text(data.message);
|
|
||||||
if (data.success == true) {
|
|
||||||
window.location = "/{{ .Page }}/list";
|
|
||||||
}
|
|
||||||
},
|
|
||||||
error: function(xhr, error) {
|
|
||||||
$('#saveEditButton').removeClass();
|
|
||||||
$('#saveEditButton').addClass("failure");
|
|
||||||
$('#saveEditButton').text(error);
|
|
||||||
},
|
|
||||||
contentType: "application/json",
|
|
||||||
dataType: 'json'
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
$("#encryptPage").click(function(e) {
|
|
||||||
e.preventDefault();
|
|
||||||
var passphrase = prompt("Please enter a passphrase. Note: Encrypting will remove all previous history.", "");
|
|
||||||
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) {
|
|
||||||
if ($('#lockPage').text() == "Lock") {
|
|
||||||
$('#saveEditButton').removeClass();
|
|
||||||
$("#saveEditButton").text("Locking");
|
|
||||||
} else {
|
|
||||||
$('#saveEditButton').removeClass();
|
|
||||||
$("#saveEditButton").text("Unlocking");
|
|
||||||
}
|
|
||||||
lockPage(passphrase);
|
|
||||||
// POST encrypt page
|
|
||||||
// reload page
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
$("#publishPage").click(function(e) {
|
|
||||||
e.preventDefault();
|
|
||||||
var message = " This will add your page to the sitemap.xml so it will be indexed by search engines.";
|
|
||||||
if ($('#publishPage').text() == "Unpublish") {
|
|
||||||
message = "";
|
|
||||||
}
|
|
||||||
var confirmed = confirm("Are you sure?" + message);
|
|
||||||
if (confirmed == true) {
|
|
||||||
if ($('#publishPage').text() == "Unpublish") {
|
|
||||||
$('#saveEditButton').removeClass();
|
|
||||||
$("#saveEditButton").text("Unpublishing");
|
|
||||||
} else {
|
|
||||||
$('#saveEditButton').removeClass();
|
|
||||||
$("#saveEditButton").text("Publishing");
|
|
||||||
}
|
|
||||||
publishPage();
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
$("#clearOld").click(function(e) {
|
|
||||||
e.preventDefault();
|
|
||||||
var r = confirm("This will erase all cleared list items, are you sure you want to do that? (Versions will stay in history).");
|
|
||||||
if (r == true) {
|
|
||||||
clearOld()
|
|
||||||
} else {
|
|
||||||
x = "You pressed Cancel!";
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
$("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();
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
$('.deletable').click(function(event) {
|
|
||||||
event.preventDefault();
|
|
||||||
var lineNum = $(this).attr('id');
|
|
||||||
|
|
||||||
$.ajax({
|
|
||||||
url: "/listitem" + '?' + $.param({
|
|
||||||
"lineNum": lineNum,
|
|
||||||
"page": "{{ .Page }}"
|
|
||||||
}),
|
|
||||||
type: 'DELETE',
|
|
||||||
success: function() {
|
|
||||||
window.location.reload(true);
|
|
||||||
}
|
|
||||||
});
|
|
||||||
event.target.classList.add('deleting');
|
|
||||||
});
|
|
||||||
|
|
||||||
|
|
||||||
}); //]]>
|
|
||||||
|
|
||||||
</script>
|
</script>
|
||||||
<script>hljs.initHighlightingOnLoad();</script>
|
<script type="text/javascript" src="/static/js/cowyo.js"></script>
|
||||||
|
|
||||||
</head>
|
</head>
|
||||||
<body id="pad">
|
<body id="pad" class="
|
||||||
|
{{ if .EditPage }} EditPage {{ end }}
|
||||||
|
{{ if .ViewPage }} ViewPage {{ end }}
|
||||||
|
{{ if .ListPage }} ListPage {{ end }}
|
||||||
|
{{ if .HistoryPage }} HistoryPage {{ end }}
|
||||||
|
{{ if .ReadPage }} ReadPage {{ end }}
|
||||||
|
{{ if .DontKnowPage }} DontKnowPage {{ end }}
|
||||||
|
{{ if .DirectoryPage }} DirectoryPage {{ end }}
|
||||||
|
{{ if .HasDotInName }} HasDotInName {{ end }}
|
||||||
|
">
|
||||||
<article class="markdown-body">
|
<article class="markdown-body">
|
||||||
|
|
||||||
{{ if .ReadPage }}
|
{{ if .ReadPage }}
|
||||||
<div id="wrap">
|
<!-- No menu for read page -->
|
||||||
<div id="rendered">
|
{{ else }}
|
||||||
{{ .RenderedPage }}
|
<div class="pure-menu pure-menu-horizontal" id="menu">
|
||||||
</div>
|
<ul class="pure-menu-list">
|
||||||
</div>
|
<li></li>
|
||||||
{{ else }}
|
<!-- Required to keep them level? -->
|
||||||
|
<li class="pure-menu-item pure-menu-has-children pure-menu-allow-hover">
|
||||||
|
<a href="#" id="menuLink1" class="pure-menu-link">{{ .Page }}</a>
|
||||||
<div class="pure-menu pure-menu-horizontal" id="menu">
|
<ul class="pure-menu-children">
|
||||||
<ul class="pure-menu-list">
|
{{ if .DiaryMode }}
|
||||||
<li></li>
|
<li class="pure-menu-item"><a href="/{{ .Date }}/edit" class="pure-menu-link">New</a></li>
|
||||||
<!-- Required to keep them level? -->
|
{{ else }}
|
||||||
<li class="pure-menu-item pure-menu-has-children pure-menu-allow-hover">
|
<li class="pure-menu-item"><a href="/" class="pure-menu-link">New</a></li>
|
||||||
<a href="#" id="menuLink1" class="pure-menu-link">{{ .Page }}</a>
|
{{ end }}
|
||||||
<ul class="pure-menu-children">
|
<li class="pure-menu-item"><a href="https://github.com/schollz/cowyo" class="pure-menu-link">Source</a></li>
|
||||||
{{ if .DiaryMode }}
|
{{ if .EditPage }}
|
||||||
<li class="pure-menu-item"><a href="/{{ .Date }}/edit" class="pure-menu-link">New</a></li>
|
<li class="pure-menu-item"><a href="#" class="pure-menu-link" id="publishPage">
|
||||||
{{ else }}
|
{{- if .IsPublished -}}
|
||||||
<li class="pure-menu-item"><a href="/" class="pure-menu-link">New</a></li>
|
Unpublish
|
||||||
{{ end }}
|
{{- else -}}
|
||||||
<li class="pure-menu-item"><a href="https://github.com/schollz/cowyo" class="pure-menu-link">Source</a></li>
|
Publish
|
||||||
{{ if .EditPage }}
|
{{- end -}}
|
||||||
<li class="pure-menu-item"><a href="#" class="pure-menu-link" id="publishPage">
|
</a></li>
|
||||||
{{- if .IsPublished -}}
|
{{ end }}
|
||||||
Unpublish
|
<hr>
|
||||||
{{- else -}}
|
{{ if (or (.IsLocked) (.IsEncrypted) )}}
|
||||||
Publish
|
{{ else }}
|
||||||
{{- end -}}
|
<li class="pure-menu-item"><a href="#" class="pure-menu-link" id="encryptPage">{{ if .IsEncrypted }}Decrypt{{ else }}Encrypt{{end}}</a></li>
|
||||||
</a></li>
|
<li class="pure-menu-item"><a href="#" class="pure-menu-link" id="lockPage">{{ if .IsLocked }}Unlock{{ else }}Lock{{end}}</a></li>
|
||||||
{{ end }}
|
<li class="pure-menu-item"><a href="/{{ .Page }}/history" class="pure-menu-link">History</a></li>
|
||||||
<hr>
|
<hr>
|
||||||
{{ if (or (.IsLocked) (.IsEncrypted) )}}
|
<li class="pure-menu-item"><a href="#" class="pure-menu-link" id="selfDestructPage">Self-destruct</a></li>
|
||||||
{{ else }}
|
<li class="pure-menu-item"><a href="#" class="pure-menu-link" id="erasePage">Erase</a></li>
|
||||||
<li class="pure-menu-item"><a href="#" class="pure-menu-link" id="encryptPage">{{ if .IsEncrypted }}Decrypt{{ else }}Encrypt{{end}}</a></li>
|
{{ end }}
|
||||||
<li class="pure-menu-item"><a href="#" class="pure-menu-link" id="lockPage">{{ if .IsLocked }}Unlock{{ else }}Lock{{end}}</a></li>
|
</ul>
|
||||||
<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>
|
|
||||||
{{ end }}
|
|
||||||
</ul>
|
|
||||||
</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 {{ with .ViewPage }}pure-menu-selected{{ end }}">
|
|
||||||
<a href="#" id="menuLink1" class="pure-menu-link">View</a>
|
|
||||||
<ul class="pure-menu-children">
|
|
||||||
<li class="pure-menu-item">
|
|
||||||
<a href="/{{ .Page }}/read" class="pure-menu-link">Current</a>
|
|
||||||
</li>
|
</li>
|
||||||
{{ range .RecentlyEdited}}
|
|
||||||
<li class="pure-menu-item"><a class="pure-menu-link" href="/{{.}}/read">{{.}}</a></li>
|
<li class="pure-menu-item pure-menu-has-children pure-menu-allow-hover {{ with .ViewPage }}pure-menu-selected{{ end }}">
|
||||||
|
<a href="/{{ .Page }}/view" class="pure-menu-link">View</a>
|
||||||
|
<ul class="pure-menu-children">
|
||||||
|
<li class="pure-menu-item">
|
||||||
|
<a href="/{{ .Page }}/read" class="pure-menu-link">Current</a>
|
||||||
|
</li>
|
||||||
|
{{ range .RecentlyEdited}}
|
||||||
|
<li class="pure-menu-item"><a class="pure-menu-link" href="/{{.}}/read">{{.}}</a></li>
|
||||||
|
{{ end }}
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
{{ if (or (.IsLocked) (.IsEncrypted) )}}
|
||||||
|
{{ if .IsLocked }}
|
||||||
|
<li class="pure-menu-item"><a href="#" class="pure-menu-link" id="lockPage">{{ if .IsLocked }}Unlock{{ else }}Lock{{end}}</a></li>
|
||||||
|
<li class="pure-menu-item" class="pure-menu-link"><a href="#"><span id="saveEditButton"></span></a></li>
|
||||||
|
{{ else }}
|
||||||
|
<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" class="pure-menu-link"><a href="#"><span id="saveEditButton"></span></a></li>
|
||||||
{{ end }}
|
{{ end }}
|
||||||
</ul>
|
{{else}}
|
||||||
</li>
|
{{ if .ListPage }}
|
||||||
|
<li class="pure-menu-item {{ with .ListPage }}pure-menu-selected{{ end }}"><a href="#" class="pure-menu-link" id="clearOld">Clear done</a></li>
|
||||||
{{ if (or (.IsLocked) (.IsEncrypted) )}}
|
{{ else }}
|
||||||
{{ if .IsLocked }}
|
<li class="pure-menu-item {{ with .ListPage }}pure-menu-selected{{ end }}"><a href="/{{ .Page }}/list" class="pure-menu-link">List</a></li>
|
||||||
<li class="pure-menu-item"><a href="#" class="pure-menu-link" id="lockPage">{{ if .IsLocked }}Unlock{{ else }}Lock{{end}}</a></li>
|
{{ end }}
|
||||||
<li class="pure-menu-item" class="pure-menu-link"><a href="#"><span id="saveEditButton"></span></a></li>
|
<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>
|
||||||
{{ else }}
|
{{end}}
|
||||||
<li class="pure-menu-item"><a href="#" class="pure-menu-link" id="encryptPage">{{ if .IsEncrypted }}Decrypt{{ else }}Encrypt{{end}}</a></li>
|
</ul>
|
||||||
<li class="pure-menu-item" class="pure-menu-link"><a href="#"><span id="saveEditButton"></span></a></li>
|
</div>
|
||||||
{{ end }}
|
{{ end }}
|
||||||
{{else}}
|
|
||||||
{{ if .ListPage }}
|
|
||||||
<li class="pure-menu-item {{ with .ListPage }}pure-menu-selected{{ end }}"><a href="#" class="pure-menu-link" id="clearOld">Clear done</a></li>
|
|
||||||
{{ else }}
|
|
||||||
<li class="pure-menu-item {{ with .ListPage }}pure-menu-selected{{ end }}"><a href="/{{ .Page }}/list" class="pure-menu-link">List</a></li>
|
|
||||||
{{ end }}
|
|
||||||
<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>
|
|
||||||
{{end}}
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</ul>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
<div id="wrap">
|
<div id="wrap">
|
||||||
{{ if .EditPage }} <div id="pad"><textarea autofocus placeholder="Use markdown to write your note! New: you can publish your note when you are done ({{ .Page }} -> Publish)." id="userInput">{{ .RawPage }}</textarea></div>{{ end }}
|
{{ if .EditPage }}
|
||||||
<div id="rendered">
|
<div id="pad">
|
||||||
{{ if .DontKnowPage }} <strong><center>{{ .Route }} not understood!</center></strong>{{ end }}
|
<textarea
|
||||||
{{ if .ViewPage }}{{ .RenderedPage }}
|
autofocus
|
||||||
|
placeholder="Use markdown to write your note! New: you can publish your note when you are done ({{ .Page }} -> Publish)."
|
||||||
|
id="userInput"
|
||||||
|
>{{ .RawPage }}</textarea>
|
||||||
|
</div>
|
||||||
{{ end }}
|
{{ end }}
|
||||||
{{ if .HistoryPage }}
|
|
||||||
<h1>History</h1>
|
|
||||||
<ul>
|
|
||||||
{{range $i, $e := .Versions}}
|
|
||||||
<li style="list-style: none;">
|
|
||||||
<a href="/{{ $.Page }}/view?version={{$e}}">View</a> <a href="/{{ $.Page }}/list?version={{$e}}">List</a> <a href="/{{ $.Page }}/raw?version={{$e}}">Raw</a>
|
|
||||||
{{index $.VersionsText $i}} ({{if lt (index $.VersionsChangeSums $i) 0}}<span style="color:red">{{else}}<span style="color:green">+{{end}}{{index $.VersionsChangeSums $i}}</span>)</li>
|
|
||||||
{{end}}
|
|
||||||
</ul>
|
|
||||||
{{ end }}
|
|
||||||
{{ if .ListPage }}
|
|
||||||
{{ range $index, $element := .ListItems }}
|
|
||||||
{{ $element }}
|
|
||||||
{{ end }}
|
|
||||||
{{ end }}
|
|
||||||
|
|
||||||
{{ if .DirectoryPage }}
|
<div id="rendered">
|
||||||
<table style="width:100%">
|
{{ if .DontKnowPage }}
|
||||||
<tr>
|
<strong>
|
||||||
<th>Document</th>
|
<center>
|
||||||
<th>Current size</th>
|
{{ .Route }} not understood!
|
||||||
<th>Num Edits</th>
|
</center>
|
||||||
<th>Last Edited</th>
|
</strong>
|
||||||
</tr>
|
{{ end }}
|
||||||
{{range .DirectoryEntries}}
|
|
||||||
<tr>
|
{{ if .ViewPage }}
|
||||||
<td><a href="/{{ .Name }}/view">{{ .Name }}</a></td>
|
{{ .RenderedPage }}
|
||||||
<td>{{.Length}}</td>
|
{{ end }}
|
||||||
<td>{{.Numchanges}}</td>
|
|
||||||
<td>{{.LastEditTime}}</td>
|
{{ if .ReadPage }}
|
||||||
</tr>
|
{{ .RenderedPage }}
|
||||||
{{ end }}
|
{{ end }}
|
||||||
</table>
|
|
||||||
{{end}}
|
{{ if .HistoryPage }}
|
||||||
</div>
|
<h1>History</h1>
|
||||||
|
<ul>
|
||||||
|
{{range $i, $e := .Versions}}
|
||||||
|
<li style="list-style: none;">
|
||||||
|
<a href="/{{ $.Page }}/view?version={{$e}}">View</a>
|
||||||
|
|
||||||
|
<a href="/{{ $.Page }}/list?version={{$e}}">List</a>
|
||||||
|
|
||||||
|
<a href="/{{ $.Page }}/raw?version={{$e}}">Raw</a>
|
||||||
|
|
||||||
|
{{index $.VersionsText $i}} ({{if lt (index $.VersionsChangeSums $i) 0}}<span style="color:red">{{else}}<span style="color:green">+{{end}}{{index $.VersionsChangeSums $i}}</span>)</li>
|
||||||
|
{{end}}
|
||||||
|
</ul>
|
||||||
|
{{ end }}
|
||||||
|
|
||||||
|
{{ if .ListPage }}
|
||||||
|
{{ range $index, $element := .ListItems }}
|
||||||
|
{{ $element }}
|
||||||
|
{{ end }}
|
||||||
|
{{ end }}
|
||||||
|
|
||||||
|
{{ if .DirectoryPage }}
|
||||||
|
<table style="width:100%">
|
||||||
|
<tr>
|
||||||
|
<th>Document</th>
|
||||||
|
<th>Current size</th>
|
||||||
|
<th>Num Edits</th>
|
||||||
|
<th>Last Edited</th>
|
||||||
|
</tr>
|
||||||
|
{{range .DirectoryEntries}}
|
||||||
|
<tr>
|
||||||
|
<td><a href="/{{ .Name }}/view">{{ .Name }}</a></td>
|
||||||
|
<td>{{.Length}}</td>
|
||||||
|
<td>{{.Numchanges}}</td>
|
||||||
|
<td>{{.LastEditTime}}</td>
|
||||||
|
</tr>
|
||||||
|
{{ end }}
|
||||||
|
</table>
|
||||||
|
{{ end }}
|
||||||
|
</div>
|
||||||
|
{{ if .ChildPageNames }}
|
||||||
|
<section class="ChildPageNames">
|
||||||
|
<h2>See also</h2>
|
||||||
|
<ul>
|
||||||
|
{{ range .ChildPageNames }}
|
||||||
|
<li><a href="/{{ . }}/view">{{ . }}</a></li>
|
||||||
|
{{ end }}
|
||||||
|
</ul>
|
||||||
|
</section>
|
||||||
|
{{ end }}
|
||||||
</div>
|
</div>
|
||||||
{{ end }}
|
|
||||||
|
|
||||||
</article>
|
</article>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</body>
|
</body>
|
||||||
|
|
||||||
</html>
|
</html>
|
||||||
|
@ -20,6 +20,7 @@ func TestReverseList(t *testing.T) {
|
|||||||
t.Errorf("Could not reverse: %v", s2)
|
t.Errorf("Could not reverse: %v", s2)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
func TestHashing(t *testing.T) {
|
func TestHashing(t *testing.T) {
|
||||||
p := HashPassword("1234")
|
p := HashPassword("1234")
|
||||||
log.Debug(p)
|
log.Debug(p)
|
||||||
|
Loading…
Reference in New Issue
Block a user