Does NOT replace the CM10 guide
Replace your local_manifest.xml with http://pastebin.com/raw.php?i=uyGjf8Ak
| # YOU NEED TO INSERT YOUR APP KEY AND SECRET BELOW! | |
| # Go to dropbox.com/developers/apps to create an app. | |
| app_key = 'YOUR_APP_KEY' | |
| app_secret = 'YOUR_APP_SECRET' | |
| # access_type can be 'app_folder' or 'dropbox', depending on | |
| # how you registered your app. | |
| access_type = 'app_folder' |
| import os | |
| import sys | |
| import pickle | |
| import console | |
| # I moved 'dropboxlogin' into a sub folder so it doesn't clutter my main folder | |
| sys.path += [os.path.join(os.path.dirname(os.path.abspath(__file__)), 'lib')] | |
| import dropboxlogin # this code can be found here https://gist.github.com/4034526 | |
| STATE_FILE = '.dropbox_state' |
| <root> | |
| +-- dev.py # Stub to run Bottle while coding | |
| +-- app.py # WSGI glue | |
| +-- tasks.py # Celery glue | |
| +-- fabfile.py # Fabric deployment/build script | |
| +-- Vagrantfile # never leave home without it | |
| +-- etc | |
| | +-- config.json # my main configuration file | |
| +-- api |
| from pygments import highlight | |
| from pygments.lexers import get_lexer_by_name, guess_lexer | |
| from pygments.formatters import TerminalFormatter, Terminal256Formatter, NullFormatter | |
| class PygmentsHandler(logging.StreamHandler): | |
| """Console logging handler with syntax highlighting""" | |
| def __init__(self, stream=None, syntax="guess", encoding='utf-8'): | |
| # run the regular Handler __init__ | |
| logging.StreamHandler.__init__(self,stream) |
| #!/usr/bin/env python | |
| # -*- coding: utf-8 -*- | |
| """ | |
| Main application script | |
| Created by: Rui Carmo | |
| License: MIT (see LICENSE for details) | |
| """ | |
| import os, sys |
| #!/usr/bin/python | |
| # vim:set fileencoding=utf-8 sw=2 ai: | |
| import sqlite3 | |
| import datetime | |
| import re | |
| SQL = ''' | |
| select | |
| name, version, time, author, text |
| <script src="/main/chrome/shared/js/jquery.masonry.min.js"></script> | |
| <script> | |
| function dashboard(container, tracs, pattern) { | |
| var boxes = {}; | |
| // set up the container with the appropriate classes | |
| container.empty(); | |
| container.addClass('fluid'); | |
| container.addClass('clearfix'); |
| #!/usr/bin/env python | |
| # encoding: utf-8 | |
| import os, sys, logging, json | |
| log = logging.getLogger() | |
| from bottle import route, get, put, post, delete, request, response, abort | |
| import api | |
| from models.users import Users |
| """SocksiPy - Python SOCKS module. | |
| Version 1.00 | |
| Copyright 2006 Dan-Haim. All rights reserved. | |
| Redistribution and use in source and binary forms, with or without modification, | |
| are permitted provided that the following conditions are met: | |
| 1. Redistributions of source code must retain the above copyright notice, this | |
| list of conditions and the following disclaimer. | |
| 2. Redistributions in binary form must reproduce the above copyright notice, |
Does NOT replace the CM10 guide
Replace your local_manifest.xml with http://pastebin.com/raw.php?i=uyGjf8Ak