Skip to content
This repository has been archived by the owner on Mar 16, 2023. It is now read-only.

Latest commit

 

History

History
executable file
·
80 lines (51 loc) · 2.37 KB

index.md

File metadata and controls

executable file
·
80 lines (51 loc) · 2.37 KB

docsviewer Module

This module has been developed to read and display content from markdown and plain text files in web browser. It provides an easy way to bundle end user documentation within a SilverStripe installation or module.

Setup

The module includes the ability to read documentation from any folder on your file system. By standard, documentation should go in a docs folder in the root of your module or project documentation.

Standard

If you follow the standard setup create a file in /<>/_docs/en/index.md file then include the following in your config file:

DocumentationService::set_automatic_registration(true);

Now visit yoursite.com/dev/docs you should see your module.

Custom Folders

If you wish to register specific folders only, or folders in a non standard location then you can register paths directly:

try {	
	DocumentationService::register(
		$name = "sapphire", 
		$path = "/src/sapphire_master/docs/", 
		$version = 'trunk'
	);
} catch(InvalidArgumentException $e) {
	 // Silence if path is not found (for CI environment)
}

To configure the documentation system the configuration information is available on the Configurations page.

Writing documentation

See Writing Documentation for more information on how to write markdown files which are available here.

Enabling Search

The module provides automatic search functionality via Lucene Search.

To enable search you need to add the following to your applications _config.php file:

DocumentationSearch::enable();

After adding that line you will also need to build the indexes of the search.

You can do this either via your web browser by accessing

http://yoursite.com/dev/tasks/RebuildLuceneDocsIndex?flush=1

Or rebuild it via sake. You will want to set this up as a cron job if your documentation search needs to be updated on the fly

sake dev/tasks/RebuildLuceneDocsIndex flush=1

Using a URL other than /dev/docs/

By default, the documentation is available in dev/docs. If you want it to live on the webroot instead of a subfolder or on another url address, add the following configuration to your _config.php file:

DocumentationViewer::set_link_base('');

Director::addRules(1, array(
	'$Action' => 'DocumentationViewer',
	'' => 'DocumentationViewer'
));