Skip to content

Commit

Permalink
Add patch for bug in yaml.
Browse files Browse the repository at this point in the history
Add assets to ignore file.
  • Loading branch information
hellais committed Sep 28, 2012
1 parent 36c8a8e commit 532e2e9
Show file tree
Hide file tree
Showing 10 changed files with 86 additions and 2,133 deletions.
5 changes: 1 addition & 4 deletions .gitignore
@@ -1,4 +1,5 @@
*.pyc
assets/*
build/*
package/*
proxy-lists/ip-cc.txt
Expand All @@ -8,8 +9,4 @@ proxy-lists/italy-http-ips.txt
private/*
/ooni/plugins/dropin.cache
oonib/oonibackend.conf
<<<<<<< HEAD
ooni/assets/*
=======
ooni/lib/txtorcon
>>>>>>> 21505f84aef5d60c7e138590a1a40e3df773d680
11 changes: 11 additions & 0 deletions bin/ooniprobe
@@ -1,8 +1,19 @@
#!/usr/bin/python2
# -*- encoding: utf-8 -*-
#
# startup script based on twisted trial
# See http://twistedmatrix.com/
#
# :authors: Arturo Filastò
# :licence: see LICENSE


import os, sys

# This is a hack to overcome a bug in python
from ooni.utils import patched_reduce_ex
copy_reg._reduce_ex = patched_reduce_ex

sys.path[:] = map(os.path.abspath, sys.path)

sys.path.insert(0, os.path.abspath(os.getcwd()))
Expand Down
7 changes: 6 additions & 1 deletion docs/source/conf.py
Expand Up @@ -94,8 +94,13 @@

# The theme to use for HTML and HTML Help pages. See the documentation for
# a list of builtin themes.
html_theme = 'default'
html_theme = 'haiku'

html_theme_options = {'textcolor': "#222222",
'headingcolor': "#555",
'linkcolor': "#4183C4",
'visitedlinkcolor': "#888",
'hoverlinkcolor': "#888"}
# Theme options are theme-specific and customize the look and feel of a theme
# further. For a list of options available for each theme, see the
# documentation.
Expand Down
4 changes: 0 additions & 4 deletions ooni/assets/captive_portal_tests.txt

This file was deleted.

2 changes: 0 additions & 2 deletions ooni/assets/example.txt

This file was deleted.

0 comments on commit 532e2e9

Please sign in to comment.