Go to file
Robbie Averill e327576b1d Merge pull request #166 from creative-commoners/pulls/3.9/update-colours
Update docs to add web accessible colours
2017-08-30 17:05:12 +12:00
app Update branch for 4.x documentation 2017-07-26 11:08:38 +12:00
themes/docs NEW Add canonical URL to documentation pages 2017-08-14 16:40:10 +12:00
.editorconfig Added EditorConfig for coding convention consistency. 2015-01-20 10:06:14 +13:00
.gitignore Adding quickfeedback form 2016-02-16 11:00:18 +13:00
.htaccess FIX results action should also be redirected 2017-08-17 10:56:57 +12:00
README.md switched to svn export command for copying documentation files 2016-04-20 04:12:08 -06:00
composer.json API Simplify branches for docs to major versions only 2016-12-05 11:06:35 +13:00
composer.lock Update docs to add web accessible colours 2017-08-30 15:57:18 +12:00
favicon.ico organised favicons 2015-11-26 10:35:23 +13:00
google9d5116bbb46f4c16.html Added Google Webmaster Tools verification 2013-09-06 20:53:22 +02:00
phpunit.xml.dist Updated PHPUnit default file 2013-05-29 18:08:35 +02:00
robots.txt added crontask and updatetask buildtask as per userhelp, repositories yml, updated robots file, removed update shell script 2016-02-11 14:16:18 +13:00

README.md

doc.silverstripe.org

This repository contains the source code powering SilverStripe's developer documentation website.

The source code here primarily consists of the SilverStripe framework and the docsviewer modules with minimal configuration.

This repository does NOT contain the most current documentation.

The documentation files are written in the markdown format and the most current versions of these files and are not stored here. Instead, they are stored in a docs folder alongside the framework source code in each framework repository. For example, the documentation markdown files for the master branch of the SilverStripe framework are stored in https://github.com/silverstripe/silverstripe-framework/tree/master/docs. As described below in the Installation section, one must first download the latest versions of the documentation markdown files from the framework repositories and re-index them before being able to view the most current content.

For adding functionality or editing the style of the documentation, see the docsviewer module.

Installation

To set up a local instance of doc.silverstripe.org:

  • Install Composer.
  • Install sake.
  • Clone this repository to a LAMP server. For example, the shell command
   git clone https://github.com/silverstripe/doc.silverstripe.org path/to/ssdocs

will clone this repository into path/to/ssdocs.

  • From within path/to/ssdocs, run the command
   composer install --prefer-source

to install all required modules, in particular, the docsviewer module.

  • If you are only interested in being able to view the documentation locally then, from within path/to/ssdocs, run the command
sake dev/tasks/RefreshMarkdownTask flush=1

to get the latest documentation markdown files.

If you are interested in contributing, you must first install subversion. For example, in Ubuntu or Debian, sudo apt-get install subversion will install subversion. Then run the command

   sake dev/tasks/RefreshMarkdownTask flush=1 dev=1

to get the full git repositories.

  • From within path/to/ssdocs, run the command
   sake dev/tasks/RebuildLuceneDocsIndex flush=1

to re-index the latest documentation markdown files. Note: re-indexing will take some time.

  • Make sure to flush the cache for markdown content to show up.

Rather than using sake, one can instead run the two tasks directly in the browser. To get the documentation markdown files, use the url:

http://localhost/path/to/ssdocs/dev/tasks/RefreshMarkdownTask?flush=1

To get the full git repositories use the url

http://localhost/path/to/ssdocs/dev/tasks/RefreshMarkdownTask?flush=1&dev=1

To re-index the documentation files use the url:

http://localhost/path/to/ssdocs/dev/tasks/RebuildLuceneDocsIndex?flush=1

Automation

Refreshing and re-indexing the documentation markdown files can be automated. From within path/to/webroot/ssdocs, run the command:

   sake dev/tasks/UpdateDocsCronTask

The cron job UpdateDocsCronTask runs the RefreshMarkdownTask and RebuildLuceneDocsIndex tasks every day at 8PM. This execution schedule can be altered by editing UpdateDocsCronTask.php, found in the apps/code folder, and changing the scheduling function:

   public function getSchedule() {
      return "0 20 * * *"; // runs process() function every day at 8PM
   }

Rather than using sake, one can instead run the cron task directly in the browser using the url:

http://localhost/path/to/ssdocs/dev/cron/UpdateDocsCronTask?flush=1

Contribution

To contribute an improvement to the https://docs.silverstripe.org functionality or theme, submit a pull request on the GitHub project. Any approved pull requests will make their way onto the https://docs.silverstripe.org site in the next release.

If you wish to edit the documentation content, submit a pull request on the framework Github project. Updated documentation content is uploaded daily at 8PM to doc.silverstripe.org via a cron job. See the Automation section.

If you are adding a new version of the documentation, you must register it in both app/_config/docs-repositories.yml and app/_config/docsviewer.yml. To set one particular version to be current stable version, set Stable: true in app/_config/docsviewer.yml. Remove the Stable: true for all versions that are not stable.

Deployment

Deployment is via the SilverStripe Platform deployment tool and uses StackShare.