The old NUnit website. Please see the new site's repo here
Перейти к файлу
Rob Prouse 34a9c52069 3.2.1 release 2016-04-19 11:56:39 -04:00
control Initial commit of nunit.org website files to github 2014-08-14 16:18:15 -07:00
docs Fix error in page 2016-03-08 14:41:15 -08: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
nunitlite Add nunitlite and downloads directories 2014-11-02 11:57:01 -08:00
php Accumulated changes made manually to site 2016-03-03 17:23:56 -08:00
.gitignore Update for RC Release 2015-11-01 17:24:10 -08:00
.htaccess Update breaking changes 2014-12-12 21:52:11 -08: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 Adding news about recently released projects 2015-12-13 11:18:41 -05:00
control.php Initial commit of nunit.org website files to github 2014-08-14 16:18:15 -07:00
documentation.html Updated for the 3.2 release 2016-03-05 17:43:51 -05:00
donations.html Accumulated changes made manually to site 2016-03-03 17:23:56 -08:00
download.html 3.2.1 release 2016-04-19 11:56:39 -04:00
favicon.ico Initial commit of nunit.org website files to github 2014-08-14 16:18:15 -07:00
footer.php Update copyright dates 2015-01-29 18:13:31 -08:00
header.php Updated for the 3.2 release 2016-03-05 17:43:51 -05:00
home.html 3.2.1 release 2016-04-19 11:56:39 -04:00
index.php Initial commit of nunit.org website files to github 2014-08-14 16:18:15 -07:00
nunit.css Documented changes to the ValuesAttribute 2014-11-08 18:37:17 -05: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.