├── .gitignore ├── .gitmodules ├── README.md ├── alltests.py ├── apiclient ├── app.yaml ├── appengine_config.py ├── atom ├── blogger.py ├── dropbox.py ├── facebook.py ├── facebook_test.py ├── freedom.py ├── gdata ├── gflags.py ├── gflags_validators.py ├── googleplus.py ├── httplib2 ├── index.yaml ├── instagram.py ├── main.py ├── migrations.py ├── models.py ├── models_test.py ├── my_extra_posts_json.tar.bz2 ├── oauth2client ├── oauthlib ├── python_dropbox ├── python_instagram ├── queue.yaml ├── requests ├── requests_oauthlib ├── static ├── appengine_button_noborder.gif ├── blogger_button.png ├── blogger_logo.png ├── buttons.png ├── buttons_hover_fb.png ├── buttons_hover_tw.png ├── dropbox_button.png ├── dropbox_button_large.png ├── facebook_button.png ├── google_plus_button.png ├── instagram_button.png ├── instagram_button_1.png ├── instagram_button_2.png ├── robots.txt ├── social-buttons.png ├── style.css ├── tumblr_500.png ├── tumblr_button.png ├── tumblr_button_large.jpg ├── twitter_button.png ├── wordpress-social-media-icons.jpg ├── wordpress_button.png └── wordpress_com_button.png ├── tasks.py ├── tasks_test.py ├── templates ├── index.html └── migration.html ├── tumblpy ├── tumblr.py ├── tweepy ├── twitter.py ├── uritemplate ├── webutil ├── wordpress_rest.py ├── wordpress_xmlrpc.py └── wordpress_xmlrpc_test.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snarfed/freedom/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snarfed/freedom/HEAD/.gitmodules -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snarfed/freedom/HEAD/README.md -------------------------------------------------------------------------------- /alltests.py: -------------------------------------------------------------------------------- 1 | webutil/alltests.py -------------------------------------------------------------------------------- /apiclient: -------------------------------------------------------------------------------- 1 | google-api-python-client/apiclient -------------------------------------------------------------------------------- /app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snarfed/freedom/HEAD/app.yaml -------------------------------------------------------------------------------- /appengine_config.py: -------------------------------------------------------------------------------- 1 | webutil/appengine_config.py -------------------------------------------------------------------------------- /atom: -------------------------------------------------------------------------------- 1 | gdata-python-client/src/atom -------------------------------------------------------------------------------- /blogger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snarfed/freedom/HEAD/blogger.py -------------------------------------------------------------------------------- /dropbox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snarfed/freedom/HEAD/dropbox.py -------------------------------------------------------------------------------- /facebook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snarfed/freedom/HEAD/facebook.py -------------------------------------------------------------------------------- /facebook_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snarfed/freedom/HEAD/facebook_test.py -------------------------------------------------------------------------------- /freedom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snarfed/freedom/HEAD/freedom.py -------------------------------------------------------------------------------- /gdata: -------------------------------------------------------------------------------- 1 | gdata-python-client/src/gdata -------------------------------------------------------------------------------- /gflags.py: -------------------------------------------------------------------------------- 1 | python-gflags/gflags.py -------------------------------------------------------------------------------- /gflags_validators.py: -------------------------------------------------------------------------------- 1 | python-gflags/gflags_validators.py -------------------------------------------------------------------------------- /googleplus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snarfed/freedom/HEAD/googleplus.py -------------------------------------------------------------------------------- /httplib2: -------------------------------------------------------------------------------- 1 | httplib2_module/python2/httplib2 -------------------------------------------------------------------------------- /index.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snarfed/freedom/HEAD/index.yaml -------------------------------------------------------------------------------- /instagram.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snarfed/freedom/HEAD/instagram.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snarfed/freedom/HEAD/main.py -------------------------------------------------------------------------------- /migrations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snarfed/freedom/HEAD/migrations.py -------------------------------------------------------------------------------- /models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snarfed/freedom/HEAD/models.py -------------------------------------------------------------------------------- /models_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snarfed/freedom/HEAD/models_test.py -------------------------------------------------------------------------------- /my_extra_posts_json.tar.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snarfed/freedom/HEAD/my_extra_posts_json.tar.bz2 -------------------------------------------------------------------------------- /oauth2client: -------------------------------------------------------------------------------- 1 | google-api-python-client/oauth2client -------------------------------------------------------------------------------- /oauthlib: -------------------------------------------------------------------------------- 1 | oauthlib_module/oauthlib -------------------------------------------------------------------------------- /python_dropbox: -------------------------------------------------------------------------------- 1 | python-dropbox/dropbox -------------------------------------------------------------------------------- /python_instagram: -------------------------------------------------------------------------------- 1 | python-instagram/instagram -------------------------------------------------------------------------------- /queue.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snarfed/freedom/HEAD/queue.yaml -------------------------------------------------------------------------------- /requests: -------------------------------------------------------------------------------- 1 | requests_module/requests -------------------------------------------------------------------------------- /requests_oauthlib: -------------------------------------------------------------------------------- 1 | requests_oauthlib_module/requests_oauthlib -------------------------------------------------------------------------------- /static/appengine_button_noborder.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snarfed/freedom/HEAD/static/appengine_button_noborder.gif -------------------------------------------------------------------------------- /static/blogger_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snarfed/freedom/HEAD/static/blogger_button.png -------------------------------------------------------------------------------- /static/blogger_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snarfed/freedom/HEAD/static/blogger_logo.png -------------------------------------------------------------------------------- /static/buttons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snarfed/freedom/HEAD/static/buttons.png -------------------------------------------------------------------------------- /static/buttons_hover_fb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snarfed/freedom/HEAD/static/buttons_hover_fb.png -------------------------------------------------------------------------------- /static/buttons_hover_tw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snarfed/freedom/HEAD/static/buttons_hover_tw.png -------------------------------------------------------------------------------- /static/dropbox_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snarfed/freedom/HEAD/static/dropbox_button.png -------------------------------------------------------------------------------- /static/dropbox_button_large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snarfed/freedom/HEAD/static/dropbox_button_large.png -------------------------------------------------------------------------------- /static/facebook_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snarfed/freedom/HEAD/static/facebook_button.png -------------------------------------------------------------------------------- /static/google_plus_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snarfed/freedom/HEAD/static/google_plus_button.png -------------------------------------------------------------------------------- /static/instagram_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snarfed/freedom/HEAD/static/instagram_button.png -------------------------------------------------------------------------------- /static/instagram_button_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snarfed/freedom/HEAD/static/instagram_button_1.png -------------------------------------------------------------------------------- /static/instagram_button_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snarfed/freedom/HEAD/static/instagram_button_2.png -------------------------------------------------------------------------------- /static/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: / 3 | -------------------------------------------------------------------------------- /static/social-buttons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snarfed/freedom/HEAD/static/social-buttons.png -------------------------------------------------------------------------------- /static/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snarfed/freedom/HEAD/static/style.css -------------------------------------------------------------------------------- /static/tumblr_500.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snarfed/freedom/HEAD/static/tumblr_500.png -------------------------------------------------------------------------------- /static/tumblr_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snarfed/freedom/HEAD/static/tumblr_button.png -------------------------------------------------------------------------------- /static/tumblr_button_large.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snarfed/freedom/HEAD/static/tumblr_button_large.jpg -------------------------------------------------------------------------------- /static/twitter_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snarfed/freedom/HEAD/static/twitter_button.png -------------------------------------------------------------------------------- /static/wordpress-social-media-icons.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snarfed/freedom/HEAD/static/wordpress-social-media-icons.jpg -------------------------------------------------------------------------------- /static/wordpress_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snarfed/freedom/HEAD/static/wordpress_button.png -------------------------------------------------------------------------------- /static/wordpress_com_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snarfed/freedom/HEAD/static/wordpress_com_button.png -------------------------------------------------------------------------------- /tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snarfed/freedom/HEAD/tasks.py -------------------------------------------------------------------------------- /tasks_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snarfed/freedom/HEAD/tasks_test.py -------------------------------------------------------------------------------- /templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snarfed/freedom/HEAD/templates/index.html -------------------------------------------------------------------------------- /templates/migration.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snarfed/freedom/HEAD/templates/migration.html -------------------------------------------------------------------------------- /tumblpy: -------------------------------------------------------------------------------- 1 | tumblpy_module/tumblpy -------------------------------------------------------------------------------- /tumblr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snarfed/freedom/HEAD/tumblr.py -------------------------------------------------------------------------------- /tweepy: -------------------------------------------------------------------------------- 1 | activitystreams/tweepy -------------------------------------------------------------------------------- /twitter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snarfed/freedom/HEAD/twitter.py -------------------------------------------------------------------------------- /uritemplate: -------------------------------------------------------------------------------- 1 | google-api-python-client/uritemplate -------------------------------------------------------------------------------- /webutil: -------------------------------------------------------------------------------- 1 | activitystreams/webutil -------------------------------------------------------------------------------- /wordpress_rest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snarfed/freedom/HEAD/wordpress_rest.py -------------------------------------------------------------------------------- /wordpress_xmlrpc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snarfed/freedom/HEAD/wordpress_xmlrpc.py -------------------------------------------------------------------------------- /wordpress_xmlrpc_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snarfed/freedom/HEAD/wordpress_xmlrpc_test.py --------------------------------------------------------------------------------