1
1
mirror of https://github.com/XXIIVV/webring.git synced 2024-07-07 07:16:18 +03:00

small updates

This commit is contained in:
ckipp01 2019-10-18 07:04:22 +02:00
parent e381cee3cd
commit 2f69297acb
3 changed files with 22 additions and 9 deletions

10
.github/ISSUE_TEMPLATE/portal-issue.md vendored Normal file
View File

@ -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:**

View File

@ -18,14 +18,14 @@ Only the `url`, `contact`, and `langs` keys are required to join the webring. Be
``` js
{
/* REQUIRED */
url: <string url used for Portal>,
contact: <string used to contact if necessary>,
langs: <array of represented languages (iso codes) ex. ['en', 'fr']>,
url: <string url used for Portal>,
/* also possible */
rss: <string url for rss or atom feed>,
title: <string displayed alphanumeric name, used for the Portal>,
type: <string used for the Portal, ex. 'blog'>,
rss: <string url for rss or atom feed>,
/* for WIKI */
author: <string used in WIKI and HALLWAY>,
@ -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?

View File

@ -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
]