Skip to content

Commit

Permalink
Here's the abandoned flag
Browse files Browse the repository at this point in the history
  • Loading branch information
dertuxmalwieder committed Oct 29, 2016
1 parent f2b267d commit 676fd67
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,7 @@ Accepted project fields:
- `static site editor` a project that a custom editing experience for static website content, such as Contentful and Prose.io, or even Grav's admin plugin
- `other` if some other type of project that is related to flat-file content management systems or static website generators
- `extensible` should be `true` or `false` providing whether or not the project provides a way for users to add new features
- `abandoned` can be `true` to signal that the author decided to pull the plug on future updates

Dates should be in ISO format which looks like this `2006-08-18T16:00:00.000Z`. Conversion can be done with JavaScript using `console.log(new Date('19-Aug-2006').toISOString())` or via the command line using Node.js via `node -e "console.log(new Date('19-Aug-2006').toISOString())"`.

Expand Down
9 changes: 6 additions & 3 deletions list.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,8 @@
"name": "acrylamid",
"github": "posativ/acrylamid",
"website": "https://posativ.org/acrylamid/",
"license": "BSD-2-Clause"
"license": "BSD-2-Clause",
"abandoned": true
},
{
"name": "AkashaCMS",
Expand Down Expand Up @@ -169,7 +170,8 @@
"license": "MIT",
"language": "Perl",
"description": "Blosxom (pronounced blossom) is a lightweight yet feature-packed weblog application designed from the ground up with simplicity, usability, and interoperability in mind.",
"created_at": "2002-02-28T00:00:00Z"
"created_at": "2002-02-28T00:00:00Z",
"abandoned": true
},
{
"name": "Blug",
Expand Down Expand Up @@ -1577,7 +1579,8 @@
"name": "PyBlosxom",
"github": "pyblosxom/pyblosxom",
"website": "http://pyblosxom.github.io/",
"license": "MIT"
"license": "MIT",
"abandoned": true
},
{
"name": "PyBlue",
Expand Down
2 changes: 1 addition & 1 deletion util.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
module.exports.sourcePath = './list.json'
module.exports.renderPath = './out.json'

module.exports.keyorder = 'name github gitlab bitbucket website license language description created_at updated_at is extensible stars forks watchers'
module.exports.keyorder = 'name github gitlab bitbucket website license language description created_at updated_at abandoned is extensible stars forks watchers'

module.exports.sort = function sort (data) {
return data.sort((a, b) => {
Expand Down

1 comment on commit 676fd67

@balupton
Copy link
Member

@balupton balupton commented on 676fd67 Oct 29, 2016

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Closes #283

Please sign in to comment.