From b0f1b66956a241b7e339caa266043df743ddcc2d Mon Sep 17 00:00:00 2001 From: luca0N! Date: Wed, 2 Mar 2022 18:39:37 -0300 Subject: [PATCH] Added example configuration file Added an example .ini-like configuration file, required by SWG. --- swg.example.cfg | 76 +++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 76 insertions(+) create mode 100644 swg.example.cfg diff --git a/swg.example.cfg b/swg.example.cfg new file mode 100644 index 0000000..d8ae04c --- /dev/null +++ b/swg.example.cfg @@ -0,0 +1,76 @@ +# SWG Context Configuration File +# + +# This is a very minimal .ini-like configuration file. +# +# Comments are allowed at the beginning of a new line starting with the '#' +# character. + +[General] +# General website configuration. + +# This is the name of the website, which will be used to display in page +# headers as well as in the HTML title of pages. +WebsiteName="My Website" +# This specifies the website publisher. +WebsitePublisher="John Doe" + +# Copyright +# +# Now we'll define a couple of copyright-related options which will be used to +# generate copyright disclaimer text shown in the footer of all pages. + +# WebsiteCopyrightHolder specifies the copyright holder of the content +# published on the website. Multiple copyright holders can be specified here. +# If this value is set to "N/A", SWG will not show the copyright holder. You +# should specify the copyright holder here if you're not using a non-public +# domain license. +WebsiteCopyrightHolder="N/A" +# This defines the copyright year or copyright years of the published content. +# You shoiuld specify this even if your website content is in the public domain. +# +# Example values: +# - 2019-2022 +# - 1965-1970, 2000-2005, 2008, 2012-2022 +# - 2020, 2022 +# - 2022 +WebsiteCopyrightYears="2022" +# This defines the license of the published content. If SWG detects a public +# domain license, a different copyright disclaimer will be shown. Use +# "AllRightsReserved," "PublicDomain," or a SPDX license identifier. A "unless +# otherwise stated" disclaimer will also be shown on the copyright notice, so +# you should specify the general default license here while manually specifying +# other licenses where applicable. +# +# WARNING: keep in mind that by using a public domain license, you waive your +# rights, so you can't change the license later! +# +# SPDX license list: . +# +# Example values: +# - AllRightsReserved +# - PublicDomain +# - CC0 # Creative Commons public domain +# - CC-BY-SA-4.0 # Creative Commons Attribution-ShareAlike 4.0 Generic +# - GFDL-1.3-only # GNU Free Documentation License (version 1.3 only) +WebsiteContentLicense="CC0" + +[Blogs] +# Multiple blog areas are allowed here. + +# Start with Blog1, and then increase the number '1' to add another +# blog. +# +# BlogNPath specifies the path (relative to this directory) containing articles that belong to this blog. +# BlogNName specifies the name of the current blog. +# BlogNDir specifies the name of the subdirectory that will store all articles for that specific blog. + +#Blog1Path="./blog/personal/" +#Blog1Name="My Personal Blog" +#Blog1Dir="personal" + +#Blog2Path="./blog/announcements/" +#Blog2Name="My Announcements Blog" +#Blog2Dir="announcements" + +#...