Web Services: Difference between revisions
No edit summary |
add sugar gdrive web service |
||
| Line 9: | Line 9: | ||
# support for uploading Journal entries to a local server (tch). | # support for uploading Journal entries to a local server (tch). | ||
# [https://github.com/ignaciouy/upload-webservice support for uploading files to PutLocker] (ignacio) | # [https://github.com/ignaciouy/upload-webservice support for uploading files to PutLocker] (ignacio) | ||
# [https://github.com/ignaciouy/sugar-gdrive support for uploading files to Google Drive] (ignacio) | |||
[[File:Webservices.png|300px]] | [[File:Webservices.png|300px]] | ||
| Line 110: | Line 111: | ||
└── service.py | └── service.py | ||
</pre> | |||
== Sugar Google Drive == | |||
* tar file: [http://people.sugarlabs.org/ignacio/sugarupload.tar.gz] | |||
* git repo: [https://github.com/ignaciouy/sugar-gdrive] | |||
<pre> | |||
~/.sugar/default/extensions/webservice/ | |||
├── apiclient | |||
│ ├── channel.py | |||
│ ├── discovery.py | |||
│ ├── errors.py | |||
│ ├── http.py | |||
│ ├── __init__.py | |||
│ ├── mimeparse.py | |||
│ ├── model.py | |||
│ ├── sample_tools.py | |||
│ └── schema.py | |||
├── httplib2 | |||
│ ├── cacerts.txt | |||
│ ├── __init__.py | |||
│ ├── iri2uri.py | |||
│ └── socks.py | |||
├── __init__.py | |||
├── oauth2client | |||
│ ├── anyjson.py | |||
│ ├── appengine.py | |||
│ ├── client.py | |||
│ ├── clientsecrets.py | |||
│ ├── crypt.py | |||
│ ├── django_orm.py | |||
│ ├── file.py | |||
│ ├── gce.py | |||
│ ├── __init__.py | |||
│ ├── keyring_storage.py | |||
│ ├── locked_file.py | |||
│ ├── multistore_file.py | |||
│ ├── old_run.py | |||
│ ├── tools.py | |||
│ ├── util.py | |||
│ └── xsrfutil.py | |||
├── sugargdrive | |||
│ ├── account.py | |||
│ ├── icons | |||
│ │ └── sugargdrive.svg | |||
│ ├── __init__.py | |||
│ └── sugargdrive | |||
│ ├── __init__.py | |||
│ └── sugargdrive.py | |||
└── uritemplate | |||
└── __init__.py | |||
~/.sugar/default/extensions/cpsection/ | |||
├── __init__.py | |||
└── webaccount | |||
├── __init__.py | |||
└── services | |||
├── __init__.py | |||
└── sugargdrive | |||
├── __init__.py | |||
└── service.py | |||
</pre> | </pre> | ||