Skip to content

Commit

Permalink
Minor doc changes
Browse files Browse the repository at this point in the history
  • Loading branch information
LadyCailin committed Nov 9, 2017
1 parent 08761ec commit 70d5860
Show file tree
Hide file tree
Showing 5 changed files with 38 additions and 4 deletions.
Expand Up @@ -987,7 +987,7 @@ public void run() {
}

/**
* Pages deployed: index.html privacy_policy.html
* Pages deployed: index.html privacy_policy.html sponsors.html
*/
private void deployFrontPages() {
generateQueue.submit(new Runnable() {
Expand Down Expand Up @@ -1017,6 +1017,15 @@ public void run() {
}
});
totalGenerateTasks.addAndGet(1);
generateQueue.submit(new Runnable() {
@Override
public void run() {
writePageFromResource(Implementation.GetServerType().getBranding(), "/siteDeploy/Sponsors", "../../sponsors.html",
Arrays.asList(new String[]{"index", "front page"}), "Sponsors of MethodScript");
currentGenerateTask.addAndGet(1);
}
});
totalGenerateTasks.addAndGet(1);
generateQueue.submit(new Runnable() {
@Override
public void run() {
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/docs/CommandLineTools
Expand Up @@ -26,7 +26,7 @@ Skip ahead to the next section
==== Step 2 ====
Run <code>java -jar CommandHelper.jar</code> from your prompt. You will see the
help listing. Each tool is it's own "verb". The syntax for running a particular
tool is <code>java -jar CommandHelper.jar &lt;verb&gt; %%NOWIKI|[&lt;arguments for this tool&gt;]%%</code>
tool is <code>java -jar CommandHelper.jar &lt;verb&gt; %%NOWIKI|[<arguments for this tool>C]%%</code>

See the section below that shows the help listing for more details about each tool.

Expand Down
24 changes: 24 additions & 0 deletions src/main/resources/siteDeploy/Sponsors
@@ -0,0 +1,24 @@

If you would like to help contribute to the development of MethodScript in a sustainable and continuous fashion,
please see our Patreon campaign here: [https://www.patreon.com/MethodScript https://www.patreon.com/MethodScript]

Contributors like you help shoulder the cost of the servers that run this website, and allow for more exciting and
ambitious projects in the future.

== Titanium Sponsors ==
These sponsors are truly devoted to MethodScript.

''There are currently no Titanium Sponsors, be the first!''

=== Platinum Sponsors ===

''There are currently no Platinum Sponsors, be the first!''

==== Gold Sponsors ====

''There are currently no Gold Sponsors, be the first!''

===== Sponsor =====
These guys aren't the biggest sponsors, but they are still very much appreciated.

''There are currently no Sponsors, be the first!''
1 change: 1 addition & 0 deletions src/main/resources/siteDeploy/frame.html
Expand Up @@ -98,6 +98,7 @@ <h1><a href="%%siteRoot%%">%%branding%%</a></h1>
<li><a href="%%docsBase%%About.html">About</a></li>
<li style="%%showTemplateCredit%%">Design: <a href="http://templated.co">TEMPLATED</a></li>
<li><a href="%%docsBase%%privacy_policy.html">Privacy Policy</a></li>
<li><a href="/sponsors.html">Sponsors</a></li>
</ul>
</div>
</footer>
Expand Down
4 changes: 2 additions & 2 deletions src/main/resources/siteDeploy/privacy_policy.html
Expand Up @@ -78,7 +78,7 @@
</ul>
<div class='ppInnerText'>
You can choose to have your computer warn you each time a cookie is being sent, or you can
choose to turn off all cookies. You do this through your browser settings. Since browser is
choose to turn off all cookies. You do this through your browser settings. Since each browser is
a little different, look at your browser's Help Menu to learn the correct way to modify your
cookies.
</div>
Expand Down Expand Up @@ -202,6 +202,6 @@
If there are any questions regarding this privacy policy, you may contact us using the contact information found elsewhere.
</div>
<div class='ppInnerText'>
Last Edited on 2016-09-24
Last Edited on 2017-09-11
</div>

0 comments on commit 70d5860

Please sign in to comment.