Skip to content

Latest commit

 

History

History
335 lines (234 loc) · 13.7 KB

CONTRIBUTING.adoc

File metadata and controls

335 lines (234 loc) · 13.7 KB

Contributing to the Eclipse Che documentation

Understanding the Che documentation ecosystem

The documentation workflow

Procedure
  1. Contributor submits a code pull request in one of the Che repositories with a status/doc-impact label.

  2. The author of the code pull request, or the reviewer ensures the code pull request contains a reference to a documentation pull request for the main branch of the che-docs repository:

    1. The author of the code pull request, or the reviewer provides a documentation pull request that the members of the documentation team can merge without further editing.

    2. Or, the author of the code pull request, or the reviewer provides at least an initial draft of the content and reaches out to the documentation-team members for assistance with editing, to help finalize the documentation pull request.

    3. Or, the author of the code pull request, or the reviewer reaches out to the members of the documentation team and work with them on submitting a documentation pull request.

  3. Review the documentation pull request.

  4. Merge the code pull request into the che repository, for next milestone x.y.z.

  5. Merge the documentation content for next milestone x.y.z into the main branch of the che-docs repository.

  6. Release che milestone x.y.z.

  7. Release Eclipse Che documentation.

  8. Publish Eclipse Che documentation.

Reviewing a documentation pull request

Review the pull request in the Eclipse Che hosted by Red Hat IDE.

Procedure
  1. Navigate to the pull request

  2. Click on the Eclipse Che hosted by Red Hat link in the comments.

  3. Build and validate the documentation, and start the preview server: open Menu > Terminal > Run Tasks > che: start-preview-server.

  4. In the Terminal panel, watch the output of the che: start-preview-server task to validate the result: internal and external links, language on created and changed files.

  5. Navigate to the preview: open Preview.

  6. Open created and changed files, and examine the Problems Panel to validate the language. Toggle the view of the Problems Panel using the View > Problems menu entry.

  7. Review the pull request. See the code review checklist.

Editing, submitting and reviewing content

Prerequisites
Procedure
  1. Open a che-docs workspace running on Eclipse Che hosted by Red Hat: https://workspaces.openshift.com/#https://github.com/<organization>/che-docs/.

  2. Create a branch <branch-name> for your work.

  3. Edit the content.

  4. Build and validate the documentation, and start the preview server: open My Workspace > User Runtimes > che-docs > Start preview server.

  5. Watch the output of the Start preview server task to validate the result: internal and external links, language on created and changed files.

  6. Navigate to the preview: open Preview.

  7. Open created and changed files, and examine the Problems Panel to validate the language. Toggle the view of the Problems Panel using the View > Problems menu entry.

  8. To merge the content, open a pull request to the default main branch.

  9. When you intend to review a pull request, assign yourself in the GitHub pull request view.

  10. Review the pull request. See Reviewing a documentation pull request.

  11. The documentation pull request needs a review by the documentation team and by engineering.

  12. The continuous integration process is publishing content after the merge in the release branch.

Verification steps

Creating a page

Create a page and add it to the navigation when:

  • It is meaningful to have a navigation entry

  • The content might receive cross-references. Avoid cross-references to a page fragment.

Procedure
  1. Define the page destination directory <pages_directory>. It can be:

    • modules/administration-guide/pages/

    • modules/end-user-guide/pages/

  2. Define the page title, and the page file name: use lower case and separate words with dashes <title>.adoc. The directory and the file name determine the page URL.

  3. Copy one of the templates in the templates/pages directory to <pages_directory>/<title>.adoc.

  4. Add a cross-reference to the page in the modules/<guide_name>/nav.adoc navigation file to create the navigation entry.

    * xref:<file_name>.adoc[]
  5. Verify that an AsciiDoc attribute defines the content type. The page content type can be:

  6. Edit the Antora metadata in the file.

    Example 1. Template metadata for a page
    :description: A description of the page stored in an HTML meta tag.
    :keywords: comma-separated values, stored, in an HTML, meta, tag
    :navtitle: Title
    :page-aliases:
    
    [id="title"]
    = Title
  7. Author the content.

Creating a partial

Create a partial and add it to an assembly page when:

  • The content is a concept, procedure or reference to include in a page.

  • The content might not receive cross-references.

Procedure
  1. Copy one of the templates in the templates/partials directory to modules/<guide_name>/partials/<lowercase_title>.adoc.

  2. Verify that an AsciiDoc attribute defines the content type. The partial content type can be:

  3. Add an include statement in the corresponding page in modules/<guide_name>/pages/:

    include::partial$<file_name>.adoc[leveloffset=+1]
  4. Edit the metadata in the file.

    [id="title"]
    = Title
  5. Author the content.

Adding an example specific to the project context

Create an example specific to the project context when:

  • Upstream and downstream require a different content.

  • The content is a block of text.

  • Using an AsciiDoc attribute is not an option.

The include statement contains the project-context attribute to ensure upstream and downstream use a different file. These snippets have no content type.

Procedure
  1. Create the file modules/<guide_name>/examples/snip_che_<lowercase_title>.adoc, and author the content.

  2. Add an include statement in the corresponding page templates directory to modules/<guide_name>/pages/<title>.adoc.

    include::example$snip_{project-context}<file_name>.adoc[leveloffset=+1]
  3. Author the content.

Adding an image

Avoid using images unless necessary.

Procedure
  1. Add the image to the modules/__<guide_name>__/images/ directory corresponding to the guide including the image.

  2. To publish a block image, use the following syntax. See Antora documentation - Add block images and Asciidoctor documentation - Images.

    Example 2. Block image
    .__<Image caption>__
    image::__<image_name>__.png[__<Image title>__]
  3. The publication tool resizes images. To provide a link to a full-size image, add a link attribute:

    Example 3. Block image with a link to the full-size image
    .__<Image caption>__
    image::__<image_file_name>__[__<Image title>__,link="../_images/__<image_file_name>__"]

Using special characters

Procedure
  • To exclude special characters from markup substitutions, use the inline pass macro.

    Example 4. Displaying a variable name containing underscores
    pass:a,c,m[VARIABLE_NAME__WITH__UNDERSCORES]
    Result

    VARIABLE_NAME__WITH__UNDERSCORES

Building and validating Documentation on a local environment

This section describes how to build and validate the documentation on a local environment using the che-docs container.

Warning
This is not the preferred method. For the supported method, see: Editing, submitting and reviewing content.
Prerequisites:
Procedure
  1. Open a shell prompt into the project directory, and build and validate the documentation using and instance of the che-docs container.

    $ ./tools/runnerpreview.sh
  2. Read the output for the results of the links and language validation steps.

  3. Navigate to localhost:4000 in your browser.

Getting support

GitHub issue
  • Ask a question

  • Open a bug

Public Chat