Skip to content
Snippets Groups Projects
  1. Jul 08, 2021
    • Martyn Welch's avatar
      Don't promote daily images and set expectations for booting in VirtualBox · 026386ca
      Martyn Welch authored and Frederic Danis's avatar Frederic Danis committed
      
      We link to the hardware reference page from the home page, as a result this
      page is likely to be one which is visited by people generally unfamilar with
      Apertis.
      
      We should not promote the use of daily images to those likely to be looking to
      evaluate Apertis - they should be using the stable images.
      
      Booting non-SDK images in VirtualBox is not a supported option, so whilst it
      works for many images, this is not guaranteed (and the minimal OSTree images
      are known not to boot in VirtualBox). Set expectations with regards to running
      in this configuration.
      
      Signed-off-by: default avatarMartyn Welch <martyn.welch@collabora.com>
      026386ca
  2. Jun 21, 2021
    • Martyn Welch's avatar
      Remove important references to v2019 from website · 446d358b
      Martyn Welch authored
      
      The v2019 release has reached the end of its support period. It also marks the
      point at which we are now fully into the current Apertis release cadence, with
      a development, stable and old stable release being supported.
      
      Remove the pointer to the "old old stable" from the main page, the data from
      the releases file and the reference to the supported version of Virtual Box.
      
      Signed-off-by: default avatarMartyn Welch <martyn.welch@collabora.com>
      446d358b
  3. Jun 15, 2021
    • Ariel D'Alessandro's avatar
      virtualbox: Document VirtualBox OVA appliance image · 18687085
      Ariel D'Alessandro authored
      
      Current SDK images requests to manually setup the Virtual Machine in
      VirtualBox, as we're only provinding the disk image (.vdi file).
      
      Support to generate a VirtualBox Appliance image (.ova file) that works
      out of the box has been recently added to `apertis-image-recipes`.
      
      Starting Apertis release version `v2022`, SDK images will be uploaded in
      OVA format. Let's document that and still keep the previous `.vdi` disk
      image setup for old versions reference.
      
      Signed-off-by: default avatarAriel D'Alessandro <ariel.dalessandro@collabora.com>
      18687085
  4. May 31, 2021
  5. 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
  6. Feb 03, 2021
  7. Oct 19, 2020
    • Martyn Welch's avatar
      Merge VirtualBox documentation · 568f6b6a
      Martyn Welch authored
      
      The VirtualBox documentation from developer.apertis.org broadly covers the
      same topics as the VirtualBox documentation the already existed on the main
      website. Merge these together. Topics not closely tied to VirtualBox have
      been moved to other pieces of documentation where they are better suited.
      
      Signed-off-by: default avatarMartyn Welch <martyn.welch@collabora.com>
      568f6b6a
  8. Jul 29, 2020
    • Martyn Welch's avatar
      Updating old links · ee26b8cf
      Martyn Welch authored and Emanuele Aina's avatar Emanuele Aina committed
      
      After moving the documents from designs.a.o to www.a.o, there were
      quite a few links from the designs.a.o docs pointing to wiki.a.o and
      quite a few links from www.a.o pointing to designs.a.o. Replace these
      links with Hugo ref shortcodes to avoid hammering the redirects.
      
      This was achieved with the following script:
      
      ```
      
      import os
      import re
      import sys
      import toml
      
      from urllib.parse import urlparse
      
      def get_aliases(filename):
          #print("%s: " % filename)
          with open(filename, 'r') as file:
              contents = file.read()
              if not contents[0:3] == "+++":
                  return
      
              if "_index.md" in filename:
                  filename = filename.strip(".")
              else:
                  filename = filename.split("/")[-1]
      
              data = toml.loads(contents.split("+++")[1])
      
              if not "aliases" in data.keys():
                  return
      
              for alias in data["aliases"]:
                  if "/old-wiki/" in alias:
                      wiki_aliases[alias.replace("/old-wiki/", "/")] = filename
      
                  if "/old-designs/" in alias:
                      # We're dropping the per-release links from designs.a.o, so match on shorter path
                      design_aliases[alias.replace("/old-designs/latest/", "/")] = filename
      
      def fix_link(url):
          link = url.group('link')
      
          url = urlparse(link)
      
          if url.netloc == "wiki.apertis.org":
              if url.path in wiki_aliases.keys():
                  url = url._replace(scheme="")
                  url = url._replace(netloc="")
                  url = url._replace(path=wiki_aliases[url.path])
                  link = " {{< ref \"%s\" >}} " % url.geturl()
      
          if url.netloc == "designs.apertis.org":
              # We're dropping the per-release links from designs.a.o, so match on shorter path
              path = "/%s" % url.path.split('/', 2)[-1]
              print(path)
              if path in design_aliases.keys():
                  url = url._replace(scheme="")
                  url = url._replace(netloc="")
                  url = url._replace(path=design_aliases[path])
                  link = " {{< ref \"%s\" >}} " % url.geturl()
      
          return "](%s)" % link
      
      def fix_ref(url):
          link = url.group('link')
      
          url = urlparse(link)
      
          if url.netloc == "wiki.apertis.org":
              if url.path in wiki_aliases.keys():
                  url = url._replace(scheme="")
                  url = url._replace(netloc="")
                  url = url._replace(path=wiki_aliases[url.path])
                  link = " {{< ref \"%s\" >}} " % url.geturl()
      
          if url.netloc == "designs.apertis.org":
              # We're dropping the per-release links from designs.a.o, so match on shorter path
              path = "/%s" % url.path.split('/', 2)[-1]
              print(path)
              if path in design_aliases.keys():
                  url = url._replace(scheme="")
                  url = url._replace(netloc="")
                  url = url._replace(path=design_aliases[path])
                  link = " {{< ref \"%s\" >}} " % url.geturl()
      
          return "]: %s" % link
      
      def correct_links(filename):
          #print("%s: " % filename)
          with open(filename, 'r+') as file:
              contents = file.read()
      
              if not contents[0:3] == "+++":
                  return
      
              fm = contents.split("+++")[1]
              doc = contents.split("+++",2)[2]
      
              # Hotdoc allows empty links like `[](url)`
              pattern = re.compile("\]\((?P<link>.*?)\)")
              doc = pattern.sub(fix_link, doc)
      
              pattern = re.compile("\]: (?P<link>.*)")
              doc = pattern.sub(fix_ref, doc)
      
              file.seek(0)
              file.truncate()
      
              file.write("+++")
              file.write(fm)
              file.write("+++")
              file.write(doc)
      
      wiki_aliases = {}
      design_aliases = {}
      
      for root, dirs, files in os.walk(sys.argv[1]):
          for file in files:
              if ".md" in file:
                  get_aliases("%s/%s" %(root, file))
      
      print("wiki_aliases:")
      print(wiki_aliases)
      print("design_aliases:")
      print(design_aliases)
      
      for root, dirs, files in os.walk(sys.argv[1]):
          for file in files:
              if ".md" in file:
                  correct_links("%s/%s" %(root, file))
      ```
      
      Signed-off-by: default avatarMartyn Welch <martyn.welch@collabora.com>
      ee26b8cf
  9. Jun 30, 2020
    • Martyn Welch's avatar
      Give VirtualBox page weighting · ef21216b
      Martyn Welch authored and Emanuele Aina's avatar Emanuele Aina committed
      
      The weighting of the pages is used to order them on the site, with pages of
      equal weight being sorted by date. The default weight in Hugo is 0, the lowest
      weight. The virtualbox page currently doesn't specify a weight, this results in
      the VirtualBox page being dropped to the bottom of the sorting even though it's
      one of the newest pages.
      
      Providing pages with our own default weight gives us the flexibility to demote
      content in the future that we want to keep, but wish to have lower priority.
      For now, give the VirtualBox page the same weighting as the other pages so that
      it doesn't sink to the bottom.
      
      Signed-off-by: default avatarMartyn Welch <martyn.welch@collabora.com>
      ef21216b
  10. Jun 17, 2020
    • Martyn Welch's avatar
      Sort out the "sdk" page · 5e289fcf
      Martyn Welch authored
      
      The SDK page is a mess, rather than describing the SDK, it provides some
      examples of how to use the (legacy) Canterbury Application Framework.
      
      - Move this page to `ade.md` rather than `sdk.md`
      - Update ade example as it's broken (we can use the actually tested
        workflow)
      - Remove the documention describing the Apertis Eclipse Plugin. This
        doesn't seem to have been available since before v2019, so is
        effectively unsupported at this point.
      - Update references to the SDK page to point to the best description of
        the SDK we currently seem to have on designs.a.o for now.
      
      Signed-off-by: default avatarMartyn Welch <martyn.welch@collabora.com>
      5e289fcf
  11. Jun 16, 2020
  12. Jun 10, 2020
Loading