From 943d0d81075a6c6d61601991bd761762962e4e2b Mon Sep 17 00:00:00 2001 From: constantinos Date: Wed, 12 Jul 2023 01:56:06 +0300 Subject: [PATCH] Uploaded all internal content (issue with articles + print) -- draft: true bc internal --- content/article/int-content.md | 99 ++++++++++ content/article/int-conventions.md | 83 +++++++++ content/article/int-infrastructure-info.md | 98 ++++++++++ content/article/int-library.md | 4 +- content/article/int-management.md | 121 ++++++++++++ content/article/int-sandpoints.md | 175 ++++++++++++++++++ content/article/int-todo.md | 56 ++++++ content/issue/int-issue-management.md | 32 ++++ content/journal/index.md | 6 +- content/print/p-issue-internal.md | 7 + static/sample/dummy-package/dummy-package.txt | 7 + static/sample/jgdr-test-illustration-3x.png | Bin 0 -> 56421 bytes static/sample/jgdr-test-illustration.svg | 1 + 13 files changed, 684 insertions(+), 5 deletions(-) create mode 100644 content/article/int-content.md create mode 100644 content/article/int-conventions.md create mode 100644 content/article/int-infrastructure-info.md create mode 100644 content/article/int-management.md create mode 100644 content/article/int-sandpoints.md create mode 100644 content/article/int-todo.md create mode 100644 content/issue/int-issue-management.md create mode 100644 content/print/p-issue-internal.md create mode 100644 static/sample/dummy-package/dummy-package.txt create mode 100644 static/sample/jgdr-test-illustration-3x.png create mode 100644 static/sample/jgdr-test-illustration.svg diff --git a/content/article/int-content.md b/content/article/int-content.md new file mode 100644 index 0000000..c4aad55 --- /dev/null +++ b/content/article/int-content.md @@ -0,0 +1,99 @@ +--- +title: "Content creation (INTERNAL)" +date: "2023-07-04T18:30:44+03:00" +author: "anybody" +contributors: ["constantinos-miltiadis.md"] +draft: true +keywords: + - internal + - journal management +abstract: | + (Internal) Guide for creating new content. +--- + +# Creating new content + +The optimal way to create new content (a new Markdown file) is via the terminal. To do so open a terminal window and navigate to the root directory of the project. The general command pattern for creating new content is: +> `hugo new /filename.md` + +Where `` corresponds to a predefined type and corresponding folder. For this project, these are `article`, `issue`, `contributor`, `editor`, and `print`. + +New content is created following `archetypes` (templates), described below. +Before creating new content, make sure to follow ![file-naming conventions](article:int-conventions). + +# Archetypes + +New content is generated following `archetypes` (see `/archetypes/`). Archetypes are Markdown files and can be thought of as templates that pertain to specific content types, and dictate what content to be included upon creating a new file. + +Currently, archetypes will be generated with instructions for their creator, in the form of a to-do list. + +The absolutely necessary information required is the TOML header of an entry. +- `title` (currently inherited from filename) +- `date` (automated date) +- `draft: true` + +## Suboptimal way to create new content +Another way to add content is to duplicate an existing MD file. However, this, along with duplicating the content of the original, will also inherit its header metadata, such as date and author. +# Steps for creating new content + +1. Create new file via the terminal. +2. Open the new file and edit header information (title, author [file creator], keywords, abstract, etc.) +3. Edit file content. +4. Commit changes via git when necessary. +5. When editing is done and the new entry is ready for publishing, change the `draft: true` to `draft: false`. +6. Commit changes via git, and include the keyword `!publish!` in your commit message, which will recompile the site. + + +# Commands and conventions for creating new files + +Please see first the article on ![file-naming conventions](article:int-conventions). + +New issue (x is issue number): + +> `hugo new issue/issue-x.md` + +New article (x is issue number): +> `hugo new article/x-short-title.md` + +New contributor: +> `hugo new contributor/name-surname.md` + +New print perspective (this will most likely break the site if the print destination file does not exist -- edit the field `print: "article/some-article.md"` accordingly): +> `hugo new print/x-p-short-title.md` + +# Parenting content + +*Sandpoints* follows a triadic hierarchy, which, here is *Journal>Issue>Article*, or: +``` +Journal + └── Issue + └── Article +``` + +Thus, a journal has issues, and issues have articles. Following the same convention, each item that has children, in its TOML header section has + +The journal TOML section has the following field: +``` +has_issues: [] +``` +And the TOML section of an issue instance has the field: +``` +has_articles: [] +``` + +## Parenting issues to the journal + +``` +--- +title: "The Journal" +has_issues: ["some-issue.md", "some-other-issue.md"] +--- +``` + +## Parenting articles to issues +``` +--- +title: "Some issue" +has_articles: ["some-article.md", "some-other-article.md"] +--- +``` diff --git a/content/article/int-conventions.md b/content/article/int-conventions.md new file mode 100644 index 0000000..a992af8 --- /dev/null +++ b/content/article/int-conventions.md @@ -0,0 +1,83 @@ +--- +title: "Conventions (INTERNAL)" +date: "2023-06-29T23:38:56+03:00" +author: "editor-put-your-name-here" +contributors: +draft: true +keywords: + - internal +abstract: | + Conventions for filenames, etc. +--- + +# Dates + +> DD.MM.YYYY + +as in 13.05.1998. In general, day first. + +# File naming conventions + +- All **lowercase** +- Use **dash as separator** +- No spaces +- No underscores + +| Type | Filename convention | Creation command | +|-|-|-| +| contributor | name-surname.md | `hugo new contributor/name-surname.md`| +| editor | name-surname.md | `hugo new editor/name-surname.md` | +| issue | issue-x.md | `hugo new issue/issue-x.md` | +| article | article-short-title.md | `hugo new article/article-short-title.md` | +| print (issue)\* | p-issue-x.md | `hugo new print/p-issue-x.md` | +| print (article)\*\* | p-article-short-title.md | `hugo new print/p-article-short-title.md` | + +\* where x is issue number +\*\* creating a new print file can break the site, until +# Files intended for *Internal* use + + +Files purposed to be for internal use, and are *not public facing*: +- start with `int-` , like this file `int-conventions.md` + +Their header file: +- features the keyword `internal` +- the draft flag is set to true, as in `draft: true` + +# Images and attachments + +> static/issue-x/author/image.png + + \ No newline at end of file diff --git a/content/article/int-infrastructure-info.md b/content/article/int-infrastructure-info.md new file mode 100644 index 0000000..8875667 --- /dev/null +++ b/content/article/int-infrastructure-info.md @@ -0,0 +1,98 @@ +--- +title: "Infrastructure Info (INTERNAL) --legacy" +date: "2023-06-24T16:22:47+03:00" +author: "anybody" +contributors: ["constantinos-miltiadis.md"] +draft: true +keywords: + - internal +abstract: | + This is an internal page that contains information on the Sandpoints infrastructure. +--- + +[Hugo]: https://gohugo.io/ "Hugo is a free and open source static website builder." + +For Sandpoints in general see ![infrastructure](article:infrastructure.md). + +# Sandpoints general + +Hugo is a framework for generating lightweight static websites. Content is created via Markdown files and requires no programming. It makes use of simple terminal commands for creating content, generating and publishing a website. + +*Sandpoints* functions as a theme for [Hugo][], which adds additional functionality catered to open publishing. Sandpoints as a Hugo theme/module: +- adds hypertext functionality, with backlinks. +- can include a project related ![library](article:int-library), and content can link to library entries. +- can generate ![printable and interactive PDFs](article:print-cite) for its content. This, for single entries, for grouped entries (issue of contributions), or for all content. PDFs containing more than one entry include a table of contents. + + +# Ontology + +Sandpoints supports a triadic hierarchy. Here we use: +- Journal + - Issue + - Article +- Editor +- Contributor +- Print + +The names of the basic triad elements are arbitrary. However: +- they have to correspond to content folders (as in `content/issue/`), +- they have to exist in the theme's dictionary with pairs singular and plural versions, as in `"article" : "articles"`. + This dictionary is located at: + - > `/_vendor/.../data/sandpointsnamegraph.json` + + +# Clone & run locally + +Hugo allows compiling + +Preparations: +- install Hugo (see [Hugo installation](https://gohugo.io/installation/)) +- install the [Go Language](https://go.dev/). +- install [Git](https://git-scm.com/). +- clone this repository. + +To run this site locally: +- open a terminal, and navigate to the root folder of this project (which includes the folder `content`). +- to run a local dynamic server with the project, run: + > `hugo server` +- to do the same and include drafts, run: + >`hugo server -D` +- to compile the site, run: + > `hugo` +- to compile the website and include drafts, run + > `hugo -D` + +# Upgrading Sandpoints + +1. Upgrade *Hugo*. + - For Windows, if *Hugo* was installed with the `choco` package manager, open a terminal as administrator and run: + > `choco upgrade hugo` + - For OSX, if *Hugo* was installed with the `homebrew` package manager, open a terminal and run: + > `brew upgrade hugo` +2. To check the version of your *Hugo* installation, run: + > `hugo version` +3. To update *Sandpoints*, navigate to the root folder of the project and run the following two commands, one at a time: + > `hugo mod get` + > `hugo mod vendor` + +# Library integration + +*Sandpoints* features a project-based library using the infrastructure of [Memory of the World](https://library.memoryoftheworld.org/) library. +You can access the project library by clicking the red button at the top right corner of the website. +Libraries are created using the open source e-book management software [Calibre](https://calibre-ebook.com/), and managed using the command line tool [Accorder](https://pypi.org/project/accorder/). + +# Notes +- For an extended description of *Sandpoints* see [Sandpoints Portfolio (sandpoints.org)](https://pages.sandpoints.org/sandpoints/simplesandpoints-de47f813/draft/portfolio/), which includes descriptions of its implementation in different projects, and related bibliography. +- [Sandoints (Gitea project repository)](https://git.sandpoints.org/Drawwell/). +- See also: + - Graziano, Valeria, Marcell Mars, and Medak Tomislav. ‘Learning from \#Syllabus’. In _State Machines: Reflections and Actions at the Edge of Digital Citizenship, Finance, and Art_, edited by Yiannis Colakides, Marc Garrrett, and Inte Gloerich. Amsterdam: Institute of Network Cultures, 2019. [http://www.statemachines.eu/books/state-machines-reflections-and-actions-at-the-edge-of-digital-citizenship-finance-and-art/](http://www.statemachines.eu/books/state-machines-reflections-and-actions-at-the-edge-of-digital-citizenship-finance-and-art/). \ No newline at end of file diff --git a/content/article/int-library.md b/content/article/int-library.md index 59771c5..a79eef7 100644 --- a/content/article/int-library.md +++ b/content/article/int-library.md @@ -7,9 +7,9 @@ draft: true keywords: - internal - library - - management + - journal management abstract: | - Library management guide for Sandpoints projects. + (Internal)Library management guide for Sandpoints projects. --- [Accorder]: https://pypi.org/project/accorder/ "Accorder at pypi.org." diff --git a/content/article/int-management.md b/content/article/int-management.md new file mode 100644 index 0000000..4b99bd3 --- /dev/null +++ b/content/article/int-management.md @@ -0,0 +1,121 @@ +--- +title: "Site Management (INTERNAL)" +date: "2023-06-24T16:10:29+03:00" +author: "anybody" +draft: true +keywords: + - internal + - journal management +abstract: | + (Internal) Technical guide for site management. +--- + +[Obsidian]: https://obsidian.md/ "Obsidian is a free-to-use cross-platform Markdown editor aimed at note-taking." +[VS Code]: https://code.visualstudio.com/ "Visual Studio Code (VS Code) is an open-source source-code editor for Windows, macOS, and Linux, developed by Microsoft." +[Sourcetree]: https://www.sourcetreeapp.com/ "Sourcetree is a free-to-use Git GUI for Windows and macOS." +[iTerm2]: https://iterm2.com/ "iTerm2 is a free and open source CLI Terminal for macOS." +[Go language]: https://go.dev/ "Go is an open-source multi-paradigm object-oriented programming language." +[Git]: https://git-scm.com/ "Git is a free and open-source distributed version control system." +[Hugo]: https://gohugo.io/ "Free and open-source static website builder." +[Hugo installation guide]: https://gohugo.io/installation/ + + +# Introduction + +This project runs on *Sandpoints*, a module/theme for the static website builder [Hugo][]. +Content is organized with plain-text Markdown files, and collaboration/version control is managed via [Git]. +Thus, with the infrastructure in place, no programming is needed + +# Required tools and installations + +To manage the site you first need to install: +1. [Git][] -- version control system. +2. [Hugo][] -- a static website builder ([see instruction below](#install-and-upgrade-hugo)). +3. It's recommended to install the [Go Language][]. + +To manage the site you need the following tools: +1. a Markdown editor (e.g. [Obsidian][]), or a code editor (e.g. [VS Code][]) or other general text editor to view and edit Markdown files. For *Obsidian*, open the `content` folder as a vault. +2. a command line interface (CLI) terminal. Windows users can use *PowerShell* or *Git Bash* (included with a Git installation). macOS users can use the default *Terminal* app, or [iTerm2][]. +3. a [Git][] management tool. Experienced Git users can use a terminal. An easier workflow would be to use a GUI git software (e.g. [Sourcetree][]), or the Git integration of [VS Code][]. + +## Library management tools +Library management requires Calibre, Accorder, and Zotero. For detailed instructions see ![Library management](article:int-library). + +## Install and upgrade Hugo + +To install [Hugo][] for your system see [Hugo installation guide] -- Hugo is installed via a package manager, e.g. *Homebrew* for macOS or *choco* for Windows. + +To upgrade _Hugo_: +- For Windows, if _Hugo_ was installed with the `choco` package manager, open a terminal as administrator and do: + ``` + choco upgrade hugo + ``` +- For macOS, if _Hugo_ was installed with the `homebrew` package manager, open a terminal and do: + ``` + brew upgrade hugo + ``` +To check the version of your _Hugo_ installation, do: +``` +hugo version +``` + +# Cloning the site + +Assuming you have access to the project repository, which should have a URL in the form of `https://github.com/fake-repo/repo.git` + +Using a terminal, go to a folder where you want to clone the repository (e.g. `c:/users/me/` for Windows), and do: +``` +git clone https://github.com/fake-repo/repo.git +``` + +This will download a copy of all the material of the repository placed inside a folder with the name of the repository (in this example `c:/users/me/repo`). + +# Editing the site + +To edit the site it's recommended use a Markdown or other text editor such as [Obsidian][] or [VS Code][]. Editing only entails working with Markdown files within the `/content/` folder of the project. See also the guides about ![content creation](article:int-content), ![naming and other conventions](article:int-conventions), and ![Markdown formatting](article:markdown-formatting). + +## Committing changes + +If inexperienced with [Git][], use a GUI tool like [Sourcetree][], that can visualize commits, and branches of the repository, and display file version differences between commits. + + + +# Building the site + +Hugo has two main ways of compiling/building a website: +1. Create a local real-time HTML server. This makes the site accessible locally via a browser on a URL like `http://localhost:1313/`. This is useful for testing, or for performing and viewing various edits locally before such changes are made public, especially because the site is updated in real-time against changes made in its content. +2. Compile a static HTML version of the site. The compiled site will be placed inside the folder `repo/public/`. The contents of this folder can be uploaded to a server (e.g. via [FileZilla][]). + +[FileZilla]: https://filezilla-project.org/ "Free and open-source cross-platform FTP software." + +## Create a local HTTP server + +Navigate to the root folder of the cloned repository (by the previous example that would be `cd c:/users/me/repo/`), and do one of the following: +- To create a local server accessible via a browser, that follows real-time changes to your repo clone, do: + ``` + hugo server + ``` +- To do the same as before, but include all draft content, do: + ``` + hugo server -D + ``` + +## Compile a static website +Navigate to the root folder of the cloned repository (by the previous example that would be `cd c:/users/me/repo/`), and do one of the following: + +- To build the website (in the folder `/public/`), do: + ``` + hugo + ``` +- To build the website including all drafts (also in the folder `/public/`), do: + ``` + hugo -D + ``` diff --git a/content/article/int-sandpoints.md b/content/article/int-sandpoints.md new file mode 100644 index 0000000..fe559fd --- /dev/null +++ b/content/article/int-sandpoints.md @@ -0,0 +1,175 @@ +--- +title: "Understanding Sandpoints (INTERNAL)" +date: "2023-07-11T18:20:10+03:00" +author: "anybody" +contributors: ["constantinos-miltiadis.md"] +draft: true +keywords: + - internal + - journal management +abstract: | + (Internal) Infromation on Sandpoints. +--- + +[Pandoc]: https://pandoc.org/ "Pandoc is a free and open-source command-line document conversion tool." +[Git]: https://git-scm.com/ "Git is a free and open-source distributed version control system." +[Hugo]: https://gohugo.io/ "Hugo is a free and open source static website builder." + +# Introduction + +For an outline of basic *Sandpoints* features see ![About this infrastructure: Sandpoints](article:infrastructure). +Here is an outline: +- *Sandpoints* is a module/theme for [Hugo][]. +- Hugo is a static website builder. + - Static websites serve a client a fixed HTML page according to a CSS and/or JavaScript files. Static websites require no dynamic processing or customizations to be performed by a server. + - Thus, static websites are lightweight, robust, fast, and given that they are simple HTML, they are resilient to technological updates. + - Static websites are also portable, meaning they can be stored, copied, and run via a USB stick. +- Content in *Hugo* and *Sandpoints* is managed with *Markdown files*. + - Markdown is an open specification for plain-text human readable files. + - Markdown files can be opened and edited by any text editor. + - Markdown formatting syntax is simple and quite easy to learn (see also ![Markdown formatting guide](article:markdown-formatting)). + - Since they are plain-text, they are extremely lightweight (this file is 6KB). + - They can easily serve distributed collaboration through version control (i.e. [Git][]). + - They can be rendered to many other formats with tools such as [Pandoc][] (e.g. to pdf, docx, etc.), which can also compile bibliographic references. +- *Sandpoints* add functionalities to *Hugo* projects pertaining to open and collaborative publishing. + - It features a particular ontology that follows a [triadic hierarchy](#ontology). + - It features extended hypertext functionalities that allow for non-linear content traversal, such as browsing entries by type, keywords, or [backlinks](#backlinks). + - All the content is open and listed at the [sitemap](/) (see also [sitemap](#sitemap)). + - It allows for entries or groups of entries to be exported into interactive and printable PDFs (see ![Print and Cite](article:print-cite)). + - It offers integration with a project-specific portable library (described in ![Library management](article:int-library)). + +# Content organization + +Content in *Sandpoints* is formatted in Markdown files, which are organized in subdirectories within the directory `/root/content/`. +Each subdirectory inside `content/` is named after and corresponds to a specific content type. + +This project features the following content types (and subdirectories): +- `journal` (the parent object, with only one instance: `index.md`) +- `issue` +- `article` +- `editor` +- `contributor` +- `print` + +# Ontology + +Sandpoints supports a triadic hierarchy. This follows that content is organized, or parented according to a tree structure with a depth of three (entities). This project follows the scheme `journal>issue>article` (other examples to visualize this content are `book>chapter>section`, and `ship>deck>room`). + +``` +Journal +└── Issue + └── Article +-Editor +-Contributor +-Print +``` + +This ontology follows that: +- there is *one* `journal` item, that serves as a parent item, +- which can have multiple `issues`, and +- each `issue` can have multiple `articles`. + +Furthermore: +- each `issue` is associated with `editors`, and +- each `article` is associated with `contributors`. + +Lastly, `print` items are used to enable printing of any of the above elements (e.g. `article`, `issue`, or the whole `journal` ). + + +Note that the names of the basic triad elements are arbitrary. However: +- they have to correspond to content folders (as in `content/issue/`), +- they have to exist in the theme's dictionary which pairs singular and plural versions of the item name, as in `"article" : "articles"`. + This dictionary is located at: + ``` + root/_vendor/.../data/sandpointsnamegraph.json + ``` + +# Parenting and associating content + +For parenting and associating items see the ![Content creation guide](article:int-content). + + + +# Sitemap + +*Sandpoints* projects feature a [sitemap](/), that lists all published content (all content that is not marked as draft). +The sitemap is at the root URL of any given project. + +# Backlinks + +The concept of backlinks was described in early speculations that informed hypertext (i.e. by Vannevar Bush and later Ted Nelson), but were not implemented the WWW. +According to these ideas, hyperlinks are bi-directional, which follows that a hyperlink is visible both in the document that features a link *and also* at the target document where the link is pointing to. The latter aspect is a backlink. By this scheme, any document knows which other documents point to it. +The same concept is used by search engine algorithms, such as 'page rank' by Google, that function by creating an index of how many webpages link to a specific target website -- or how many backlinks a given webpage has. + +*Sandpoints* allows backlinks for selected items. These can be set at the config file, at the `sandpointsMentionedIn` array (see [Sandpoints config file](#sandpoints-config-file)). + + +``` +![this is a link to an article](article:target-article) +``` + +This will + +Backlinks (as well as external and internal hyperlinks) are also catalogued at [urls](/urls/) + + +# Generate printable PDFs +_Sandpoint_ can generate printable and interactive PDFs for single entries, groups of entries (as in issues), and for all content. For PDFs containing more than one entry, _Sandpoints_ will dynamically generate a table of contents. + +To browse printable content, look for material with the ‘print’ prefix in the [sitemap](/). +To create a print version for a given entry see the ![Content creation guide](article:int-content). +See also ![Save PDFs and Cite](article:print-cite). +# Sandpoints project file structure + +The root folder of the project contains the following files and folders. + +|Folder/ or File | Description| +|--|--| +|`_vendor/` |the folder containing the *Sandpoints* theme. +|`content/` | the folder with all content (Markdown files) organized in subfolders corresponding to and named after content types. +|`archetypes/` | a folder containing templates per type for generating new content. +|`static/` |the folder containing static files (images, etc.). +|`public/` | a folder containing the build of the site (generated via the command `hugo`). +|`resources/`| a folder populated dynamically by *Hugo*. +|`data/books/catalog.json` | the library catalogue.| +|`config.toml` |the configuration file of the website project. +|`go.mod` | text file required for upgrading the Sandpoints theme. +|`go.sum` | text file that logs upgrade information. +| `.git/` | a hidden folder with data from local version control. +| `.gitignore` | a text file that dictates which files or folders to ignore from (Git) version control and backup. +| `PUBLISH.trigger.md` | git hook for automatically building the website upon certain commit messages +| `readme.md` | standard Git repository readme file. + +# Sandpoints config file + +Each Sandpoints project has a TOML config file at: +``` +rootFolder/config.toml +``` + +This is a plain-text file, that can be edited with a general text editor. + +Key elements of the config file include: +- Project title + ``` + title = "Game Design Knowledge & Practice Journal?" + ``` +- Project home + ``` + sandpointsHome = "journal/index.md" + ``` +- Description: + ``` + description = "Journal Description..." + ``` +- Which content types to have backlink mentions (see section [backlinks](#backlinks)): + ``` + sandpointsMentionedIn = ["contributor", "article" ] + ``` diff --git a/content/article/int-todo.md b/content/article/int-todo.md new file mode 100644 index 0000000..013b6ab --- /dev/null +++ b/content/article/int-todo.md @@ -0,0 +1,56 @@ +--- +title: "ToDo (INTERNAL)" +date: "2023-06-26T13:11:49+03:00" +author: "anybody" +contributors: ["constantinos-miltiadis.md"] +draft: true +keywords: + - internal +--- + + +# To-Do list + +1. [ ] Agree on and draft a mission statement. +2. [ ] Figure out editorial board (see [Potential editorial pool](#potential-editorial-pool)). +3. [ ] Submissions + 1. [ ] Open to submissions anytime, or with open calls only? + 2. [ ] Submission template. + 3. [ ] Citation style (perhaps author-date style; with explicit CSL file; see [CSL Repository](https://github.com/citation-style-language/styles)). + 4. [ ] Types of submissions (just artifact; artifact + article, etc.). + 5. [ ] Artifacts accepted for submission +5. [ ] Artifact archiving and indexing + 1. [ ] Self-hosting ZIP file in library. + 2. [ ] Embed games. + 3. [ ] Indexing artifacts with DOI (e.g. via [Zenodo](https://zenodo.org/)). +6. [ ] Populate reviewers pool. +7. [ ] Reviewer's feedback template. +8. [ ] Populate a (working group) library. + 1. [ ] Collect articles from peers to be uploaded on the journal library, which can be live-linked when referenced in articles. + 2. [ ] Collect playable artifacts that can be included in the library. +9. [ ] Establish journal ISSN (see [issn info](https://www.issn.org/wp-content/uploads/2018/01/GuidelinesExtranetPublisherRegistration-ENG.pdf)) +10. [ ] Establish GitHub account for: + 1. sharing tools + 2. forking repositories submitted as research +11. Create a Zotero translator (almost ready; see [translator](#create-a-zotero-translator)). + + +# Potential editorial pool +- Stefano Gualeni +- Konstantinos Dimopoulos (videogame urbanist, consultant, game designer, director and coordinator of the Game Design program at SAE Athens). +- Eric Zimmerman +- Not only dudes + +# Other ToDos + +## Create a Zotero Translator + +> Write a Zotero Translator to scrape reference metadata from entries of this site. + +I wrote a translator that works for Sandpoints/Dotawo, and published it on the [Sandpoints Repo](https://git.sandpoints.org/Drawwell/SandpointsTheme/issues/11). This can be easily modified to work for this project. Will wait Marcell to corroborate and push to the Zotero main repository. The same can be done for this project -- Constantinos (29.06.2023). + +For references on Zotero translators see: +- [Zotero guide for web translators](https://www.zotero.org/support/dev/translators/coding#web_translators) . +- [Guide for writing and testing a translator with Scaffold in Zotero](https://www.zotero.org/support/dev/translators/scaffold). +- [Required metadata for Journal articles](https://aurimasv.github.io/z2csl/typeMap.xml#map-journalArticle). + diff --git a/content/issue/int-issue-management.md b/content/issue/int-issue-management.md new file mode 100644 index 0000000..82568b7 --- /dev/null +++ b/content/issue/int-issue-management.md @@ -0,0 +1,32 @@ +--- +title: "Project management (Internal)" +date: "2023-06-24T16:05:06+03:00" +author: "anybody" +draft: true +has_articles: ["int-sandpoints.md", "int-infrastructure-info.md_","int-management.md","int-library.md","int-conventions.md","int-content.md","int-features.md","int-todo.md"] +keywords: + - internal +abstract: | + (Internal) 'Issue' type page, containing 'articles' related to managing and maintaining this project. +--- + +[Git]: https://git-scm.com/ "Git is a free and open-source distributed version control system." +[Hugo]: https://gohugo.io/ "Free and open-source static website builder." + +# Introduction + +This project runs on *Sandpoints*, a module/theme for the static website builder [Hugo][]. +Sandpoints is developed for free, open, and collaborative publishing using open-source infrastructure. +Content is organized with plain-text Markdown files, and collaboration/version control is managed via [Git]. +Thus, with the infrastructure in place, no programming is needed. + +However, for managing and maintaining the site in a sustainable manner, as well as for processing/publishing submissions, *some knowledge is required pertaining to how this infrastructure works and how it can be maintained; how to work with ![Markdown files](article:markdown-formatting); how to manage distributed collaboration via a version control system; and adherence to the agreed upon conventions.* + +This is an internal 'issue' (supposed to remain non-public, intended as a 'living document'), which contains the following 'articles': + +1. ![Understanding Sandpoints](article:int-sandpoints), gives an overview of the philosophy of *Sandpoints*. +2. ![Site management](article:int-management) contains instruction and guides for maintainers of the site. +3. ![Content creation](article:int-content) contains a guide for creating new content in a consistent and reliable way. +4. ![Conventions](article:int-conventions) is intended for gathering conventions we should go by. +5. ![Library management](article:int-library), contains a guide for the library maintainers and contributors. +6. ![Feature requests and issues](article:int-features), is intended for listing potential required features, or filing issues. \ No newline at end of file diff --git a/content/journal/index.md b/content/journal/index.md index 759757d..7bc6b77 100644 --- a/content/journal/index.md +++ b/content/journal/index.md @@ -3,7 +3,7 @@ title: "Game Design Knowledge & Practice Journal (WIP/Test)" date: "2023-06-24T15:20:45+03:00" author: "anybody" draft: false -has_issues: ["issue-x.md", "issue-0.md", "int-housekeeping.md", "issue-journal-info.md"] +has_issues: ["issue-x.md", "issue-0.md", "int-issue-management.md", "issue-journal-info.md"] --- This is the journal home. @@ -16,8 +16,8 @@ See ![Submission guidelines](article:submission-guide). # Editorial board -- ![Jane Editor](editor:jane-editor), affiliation (?) -- ![Joe Editor](editor:joe-editor), some affiliation. +- ![Jane Editor](editor:jane-editor) +- ![Joe Editor](editor:joe-editor) # Browse content - [Sitemap with all content](/) diff --git a/content/print/p-issue-internal.md b/content/print/p-issue-internal.md new file mode 100644 index 0000000..0c148f8 --- /dev/null +++ b/content/print/p-issue-internal.md @@ -0,0 +1,7 @@ +--- +title: "Internal Issue Print" +date: "2023-07-12T01:43:17+03:00" +author: "anybody" +draft: true +print: "issue/int-issue-management.md" +--- diff --git a/static/sample/dummy-package/dummy-package.txt b/static/sample/dummy-package/dummy-package.txt new file mode 100644 index 0000000..8f617f9 --- /dev/null +++ b/static/sample/dummy-package/dummy-package.txt @@ -0,0 +1,7 @@ +This is a dummy file + +Include a ZIP with: +- Markdown template +- CSL file +- Bib sample +- Word/ODT template \ No newline at end of file diff --git a/static/sample/jgdr-test-illustration-3x.png b/static/sample/jgdr-test-illustration-3x.png new file mode 100644 index 0000000000000000000000000000000000000000..b06cd7c13f55538821a973e25f9df7b09b759e00 GIT binary patch literal 56421 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μ~GqY_k)Y5!oLayaeF=^?K!SA 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 is a sample illustration (700x300)10pt text15pt text25pt text1pt line1pt dashed line 5-52pt line \ No newline at end of file