Skip to content
Snippets Groups Projects
  1. Jun 30, 2021
  2. May 10, 2021
  3. Apr 29, 2021
    • Arnaud Ferraris's avatar
      Enable table of contents for relevant pages · baf9ff9a
      Arnaud Ferraris authored
      
      This commit enables the generation and display of the ToC on all pages
      where it's relevant due to the content size.
      
      More pages could have been included but left aside due to inconsistent
      use of heading levels leading to rendering/visual glitches.
      
      The pages' content has not been modified, except for the "Terms of use"
      page which included a manually-generated ToC.
      
      Signed-off-by: default avatarArnaud Ferraris <arnaud.ferraris@collabora.com>
      baf9ff9a
  4. Sep 03, 2020
  5. Aug 27, 2020
  6. Aug 26, 2020
    • Martyn Welch's avatar
      Add creation dates to designs documents · 277ef847
      Martyn Welch authored
      
      The metadata in each file on designs.apertis.org didn't contain a creation
      date, however this is the primary means that we are ordering the documents
      by on the new Apertis website so that the newer documents are listed
      first.
      
      Whilst the documents don't contain a creation date, they are stored in a
      git repository that can provide us with this information. Add the
      retrieved dates into the front matter.
      
      Signed-off-by: default avatarMartyn Welch <martyn.welch@collabora.com>
      277ef847
  7. Aug 05, 2020
  8. Jul 29, 2020
    • Martyn Welch's avatar
      Minor tidy up of designs · e26083c0
      Martyn Welch authored and Emanuele Aina's avatar Emanuele Aina committed
      
      A number of broken links remained after scripted conversion and a
      number of spurious code blocks were found in the docs. Clean these up
      so that the documents render correctly.
      
      Signed-off-by: default avatarMartyn Welch <martyn.welch@collabora.com>
      e26083c0
    • Martyn Welch's avatar
      Fix links in imported designs · af5a2a88
      Martyn Welch authored and Emanuele Aina's avatar Emanuele Aina committed
      
      A lot of the links in the imported designs are broken:
      
      - HotDoc allowed a `[][link]` format that Hugo doesn't understand
      - HotDoc allowed relative links without text, which Hugo doesn't handle
      - The location of the images and other media has changed
      - The format used for internal page references has is different
      
      Additionally, fix up touched links to other Apertis pages to use the
      Hugo "ref" shortcode, which reduces the risk of leaving hanging links.
      
      Conversion completed with the following python script:
      
      ```
      
      import os
      import re
      import sys
      
      def url_munge(match):
          url = match.group('url').strip('.')
          if url[0] != "/":
              url = "/%s" % url
          url = url.replace("media", "images")
          link = ("![](%s)" % url)
      
          return link
      
      def link_munge(match):
          link = match.group('link')
          new = link.replace("(", "")
          new = new.replace(")", "")
          new = new.replace("`", "")
          new = new.replace("?", "")
          new = new.replace(":", "")
          new = new.replace(",", "")
          new = new.replace("–", "")
          new = new.replace("“", "")
          new = new.replace("”", "")
          new = new.replace(".", "")
          new = new.replace(" ", "-")
          new = new.lower()
          new = (" [%s]( {{< ref \"#%s\" >}} )" % (link, new))
      
          return new
      
      def link_munge_2(match):
          link = match.group('link')
          new = link.replace("#", "")
          new = new.replace("-", " ")
          new = new.replace(".md", "")
          if not "http" in link:
              link = " {{< ref \"%s\" >}} " % link
      
          new = ("[%s](%s)" % (new, link))
      
          return new
      
      for filename in os.listdir(sys.argv[1]):
          #print("%s: " % filename)
          with open(filename, 'r+') as file:
              contents = file.read()
      
              # Hotdoc uses `[][Internal Title]` for internal links whilst Hugo uses `[](#internal-title)`
              pattern = re.compile("\[\]\[(?P<link>.*?)\]")
              contents = pattern.sub(link_munge, contents)
      
              # Hotdoc allows empty links like `[](url)`
              pattern = re.compile("[^!]\[\]\((?P<link>.*?)\)")
              contents = pattern.sub(link_munge_2, contents)
      
              # Media links not working
              pattern = re.compile("!\[\]\((?P<url>.*?)\)")
              contents = pattern.sub(url_munge, contents)
      
              file.seek(0)
              file.truncate()
      
              file.write(contents)
      
      ```
      
      Signed-off-by: default avatarMartyn Welch <martyn.welch@collabora.com>
      af5a2a88
    • Martyn Welch's avatar
      Convert hotdoc code blocks · 1495ab3f
      Martyn Welch authored and Emanuele Aina's avatar Emanuele Aina committed
      
      Hotdoc allows "---" to be used for a code block, this is not supported
      by Hugo, it needs to use "```". Convert uses of the former with:
      
        sed 's/^---$/```/' -i *
      
      Signed-off-by: default avatarMartyn Welch <martyn.welch@collabora.com>
      1495ab3f
    • Martyn Welch's avatar
      Convert hotdoc metadata to Hugo frontmatter · 6858b920
      Martyn Welch authored and Emanuele Aina's avatar Emanuele Aina committed
      
      Convert the existing metadata stored at the front of each file to
      frontmatter formatted for Hugo:
      
       - Remove authors as we don't have an equivalent for that in Hugo
       - Add in fields that the existing metadata doesn't have
       - Include aliases to allow us to point to the new pages from a
         redirect on designs.apertis.org
       - Ensure we have a title (based on filename if one not present)
      
      All frontmatter created in toml format to stay consistent with existing
      documents.
      
      Converted using the following python script:
      ```
      
      import os
      import re
      import sys
      import toml
      import yaml
      
      for filename in os.listdir(sys.argv[1]):
          print("%s: " % filename)
          with open(filename, 'r+') as file:
              contents = file.read()
              if contents[0:3] == "+++":
                  # We have toml
                  data = toml.loads(contents.split("+++")[1])
                  doc = "+++".join(contents.split("+++")[2:])
              elif contents[0:3] == "---":
                  # We have yaml
                  data = yaml.load(contents.split("---")[1])
                  doc = "---".join(contents.split("---")[2:])
              else:
                  # No frontmatter
                  data = {}
                  doc = contents
      
              if not "title" in data.keys():
                  data["title"] = filename.split(".")[0].replace('_', ' ').capitalize()
      
              data["weight"] = 100
              data["aliases"] = ["/old-designs/latest/%s" % filename.replace(".md", ".html")]
      
              data["outputs"] = ["html", "pdf-in"]
      
              if "authors" in data.keys():
                  del data["authors"]
      
              file.seek(0)
              file.truncate()
      
              file.write("+++\n")
              file.write(toml.dumps(data))
              file.write("+++")
              file.write(doc)
      ```
      
      Signed-off-by: default avatarMartyn Welch <martyn.welch@collabora.com>
      6858b920
    • Martyn Welch's avatar
      Add designs from designs.a.o · c21b22f9
      Martyn Welch authored and Emanuele Aina's avatar Emanuele Aina committed
      
      Add the designs from designs.a.o with the minimum changes to get the
      site to build. This essentially required to trailing marker for the
      metadata to be changed from "..." to "---".
      
      Signed-off-by: default avatarMartyn Welch <martyn.welch@collabora.com>
      c21b22f9
Loading