mirror of
https://github.com/osmarks/mycorrhiza.git
synced 2025-01-31 11:29:09 +00:00
Start writing the Mycomarkup article
I got a little tired, will finish later Also, there seems to be a bug with anchor links //again//. Or maybe not
This commit is contained in:
parent
6e47ea0cfe
commit
7e0ae7ae52
101
help/en/mycomarkup.myco
Normal file
101
help/en/mycomarkup.myco
Normal file
@ -0,0 +1,101 @@
|
|||||||
|
# Mycomarkup
|
||||||
|
**Mycomarkup** is Mycorrhiza Wiki's own markup language.
|
||||||
|
|
||||||
|
It is the only supported markup, there is no support for Markdown, Creole, etc.
|
||||||
|
|
||||||
|
A Mycomarkup document (which is most often a hypha's text part) consists of //blocks//. There are different blocks for different purposes.
|
||||||
|
|
||||||
|
## Table of contents
|
||||||
|
=> /help/en/mycomarkup#Paragraph Paragraph
|
||||||
|
=> /help/en/mycomarkup#Heading Heading
|
||||||
|
=> /help/en/mycomarkup#Codeblock Codeblock
|
||||||
|
=> /help/en/mycomarkup#Horizontal_line Horizontal line
|
||||||
|
|
||||||
|
## Paragraph
|
||||||
|
**Paragraphs** are the most ubiquitous blocks. You will use them a lot.
|
||||||
|
|
||||||
|
To create a paragraph, just write text. Paragraphs are separated by empty lines.
|
||||||
|
|
||||||
|
* {```
|
||||||
|
Paragraph 1
|
||||||
|
|
||||||
|
Paragraph 2
|
||||||
|
Second line of paragraph 2
|
||||||
|
```}
|
||||||
|
* {
|
||||||
|
Paragraph 1
|
||||||
|
|
||||||
|
Paragraph 2
|
||||||
|
Second line of paragraph 2
|
||||||
|
}
|
||||||
|
|
||||||
|
You can apply styling to paragraph content.
|
||||||
|
* {```
|
||||||
|
You can use //italic//, **bold**, `monospace`, ++highlighted++, ^^lifted&^, __underscored__, ,,lowered,, or ~~striked-through~~ text. You can also ++//combine//++ them!
|
||||||
|
```}
|
||||||
|
* You can use //italic//, **bold**, `monospace`, ++highlighted++, ^^lifted^^, __underscored__, ,,lowered,, or ~~striked-through~~ text. You can also ++//combine//++ them!
|
||||||
|
|
||||||
|
Use the backslash to prevent the styling.
|
||||||
|
* {```
|
||||||
|
This is not \//italic\//
|
||||||
|
```}
|
||||||
|
* This is not \//italic\//
|
||||||
|
|
||||||
|
You do not have to close the stylings, they will span until the end of line.
|
||||||
|
* {```
|
||||||
|
This is //italic
|
||||||
|
This is not
|
||||||
|
```}
|
||||||
|
* {
|
||||||
|
This is //italic
|
||||||
|
This is not
|
||||||
|
}
|
||||||
|
|
||||||
|
You can include inline links.
|
||||||
|
* {```
|
||||||
|
Just a paragraph with a couple of [[https://example.org | links]] leading [[nowhere]].
|
||||||
|
```}
|
||||||
|
* Just a paragraph with a couple of [[https://example.org | links]] leading [[nowhere]].
|
||||||
|
|
||||||
|
=> /help/en/link Read more about links
|
||||||
|
|
||||||
|
## Heading
|
||||||
|
There are six levels of **headings**. They consist of some hash signs followed by a space and the heading itself. You can format the heading like a paragraph. You should probably not use level 1 because the hypha name title is already level 1.
|
||||||
|
|
||||||
|
```
|
||||||
|
# level 1
|
||||||
|
## level 2
|
||||||
|
### level 3
|
||||||
|
#### level 4
|
||||||
|
##### level 5
|
||||||
|
###### level 6
|
||||||
|
```
|
||||||
|
|
||||||
|
There is an invisible link denoted by the § sign near every heading. You can reveal it with a mouse. If you click it, the URL in the browser will change to the URL leading to that very heading. Try that on headings in this article.
|
||||||
|
|
||||||
|
## Codeblock
|
||||||
|
Use **codeblocks** to show code or any other preformatted text. Codeblocks start with triple backticks on column 1 and end similarly. You can write any text after the backticks, it is ignored. Put the preformatted text between them.
|
||||||
|
|
||||||
|
Like that, but without leading spaces:
|
||||||
|
```
|
||||||
|
```
|
||||||
|
this is preformatted
|
||||||
|
see
|
||||||
|
```
|
||||||
|
```
|
||||||
|
|
||||||
|
```
|
||||||
|
this is preformatted
|
||||||
|
see
|
||||||
|
```
|
||||||
|
|
||||||
|
## Horizontal line
|
||||||
|
Write four hyphens to insert a **horizontal line**.
|
||||||
|
|
||||||
|
* {```
|
||||||
|
----
|
||||||
|
```}
|
||||||
|
* ----
|
||||||
|
|
||||||
|
## See also
|
||||||
|
=> https://mycorrhiza.wiki/hypha/essay/why_mycomarkup Why it was created
|
@ -147,6 +147,7 @@ It outputs a poorly formatted JSON, but it works and is valid.
|
|||||||
<li><a href="/help/en/attachment">Attachment</a></li>
|
<li><a href="/help/en/attachment">Attachment</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</li>
|
</li>
|
||||||
|
<li><a href="/help/en/mycomarkup">Mycomarkup</a></li>
|
||||||
<li>Interface
|
<li>Interface
|
||||||
<ul>
|
<ul>
|
||||||
<li><a href="/help/en/top_bar">Top bar</a>, new in 1.3</li>
|
<li><a href="/help/en/top_bar">Top bar</a>, new in 1.3</li>
|
||||||
|
@ -496,6 +496,7 @@ func streamhelpTopicsHTML(qw422016 *qt422016.Writer) {
|
|||||||
<li><a href="/help/en/attachment">Attachment</a></li>
|
<li><a href="/help/en/attachment">Attachment</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</li>
|
</li>
|
||||||
|
<li><a href="/help/en/mycomarkup">Mycomarkup</a></li>
|
||||||
<li>Interface
|
<li>Interface
|
||||||
<ul>
|
<ul>
|
||||||
<li><a href="/help/en/top_bar">Top bar</a>, new in 1.3</li>
|
<li><a href="/help/en/top_bar">Top bar</a>, new in 1.3</li>
|
||||||
@ -513,44 +514,44 @@ func streamhelpTopicsHTML(qw422016 *qt422016.Writer) {
|
|||||||
</ul>
|
</ul>
|
||||||
</aside>
|
</aside>
|
||||||
`)
|
`)
|
||||||
//line views/stuff.qtpl:166
|
//line views/stuff.qtpl:167
|
||||||
}
|
}
|
||||||
|
|
||||||
//line views/stuff.qtpl:166
|
//line views/stuff.qtpl:167
|
||||||
func writehelpTopicsHTML(qq422016 qtio422016.Writer) {
|
func writehelpTopicsHTML(qq422016 qtio422016.Writer) {
|
||||||
//line views/stuff.qtpl:166
|
//line views/stuff.qtpl:167
|
||||||
qw422016 := qt422016.AcquireWriter(qq422016)
|
qw422016 := qt422016.AcquireWriter(qq422016)
|
||||||
//line views/stuff.qtpl:166
|
//line views/stuff.qtpl:167
|
||||||
streamhelpTopicsHTML(qw422016)
|
streamhelpTopicsHTML(qw422016)
|
||||||
//line views/stuff.qtpl:166
|
//line views/stuff.qtpl:167
|
||||||
qt422016.ReleaseWriter(qw422016)
|
qt422016.ReleaseWriter(qw422016)
|
||||||
//line views/stuff.qtpl:166
|
//line views/stuff.qtpl:167
|
||||||
}
|
}
|
||||||
|
|
||||||
//line views/stuff.qtpl:166
|
//line views/stuff.qtpl:167
|
||||||
func helpTopicsHTML() string {
|
func helpTopicsHTML() string {
|
||||||
//line views/stuff.qtpl:166
|
//line views/stuff.qtpl:167
|
||||||
qb422016 := qt422016.AcquireByteBuffer()
|
qb422016 := qt422016.AcquireByteBuffer()
|
||||||
//line views/stuff.qtpl:166
|
//line views/stuff.qtpl:167
|
||||||
writehelpTopicsHTML(qb422016)
|
writehelpTopicsHTML(qb422016)
|
||||||
//line views/stuff.qtpl:166
|
//line views/stuff.qtpl:167
|
||||||
qs422016 := string(qb422016.B)
|
qs422016 := string(qb422016.B)
|
||||||
//line views/stuff.qtpl:166
|
//line views/stuff.qtpl:167
|
||||||
qt422016.ReleaseByteBuffer(qb422016)
|
qt422016.ReleaseByteBuffer(qb422016)
|
||||||
//line views/stuff.qtpl:166
|
//line views/stuff.qtpl:167
|
||||||
return qs422016
|
return qs422016
|
||||||
//line views/stuff.qtpl:166
|
//line views/stuff.qtpl:167
|
||||||
}
|
}
|
||||||
|
|
||||||
//line views/stuff.qtpl:168
|
//line views/stuff.qtpl:169
|
||||||
func StreamUserListHTML(qw422016 *qt422016.Writer) {
|
func StreamUserListHTML(qw422016 *qt422016.Writer) {
|
||||||
//line views/stuff.qtpl:168
|
//line views/stuff.qtpl:169
|
||||||
qw422016.N().S(`
|
qw422016.N().S(`
|
||||||
<div class="layout">
|
<div class="layout">
|
||||||
<main class="main-width user-list">
|
<main class="main-width user-list">
|
||||||
<h1>List of users</h1>
|
<h1>List of users</h1>
|
||||||
`)
|
`)
|
||||||
//line views/stuff.qtpl:173
|
//line views/stuff.qtpl:174
|
||||||
var (
|
var (
|
||||||
admins = make([]string, 0)
|
admins = make([]string, 0)
|
||||||
moderators = make([]string, 0)
|
moderators = make([]string, 0)
|
||||||
@ -567,345 +568,345 @@ func StreamUserListHTML(qw422016 *qt422016.Writer) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
//line views/stuff.qtpl:188
|
//line views/stuff.qtpl:189
|
||||||
qw422016.N().S(`
|
qw422016.N().S(`
|
||||||
<section>
|
<section>
|
||||||
<h2>Admins</h2>
|
<h2>Admins</h2>
|
||||||
<ol>`)
|
<ol>`)
|
||||||
//line views/stuff.qtpl:191
|
//line views/stuff.qtpl:192
|
||||||
for _, name := range admins {
|
for _, name := range admins {
|
||||||
//line views/stuff.qtpl:191
|
//line views/stuff.qtpl:192
|
||||||
qw422016.N().S(`
|
qw422016.N().S(`
|
||||||
<li><a href="/hypha/`)
|
<li><a href="/hypha/`)
|
||||||
//line views/stuff.qtpl:192
|
//line views/stuff.qtpl:193
|
||||||
qw422016.E().S(cfg.UserHypha)
|
qw422016.E().S(cfg.UserHypha)
|
||||||
//line views/stuff.qtpl:192
|
//line views/stuff.qtpl:193
|
||||||
qw422016.N().S(`/`)
|
qw422016.N().S(`/`)
|
||||||
//line views/stuff.qtpl:192
|
//line views/stuff.qtpl:193
|
||||||
qw422016.E().S(name)
|
qw422016.E().S(name)
|
||||||
//line views/stuff.qtpl:192
|
//line views/stuff.qtpl:193
|
||||||
qw422016.N().S(`">`)
|
qw422016.N().S(`">`)
|
||||||
//line views/stuff.qtpl:192
|
//line views/stuff.qtpl:193
|
||||||
qw422016.E().S(name)
|
qw422016.E().S(name)
|
||||||
//line views/stuff.qtpl:192
|
//line views/stuff.qtpl:193
|
||||||
qw422016.N().S(`</a></li>
|
qw422016.N().S(`</a></li>
|
||||||
`)
|
`)
|
||||||
//line views/stuff.qtpl:193
|
//line views/stuff.qtpl:194
|
||||||
}
|
}
|
||||||
//line views/stuff.qtpl:193
|
//line views/stuff.qtpl:194
|
||||||
qw422016.N().S(`</ol>
|
qw422016.N().S(`</ol>
|
||||||
</section>
|
</section>
|
||||||
<section>
|
<section>
|
||||||
<h2>Moderators</h2>
|
<h2>Moderators</h2>
|
||||||
<ol>`)
|
<ol>`)
|
||||||
//line views/stuff.qtpl:197
|
//line views/stuff.qtpl:198
|
||||||
for _, name := range moderators {
|
for _, name := range moderators {
|
||||||
//line views/stuff.qtpl:197
|
//line views/stuff.qtpl:198
|
||||||
qw422016.N().S(`
|
qw422016.N().S(`
|
||||||
<li><a href="/hypha/`)
|
<li><a href="/hypha/`)
|
||||||
//line views/stuff.qtpl:198
|
//line views/stuff.qtpl:199
|
||||||
qw422016.E().S(cfg.UserHypha)
|
qw422016.E().S(cfg.UserHypha)
|
||||||
//line views/stuff.qtpl:198
|
//line views/stuff.qtpl:199
|
||||||
qw422016.N().S(`/`)
|
qw422016.N().S(`/`)
|
||||||
//line views/stuff.qtpl:198
|
//line views/stuff.qtpl:199
|
||||||
qw422016.E().S(name)
|
qw422016.E().S(name)
|
||||||
//line views/stuff.qtpl:198
|
//line views/stuff.qtpl:199
|
||||||
qw422016.N().S(`">`)
|
qw422016.N().S(`">`)
|
||||||
//line views/stuff.qtpl:198
|
//line views/stuff.qtpl:199
|
||||||
qw422016.E().S(name)
|
qw422016.E().S(name)
|
||||||
//line views/stuff.qtpl:198
|
//line views/stuff.qtpl:199
|
||||||
qw422016.N().S(`</a></li>
|
qw422016.N().S(`</a></li>
|
||||||
`)
|
`)
|
||||||
//line views/stuff.qtpl:199
|
//line views/stuff.qtpl:200
|
||||||
}
|
}
|
||||||
//line views/stuff.qtpl:199
|
//line views/stuff.qtpl:200
|
||||||
qw422016.N().S(`</ol>
|
qw422016.N().S(`</ol>
|
||||||
</section>
|
</section>
|
||||||
<section>
|
<section>
|
||||||
<h2>Editors</h2>
|
<h2>Editors</h2>
|
||||||
<ol>`)
|
<ol>`)
|
||||||
//line views/stuff.qtpl:203
|
//line views/stuff.qtpl:204
|
||||||
for _, name := range editors {
|
for _, name := range editors {
|
||||||
//line views/stuff.qtpl:203
|
//line views/stuff.qtpl:204
|
||||||
qw422016.N().S(`
|
qw422016.N().S(`
|
||||||
<li><a href="/hypha/`)
|
<li><a href="/hypha/`)
|
||||||
//line views/stuff.qtpl:204
|
//line views/stuff.qtpl:205
|
||||||
qw422016.E().S(cfg.UserHypha)
|
qw422016.E().S(cfg.UserHypha)
|
||||||
//line views/stuff.qtpl:204
|
//line views/stuff.qtpl:205
|
||||||
qw422016.N().S(`/`)
|
qw422016.N().S(`/`)
|
||||||
//line views/stuff.qtpl:204
|
//line views/stuff.qtpl:205
|
||||||
qw422016.E().S(name)
|
qw422016.E().S(name)
|
||||||
//line views/stuff.qtpl:204
|
//line views/stuff.qtpl:205
|
||||||
qw422016.N().S(`">`)
|
qw422016.N().S(`">`)
|
||||||
//line views/stuff.qtpl:204
|
//line views/stuff.qtpl:205
|
||||||
qw422016.E().S(name)
|
qw422016.E().S(name)
|
||||||
//line views/stuff.qtpl:204
|
//line views/stuff.qtpl:205
|
||||||
qw422016.N().S(`</a></li>
|
qw422016.N().S(`</a></li>
|
||||||
`)
|
`)
|
||||||
//line views/stuff.qtpl:205
|
//line views/stuff.qtpl:206
|
||||||
}
|
}
|
||||||
//line views/stuff.qtpl:205
|
//line views/stuff.qtpl:206
|
||||||
qw422016.N().S(`</ol>
|
qw422016.N().S(`</ol>
|
||||||
</section>
|
</section>
|
||||||
</main>
|
</main>
|
||||||
</div>
|
</div>
|
||||||
`)
|
`)
|
||||||
//line views/stuff.qtpl:209
|
//line views/stuff.qtpl:210
|
||||||
}
|
}
|
||||||
|
|
||||||
//line views/stuff.qtpl:209
|
//line views/stuff.qtpl:210
|
||||||
func WriteUserListHTML(qq422016 qtio422016.Writer) {
|
func WriteUserListHTML(qq422016 qtio422016.Writer) {
|
||||||
//line views/stuff.qtpl:209
|
//line views/stuff.qtpl:210
|
||||||
qw422016 := qt422016.AcquireWriter(qq422016)
|
qw422016 := qt422016.AcquireWriter(qq422016)
|
||||||
//line views/stuff.qtpl:209
|
//line views/stuff.qtpl:210
|
||||||
StreamUserListHTML(qw422016)
|
StreamUserListHTML(qw422016)
|
||||||
//line views/stuff.qtpl:209
|
//line views/stuff.qtpl:210
|
||||||
qt422016.ReleaseWriter(qw422016)
|
qt422016.ReleaseWriter(qw422016)
|
||||||
//line views/stuff.qtpl:209
|
//line views/stuff.qtpl:210
|
||||||
}
|
}
|
||||||
|
|
||||||
//line views/stuff.qtpl:209
|
//line views/stuff.qtpl:210
|
||||||
func UserListHTML() string {
|
func UserListHTML() string {
|
||||||
//line views/stuff.qtpl:209
|
//line views/stuff.qtpl:210
|
||||||
qb422016 := qt422016.AcquireByteBuffer()
|
qb422016 := qt422016.AcquireByteBuffer()
|
||||||
//line views/stuff.qtpl:209
|
//line views/stuff.qtpl:210
|
||||||
WriteUserListHTML(qb422016)
|
WriteUserListHTML(qb422016)
|
||||||
//line views/stuff.qtpl:209
|
//line views/stuff.qtpl:210
|
||||||
qs422016 := string(qb422016.B)
|
qs422016 := string(qb422016.B)
|
||||||
//line views/stuff.qtpl:209
|
//line views/stuff.qtpl:210
|
||||||
qt422016.ReleaseByteBuffer(qb422016)
|
qt422016.ReleaseByteBuffer(qb422016)
|
||||||
//line views/stuff.qtpl:209
|
//line views/stuff.qtpl:210
|
||||||
return qs422016
|
return qs422016
|
||||||
//line views/stuff.qtpl:209
|
//line views/stuff.qtpl:210
|
||||||
}
|
}
|
||||||
|
|
||||||
//line views/stuff.qtpl:211
|
//line views/stuff.qtpl:212
|
||||||
func StreamHyphaListHTML(qw422016 *qt422016.Writer) {
|
func StreamHyphaListHTML(qw422016 *qt422016.Writer) {
|
||||||
//line views/stuff.qtpl:211
|
//line views/stuff.qtpl:212
|
||||||
qw422016.N().S(`
|
qw422016.N().S(`
|
||||||
<div class="layout">
|
<div class="layout">
|
||||||
<main class="main-width">
|
<main class="main-width">
|
||||||
<h1>List of hyphae</h1>
|
<h1>List of hyphae</h1>
|
||||||
<p>This wiki has `)
|
<p>This wiki has `)
|
||||||
//line views/stuff.qtpl:215
|
//line views/stuff.qtpl:216
|
||||||
qw422016.N().D(hyphae.Count())
|
qw422016.N().D(hyphae.Count())
|
||||||
//line views/stuff.qtpl:215
|
//line views/stuff.qtpl:216
|
||||||
qw422016.N().S(` hyphae.</p>
|
qw422016.N().S(` hyphae.</p>
|
||||||
<ul class="hypha-list">
|
<ul class="hypha-list">
|
||||||
`)
|
`)
|
||||||
//line views/stuff.qtpl:217
|
//line views/stuff.qtpl:218
|
||||||
for h := range hyphae.YieldExistingHyphae() {
|
for h := range hyphae.YieldExistingHyphae() {
|
||||||
//line views/stuff.qtpl:217
|
//line views/stuff.qtpl:218
|
||||||
qw422016.N().S(`
|
qw422016.N().S(`
|
||||||
<li class="hypha-list__entry">
|
<li class="hypha-list__entry">
|
||||||
<a class="hypha-list__link" href="/hypha/`)
|
<a class="hypha-list__link" href="/hypha/`)
|
||||||
//line views/stuff.qtpl:219
|
//line views/stuff.qtpl:220
|
||||||
qw422016.E().S(h.Name)
|
qw422016.E().S(h.Name)
|
||||||
//line views/stuff.qtpl:219
|
//line views/stuff.qtpl:220
|
||||||
qw422016.N().S(`">`)
|
qw422016.N().S(`">`)
|
||||||
//line views/stuff.qtpl:219
|
//line views/stuff.qtpl:220
|
||||||
qw422016.E().S(util.BeautifulName(h.Name))
|
qw422016.E().S(util.BeautifulName(h.Name))
|
||||||
//line views/stuff.qtpl:219
|
//line views/stuff.qtpl:220
|
||||||
qw422016.N().S(`</a>
|
qw422016.N().S(`</a>
|
||||||
`)
|
`)
|
||||||
//line views/stuff.qtpl:220
|
//line views/stuff.qtpl:221
|
||||||
if h.BinaryPath != "" {
|
if h.BinaryPath != "" {
|
||||||
//line views/stuff.qtpl:220
|
//line views/stuff.qtpl:221
|
||||||
qw422016.N().S(`
|
qw422016.N().S(`
|
||||||
<span class="hypha-list__amnt-type">`)
|
<span class="hypha-list__amnt-type">`)
|
||||||
//line views/stuff.qtpl:221
|
//line views/stuff.qtpl:222
|
||||||
qw422016.E().S(filepath.Ext(h.BinaryPath)[1:])
|
qw422016.E().S(filepath.Ext(h.BinaryPath)[1:])
|
||||||
//line views/stuff.qtpl:221
|
//line views/stuff.qtpl:222
|
||||||
qw422016.N().S(`</span>
|
qw422016.N().S(`</span>
|
||||||
`)
|
`)
|
||||||
//line views/stuff.qtpl:222
|
//line views/stuff.qtpl:223
|
||||||
}
|
}
|
||||||
//line views/stuff.qtpl:222
|
//line views/stuff.qtpl:223
|
||||||
qw422016.N().S(`
|
qw422016.N().S(`
|
||||||
</li>
|
</li>
|
||||||
`)
|
`)
|
||||||
//line views/stuff.qtpl:224
|
//line views/stuff.qtpl:225
|
||||||
}
|
}
|
||||||
//line views/stuff.qtpl:224
|
//line views/stuff.qtpl:225
|
||||||
qw422016.N().S(`
|
qw422016.N().S(`
|
||||||
</ul>
|
</ul>
|
||||||
</main>
|
</main>
|
||||||
</div>
|
</div>
|
||||||
`)
|
`)
|
||||||
//line views/stuff.qtpl:228
|
//line views/stuff.qtpl:229
|
||||||
}
|
}
|
||||||
|
|
||||||
//line views/stuff.qtpl:228
|
//line views/stuff.qtpl:229
|
||||||
func WriteHyphaListHTML(qq422016 qtio422016.Writer) {
|
func WriteHyphaListHTML(qq422016 qtio422016.Writer) {
|
||||||
//line views/stuff.qtpl:228
|
//line views/stuff.qtpl:229
|
||||||
qw422016 := qt422016.AcquireWriter(qq422016)
|
qw422016 := qt422016.AcquireWriter(qq422016)
|
||||||
//line views/stuff.qtpl:228
|
//line views/stuff.qtpl:229
|
||||||
StreamHyphaListHTML(qw422016)
|
StreamHyphaListHTML(qw422016)
|
||||||
//line views/stuff.qtpl:228
|
//line views/stuff.qtpl:229
|
||||||
qt422016.ReleaseWriter(qw422016)
|
qt422016.ReleaseWriter(qw422016)
|
||||||
//line views/stuff.qtpl:228
|
//line views/stuff.qtpl:229
|
||||||
}
|
}
|
||||||
|
|
||||||
//line views/stuff.qtpl:228
|
//line views/stuff.qtpl:229
|
||||||
func HyphaListHTML() string {
|
func HyphaListHTML() string {
|
||||||
//line views/stuff.qtpl:228
|
//line views/stuff.qtpl:229
|
||||||
qb422016 := qt422016.AcquireByteBuffer()
|
qb422016 := qt422016.AcquireByteBuffer()
|
||||||
//line views/stuff.qtpl:228
|
//line views/stuff.qtpl:229
|
||||||
WriteHyphaListHTML(qb422016)
|
WriteHyphaListHTML(qb422016)
|
||||||
//line views/stuff.qtpl:228
|
//line views/stuff.qtpl:229
|
||||||
qs422016 := string(qb422016.B)
|
qs422016 := string(qb422016.B)
|
||||||
//line views/stuff.qtpl:228
|
//line views/stuff.qtpl:229
|
||||||
qt422016.ReleaseByteBuffer(qb422016)
|
qt422016.ReleaseByteBuffer(qb422016)
|
||||||
//line views/stuff.qtpl:228
|
//line views/stuff.qtpl:229
|
||||||
return qs422016
|
return qs422016
|
||||||
//line views/stuff.qtpl:228
|
//line views/stuff.qtpl:229
|
||||||
}
|
}
|
||||||
|
|
||||||
//line views/stuff.qtpl:230
|
//line views/stuff.qtpl:231
|
||||||
func StreamAboutHTML(qw422016 *qt422016.Writer) {
|
func StreamAboutHTML(qw422016 *qt422016.Writer) {
|
||||||
//line views/stuff.qtpl:230
|
//line views/stuff.qtpl:231
|
||||||
qw422016.N().S(`
|
qw422016.N().S(`
|
||||||
<div class="layout">
|
<div class="layout">
|
||||||
<main class="main-width">
|
<main class="main-width">
|
||||||
<section>
|
<section>
|
||||||
<h1>About `)
|
<h1>About `)
|
||||||
//line views/stuff.qtpl:234
|
//line views/stuff.qtpl:235
|
||||||
qw422016.E().S(cfg.WikiName)
|
qw422016.E().S(cfg.WikiName)
|
||||||
//line views/stuff.qtpl:234
|
//line views/stuff.qtpl:235
|
||||||
qw422016.N().S(`</h1>
|
qw422016.N().S(`</h1>
|
||||||
<ul>
|
<ul>
|
||||||
<li><b><a href="https://mycorrhiza.wiki">Mycorrhiza Wiki</a> version:</b> 1.3.0</li>
|
<li><b><a href="https://mycorrhiza.wiki">Mycorrhiza Wiki</a> version:</b> 1.3.0</li>
|
||||||
`)
|
`)
|
||||||
//line views/stuff.qtpl:237
|
//line views/stuff.qtpl:238
|
||||||
if cfg.UseAuth {
|
if cfg.UseAuth {
|
||||||
//line views/stuff.qtpl:237
|
//line views/stuff.qtpl:238
|
||||||
qw422016.N().S(` <li><b>User count:</b> `)
|
qw422016.N().S(` <li><b>User count:</b> `)
|
||||||
//line views/stuff.qtpl:238
|
//line views/stuff.qtpl:239
|
||||||
qw422016.N().DUL(user.Count())
|
qw422016.N().DUL(user.Count())
|
||||||
//line views/stuff.qtpl:238
|
//line views/stuff.qtpl:239
|
||||||
qw422016.N().S(`</li>
|
qw422016.N().S(`</li>
|
||||||
<li><b>Home page:</b> <a href="/">`)
|
<li><b>Home page:</b> <a href="/">`)
|
||||||
//line views/stuff.qtpl:239
|
//line views/stuff.qtpl:240
|
||||||
qw422016.E().S(cfg.HomeHypha)
|
qw422016.E().S(cfg.HomeHypha)
|
||||||
//line views/stuff.qtpl:239
|
//line views/stuff.qtpl:240
|
||||||
qw422016.N().S(`</a></li>
|
qw422016.N().S(`</a></li>
|
||||||
<li><b>Administrators:</b>`)
|
<li><b>Administrators:</b>`)
|
||||||
//line views/stuff.qtpl:240
|
//line views/stuff.qtpl:241
|
||||||
for i, username := range user.ListUsersWithGroup("admin") {
|
for i, username := range user.ListUsersWithGroup("admin") {
|
||||||
//line views/stuff.qtpl:241
|
//line views/stuff.qtpl:242
|
||||||
if i > 0 {
|
if i > 0 {
|
||||||
//line views/stuff.qtpl:241
|
//line views/stuff.qtpl:242
|
||||||
qw422016.N().S(`<span aria-hidden="true">, </span>
|
qw422016.N().S(`<span aria-hidden="true">, </span>
|
||||||
`)
|
`)
|
||||||
//line views/stuff.qtpl:242
|
//line views/stuff.qtpl:243
|
||||||
}
|
}
|
||||||
//line views/stuff.qtpl:242
|
//line views/stuff.qtpl:243
|
||||||
qw422016.N().S(` <a href="/hypha/`)
|
qw422016.N().S(` <a href="/hypha/`)
|
||||||
//line views/stuff.qtpl:243
|
//line views/stuff.qtpl:244
|
||||||
qw422016.E().S(cfg.UserHypha)
|
qw422016.E().S(cfg.UserHypha)
|
||||||
//line views/stuff.qtpl:243
|
//line views/stuff.qtpl:244
|
||||||
qw422016.N().S(`/`)
|
qw422016.N().S(`/`)
|
||||||
//line views/stuff.qtpl:243
|
//line views/stuff.qtpl:244
|
||||||
qw422016.E().S(username)
|
qw422016.E().S(username)
|
||||||
//line views/stuff.qtpl:243
|
//line views/stuff.qtpl:244
|
||||||
qw422016.N().S(`">`)
|
qw422016.N().S(`">`)
|
||||||
//line views/stuff.qtpl:243
|
//line views/stuff.qtpl:244
|
||||||
qw422016.E().S(username)
|
qw422016.E().S(username)
|
||||||
//line views/stuff.qtpl:243
|
//line views/stuff.qtpl:244
|
||||||
qw422016.N().S(`</a>`)
|
qw422016.N().S(`</a>`)
|
||||||
//line views/stuff.qtpl:243
|
//line views/stuff.qtpl:244
|
||||||
}
|
}
|
||||||
//line views/stuff.qtpl:243
|
//line views/stuff.qtpl:244
|
||||||
qw422016.N().S(`</li>
|
qw422016.N().S(`</li>
|
||||||
`)
|
`)
|
||||||
//line views/stuff.qtpl:244
|
//line views/stuff.qtpl:245
|
||||||
} else {
|
} else {
|
||||||
//line views/stuff.qtpl:244
|
//line views/stuff.qtpl:245
|
||||||
qw422016.N().S(` <li>This wiki does not use authorization</li>
|
qw422016.N().S(` <li>This wiki does not use authorization</li>
|
||||||
`)
|
`)
|
||||||
//line views/stuff.qtpl:246
|
//line views/stuff.qtpl:247
|
||||||
}
|
}
|
||||||
//line views/stuff.qtpl:246
|
//line views/stuff.qtpl:247
|
||||||
qw422016.N().S(` </ul>
|
qw422016.N().S(` </ul>
|
||||||
<p>See <a href="/list">/list</a> for information about hyphae on this wiki.</p>
|
<p>See <a href="/list">/list</a> for information about hyphae on this wiki.</p>
|
||||||
</section>
|
</section>
|
||||||
</main>
|
</main>
|
||||||
</div>
|
</div>
|
||||||
`)
|
`)
|
||||||
//line views/stuff.qtpl:252
|
//line views/stuff.qtpl:253
|
||||||
}
|
}
|
||||||
|
|
||||||
//line views/stuff.qtpl:252
|
//line views/stuff.qtpl:253
|
||||||
func WriteAboutHTML(qq422016 qtio422016.Writer) {
|
func WriteAboutHTML(qq422016 qtio422016.Writer) {
|
||||||
//line views/stuff.qtpl:252
|
//line views/stuff.qtpl:253
|
||||||
qw422016 := qt422016.AcquireWriter(qq422016)
|
qw422016 := qt422016.AcquireWriter(qq422016)
|
||||||
//line views/stuff.qtpl:252
|
//line views/stuff.qtpl:253
|
||||||
StreamAboutHTML(qw422016)
|
StreamAboutHTML(qw422016)
|
||||||
//line views/stuff.qtpl:252
|
//line views/stuff.qtpl:253
|
||||||
qt422016.ReleaseWriter(qw422016)
|
qt422016.ReleaseWriter(qw422016)
|
||||||
//line views/stuff.qtpl:252
|
//line views/stuff.qtpl:253
|
||||||
}
|
}
|
||||||
|
|
||||||
//line views/stuff.qtpl:252
|
//line views/stuff.qtpl:253
|
||||||
func AboutHTML() string {
|
func AboutHTML() string {
|
||||||
//line views/stuff.qtpl:252
|
//line views/stuff.qtpl:253
|
||||||
qb422016 := qt422016.AcquireByteBuffer()
|
qb422016 := qt422016.AcquireByteBuffer()
|
||||||
//line views/stuff.qtpl:252
|
//line views/stuff.qtpl:253
|
||||||
WriteAboutHTML(qb422016)
|
WriteAboutHTML(qb422016)
|
||||||
//line views/stuff.qtpl:252
|
//line views/stuff.qtpl:253
|
||||||
qs422016 := string(qb422016.B)
|
qs422016 := string(qb422016.B)
|
||||||
//line views/stuff.qtpl:252
|
//line views/stuff.qtpl:253
|
||||||
qt422016.ReleaseByteBuffer(qb422016)
|
qt422016.ReleaseByteBuffer(qb422016)
|
||||||
//line views/stuff.qtpl:252
|
//line views/stuff.qtpl:253
|
||||||
return qs422016
|
return qs422016
|
||||||
//line views/stuff.qtpl:252
|
//line views/stuff.qtpl:253
|
||||||
}
|
}
|
||||||
|
|
||||||
//line views/stuff.qtpl:254
|
//line views/stuff.qtpl:255
|
||||||
func StreamCommonScripts(qw422016 *qt422016.Writer) {
|
func StreamCommonScripts(qw422016 *qt422016.Writer) {
|
||||||
//line views/stuff.qtpl:254
|
//line views/stuff.qtpl:255
|
||||||
qw422016.N().S(`
|
qw422016.N().S(`
|
||||||
`)
|
`)
|
||||||
//line views/stuff.qtpl:255
|
//line views/stuff.qtpl:256
|
||||||
for _, scriptPath := range cfg.CommonScripts {
|
for _, scriptPath := range cfg.CommonScripts {
|
||||||
//line views/stuff.qtpl:255
|
//line views/stuff.qtpl:256
|
||||||
qw422016.N().S(`
|
qw422016.N().S(`
|
||||||
<script src="`)
|
<script src="`)
|
||||||
//line views/stuff.qtpl:256
|
//line views/stuff.qtpl:257
|
||||||
qw422016.E().S(scriptPath)
|
qw422016.E().S(scriptPath)
|
||||||
//line views/stuff.qtpl:256
|
//line views/stuff.qtpl:257
|
||||||
qw422016.N().S(`"></script>
|
qw422016.N().S(`"></script>
|
||||||
`)
|
`)
|
||||||
//line views/stuff.qtpl:257
|
//line views/stuff.qtpl:258
|
||||||
}
|
}
|
||||||
//line views/stuff.qtpl:257
|
//line views/stuff.qtpl:258
|
||||||
qw422016.N().S(`
|
qw422016.N().S(`
|
||||||
`)
|
`)
|
||||||
//line views/stuff.qtpl:258
|
//line views/stuff.qtpl:259
|
||||||
}
|
}
|
||||||
|
|
||||||
//line views/stuff.qtpl:258
|
//line views/stuff.qtpl:259
|
||||||
func WriteCommonScripts(qq422016 qtio422016.Writer) {
|
func WriteCommonScripts(qq422016 qtio422016.Writer) {
|
||||||
//line views/stuff.qtpl:258
|
//line views/stuff.qtpl:259
|
||||||
qw422016 := qt422016.AcquireWriter(qq422016)
|
qw422016 := qt422016.AcquireWriter(qq422016)
|
||||||
//line views/stuff.qtpl:258
|
//line views/stuff.qtpl:259
|
||||||
StreamCommonScripts(qw422016)
|
StreamCommonScripts(qw422016)
|
||||||
//line views/stuff.qtpl:258
|
//line views/stuff.qtpl:259
|
||||||
qt422016.ReleaseWriter(qw422016)
|
qt422016.ReleaseWriter(qw422016)
|
||||||
//line views/stuff.qtpl:258
|
//line views/stuff.qtpl:259
|
||||||
}
|
}
|
||||||
|
|
||||||
//line views/stuff.qtpl:258
|
//line views/stuff.qtpl:259
|
||||||
func CommonScripts() string {
|
func CommonScripts() string {
|
||||||
//line views/stuff.qtpl:258
|
//line views/stuff.qtpl:259
|
||||||
qb422016 := qt422016.AcquireByteBuffer()
|
qb422016 := qt422016.AcquireByteBuffer()
|
||||||
//line views/stuff.qtpl:258
|
//line views/stuff.qtpl:259
|
||||||
WriteCommonScripts(qb422016)
|
WriteCommonScripts(qb422016)
|
||||||
//line views/stuff.qtpl:258
|
//line views/stuff.qtpl:259
|
||||||
qs422016 := string(qb422016.B)
|
qs422016 := string(qb422016.B)
|
||||||
//line views/stuff.qtpl:258
|
//line views/stuff.qtpl:259
|
||||||
qt422016.ReleaseByteBuffer(qb422016)
|
qt422016.ReleaseByteBuffer(qb422016)
|
||||||
//line views/stuff.qtpl:258
|
//line views/stuff.qtpl:259
|
||||||
return qs422016
|
return qs422016
|
||||||
//line views/stuff.qtpl:258
|
//line views/stuff.qtpl:259
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user