+ Visit our IRC channel: #crew on neko.sneeza.me
+
+
+
+
+
+
+
+ Current Project Maintainers:-Click Here-
+ Currently Active GitHub contributor list:-Click Here-
+ Coders: ZomgPonies, DaveTheHeadcrab, tigercat2000, FalseIncarnate, AuroraBlade, Tastyfish, Crazylemon64, KasparoVy
+ Spriters: FullOfSkittles
+ Sounds:
+ Main Testers: Anyone who has submitted a bug to the issue tracker
+ Thanks to: Baystation 12, /tg/station, /vg/station, NTstation, CDK Station devs, FacepunchStation, GoonStation devs, the original SpaceStation developers and Radithor for the title image. Also a thanks to anybody who has contributed who is not listed here :( Ask to be added here on irc.
+ Have a bug to report? Visit our Issue Tracker.
+ Please ensure that the bug has not already been reported and be as descriptive as possible about the circumstances under which the bug occurred.
+
+
+
+
+
+
+
03 January 2016
+
TheDZD updated:
+
+
Ports over changelog system from /tg/station.
+
+
+
+GoonStation 13 Development Team
+
+ Coders: Stuntwaffle, Showtime, Pantaloons, Nannek, Keelin, Exadv1, hobnob, Justicefries, 0staf, sniperchance, AngriestIBM, BrianOBlivion
+ Spriters: Supernorn, Haruhi, Stuntwaffle, Pantaloons, Rho, SynthOrange, I Said No
+
+
+
diff --git a/html/changelog.js b/html/changelog.js
new file mode 100644
index 00000000000..4146d0f094e
--- /dev/null
+++ b/html/changelog.js
@@ -0,0 +1,87 @@
+/*
+function dropdowns() {
+ var divs = document.getElementsByTagName('div');
+ var headers = new Array();
+ var links = new Array();
+ for(var i=0;i=0) {
+ elem.className = elem.className.replace('visible','hidden');
+ this.className = this.className.replace('open','closed');
+ }
+ else {
+ elem.className = elem.className.replace('hidden','visible');
+ this.className = this.className.replace('closed','open');
+ }
+ return false;
+ }
+ })(links[i]);
+ }
+ }
+}
+*/
+/*
+function filterchanges(type){
+ var lists = document.getElementsByTagName('ul');
+ for(var i in lists){
+ if(lists[i].className && lists[i].className.search('changes')>=0) {
+ for(var j in lists[i].childNodes){
+ if(lists[i].childNodes[j].nodeType == 1){
+ if(!type){
+ lists[i].childNodes[j].style.display = 'block';
+ }
+ else if(lists[i].childNodes[j].className!=type) {
+ lists[i].childNodes[j].style.display = 'none';
+ }
+ else {
+ lists[i].childNodes[j].style.display = 'block';
+ }
+ }
+ }
+ }
+ }
+}
+*/
+function dropdowns() {
+ var drops = $('div.drop');
+ var indrops = $('div.indrop');
+ if(drops.length!=indrops.length){
+ alert("Some coder fucked up with dropdowns");
+ }
+ drops.each(function(index){
+ $(this).toggleClass('closed');
+ $(indrops[index]).hide();
+ $(this).click(function(){
+ $(this).toggleClass('closed');
+ $(this).toggleClass('open');
+ $(indrops[index]).toggle();
+ });
+ });
+}
+
+function filterchanges(type){
+ $('ul.changes li').each(function(){
+ if(!type || $(this).hasClass(type)){
+ $(this).show();
+ }
+ else {
+ $(this).hide();
+ }
+ });
+}
+
+$(document).ready(function(){
+ dropdowns();
+});
\ No newline at end of file
diff --git a/html/changelogs/.all_changelog.yml b/html/changelogs/.all_changelog.yml
new file mode 100644
index 00000000000..94a90aa89b0
--- /dev/null
+++ b/html/changelogs/.all_changelog.yml
@@ -0,0 +1,5 @@
+DO NOT EDIT THIS FILE BY HAND! AUTOMATICALLY GENERATED BY ss13_genchangelog.py.
+---
+2016-01-03:
+ TheDZD:
+ - rscadd: Ports over changelog system from /tg/station.
diff --git a/html/changelogs/__CHANGELOG_README.txt b/html/changelogs/__CHANGELOG_README.txt
new file mode 100644
index 00000000000..8f610ee9acf
--- /dev/null
+++ b/html/changelogs/__CHANGELOG_README.txt
@@ -0,0 +1,19 @@
+Changelogs are included with commits as text .yml files created individually by the committer. If you want to create a changelog entry you create a .yml file in the /changelogs directory; nothing else needs to be touched unless you are a maintainer.
+
+#######################################################
+
+TO MAKE A CHANGELOG .YML ENTRRY
+
+1. Make a copy of the file example.yml in html/changelogs and rename it to [YOUR USERNAME]-PR-[YOUR PR NUMBER].yml (the pr and pr number are organizational and can be ignored if you so wish)
+
+2. Change the author to yourself
+
+3. Replace the changes text with a description of the changes in your PR, keep the double quotes to avoid errors (your changelog can be written ICly or OOCly, it doesn't matter)
+
+4. (Optional) set the change prefix (rscadd) to a different one listed above in example.yml (this affects what icon is used for your changelog entry)
+
+5. When commiting make sure your .yml file is included in the commit (it will usually be unticked as an unversioned file)
+
+#######################################################
+
+If you have trouble ask for help in #codertrain on the Paradise Station IRC.
diff --git a/html/changelogs/example.yml b/html/changelogs/example.yml
new file mode 100644
index 00000000000..cc7fab8225e
--- /dev/null
+++ b/html/changelogs/example.yml
@@ -0,0 +1,36 @@
+################################
+# Example Changelog File
+#
+# Note: This file, and files beginning with ".", and files that don't end in ".yml" will not be read. If you change this file, you will look really dumb.
+#
+# Your changelog will be merged with a master changelog. (New stuff added only, and only on the date entry for the day it was merged.)
+# When it is, any changes listed below will disappear.
+#
+# Valid Prefixes:
+# bugfix
+# wip (For works in progress)
+# tweak
+# soundadd
+# sounddel
+# rscadd (general adding of nice things)
+# rscdel (general deleting of nice things)
+# imageadd
+# imagedel
+# spellcheck (typo fixes)
+# experiment
+#################################
+
+# Your name. Remove the quotation mark and put in your name when copy+pasting the example changelog.
+author: "
+
+# Optional: Remove this file after generating master changelog. Useful for PR changelogs that won't get used again.
+delete-after: True
+
+# Any changes you've made. See valid prefix list above.
+# INDENT WITH TWO SPACES. NOT TABS. SPACES.
+# SCREW THIS UP AND IT WON'T WORK.
+# Also, this gets changed to [] after reading. Just remove the brackets when you add new shit.
+# Please surround your changes in double quotes ("). It works without them, but if you use certain characters it screws up compiling. The quotes will not show up in the changelog.
+changes:
+ - rscadd: "Added a changelog editing system that should cause fewer conflicts and more accurate timestamps."
+ - rscdel: "Killed innocent kittens."
diff --git a/html/chevron-expand.png b/html/chevron-expand.png
new file mode 100644
index 00000000000..f770e33d8ea
Binary files /dev/null and b/html/chevron-expand.png differ
diff --git a/html/chevron.png b/html/chevron.png
new file mode 100644
index 00000000000..b83135b6908
Binary files /dev/null and b/html/chevron.png differ
diff --git a/html/cross-circle.png b/html/cross-circle.png
new file mode 100644
index 00000000000..e6f2d3228b8
Binary files /dev/null and b/html/cross-circle.png differ
diff --git a/html/hard-hat-exclamation.png b/html/hard-hat-exclamation.png
new file mode 100644
index 00000000000..e22eb61b8fe
Binary files /dev/null and b/html/hard-hat-exclamation.png differ
diff --git a/html/image-minus.png b/html/image-minus.png
new file mode 100644
index 00000000000..b2bac2c45ab
Binary files /dev/null and b/html/image-minus.png differ
diff --git a/html/image-plus.png b/html/image-plus.png
new file mode 100644
index 00000000000..308c1ae0a28
Binary files /dev/null and b/html/image-plus.png differ
diff --git a/html/music-minus.png b/html/music-minus.png
new file mode 100644
index 00000000000..1b9478f43e7
Binary files /dev/null and b/html/music-minus.png differ
diff --git a/html/music-plus.png b/html/music-plus.png
new file mode 100644
index 00000000000..ea7f36c6ba3
Binary files /dev/null and b/html/music-plus.png differ
diff --git a/html/spell-check.png b/html/spell-check.png
new file mode 100644
index 00000000000..70b066d12ae
Binary files /dev/null and b/html/spell-check.png differ
diff --git a/html/templates/footer.html b/html/templates/footer.html
new file mode 100644
index 00000000000..5d98f73b159
--- /dev/null
+++ b/html/templates/footer.html
@@ -0,0 +1,13 @@
+
+
+GoonStation 13 Development Team
+
+ Coders: Stuntwaffle, Showtime, Pantaloons, Nannek, Keelin, Exadv1, hobnob, Justicefries, 0staf, sniperchance, AngriestIBM, BrianOBlivion
+ Spriters: Supernorn, Haruhi, Stuntwaffle, Pantaloons, Rho, SynthOrange, I Said No
+