Skip to content

Commit

Permalink
modified: cells/models.py
Browse files Browse the repository at this point in the history
	modified:   settings.py
	modified:   urls.py
  • Loading branch information
Alexander Arshavski authored and Alexander Arshavski committed Jul 8, 2009
1 parent 6e85bcf commit 5ed5367
Show file tree
Hide file tree
Showing 16 changed files with 3 additions and 0 deletions.
Binary file modified EventHorizon/__init__.pyc
Binary file not shown.
Binary file modified EventHorizon/cells/__init__.pyc
Binary file not shown.
Binary file modified EventHorizon/cells/admin.pyc
Binary file not shown.
1 change: 1 addition & 0 deletions EventHorizon/cells/models.py
Expand Up @@ -429,6 +429,7 @@ def fetch_stories(self, correlation_id=-1):
url = "http://%s/twitter_sensor/?user=%s&password=%s" % (get_domain(), self.user.user_name, self.user.user_password)
tweets = urllib.urlopen(url).read()
tweets = json.loads(tweets)
print tweets
for key in tweets:
try :
authors = []
Expand Down
Binary file modified EventHorizon/cells/models.pyc
Binary file not shown.
Binary file modified EventHorizon/cells/services.pyc
Binary file not shown.
Binary file modified EventHorizon/cells/urls.pyc
Binary file not shown.
Binary file modified EventHorizon/cells/utils.pyc
Binary file not shown.
Binary file modified EventHorizon/cells/views.pyc
Binary file not shown.
Binary file modified EventHorizon/event_log/__init__.pyc
Binary file not shown.
Binary file modified EventHorizon/event_log/admin.pyc
Binary file not shown.
Binary file modified EventHorizon/event_log/models.pyc
Binary file not shown.
1 change: 1 addition & 0 deletions EventHorizon/settings.py
Expand Up @@ -84,4 +84,5 @@
'django.contrib.admin',
'event_log',
'cells',
'twitter_sensor',
)
Binary file modified EventHorizon/settings.pyc
Binary file not shown.
1 change: 1 addition & 0 deletions EventHorizon/urls.py
Expand Up @@ -7,6 +7,7 @@
urlpatterns = patterns('',
# Example:
(r'^cells/', include('cells.urls')),
(r'^twitter_sensor', include ('twitter_sensor.urls')),

# Uncomment the admin/doc line below and add 'django.contrib.admindocs'
# to INSTALLED_APPS to enable admin documentation:
Expand Down
Binary file modified EventHorizon/urls.pyc
Binary file not shown.

0 comments on commit 5ed5367

Please sign in to comment.