The old NUnit website. Please see the new site's repo here
Перейти к файлу
Charlie Poole 9a09cf54ff Update donations page 2017-06-30 18:07:47 -07:00
control Update donations page 2017-06-30 18:07:47 -07:00
docs Remove VS Adapter from legacy documentation 2017-04-24 16:33:34 -07:00
files Initial commit of nunit.org website files to github 2014-08-14 16:18:15 -07:00
img Initial commit of nunit.org website files to github 2014-08-14 16:18:15 -07:00
nuget New icon for NUnit v3 NuGet packages 2015-03-19 20:49:35 -04:00
php Update donations page 2017-06-30 18:07:47 -07:00
.gitignore Update news; restore blog 2016-08-25 21:46:40 -07:00
.htaccess Update .htaccess based on changes made in cpanel 2017-06-27 16:25:04 -07:00
NOTOFFLINE Update console and other doc pages for 3.0 2014-11-02 14:08:35 -08:00
README.md Create README.md 2014-09-20 12:57:34 -07:00
codeFuncs.js Initial commit of nunit.org website files to github 2014-08-14 16:18:15 -07:00
community.html Initial commit of nunit.org website files to github 2014-08-14 16:18:15 -07:00
contactUs.html Update contactUs.html 2016-08-19 16:30:41 -04:00
control.php Initial commit of nunit.org website files to github 2014-08-14 16:18:15 -07:00
documentation.html Changed 3.x to 3 2016-10-04 15:26:55 -04:00
donations.html Update donations page 2017-06-30 18:07:47 -07:00
download.html Updates for the 3.7 framework release 2017-05-29 19:31:41 -04:00
favicon.ico Initial commit of nunit.org website files to github 2014-08-14 16:18:15 -07:00
footer.php Update donations page 2017-06-30 18:07:47 -07:00
header.php Remove blog from header 2017-06-25 22:34:00 -07:00
home.html Updates for the 3.7 framework release 2017-05-29 19:31:41 -04:00
index.php Initial commit of nunit.org website files to github 2014-08-14 16:18:15 -07:00
nunit.css Add header indicating that docs are for legacy versions of NUnit 2016-08-03 21:44:09 -07:00
robots.txt Initial commit of nunit.org website files to github 2014-08-14 16:18:15 -07:00

README.md

NUnit Website

This repo contains the code of the existing NUnit website, which is expected to be replaced before the final release of NUnit 3.0. Major changes and reorganization should not be done here, but should wait until the new site is set up.

Until that time, we are using this repo so that all contributors can update the documentation. Once an update has been made, the new or changed pages must be manually uploaded to the live site. Contact Charlie to do this.

Updating Documentation

Documentation is contained in the docs directory, with a subdirectory for each NUnit release. It is in the form of html fragments with a small amount of embedded php code. Functions used in the html may be found at php/html_funcs.php.

If you start updating a page that has not had any changes for a while, you may find that it contains only a single line, similar to this...

          <?php unchangedSince("2.5.9") ?>

In such a case, you should first replace the file with a copy of the same file name under the subdirectory pointed to. In the above case, you would copy docs/2.5.9/FILENAME.html to replace the file in the version you are working on. After you have done that, you can continue to edit the file. You should not change the original file (e.g. 2.5.9) since it provides a record of the docs from that release and is also being used by all subsequent releases.