From 2f69297acba4b67b64b3094185a3370395d6bad1 Mon Sep 17 00:00:00 2001 From: ckipp01 Date: Fri, 18 Oct 2019 07:04:22 +0200 Subject: [PATCH] small updates --- .github/ISSUE_TEMPLATE/portal-issue.md | 10 ++++++++++ README.md | 5 ++--- scripts/sites.js | 16 ++++++++++------ 3 files changed, 22 insertions(+), 9 deletions(-) create mode 100644 .github/ISSUE_TEMPLATE/portal-issue.md diff --git a/.github/ISSUE_TEMPLATE/portal-issue.md b/.github/ISSUE_TEMPLATE/portal-issue.md new file mode 100644 index 0000000..4633ca1 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/portal-issue.md @@ -0,0 +1,10 @@ +--- +name: Portal issue +about: Report an issue with the Portal +title: '' +labels: portal +assignees: neauoire, kodedninja, joshavanier, ckipp01 + +--- + +**Please describe the issue in the portal:** diff --git a/README.md b/README.md index a7bcd5a..fdeac02 100644 --- a/README.md +++ b/README.md @@ -18,14 +18,14 @@ Only the `url`, `contact`, and `langs` keys are required to join the webring. Be ``` js { /* REQUIRED */ - url: , contact: , langs: , + url: , /* also possible */ + rss: , title: , type: , - rss: , /* for WIKI */ author: , @@ -82,7 +82,6 @@ If you'd prefer to interact with the webring through your terminal, you can clon This repository does not contain mature API capabilities, but there are a couple ways to request a list of sites and other information currently in the webring. - Request [sites.js on xxiivv](https://webring.xxiivv.com/scripts/sites.js) or [sites.js on github](https://raw.githubusercontent.com/XXIIVV/webring/master/scripts/sites.js) and parse it. An example can be seen [here](https://gist.github.com/ckipp01/2ab7ac42e2837b4359efeb76eb49bb54). -- If you'd like a already parsed list, [webring-checker.now.sh/sites](https://webring-checker.now.sh/sites) will return an json array of the site objects in the webring. See [webring-checker.now.sh](https://webring-checker.now.sh) for more info on what else is available. ## Need Help? diff --git a/scripts/sites.js b/scripts/sites.js index 07c071c..323ab11 100644 --- a/scripts/sites.js +++ b/scripts/sites.js @@ -1,8 +1,5 @@ 'use strict' -// Don't forget the comma! No trailing slashes -// protocol://url.domain.ext - const sites = [ { author: 'neauoire', @@ -751,7 +748,7 @@ const sites = [ url: 'https://royniang.com', wiki: 'https://telecom.royniang.com/usefulnotes.ndtl' }, - + { author: 'raul altosaar', contact: 'raul.altosaar@gmail.com', @@ -771,10 +768,17 @@ const sites = [ }, { - url: 'https://www.johannesg.com', contact: 'johannesg@johannesg.com', langs: ['en'], title: 'Jóhannes Gunnar Þorsteinsson', - type: 'hybrid' + type: 'hybrid', + url: 'https://www.johannesg.com' } + + // Make sure you've read the README! + // Don't forget the comma on the previous entry! + // No trailing slashes or commas! + // Alphabetize your keys! + // protocol://url.domain.ext + ]