-
Notifications
You must be signed in to change notification settings - Fork 33
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #271 from Pylons/hugo
Hugo and webpack
- Loading branch information
Showing
375 changed files
with
11,365 additions
and
12,631 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
{ | ||
"parser": "babel-eslint", | ||
"env": { | ||
"browser": true, | ||
"node": true | ||
}, | ||
"rules": { | ||
"strict": 0, | ||
"indent": 2, | ||
"quotes": [2, "single"] | ||
"strict": ["error", "global"], | ||
"indent": ["error", 2], | ||
"quotes": ["error", "single"] | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,8 @@ | ||
build | ||
env | ||
node_modules | ||
workflow | ||
npm-debug.log | ||
.idea | ||
/node_modules | ||
/static | ||
/resources | ||
/dist | ||
/public | ||
/data/manifest.json | ||
yarn-error.log | ||
.DS_Store | ||
.python-version | ||
package-lock.json |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
v13 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
--- | ||
title: "{{ replace .Name "-" " " | title }}" | ||
date: {{ .Date }} | ||
draft: true | ||
--- | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
module.exports = { | ||
presets: [ | ||
[ | ||
'@babel/preset-env', | ||
{ | ||
corejs: 3, | ||
useBuiltIns: 'usage', | ||
}, | ||
], | ||
], | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
baseURL = "/" | ||
|
||
languageCode = "en-us" | ||
title = "Welcome to Pyramid, a Python Web Framework" | ||
googleAnalytics = "UA-21146943-3" | ||
|
||
uglyurls = true | ||
|
||
disableKinds = ["RSS", "taxonomy", "taxonomyTerm"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
--- | ||
title: "Welcome to Pyramid, a Python Web Framework" | ||
needsTsNav: true | ||
--- |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
--- | ||
title: "Colors" | ||
layout: colors | ||
--- |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
--- | ||
title: "Artwork" | ||
layout: community-artwork | ||
--- |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
--- | ||
title: "Events" | ||
layout: community-events | ||
--- |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
--- | ||
title: "Feeds" | ||
layout: community-feeds | ||
--- |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
--- | ||
title: "Powered by Pyramid" | ||
layout: community-powered-by-pyramid | ||
--- |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
--- | ||
title: "Sponsors" | ||
layout: community-sponsors | ||
--- |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
--- | ||
title: "Enter the Tomb" | ||
layout: community | ||
--- |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
--- | ||
title: "Documentation" | ||
layout: documentation | ||
--- |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
--- | ||
title: "Extending Pyramid" | ||
layout: extending-pyramid | ||
--- |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
addon: false | ||
category: | ||
- development-environment | ||
demoUrl: '' | ||
description: A Pyramid library and demo application with a Pylons-like feel. Its most | ||
known for its former application scaffold, which helped users transition from Pylons | ||
and those preferring a more Pylons-like API. The scaffold has been retired but the | ||
demo plays a similar role. | ||
docsUrl: http://docs.pylonsproject.org/projects/akhet/en/latest/ | ||
maintainers: | ||
- Mike Orr | ||
name: Akhet | ||
projectUrl: '' | ||
pypiUrl: https://pypi.org/project/Akhet | ||
support: community | ||
vcsUrl: https://github.com/Pylons/akhet |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
addon: false | ||
category: | ||
- authentication | ||
demoUrl: https://authomatic-example.appspot.com/ | ||
description: Simple yet powerful authorization and authentication client library for | ||
Python web applications. | ||
docsUrl: http://peterhudec.github.io/authomatic/reference/index.html | ||
maintainers: | ||
- peterhudec | ||
name: Authomatic | ||
projectUrl: http://peterhudec.github.io/authomatic/ | ||
pypiUrl: https://pypi.org/project/Authomatic | ||
support: community | ||
vcsUrl: https://github.com/peterhudec/authomatic |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
addon: false | ||
category: | ||
- development-environment | ||
demoUrl: '' | ||
description: Cliquet is a toolkit to ease the implementation of HTTP microservices, | ||
such as data-driven REST APIs. | ||
docsUrl: http://cliquet.readthedocs.org/en/latest/ | ||
maintainers: | ||
- Mozilla Services | ||
- n1k0 | ||
- tarek | ||
- alexis.metaireau | ||
- leplatrem | ||
- Natim | ||
name: Cliquet | ||
projectUrl: '' | ||
pypiUrl: https://pypi.org/project/cliquet | ||
support: community | ||
vcsUrl: https://github.com/mozilla-services/cliquet |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
addon: false | ||
category: | ||
- forms | ||
demoUrl: '' | ||
description: Auto-generate Colander schemas that are based on SQLAlchemy mapped classes. | ||
docsUrl: http://colanderalchemy.readthedocs.org/en/latest/ | ||
maintainers: | ||
- tisdall | ||
- stefanofontanelli | ||
name: ColanderAlchemy | ||
projectUrl: '' | ||
pypiUrl: https://pypi.org/project/ColanderAlchemy | ||
support: community | ||
vcsUrl: https://github.com/stefanofontanelli/ColanderAlchemy |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
addon: false | ||
category: | ||
- development-environment | ||
demoUrl: '' | ||
description: Provides helpers to build and document REST-ish web services with Pyramid, | ||
with decent default behaviors. It takes care of following the HTTP specification | ||
in an automated way where possible. | ||
docsUrl: http://cornice.readthedocs.org/en/latest/ | ||
maintainers: | ||
- Mozilla Services | ||
- n1k0 | ||
- leplatrem | ||
- natim | ||
- tarek | ||
- alexis.metaireau | ||
- rafrombrc | ||
- rfk | ||
name: Cornice | ||
projectUrl: '' | ||
pypiUrl: https://pypi.org/project/cornice | ||
support: community | ||
vcsUrl: https://github.com/Cornices/cornice |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
addon: false | ||
category: | ||
- development-environment | ||
demoUrl: '' | ||
description: Khufu is an application scaffolding for Pyramid that provides an environment | ||
to work with Jinja2 and SQLAlchemy. | ||
docsUrl: http://khufuproject.github.io/ | ||
maintainers: | ||
- Rocky Burt | ||
name: Khufu Project | ||
projectUrl: http://khufuproject.github.io/ | ||
pypiUrl: '' | ||
support: community | ||
vcsUrl: https://github.com/khufuproject |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
addon: false | ||
category: | ||
- storage | ||
demoUrl: '' | ||
description: Kinto is a lightweight JSON storage service with synchronisation and | ||
sharing abilities. | ||
docsUrl: http://kinto.readthedocs.org/en/latest/ | ||
maintainers: | ||
- Mozilla Services | ||
- n1k0 | ||
- Natim | ||
- tarek | ||
- alexis.metaireau | ||
- leplatrem | ||
name: Kinto | ||
projectUrl: '' | ||
pypiUrl: https://pypi.org/project/kinto | ||
support: community | ||
vcsUrl: https://github.com/Kinto/kinto |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
addon: false | ||
category: | ||
- development-environment | ||
demoUrl: http://kottidemo.danielnouri.org/ | ||
description: Kotti is a high-level, Pythonic web application framework. It includes | ||
an extensible Content Management System called the Kotti CMS, offering all the features | ||
you would expect from a modern CMS. | ||
docsUrl: http://kotti.readthedocs.org/en/latest/ | ||
maintainers: | ||
- witsch | ||
- j23d | ||
- disko | ||
- nouri | ||
name: Kotti | ||
projectUrl: http://kotti.pylonsproject.org/ | ||
pypiUrl: https://pypi.org/project/Kotti | ||
support: community | ||
vcsUrl: https://github.com/Kotti/Kotti |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
addon: false | ||
category: | ||
- development-environment | ||
demoUrl: '' | ||
description: Nive is a new, "out of the box", open source content management system | ||
based on the programming language Python and the Pyramid web framework. | ||
docsUrl: http://cms.nive.co/doc/html/index.html | ||
maintainers: | ||
- adroullier | ||
name: Nive CMS | ||
projectUrl: http://cms.nive.co/ | ||
pypiUrl: '' | ||
support: community | ||
vcsUrl: https://github.com/nive/nive_cms |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
addon: false | ||
category: | ||
- development-environment | ||
demoUrl: '' | ||
description: Ptah is a fast, fun, open source, high-level Python web development environment. | ||
docsUrl: http://ptahproject.readthedocs.org/en/latest/ | ||
maintainers: | ||
- fafhrd | ||
- runyaga | ||
name: Ptah | ||
projectUrl: '' | ||
pypiUrl: https://pypi.org/project/ptah | ||
support: community | ||
vcsUrl: https://github.com/ptahproject/ptah |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
addon: false | ||
category: | ||
- scaffolds | ||
demoUrl: '' | ||
description: A minimal Pyramid scaffold that aims to provide a starter template to | ||
build small to large web services. | ||
docsUrl: '' | ||
maintainers: | ||
- Asif Mahmud Shimon | ||
name: Pyramid Runner | ||
projectUrl: https://github.com/asif-mahmud/pyramid_runner | ||
pypiUrl: '' | ||
support: community | ||
vcsUrl: https://github.com/asif-mahmud/pyramid_runner |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
addon: false | ||
category: | ||
- authentication | ||
demoUrl: '' | ||
description: Social authentication/registration mechanism with support for a <a href="https://github.com/omab/python-social-auth#auth-providers">large | ||
number of providers</a>. | ||
docsUrl: http://python-social-auth.readthedocs.org/en/latest/ | ||
maintainers: | ||
- omab | ||
name: Python Social Auth | ||
projectUrl: http://psa.matiasaguirre.net/ | ||
pypiUrl: https://pypi.org/project/python-social-auth | ||
support: community | ||
vcsUrl: https://github.com/omab/python-social-auth |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
addon: false | ||
category: | ||
- development-environment | ||
demoUrl: '' | ||
description: Ringo is a Python based high level web application framework build on | ||
top of Pyramid. The framework can be used to build form based management or administration | ||
software. | ||
docsUrl: http://ringo.readthedocs.org/en/latest/ | ||
maintainers: | ||
- ti | ||
name: Ringo | ||
projectUrl: http://www.ringo-framework.org | ||
pypiUrl: https://pypi.org/project/ringo | ||
support: community | ||
vcsUrl: https://github.com/ringo-framework/ringo |
Oops, something went wrong.