Let's make (git) history!
This commit is contained in:
1
template/default/_headerlink
Normal file
1
template/default/_headerlink
Normal file
@ -0,0 +1 @@
|
||||
<a href="%s">%s</a>
|
6
template/default/allcategories
Normal file
6
template/default/allcategories
Normal file
@ -0,0 +1,6 @@
|
||||
{wikiqs:include:general_header}
|
||||
<div id="content" style="margin-top: 10px;">
|
||||
<h2>All categories</h2>
|
||||
{wikiqs:var:categorylist}
|
||||
</div>
|
||||
{wikiqs:include:general_footer}
|
6
template/default/allpages
Normal file
6
template/default/allpages
Normal file
@ -0,0 +1,6 @@
|
||||
{wikiqs:include:general_header}
|
||||
<div id="content" style="margin-top: 10px;">
|
||||
<h2>All pages</h2>
|
||||
{wikiqs:var:pagelist}
|
||||
</div>
|
||||
{wikiqs:include:general_footer}
|
6
template/default/error
Normal file
6
template/default/error
Normal file
@ -0,0 +1,6 @@
|
||||
{wikiqs:include:general_header}
|
||||
<div id="content" style="margin-top: 10px;">
|
||||
<h2>{wikiqs:var:errortitle}</h2>
|
||||
{wikiqs:var:errormessage}
|
||||
</div>
|
||||
{wikiqs:include:general_footer}
|
16
template/default/general_footer
Normal file
16
template/default/general_footer
Normal file
@ -0,0 +1,16 @@
|
||||
<hr>
|
||||
<div style="margin-top: 5px; font-size: 6pt;padding-bottom: 2px; padding-top: 2px; text-align: center">
|
||||
{wikiqs:var:loginstatus} - Powered by wikiQS, built on {wikiqs:var:buildinfo}
|
||||
</div>
|
||||
<script>
|
||||
function refreshSession()
|
||||
{
|
||||
var req = new XMLHttpRequest();
|
||||
req.open("GET", "{wikiqs:config:refreshsessionurl}");
|
||||
req.send();
|
||||
setTimeout(refreshSession, 60*2*1000);
|
||||
}
|
||||
setTimeout(refreshSession, 60*2*1000);
|
||||
</script>
|
||||
|
||||
</body></html>
|
19
template/default/general_header
Normal file
19
template/default/general_header
Normal file
@ -0,0 +1,19 @@
|
||||
<!Doctype html>
|
||||
<html><head><link rel="stylesheet" type="text/css" href="{wikiqs:config:csspath}" />
|
||||
<title>{wikiqs:var:title}</title>
|
||||
<meta charset="utf-8\"></head>
|
||||
<body><div style="width: 80%; margin: 0 auto;">
|
||||
<div style="min-width:100px; width: auto !important;">
|
||||
<div style="float: left;">
|
||||
<h1 style="margin-top: 0">{wikiqs:var:title}</h1></div>
|
||||
<div style="float: right;"><form action="{wikiqs:config:submitpath}">
|
||||
<input type="hidden" name="action" value="search"></input>
|
||||
<input type="text" name="q"></input></form></div>
|
||||
</div></div>
|
||||
<div style="clear: both; width: 80%; margin: 0 auto;">
|
||||
<div style="padding-bottom: 2px; padding-top: 2px; text-align: center">
|
||||
<a href="{wikiqs:config:linkindex}">Index</a> <a href="{wikiqs:config:linkrecent}">Recent changes</a> <a href="{wikiqs:config:linkallpages}">All pages</a> <a href="{wikiqs:config:linkallcats}">All categories</a>
|
||||
</div>
|
||||
|
||||
|
||||
|
11
template/default/login
Normal file
11
template/default/login
Normal file
@ -0,0 +1,11 @@
|
||||
{wikiqs:include:general_header}
|
||||
<div id="content" style="margin-top: 10px;">
|
||||
<h2>Login</h2>
|
||||
<form action="{wikiqs:var:loginurl}" method="POST">
|
||||
Username: <input type="text" name="user"></input><br>
|
||||
Password: <input type="password" name="password"></input><br>
|
||||
<button type="submit" name="do" value="submit">Submit</button>
|
||||
<input type="hidden" name="csrf_token" value="{wikiqs:var:csrf_token}"></input>
|
||||
</form>
|
||||
</div>
|
||||
{wikiqs:include:general_footer}
|
7
template/default/login_already
Normal file
7
template/default/login_already
Normal file
@ -0,0 +1,7 @@
|
||||
{wikiqs:include:general_header}
|
||||
<div id="content" style="margin-top: 10px;">
|
||||
<h2>Login</h2>
|
||||
You are already logged in as <b>{wikiqs:var:username}</b><br>
|
||||
<a href="{wikiqs:config:linklogout}">Logout</a>
|
||||
</div>
|
||||
{wikiqs:include:general_footer}
|
15
template/default/page_creation
Normal file
15
template/default/page_creation
Normal file
@ -0,0 +1,15 @@
|
||||
{wikiqs:include:general_header}
|
||||
{wikiqs:include:page_header}
|
||||
<div id="content" style="margin-top: 10px;">
|
||||
<form action="{wikiqs:var:actionurl}" method="POST">
|
||||
<button type="submit" name="do" value="submit">Submit</button>
|
||||
<button type="submit" name="do" value="preview">Preview</button>
|
||||
<textarea name="content" style="width: 100%;" rows=70>{wikiqs:var:content}</textarea>
|
||||
<br><b>Comment:</b><br>
|
||||
<input type="text" name="comment" size=50><br>
|
||||
<input type="hidden" name="csrf_token" value="{wikiqs:var:csrf_token}"></input>
|
||||
<button type="submit" name="do" value="submit">Submit</button>
|
||||
<button type="submit" name="do" value="preview">Preview</button>
|
||||
</form>
|
||||
</div>
|
||||
{wikiqs:include:general_footer}
|
18
template/default/page_creation_preview
Normal file
18
template/default/page_creation_preview
Normal file
@ -0,0 +1,18 @@
|
||||
{wikiqs:include:general_header}
|
||||
{wikiqs:include:page_header}
|
||||
<div id="content" style="margin-top: 10px;">
|
||||
This is a preview of your changes:<br>
|
||||
{wikiqs:var:preview_content}
|
||||
<hr>
|
||||
<form action="{wikiqs:var:actionurl}" method="POST">
|
||||
<button type="submit" name="do" value="submit">Submit</button>
|
||||
<button type="submit" name="do" value="preview">Preview</button>
|
||||
<textarea name="content" style="width: 100%;" rows=70>{wikiqs:var:content}</textarea>
|
||||
<br><b>Comment:</b><br>
|
||||
<input type="text" name="comment" size=50><br>
|
||||
<input type="hidden" name="csrf_token" value="{wikiqs:var:csrf_token}"></input>
|
||||
<button type="submit" name="do" value="submit">Submit</button>
|
||||
<button type="submit" name="do" value="preview">Preview</button>
|
||||
</form>
|
||||
</div>
|
||||
{wikiqs:include:general_footer}
|
11
template/default/page_deletion
Normal file
11
template/default/page_deletion
Normal file
@ -0,0 +1,11 @@
|
||||
{wikiqs:include:general_header}
|
||||
{wikiqs:include:page_header}
|
||||
<div id="content" style="margin-top: 10px;">
|
||||
<h3>Page deletion</h3>
|
||||
Do you really want to delete page <b>{wikiqs:var:page}</b>
|
||||
<form action="{wikiqs:var:deletionurl}" method=POST>
|
||||
<input type="hidden" name="csrf_token" value="{wikiqs:var:csrf_token}"/>
|
||||
<button type="submit" name="do" value="submit">Yes, delete page</button>
|
||||
</form>
|
||||
</div>
|
||||
{wikiqs:include:general_footer}
|
7
template/default/page_footer
Normal file
7
template/default/page_footer
Normal file
@ -0,0 +1,7 @@
|
||||
<div style="font-size: 6pt; padding-bottom: 2px; padding-top: 2px; text-align: center"><b>Page categories:</b>
|
||||
{wikiqs:var:categorieslist}
|
||||
</div>
|
||||
<div style="margin-top: 5px; font-size: 6pt;padding-bottom: 2px; padding-top: 2px; text-align: center">
|
||||
<a href="{wikiqs:var:linkshere}">What links here?</a> - Edited {wikiqs:var:editedon} by {wikiqs:var:editedby}
|
||||
</div>
|
||||
|
3
template/default/page_header
Normal file
3
template/default/page_header
Normal file
@ -0,0 +1,3 @@
|
||||
<div style="text-align: center">
|
||||
{wikiqs:var:headerlinks}
|
||||
</div>
|
9
template/default/page_history
Normal file
9
template/default/page_history
Normal file
@ -0,0 +1,9 @@
|
||||
{wikiqs:include:general_header}
|
||||
<div id="content" style="margin-top: 10px;">
|
||||
<table><tr><td><b>Revision</b></td><td><b>Author</b></td><td><b>Comment</b></td><td><b><a href="{wikiqs:var:linkhistorysort}">Date</a></b></td></tr>
|
||||
{wikiqs:var:revisionlist}
|
||||
</table>
|
||||
|
||||
{wikiqs:var:prevpage} {wikiqs:var:nextpage}
|
||||
</div>
|
||||
{wikiqs:include:general_footer}
|
15
template/default/page_settings
Normal file
15
template/default/page_settings
Normal file
@ -0,0 +1,15 @@
|
||||
{wikiqs:include:general_header}
|
||||
{wikiqs:include:page_header}
|
||||
<div id="content" style="margin-top: 10px;">
|
||||
<h2>Page settings: {wikiqs:var:page}</h2>
|
||||
<form action="{wikiqs:var:settingsurl}" method="POST">
|
||||
<h3>Categories:</h3>
|
||||
<textarea cols=50 rows=20 name=categories>{wikiqs:var:categories}</textarea><br>
|
||||
<h3>Rename:</h3>
|
||||
<input type="text" name="renameto"></input><br>
|
||||
<input type="checkbox" name="createredir" value="1" checked="checked">Redirect old page
|
||||
<input type="hidden" name="csrf_token" value="{wikiqs:var:csrf_token}"/>
|
||||
<button type="submit" name="do" value="submit">Submit</button>
|
||||
|
||||
</div>
|
||||
{wikiqs:include:general_footer}
|
7
template/default/page_view
Normal file
7
template/default/page_view
Normal file
@ -0,0 +1,7 @@
|
||||
{wikiqs:include:general_header}
|
||||
{wikiqs:include:page_header}
|
||||
<div id="content" style="margin-top: 10px;">
|
||||
{wikiqs:var:content}
|
||||
</div>
|
||||
{wikiqs:include:page_footer}
|
||||
{wikiqs:include:general_footer}
|
8
template/default/page_view_revision
Normal file
8
template/default/page_view_revision
Normal file
@ -0,0 +1,8 @@
|
||||
{wikiqs:include:general_header}
|
||||
{wikiqs:include:page_header}
|
||||
<div id="content" style="margin-top: 10px;">
|
||||
<b>Showing revision: {wikiqs:var:revision}</b><hr>
|
||||
{wikiqs:var:content}
|
||||
</div>
|
||||
{wikiqs:include:page_footer}
|
||||
{wikiqs:include:general_footer}
|
9
template/default/recentchanges
Normal file
9
template/default/recentchanges
Normal file
@ -0,0 +1,9 @@
|
||||
{wikiqs:include:general_header}
|
||||
<div id="content" style="margin-top: 10px;">
|
||||
<table><tr><td><b>Page</b></td><td><b>Revision</b></td><td><b>Author</b></td><td><b>Comment</b></td><td><b><a href="{wikiqs:var:linkrecentsort}">Date</a></b></td></tr>
|
||||
|
||||
{wikiqs:var:revisionlist}
|
||||
</table>
|
||||
{wikiqs:var:prevpage} {wikiqs:var:nextpage}
|
||||
</div>
|
||||
{wikiqs:include:general_footer}
|
6
template/default/search
Normal file
6
template/default/search
Normal file
@ -0,0 +1,6 @@
|
||||
{wikiqs:include:general_header}
|
||||
<div id="content" style="margin-top: 10px;">
|
||||
<h2>Search for: {wikiqs:var:searchterm} </h2>
|
||||
{wikiqs:var:pagelist}
|
||||
</div>
|
||||
{wikiqs:include:general_footer}
|
6
template/default/show_category
Normal file
6
template/default/show_category
Normal file
@ -0,0 +1,6 @@
|
||||
{wikiqs:include:general_header}
|
||||
<div id="content" style="margin-top: 10px;">
|
||||
<h2>Category: {wikiqs:var:categoryname}</h2>
|
||||
{wikiqs:var:pagelist}
|
||||
</div>
|
||||
{wikiqs:include:general_footer}
|
6
template/default/show_whatlinkshere
Normal file
6
template/default/show_whatlinkshere
Normal file
@ -0,0 +1,6 @@
|
||||
{wikiqs:include:general_header}
|
||||
<div id="content" style="margin-top: 10px;">
|
||||
<h2>Links to: {wikiqs:var:pagename}</h2>
|
||||
{wikiqs:var:pagelist}
|
||||
</div>
|
||||
{wikiqs:include:general_footer}
|
Reference in New Issue
Block a user