41cd0829c5
MINOR: Update to favicons and new favicons which are also being added to silverstripe.org |
||
---|---|---|
app | ||
bin | ||
themes/docs | ||
.editorconfig | ||
.gitignore | ||
.htaccess | ||
.htaccess_live | ||
android-chrome-36x36.png | ||
android-chrome-48x48.png | ||
android-chrome-72x72.png | ||
android-chrome-96x96.png | ||
android-chrome-144x144.png | ||
android-chrome-192x192.png | ||
apple-touch-icon-57x57.png | ||
apple-touch-icon-60x60.png | ||
apple-touch-icon-72x72.png | ||
apple-touch-icon-76x76.png | ||
apple-touch-icon-114x114.png | ||
apple-touch-icon-120x120.png | ||
apple-touch-icon-144x144.png | ||
apple-touch-icon-152x152.png | ||
apple-touch-icon-180x180.png | ||
apple-touch-icon-precomposed.png | ||
apple-touch-icon.png | ||
browserconfig.xml | ||
composer.json | ||
composer.lock | ||
favicon-16x16.png | ||
favicon-32x32.png | ||
favicon-96x96.png | ||
favicon-194x194.png | ||
favicon.ico | ||
favicon.png | ||
google9d5116bbb46f4c16.html | ||
Makefile | ||
manifest.json | ||
mstile-70x70.png | ||
mstile-144x144.png | ||
mstile-150x150.png | ||
mstile-310x150.png | ||
mstile-310x310.png | ||
phpunit.xml.dist | ||
README.md | ||
robots.txt |
doc.silverstripe.org
This is the source code powering http://docs.silverstripe.org. It primarily consists of the SilverStripe framework and docsviewer module with minimal configuration.
For adding functionality or editing the style of the documentation see the docsviewer module.
Development
To set up a test instance:
- Clone this repository to a LAMP server.
- Install Composer
- After installing composer run
composer install --prefer-source
to grab the modules. - Run
make update
to check out the repositories from which it builds the docs (this will take a while the first time)
Source Documentation Files
Documentation for each module is stored on the filesystem via a full git clone
of the module to the src/
subdirectory in this project. These checkouts are
ignored from this repository to allow for easier updating and to keep this
project small.
To update or download the source documentation at any time run the following make command in your terminal:
cd /Sites/doc.silverstripe.org/
make fetch
make fetch
will call bin/update.sh to download / update each module as listed
in the bin/update.sh file.
Once the make fetch
command has executed and downloaded the latest files,
those files are registered along with the module version the folder relates to
through the docsviewer.yml file.
Contribution
To contribute an improvement to the docs.silverstripe.org functionality or theme, submit a pull request on GitHub. Any approved pull requests will make their way onto the docs.silverstripe.org site in the next release.
The content for docs.silverstripe.org is stored in the modules repository inside a "docs" folder (for example, the framework documentation is stored at https://github.com/silverstripe/silverstripe-framework/tree/master/docs.
If you wish to edit the documentation content, submit a pull request on that Github project. Updates to the content are synced regularly with docs.silverstripe.org via a cron job.
Cron job
The cron job keeps docs.silverstripe.org up to date with the latest code. This
cron task calls make update
, a script that fetches the latest documentation
for each module from git and rebuilds the search indexes.
05 * * * * sites make -f /sites/ss2doc-v2/www/Makefile -C /sites/ss2doc-v2/www update