Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/nealrs/petal
Github issues powered comments. Inspired by sirbrad/comcom
https://github.com/nealrs/petal
Last synced: 1 day ago
JSON representation
Github issues powered comments. Inspired by sirbrad/comcom
- Host: GitHub
- URL: https://github.com/nealrs/petal
- Owner: nealrs
- License: mit
- Created: 2014-01-23T04:51:09.000Z (about 11 years ago)
- Default Branch: gh-pages
- Last Pushed: 2014-01-23T06:30:22.000Z (about 11 years ago)
- Last Synced: 2023-07-31T17:26:01.015Z (over 1 year ago)
- Language: CSS
- Homepage: http://hit9.github.com/petal
- Size: 335 KB
- Stars: 0
- Watchers: 3
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: Readme.md
- License: LICENSE-MIT
Awesome Lists containing this project
README
petal
======Github issues powered comments. Inspired by [sirbrad/comcom](https://github.com/sirbrad/comcom)
Live Demo
---------http://hit9.org/petal/
How to use
----------First, new an issue for petal use, and then copy the codes below to your webpage.
(rewrite the `"user/rep"` and `issue_id` to yours)
```html
$(document).ready(function(){ // important!
$.petal.init("user/repo", issue_id) // $.petal.init(repo, issue_id)
})```
For github pages users
----------------------You need to [register an application on github](https://github.com/settings/applications/new), and write your domain `username.github.com` in the field `Main URL` and `Callback URL`.
![](screen-shot.png)
**This is for cross-domain-usage.**
FAQ & Common issues
-------------------1. Make sure that your webpage's domain is allowed to cross domain
2. Have you changed the `"user/repo"` and `issue_id` to yours?
3. Already new an issue?
4. petal works with jQuery.
Developers
----------### Front end
1. fork this repo
2. install dependences(coffee, sass and node-minify, java runtime):
```
sudo npm install -g coffee-script
npm install node-minify
gem install sass
```3. And then update submodule
```
git submodule --init update
```4. Use make to compile
### Back end
Where the proxy script(which post to github for access_token) is ?
http://petal.ap01.aws.af.cm
And the py script:
```python
from flask import Flask, redirect, request, url_for
import requests
import urllib
import urlparseapplication = app = Flask(__name__)
@app.route("/")
def index():
code = request.args.get("code")
callback = request.args.get("callback", "http://hit9.org/petal")client_id = "2ae54488ab61bc732407"
client_secret = "xxxxxxxxxxxxxxxxxxxxxxxxxxxx"data = {
"code": code,
"client_id": client_id,
"client_secret": client_secret
}
headers = {'Accept': 'application/json'}
token_url = "https://github.com/login/oauth/access_token"
re = requests.post(token_url, data=data, headers=headers)
token = re.json()['access_token']# update callback with parameter:petaltoken
params = {"petaltoken": token}
url_parts = list(urlparse.urlparse(callback))
query = dict(urlparse.parse_qsl(url_parts[4]))
query.update(params)
url_parts[4] = urllib.urlencode(query)
redirect_url = urlparse.urlunparse(url_parts)return redirect(redirect_url)
if __name__ == '__main__':
app.run(debug=True)
```