1. 04 Apr, 2017 5 commits
    • Sean Hammond's avatar
      Change "host name" to "hostname" · 9c055c95
      Sean Hammond authored
      This is for consistency with our variable names and, for example,
      environment variable names which use `HOSTNAME` rather than `HOST_NAME`.
      9c055c95
    • Sean Hammond's avatar
      Wrap lines in rst files to 80 chars · 1143991c
      Sean Hammond authored
      1143991c
    • Sean Hammond's avatar
      Convert mobile.md to mobile.rst · 29c168c4
      Sean Hammond authored
      I want this file to be in rst so that I can use some rst features in it
      in future commits. The main changes in order to translate from markdown
      to rst are:
      
      * Inline `<code>` requires double-backticks not single
      
      * These titles don't work:
      
        ```
        # Heading
      
        ## Subheading
        ```
      
        They should be:
      
        ```
        Heading
        =======
      
        Subheading
        ----------
        ```
      
      * To get an auto-numbered list, repeatedly using 1 doesn't work:
      
        ```
        1. First item
        1. Second item
        1. Third item
        ```
      
        Instead use `#`:
      
        ```
        #. First item
        #. Second item
        #. Third item
        ```
      
      * Paragraphs starting with `**Tip**:` (and with the contents in italics)
        now become proper tip blocks:
      
        ```
        .. tip::
      
           If the output of ``hostname`` does not include a ``.home`` or ``.local``
           suffix, you may need to append ``.local`` to get a host name that is accessible from
           other devices on the network. If you have problems using the host name, try
           using the IP address instead.
        ```
      
        Sphinx renders these boxes as `<div class="admonition tip">` and
        they're styled by your Sphinx theme (as opposed to hardcoding the tip
        is in bold and the body is italics but otherwise it's just a `<p>`).
      
      * Code blocks are like this:
      
        ```
        .. code-block:: sh
      
           First line of code
           Second line of code
        ```
      29c168c4
    • Sean Hammond's avatar
      Merge pull request #324 from hypothesis/remove-unused-props · 4ca009d4
      Sean Hammond authored
      Remove unused controller properties
      4ca009d4
    • Sean Hammond's avatar
      Merge pull request #323 from hypothesis/remove-ng-cloak · cd3d2d41
      Sean Hammond authored
      Remove obsolete `ng-cloak` directives
      cd3d2d41
  2. 03 Apr, 2017 12 commits
  3. 31 Mar, 2017 23 commits