1.0     **Document and Item Creation**

1.1     TUT001

        **Creating a New Document and Adding Items**

        Enter VCS working copy:

            cd /tmp/doorstop

        Create a new document:

            doorstop new REQ ./reqs

        Add items:

            doorstop add REQ
            doorstop add REQ
            doorstop add REQ

        Edit the new items in the default text editor:

            doorstop edit REQ1
            doorstop edit REQ2

        Links: REQ003, REQ004

1.2     TUT002

        **Creating a Child Document with Links to the Parent Document**

        Enter VCS working copy:

            cd /tmp/doorstop

        Create a new child document:

            doorstop new TST ./reqs/tests --parent REQ

        Add new items:

            doorstop add TST
            doorstop add TST

        Edit the new items in the default text editor:

            doorstop edit TST1
            doorstop edit TST2

        Add links to item's in the parent document:

            doorstop link TST1 REQ1
            doorstop link TST1 REQ3
            doorstop link TST2 REQ1
            doorstop link TST2 REQ2

        Links: REQ003, REQ004, REQ011, REQ012, REQ013

1.3     TUT004

        **Removing Items and Links**

        Enter VCS working copy:

            cd /tmp/doorstop

        Remove a link between two document items:

            doorstop unlink TST1 REQ3

        Remove a document's item:

            doorstop remove REQ3

        Links: REQ003, REQ011, REQ012, REQ013

1.4     TUT008

        **Validating the Tree**

        Enter VCS working copy:

            cd /tmp/doorstop

        Build and validate the tree:

            doorstop

        Links: REQ003

2.0     **Publishing Documents**

2.1     TUT009

        **Publishing a Document as Text**

        Enter VCS working copy:

            cd /tmp/doorstop

        Display the documents on standard output:

            doorstop publish req
            doorstop publish tst

        Links: REQ007

2.2     TUT010

        **Publishing All Documents as an HTML Directory**

        Enter VCS working copy:

            cd /tmp/doorstop

        Create an HTML directory for all documents:

            doorstop publish all path/to/htmldir

        Links: REQ007

3.0     **Importing Content**

3.1     TUT012

        **Importing a Document**

        Enter VCS working copy:

            cd /tmp/doorstop

        Import a document:

            doorstop import --document HLR reqs/hlr

        Import a document with a parent:

            doorstop import --document LLR reqs/llr --parent HLR

        Links: REQ016

3.2     TUT013

        **Importing an Item**

        Enter VCS working copy:

            cd /tmp/doorstop

        Import an item:

            doorstop import --item HLR HLR001

        Import an item with attributes:

            doorstop import --item LLR LLR001 --attr "{'text': 'The item
        text.'}"

        Links: REQ016

