summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTomasz Zielinski <tomasz.zielinski@pyconsultant.eu>2011-12-11 20:08:38 +0100
committerTomasz Zielinski <tomasz.zielinski@pyconsultant.eu>2011-12-11 20:08:38 +0100
commit5fc93a3786b89d366d2dfd19f4e665720aa2ba5e (patch)
tree995894ad69cdd3e6601a1b144a62a80e4b6bfc6c
parent0091a515009d227e897f8c2aa075940f112f9b9f (diff)
parent9bcbaf6c35bfcef870099a807b302af7e5e7168b (diff)
downloadaskbot-5fc93a3786b89d366d2dfd19f4e665720aa2ba5e.tar.gz
askbot-5fc93a3786b89d366d2dfd19f4e665720aa2ba5e.tar.bz2
askbot-5fc93a3786b89d366d2dfd19f4e665720aa2ba5e.zip
Merge remote-tracking branch 'askbot/wikipost' into wikipost
-rw-r--r--askbot/__init__.py2
-rw-r--r--askbot/deps/django_authopenid/views.py2
-rw-r--r--askbot/doc/source/changelog.rst6
-rw-r--r--askbot/locale/en/LC_MESSAGES/django.po2
-rw-r--r--askbot/management/commands/askbot_create_test_fixture.py1
-rw-r--r--askbot/middleware/forum_mode.py69
-rw-r--r--askbot/migrations/0088_install__post_view__for__development.py338
-rw-r--r--askbot/models/question.py1
-rw-r--r--askbot/search/state_manager.py49
-rw-r--r--askbot/shims/__init__.py0
-rw-r--r--askbot/shims/django_shims.py22
-rw-r--r--askbot/skins/common/media/js/jquery.history.js1
-rw-r--r--askbot/skins/common/media/js/live_search.js256
-rw-r--r--askbot/skins/common/media/js/modernizr.custom.js4
-rw-r--r--askbot/skins/common/media/js/utils.js38
-rw-r--r--askbot/skins/common/templates/widgets/related_tags.html3
-rw-r--r--askbot/skins/common/templates/widgets/search_bar.html4
-rw-r--r--askbot/skins/default/templates/macros.html38
-rw-r--r--askbot/skins/default/templates/main_page/headline.html8
-rw-r--r--askbot/skins/default/templates/main_page/javascript.html18
-rw-r--r--askbot/skins/default/templates/main_page/nothing_found.html8
-rw-r--r--askbot/skins/default/templates/main_page/paginator.html4
-rw-r--r--askbot/skins/default/templates/main_page/questions_loop.html2
-rw-r--r--askbot/skins/default/templates/main_page/tab_bar.html17
-rw-r--r--askbot/skins/default/templates/meta/bottom_scripts.html17
-rw-r--r--askbot/skins/default/templates/meta/html_head_javascript.html1
-rw-r--r--askbot/skins/default/templates/tags.html1
-rw-r--r--askbot/skins/default/templates/widgets/logo.html5
-rw-r--r--askbot/skins/default/templates/widgets/question_summary.html2
-rw-r--r--askbot/skins/default/templates/widgets/scope_nav.html6
-rw-r--r--askbot/templatetags/extra_filters.py52
-rw-r--r--askbot/templatetags/extra_filters_jinja.py6
-rw-r--r--askbot/tests/misc_tests.py14
-rw-r--r--askbot/tests/page_load_tests.py10
-rw-r--r--askbot/tests/post_model_tests.py77
-rw-r--r--askbot/tests/test_data.json12304
-rw-r--r--askbot/tests/utils.py16
-rw-r--r--askbot/urls.py210
-rw-r--r--askbot/views/readers.py73
-rw-r--r--askbot_requirements_dev.txt20
40 files changed, 7568 insertions, 6139 deletions
diff --git a/askbot/__init__.py b/askbot/__init__.py
index 99c3f596..1c919add 100644
--- a/askbot/__init__.py
+++ b/askbot/__init__.py
@@ -9,7 +9,7 @@ import smtplib
import sys
import logging
-VERSION = (0, 7, 33)
+VERSION = (0, 7, 34)
#keys are module names used by python imports,
#values - the package qualifier to use for pip
diff --git a/askbot/deps/django_authopenid/views.py b/askbot/deps/django_authopenid/views.py
index ac406f1d..e9059c61 100644
--- a/askbot/deps/django_authopenid/views.py
+++ b/askbot/deps/django_authopenid/views.py
@@ -554,8 +554,6 @@ def show_signin_view(
#annotate objects with extra data
providers = util.get_enabled_login_providers()
for login_method in existing_login_methods:
- if login_method.provider_name == 'facebook':
- continue#it is disabled
try:
provider_data = providers[login_method.provider_name]
if provider_data['type'] == 'password':
diff --git a/askbot/doc/source/changelog.rst b/askbot/doc/source/changelog.rst
index 2617b096..8b302e4a 100644
--- a/askbot/doc/source/changelog.rst
+++ b/askbot/doc/source/changelog.rst
@@ -1,8 +1,12 @@
Changes in Askbot
=================
-0.7.33 (Current Version)
+0.7.34 (Current Version)
------------------------
+* Returned support of Django 1.2
+
+0.7.33
+------
* Made on log in redirect to the forum index page by default
and to the question page, if user was reading the question
it is still possible to override the ``next`` url parameter
diff --git a/askbot/locale/en/LC_MESSAGES/django.po b/askbot/locale/en/LC_MESSAGES/django.po
index ca813006..9e8c30a2 100644
--- a/askbot/locale/en/LC_MESSAGES/django.po
+++ b/askbot/locale/en/LC_MESSAGES/django.po
@@ -4026,7 +4026,7 @@ msgid "last used"
msgstr ""
msgid "cannot be deleted"
-msgstr "sorry, but older votes cannot be revoked"
+msgstr ""
msgid "with openid it is easier"
msgstr "With the OpenID you don't need to create new username and password."
diff --git a/askbot/management/commands/askbot_create_test_fixture.py b/askbot/management/commands/askbot_create_test_fixture.py
index 23a7b2e4..e7045e8c 100644
--- a/askbot/management/commands/askbot_create_test_fixture.py
+++ b/askbot/management/commands/askbot_create_test_fixture.py
@@ -18,6 +18,7 @@ EXCLUDE_APPS = ['contenttypes',
'askbot.activity',
'askbot.activityauditstatus',
'askbot.badgedata',
+ 'askbot.Post',
'askbot.EmailFeedSetting',
'auth.Message']
diff --git a/askbot/middleware/forum_mode.py b/askbot/middleware/forum_mode.py
index 8f14199b..7f1e29b1 100644
--- a/askbot/middleware/forum_mode.py
+++ b/askbot/middleware/forum_mode.py
@@ -1,36 +1,57 @@
+"""
+contains :class:`ForumModeMiddleware`, which is
+enabling support of closed forum mode
+"""
from django.http import HttpResponseRedirect
from django.utils.translation import ugettext as _
from django.conf import settings
from django.core.urlresolvers import resolve
-
+from askbot.shims.django_shims import ResolverMatch
from askbot.conf import settings as askbot_settings
-PROTECTED_URLS = [
- 'about',
- 'feeds',
- 'privacy',
- 'tags',
- 'badges',
- 'questions',
- 'question',
- 'question_revisions',
- 'users',
- 'edit_user',
- 'faq',
- 'user_profile',
- 'answer_revisions',
- 'user_subscriptions',
- 'widget_questions']
+PROTECTED_VIEW_MODULES = (
+ 'askbot.views',
+ 'django.contrib.syndication.views',
+)
+ALLOWED_VIEWS = (
+ 'askbot.views.meta.media',
+)
+
+def is_view_protected(view_func):
+ """True if view belongs to one of the
+ protected view modules
+ """
+ for protected_module in PROTECTED_VIEW_MODULES:
+ if view_func.__module__.startswith(protected_module):
+ return True
+ return False
+def is_view_allowed(func):
+ """True, if view is allowed to access
+ by the special rule
+ """
+ view_path = func.__module__ + '.' + func.__name__
+ return view_path in ALLOWED_VIEWS
class ForumModeMiddleware(object):
+ """protects forum views is the closed forum mode"""
def process_request(self, request):
+ """when askbot is in the closed mode
+ it will let through only authenticated users.
+ All others will be redirected to the login url.
+ """
if (askbot_settings.ASKBOT_CLOSED_FORUM_MODE
- and request.user.is_anonymous()
- and resolve(request.path).url_name in PROTECTED_URLS):
- request.user.message_set.create(_('Please log in to use %s') % \
- askbot_settings.APP_SHORT_NAME)
- return HttpResponseRedirect(settings.LOGIN_URL)
- else:
- return None
+ and request.user.is_anonymous()):
+ resolver_match = ResolverMatch(resolve(request.path))
+
+ if is_view_allowed(resolver_match.func):
+ return
+
+ if is_view_protected(resolver_match.func):
+ request.user.message_set.create(
+ _('Please log in to use %s') % \
+ askbot_settings.APP_SHORT_NAME
+ )
+ return HttpResponseRedirect(settings.LOGIN_URL)
+ return None
diff --git a/askbot/migrations/0088_install__post_view__for__development.py b/askbot/migrations/0088_install__post_view__for__development.py
new file mode 100644
index 00000000..7d7d1ba9
--- /dev/null
+++ b/askbot/migrations/0088_install__post_view__for__development.py
@@ -0,0 +1,338 @@
+# -*- coding: utf-8 -*-
+import datetime
+from south.db import db
+from south.v2 import SchemaMigration
+from django.db import models
+import askbot
+
+
+class Migration(SchemaMigration):
+
+ def forwards(self, orm):
+ create_post_view_sql = open(
+ askbot.get_path_to('models/post_view.sql')
+ ).read()
+ db.execute(create_post_view_sql)
+
+ def backwards(self, orm):
+ db.execute('DROP VIEW askbot_post')
+
+ models = {
+ 'askbot.activity': {
+ 'Meta': {'object_name': 'Activity', 'db_table': "u'activity'"},
+ 'active_at': ('django.db.models.fields.DateTimeField', [], {'default': 'datetime.datetime.now'}),
+ 'activity_type': ('django.db.models.fields.SmallIntegerField', [], {}),
+ 'content_type': ('django.db.models.fields.related.ForeignKey', [], {'to': "orm['contenttypes.ContentType']"}),
+ 'id': ('django.db.models.fields.AutoField', [], {'primary_key': 'True'}),
+ 'is_auditted': ('django.db.models.fields.BooleanField', [], {'default': 'False'}),
+ 'object_id': ('django.db.models.fields.PositiveIntegerField', [], {}),
+ 'question': ('django.db.models.fields.related.ForeignKey', [], {'to': "orm['askbot.Question']", 'null': 'True'}),
+ 'receiving_users': ('django.db.models.fields.related.ManyToManyField', [], {'related_name': "'received_activity'", 'symmetrical': 'False', 'to': "orm['auth.User']"}),
+ 'recipients': ('django.db.models.fields.related.ManyToManyField', [], {'related_name': "'incoming_activity'", 'symmetrical': 'False', 'through': "orm['askbot.ActivityAuditStatus']", 'to': "orm['auth.User']"}),
+ 'summary': ('django.db.models.fields.TextField', [], {'default': "''"}),
+ 'user': ('django.db.models.fields.related.ForeignKey', [], {'to': "orm['auth.User']"})
+ },
+ 'askbot.activityauditstatus': {
+ 'Meta': {'unique_together': "(('user', 'activity'),)", 'object_name': 'ActivityAuditStatus'},
+ 'activity': ('django.db.models.fields.related.ForeignKey', [], {'to': "orm['askbot.Activity']"}),
+ 'id': ('django.db.models.fields.AutoField', [], {'primary_key': 'True'}),
+ 'status': ('django.db.models.fields.SmallIntegerField', [], {'default': '0'}),
+ 'user': ('django.db.models.fields.related.ForeignKey', [], {'to': "orm['auth.User']"})
+ },
+ 'askbot.anonymousanswer': {
+ 'Meta': {'object_name': 'AnonymousAnswer'},
+ 'added_at': ('django.db.models.fields.DateTimeField', [], {'default': 'datetime.datetime.now'}),
+ 'author': ('django.db.models.fields.related.ForeignKey', [], {'to': "orm['auth.User']", 'null': 'True'}),
+ 'id': ('django.db.models.fields.AutoField', [], {'primary_key': 'True'}),
+ 'ip_addr': ('django.db.models.fields.IPAddressField', [], {'max_length': '15'}),
+ 'question': ('django.db.models.fields.related.ForeignKey', [], {'related_name': "'anonymous_answers'", 'to': "orm['askbot.Question']"}),
+ 'session_key': ('django.db.models.fields.CharField', [], {'max_length': '40'}),
+ 'summary': ('django.db.models.fields.CharField', [], {'max_length': '180'}),
+ 'text': ('django.db.models.fields.TextField', [], {}),
+ 'wiki': ('django.db.models.fields.BooleanField', [], {'default': 'False'})
+ },
+ 'askbot.anonymousquestion': {
+ 'Meta': {'object_name': 'AnonymousQuestion'},
+ 'added_at': ('django.db.models.fields.DateTimeField', [], {'default': 'datetime.datetime.now'}),
+ 'author': ('django.db.models.fields.related.ForeignKey', [], {'to': "orm['auth.User']", 'null': 'True'}),
+ 'id': ('django.db.models.fields.AutoField', [], {'primary_key': 'True'}),
+ 'ip_addr': ('django.db.models.fields.IPAddressField', [], {'max_length': '15'}),
+ 'is_anonymous': ('django.db.models.fields.BooleanField', [], {'default': 'False'}),
+ 'session_key': ('django.db.models.fields.CharField', [], {'max_length': '40'}),
+ 'summary': ('django.db.models.fields.CharField', [], {'max_length': '180'}),
+ 'tagnames': ('django.db.models.fields.CharField', [], {'max_length': '125'}),
+ 'text': ('django.db.models.fields.TextField', [], {}),
+ 'title': ('django.db.models.fields.CharField', [], {'max_length': '300'}),
+ 'wiki': ('django.db.models.fields.BooleanField', [], {'default': 'False'})
+ },
+ 'askbot.answer': {
+ 'Meta': {'object_name': 'Answer', 'db_table': "u'answer'"},
+ 'added_at': ('django.db.models.fields.DateTimeField', [], {'default': 'datetime.datetime.now'}),
+ 'author': ('django.db.models.fields.related.ForeignKey', [], {'related_name': "'answers'", 'to': "orm['auth.User']"}),
+ 'comment_count': ('django.db.models.fields.PositiveIntegerField', [], {'default': '0'}),
+ 'deleted': ('django.db.models.fields.BooleanField', [], {'default': 'False'}),
+ 'deleted_at': ('django.db.models.fields.DateTimeField', [], {'null': 'True', 'blank': 'True'}),
+ 'deleted_by': ('django.db.models.fields.related.ForeignKey', [], {'blank': 'True', 'related_name': "'deleted_answers'", 'null': 'True', 'to': "orm['auth.User']"}),
+ 'html': ('django.db.models.fields.TextField', [], {'null': 'True'}),
+ 'id': ('django.db.models.fields.AutoField', [], {'primary_key': 'True'}),
+ 'is_anonymous': ('django.db.models.fields.BooleanField', [], {'default': 'False'}),
+ 'last_edited_at': ('django.db.models.fields.DateTimeField', [], {'null': 'True', 'blank': 'True'}),
+ 'last_edited_by': ('django.db.models.fields.related.ForeignKey', [], {'blank': 'True', 'related_name': "'last_edited_answers'", 'null': 'True', 'to': "orm['auth.User']"}),
+ 'locked': ('django.db.models.fields.BooleanField', [], {'default': 'False'}),
+ 'locked_at': ('django.db.models.fields.DateTimeField', [], {'null': 'True', 'blank': 'True'}),
+ 'locked_by': ('django.db.models.fields.related.ForeignKey', [], {'blank': 'True', 'related_name': "'locked_answers'", 'null': 'True', 'to': "orm['auth.User']"}),
+ 'offensive_flag_count': ('django.db.models.fields.SmallIntegerField', [], {'default': '0'}),
+ 'question': ('django.db.models.fields.related.ForeignKey', [], {'related_name': "'answers'", 'to': "orm['askbot.Question']"}),
+ 'score': ('django.db.models.fields.IntegerField', [], {'default': '0'}),
+ 'summary': ('django.db.models.fields.CharField', [], {'max_length': '180'}),
+ 'text': ('django.db.models.fields.TextField', [], {'null': 'True'}),
+ 'vote_down_count': ('django.db.models.fields.IntegerField', [], {'default': '0'}),
+ 'vote_up_count': ('django.db.models.fields.IntegerField', [], {'default': '0'}),
+ 'wiki': ('django.db.models.fields.BooleanField', [], {'default': 'False'}),
+ 'wikified_at': ('django.db.models.fields.DateTimeField', [], {'null': 'True', 'blank': 'True'})
+ },
+ 'askbot.award': {
+ 'Meta': {'object_name': 'Award', 'db_table': "u'award'"},
+ 'awarded_at': ('django.db.models.fields.DateTimeField', [], {'default': 'datetime.datetime.now'}),
+ 'badge': ('django.db.models.fields.related.ForeignKey', [], {'related_name': "'award_badge'", 'to': "orm['askbot.BadgeData']"}),
+ 'content_type': ('django.db.models.fields.related.ForeignKey', [], {'to': "orm['contenttypes.ContentType']"}),
+ 'id': ('django.db.models.fields.AutoField', [], {'primary_key': 'True'}),
+ 'notified': ('django.db.models.fields.BooleanField', [], {'default': 'False'}),
+ 'object_id': ('django.db.models.fields.PositiveIntegerField', [], {}),
+ 'user': ('django.db.models.fields.related.ForeignKey', [], {'related_name': "'award_user'", 'to': "orm['auth.User']"})
+ },
+ 'askbot.badgedata': {
+ 'Meta': {'ordering': "('slug',)", 'object_name': 'BadgeData'},
+ 'awarded_count': ('django.db.models.fields.PositiveIntegerField', [], {'default': '0'}),
+ 'awarded_to': ('django.db.models.fields.related.ManyToManyField', [], {'related_name': "'badges'", 'symmetrical': 'False', 'through': "orm['askbot.Award']", 'to': "orm['auth.User']"}),
+ 'id': ('django.db.models.fields.AutoField', [], {'primary_key': 'True'}),
+ 'slug': ('django.db.models.fields.SlugField', [], {'unique': 'True', 'max_length': '50'})
+ },
+ 'askbot.comment': {
+ 'Meta': {'ordering': "('-added_at',)", 'object_name': 'Comment', 'db_table': "u'comment'"},
+ 'added_at': ('django.db.models.fields.DateTimeField', [], {'default': 'datetime.datetime.now'}),
+ 'comment': ('django.db.models.fields.CharField', [], {'max_length': '2048'}),
+ 'content_type': ('django.db.models.fields.related.ForeignKey', [], {'to': "orm['contenttypes.ContentType']"}),
+ 'html': ('django.db.models.fields.CharField', [], {'default': "''", 'max_length': '2048'}),
+ 'id': ('django.db.models.fields.AutoField', [], {'primary_key': 'True'}),
+ 'object_id': ('django.db.models.fields.PositiveIntegerField', [], {}),
+ 'offensive_flag_count': ('django.db.models.fields.IntegerField', [], {'default': '0'}),
+ 'score': ('django.db.models.fields.IntegerField', [], {'default': '0'}),
+ 'user': ('django.db.models.fields.related.ForeignKey', [], {'related_name': "'comments'", 'to': "orm['auth.User']"})
+ },
+ 'askbot.emailfeedsetting': {
+ 'Meta': {'object_name': 'EmailFeedSetting'},
+ 'added_at': ('django.db.models.fields.DateTimeField', [], {'auto_now_add': 'True', 'blank': 'True'}),
+ 'feed_type': ('django.db.models.fields.CharField', [], {'max_length': '16'}),
+ 'frequency': ('django.db.models.fields.CharField', [], {'default': "'n'", 'max_length': '8'}),
+ 'id': ('django.db.models.fields.AutoField', [], {'primary_key': 'True'}),
+ 'reported_at': ('django.db.models.fields.DateTimeField', [], {'null': 'True'}),
+ 'subscriber': ('django.db.models.fields.related.ForeignKey', [], {'related_name': "'notification_subscriptions'", 'to': "orm['auth.User']"})
+ },
+ 'askbot.favoritequestion': {
+ 'Meta': {'object_name': 'FavoriteQuestion', 'db_table': "u'favorite_question'"},
+ 'added_at': ('django.db.models.fields.DateTimeField', [], {'default': 'datetime.datetime.now'}),
+ 'id': ('django.db.models.fields.AutoField', [], {'primary_key': 'True'}),
+ 'thread': ('django.db.models.fields.related.ForeignKey', [], {'to': "orm['askbot.Thread']"}),
+ 'user': ('django.db.models.fields.related.ForeignKey', [], {'related_name': "'unused_user_favorite_questions'", 'to': "orm['auth.User']"})
+ },
+ 'askbot.markedtag': {
+ 'Meta': {'object_name': 'MarkedTag'},
+ 'id': ('django.db.models.fields.AutoField', [], {'primary_key': 'True'}),
+ 'reason': ('django.db.models.fields.CharField', [], {'max_length': '16'}),
+ 'tag': ('django.db.models.fields.related.ForeignKey', [], {'related_name': "'user_selections'", 'to': "orm['askbot.Tag']"}),
+ 'user': ('django.db.models.fields.related.ForeignKey', [], {'related_name': "'tag_selections'", 'to': "orm['auth.User']"})
+ },
+ 'askbot.post': {
+ 'Meta': {'object_name': 'Post', 'managed': 'False'},
+ 'added_at': ('django.db.models.fields.DateTimeField', [], {'default': 'datetime.datetime.now'}),
+ 'author': ('django.db.models.fields.related.ForeignKey', [], {'related_name': "'posts'", 'to': "orm['auth.User']"}),
+ 'comment_count': ('django.db.models.fields.PositiveIntegerField', [], {'default': '0'}),
+ 'deleted': ('django.db.models.fields.BooleanField', [], {'default': 'False'}),
+ 'deleted_at': ('django.db.models.fields.DateTimeField', [], {'null': 'True', 'blank': 'True'}),
+ 'deleted_by': ('django.db.models.fields.related.ForeignKey', [], {'blank': 'True', 'related_name': "'deleted_posts'", 'null': 'True', 'to': "orm['auth.User']"}),
+ 'html': ('django.db.models.fields.TextField', [], {'null': 'True'}),
+ 'id': ('django.db.models.fields.AutoField', [], {'primary_key': 'True'}),
+ 'is_anonymous': ('django.db.models.fields.BooleanField', [], {'default': 'False'}),
+ 'last_edited_at': ('django.db.models.fields.DateTimeField', [], {'null': 'True', 'blank': 'True'}),
+ 'last_edited_by': ('django.db.models.fields.related.ForeignKey', [], {'blank': 'True', 'related_name': "'last_edited_posts'", 'null': 'True', 'to': "orm['auth.User']"}),
+ 'locked': ('django.db.models.fields.BooleanField', [], {'default': 'False'}),
+ 'locked_at': ('django.db.models.fields.DateTimeField', [], {'null': 'True', 'blank': 'True'}),
+ 'locked_by': ('django.db.models.fields.related.ForeignKey', [], {'blank': 'True', 'related_name': "'locked_posts'", 'null': 'True', 'to': "orm['auth.User']"}),
+ 'offensive_flag_count': ('django.db.models.fields.SmallIntegerField', [], {'default': '0'}),
+ 'parent': ('django.db.models.fields.related.ForeignKey', [], {'to': "orm['askbot.Post']", 'null': 'True', 'blank': 'True'}),
+ 'post_type': ('django.db.models.fields.CharField', [], {'max_length': '255'}),
+ 'score': ('django.db.models.fields.IntegerField', [], {'default': '0'}),
+ 'self_answer': ('django.db.models.fields.related.ForeignKey', [], {'to': "orm['askbot.Answer']", 'null': 'True', 'blank': 'True'}),
+ 'self_question': ('django.db.models.fields.related.ForeignKey', [], {'to': "orm['askbot.Question']", 'null': 'True', 'blank': 'True'}),
+ 'summary': ('django.db.models.fields.CharField', [], {'max_length': '180'}),
+ 'text': ('django.db.models.fields.TextField', [], {'null': 'True'}),
+ 'thread': ('django.db.models.fields.related.ForeignKey', [], {'to': "orm['askbot.Thread']"}),
+ 'vote_down_count': ('django.db.models.fields.IntegerField', [], {'default': '0'}),
+ 'vote_up_count': ('django.db.models.fields.IntegerField', [], {'default': '0'}),
+ 'wiki': ('django.db.models.fields.BooleanField', [], {'default': 'False'}),
+ 'wikified_at': ('django.db.models.fields.DateTimeField', [], {'null': 'True', 'blank': 'True'})
+ },
+ 'askbot.postrevision': {
+ 'Meta': {'ordering': "('-revision',)", 'unique_together': "(('answer', 'revision'), ('question', 'revision'))", 'object_name': 'PostRevision'},
+ 'answer': ('django.db.models.fields.related.ForeignKey', [], {'blank': 'True', 'related_name': "'revisions'", 'null': 'True', 'to': "orm['askbot.Answer']"}),
+ 'author': ('django.db.models.fields.related.ForeignKey', [], {'related_name': "'postrevisions'", 'to': "orm['auth.User']"}),
+ 'id': ('django.db.models.fields.AutoField', [], {'primary_key': 'True'}),
+ 'is_anonymous': ('django.db.models.fields.BooleanField', [], {'default': 'False'}),
+ 'question': ('django.db.models.fields.related.ForeignKey', [], {'blank': 'True', 'related_name': "'revisions'", 'null': 'True', 'to': "orm['askbot.Question']"}),
+ 'revised_at': ('django.db.models.fields.DateTimeField', [], {}),
+ 'revision': ('django.db.models.fields.PositiveIntegerField', [], {}),
+ 'revision_type': ('django.db.models.fields.SmallIntegerField', [], {}),
+ 'summary': ('django.db.models.fields.CharField', [], {'max_length': '300', 'blank': 'True'}),
+ 'tagnames': ('django.db.models.fields.CharField', [], {'default': "''", 'max_length': '125', 'blank': 'True'}),
+ 'text': ('django.db.models.fields.TextField', [], {}),
+ 'title': ('django.db.models.fields.CharField', [], {'default': "''", 'max_length': '300', 'blank': 'True'})
+ },
+ 'askbot.question': {
+ 'Meta': {'object_name': 'Question', 'db_table': "u'question'"},
+ 'added_at': ('django.db.models.fields.DateTimeField', [], {'default': 'datetime.datetime.now'}),
+ 'author': ('django.db.models.fields.related.ForeignKey', [], {'related_name': "'questions'", 'to': "orm['auth.User']"}),
+ 'comment_count': ('django.db.models.fields.PositiveIntegerField', [], {'default': '0'}),
+ 'deleted': ('django.db.models.fields.BooleanField', [], {'default': 'False'}),
+ 'deleted_at': ('django.db.models.fields.DateTimeField', [], {'null': 'True', 'blank': 'True'}),
+ 'deleted_by': ('django.db.models.fields.related.ForeignKey', [], {'blank': 'True', 'related_name': "'deleted_questions'", 'null': 'True', 'to': "orm['auth.User']"}),
+ 'html': ('django.db.models.fields.TextField', [], {'null': 'True'}),
+ 'id': ('django.db.models.fields.AutoField', [], {'primary_key': 'True'}),
+ 'is_anonymous': ('django.db.models.fields.BooleanField', [], {'default': 'False'}),
+ 'last_edited_at': ('django.db.models.fields.DateTimeField', [], {'null': 'True', 'blank': 'True'}),
+ 'last_edited_by': ('django.db.models.fields.related.ForeignKey', [], {'blank': 'True', 'related_name': "'last_edited_questions'", 'null': 'True', 'to': "orm['auth.User']"}),
+ 'locked': ('django.db.models.fields.BooleanField', [], {'default': 'False'}),
+ 'locked_at': ('django.db.models.fields.DateTimeField', [], {'null': 'True', 'blank': 'True'}),
+ 'locked_by': ('django.db.models.fields.related.ForeignKey', [], {'blank': 'True', 'related_name': "'locked_questions'", 'null': 'True', 'to': "orm['auth.User']"}),
+ 'offensive_flag_count': ('django.db.models.fields.SmallIntegerField', [], {'default': '0'}),
+ 'score': ('django.db.models.fields.IntegerField', [], {'default': '0'}),
+ 'summary': ('django.db.models.fields.CharField', [], {'max_length': '180'}),
+ 'text': ('django.db.models.fields.TextField', [], {'null': 'True'}),
+ 'thread': ('django.db.models.fields.related.ForeignKey', [], {'related_name': "'questions'", 'unique': 'True', 'to': "orm['askbot.Thread']"}),
+ 'vote_down_count': ('django.db.models.fields.IntegerField', [], {'default': '0'}),
+ 'vote_up_count': ('django.db.models.fields.IntegerField', [], {'default': '0'}),
+ 'wiki': ('django.db.models.fields.BooleanField', [], {'default': 'False'}),
+ 'wikified_at': ('django.db.models.fields.DateTimeField', [], {'null': 'True', 'blank': 'True'})
+ },
+ 'askbot.questionview': {
+ 'Meta': {'object_name': 'QuestionView'},
+ 'id': ('django.db.models.fields.AutoField', [], {'primary_key': 'True'}),
+ 'question': ('django.db.models.fields.related.ForeignKey', [], {'related_name': "'viewed'", 'to': "orm['askbot.Question']"}),
+ 'when': ('django.db.models.fields.DateTimeField', [], {}),
+ 'who': ('django.db.models.fields.related.ForeignKey', [], {'related_name': "'question_views'", 'to': "orm['auth.User']"})
+ },
+ 'askbot.repute': {
+ 'Meta': {'object_name': 'Repute', 'db_table': "u'repute'"},
+ 'comment': ('django.db.models.fields.CharField', [], {'max_length': '128', 'null': 'True'}),
+ 'id': ('django.db.models.fields.AutoField', [], {'primary_key': 'True'}),
+ 'negative': ('django.db.models.fields.SmallIntegerField', [], {'default': '0'}),
+ 'positive': ('django.db.models.fields.SmallIntegerField', [], {'default': '0'}),
+ 'question': ('django.db.models.fields.related.ForeignKey', [], {'to': "orm['askbot.Question']", 'null': 'True', 'blank': 'True'}),
+ 'reputation': ('django.db.models.fields.IntegerField', [], {'default': '1'}),
+ 'reputation_type': ('django.db.models.fields.SmallIntegerField', [], {}),
+ 'reputed_at': ('django.db.models.fields.DateTimeField', [], {'default': 'datetime.datetime.now'}),
+ 'user': ('django.db.models.fields.related.ForeignKey', [], {'to': "orm['auth.User']"})
+ },
+ 'askbot.tag': {
+ 'Meta': {'ordering': "('-used_count', 'name')", 'object_name': 'Tag', 'db_table': "u'tag'"},
+ 'created_by': ('django.db.models.fields.related.ForeignKey', [], {'related_name': "'created_tags'", 'to': "orm['auth.User']"}),
+ 'deleted': ('django.db.models.fields.BooleanField', [], {'default': 'False'}),
+ 'deleted_at': ('django.db.models.fields.DateTimeField', [], {'null': 'True', 'blank': 'True'}),
+ 'deleted_by': ('django.db.models.fields.related.ForeignKey', [], {'blank': 'True', 'related_name': "'deleted_tags'", 'null': 'True', 'to': "orm['auth.User']"}),
+ 'id': ('django.db.models.fields.AutoField', [], {'primary_key': 'True'}),
+ 'name': ('django.db.models.fields.CharField', [], {'unique': 'True', 'max_length': '255'}),
+ 'used_count': ('django.db.models.fields.PositiveIntegerField', [], {'default': '0'})
+ },
+ 'askbot.thread': {
+ 'Meta': {'object_name': 'Thread'},
+ 'accepted_answer': ('django.db.models.fields.related.ForeignKey', [], {'to': "orm['askbot.Answer']", 'null': 'True', 'blank': 'True'}),
+ 'answer_accepted_at': ('django.db.models.fields.DateTimeField', [], {'null': 'True', 'blank': 'True'}),
+ 'answer_count': ('django.db.models.fields.PositiveIntegerField', [], {'default': '0'}),
+ 'close_reason': ('django.db.models.fields.SmallIntegerField', [], {'null': 'True', 'blank': 'True'}),
+ 'closed': ('django.db.models.fields.BooleanField', [], {'default': 'False'}),
+ 'closed_at': ('django.db.models.fields.DateTimeField', [], {'null': 'True', 'blank': 'True'}),
+ 'closed_by': ('django.db.models.fields.related.ForeignKey', [], {'to': "orm['auth.User']", 'null': 'True', 'blank': 'True'}),
+ 'favorited_by': ('django.db.models.fields.related.ManyToManyField', [], {'related_name': "'unused_favorite_threads'", 'symmetrical': 'False', 'through': "orm['askbot.FavoriteQuestion']", 'to': "orm['auth.User']"}),
+ 'favourite_count': ('django.db.models.fields.PositiveIntegerField', [], {'default': '0'}),
+ 'followed_by': ('django.db.models.fields.related.ManyToManyField', [], {'related_name': "'followed_threads'", 'symmetrical': 'False', 'to': "orm['auth.User']"}),
+ 'id': ('django.db.models.fields.AutoField', [], {'primary_key': 'True'}),
+ 'last_activity_at': ('django.db.models.fields.DateTimeField', [], {'default': 'datetime.datetime.now'}),
+ 'last_activity_by': ('django.db.models.fields.related.ForeignKey', [], {'related_name': "'unused_last_active_in_threads'", 'to': "orm['auth.User']"}),
+ 'tagnames': ('django.db.models.fields.CharField', [], {'max_length': '125'}),
+ 'tags': ('django.db.models.fields.related.ManyToManyField', [], {'related_name': "'threads'", 'symmetrical': 'False', 'to': "orm['askbot.Tag']"}),
+ 'title': ('django.db.models.fields.CharField', [], {'max_length': '300'}),
+ 'view_count': ('django.db.models.fields.PositiveIntegerField', [], {'default': '0'})
+ },
+ 'askbot.vote': {
+ 'Meta': {'unique_together': "(('content_type', 'object_id', 'user'),)", 'object_name': 'Vote', 'db_table': "u'vote'"},
+ 'content_type': ('django.db.models.fields.related.ForeignKey', [], {'to': "orm['contenttypes.ContentType']"}),
+ 'id': ('django.db.models.fields.AutoField', [], {'primary_key': 'True'}),
+ 'object_id': ('django.db.models.fields.PositiveIntegerField', [], {}),
+ 'user': ('django.db.models.fields.related.ForeignKey', [], {'related_name': "'votes'", 'to': "orm['auth.User']"}),
+ 'vote': ('django.db.models.fields.SmallIntegerField', [], {}),
+ 'voted_at': ('django.db.models.fields.DateTimeField', [], {'default': 'datetime.datetime.now'})
+ },
+ 'auth.group': {
+ 'Meta': {'object_name': 'Group'},
+ 'id': ('django.db.models.fields.AutoField', [], {'primary_key': 'True'}),
+ 'name': ('django.db.models.fields.CharField', [], {'unique': 'True', 'max_length': '80'}),
+ 'permissions': ('django.db.models.fields.related.ManyToManyField', [], {'to': "orm['auth.Permission']", 'symmetrical': 'False', 'blank': 'True'})
+ },
+ 'auth.permission': {
+ 'Meta': {'ordering': "('content_type__app_label', 'content_type__model', 'codename')", 'unique_together': "(('content_type', 'codename'),)", 'object_name': 'Permission'},
+ 'codename': ('django.db.models.fields.CharField', [], {'max_length': '100'}),
+ 'content_type': ('django.db.models.fields.related.ForeignKey', [], {'to': "orm['contenttypes.ContentType']"}),
+ 'id': ('django.db.models.fields.AutoField', [], {'primary_key': 'True'}),
+ 'name': ('django.db.models.fields.CharField', [], {'max_length': '50'})
+ },
+ 'auth.user': {
+ 'Meta': {'object_name': 'User'},
+ 'about': ('django.db.models.fields.TextField', [], {'blank': 'True'}),
+ 'avatar_type': ('django.db.models.fields.CharField', [], {'default': "'n'", 'max_length': '1'}),
+ 'bronze': ('django.db.models.fields.SmallIntegerField', [], {'default': '0'}),
+ 'consecutive_days_visit_count': ('django.db.models.fields.IntegerField', [], {'default': '0'}),
+ 'country': ('django_countries.fields.CountryField', [], {'max_length': '2', 'blank': 'True'}),
+ 'date_joined': ('django.db.models.fields.DateTimeField', [], {'default': 'datetime.datetime.now'}),
+ 'date_of_birth': ('django.db.models.fields.DateField', [], {'null': 'True', 'blank': 'True'}),
+ 'display_tag_filter_strategy': ('django.db.models.fields.SmallIntegerField', [], {'default': '0'}),
+ 'email': ('django.db.models.fields.EmailField', [], {'max_length': '75', 'blank': 'True'}),
+ 'email_isvalid': ('django.db.models.fields.BooleanField', [], {'default': 'False'}),
+ 'email_key': ('django.db.models.fields.CharField', [], {'max_length': '32', 'null': 'True'}),
+ 'email_tag_filter_strategy': ('django.db.models.fields.SmallIntegerField', [], {'default': '1'}),
+ 'first_name': ('django.db.models.fields.CharField', [], {'max_length': '30', 'blank': 'True'}),
+ 'gold': ('django.db.models.fields.SmallIntegerField', [], {'default': '0'}),
+ 'gravatar': ('django.db.models.fields.CharField', [], {'max_length': '32'}),
+ 'groups': ('django.db.models.fields.related.ManyToManyField', [], {'to': "orm['auth.Group']", 'symmetrical': 'False', 'blank': 'True'}),
+ 'id': ('django.db.models.fields.AutoField', [], {'primary_key': 'True'}),
+ 'ignored_tags': ('django.db.models.fields.TextField', [], {'blank': 'True'}),
+ 'interesting_tags': ('django.db.models.fields.TextField', [], {'blank': 'True'}),
+ 'is_active': ('django.db.models.fields.BooleanField', [], {'default': 'True'}),
+ 'is_staff': ('django.db.models.fields.BooleanField', [], {'default': 'False'}),
+ 'is_superuser': ('django.db.models.fields.BooleanField', [], {'default': 'False'}),
+ 'last_login': ('django.db.models.fields.DateTimeField', [], {'default': 'datetime.datetime.now'}),
+ 'last_name': ('django.db.models.fields.CharField', [], {'max_length': '30', 'blank': 'True'}),
+ 'last_seen': ('django.db.models.fields.DateTimeField', [], {'default': 'datetime.datetime.now'}),
+ 'location': ('django.db.models.fields.CharField', [], {'max_length': '100', 'blank': 'True'}),
+ 'new_response_count': ('django.db.models.fields.IntegerField', [], {'default': '0'}),
+ 'password': ('django.db.models.fields.CharField', [], {'max_length': '128'}),
+ 'questions_per_page': ('django.db.models.fields.SmallIntegerField', [], {'default': '10'}),
+ 'real_name': ('django.db.models.fields.CharField', [], {'max_length': '100', 'blank': 'True'}),
+ 'reputation': ('django.db.models.fields.PositiveIntegerField', [], {'default': '1'}),
+ 'seen_response_count': ('django.db.models.fields.IntegerField', [], {'default': '0'}),
+ 'show_country': ('django.db.models.fields.BooleanField', [], {'default': 'False'}),
+ 'silver': ('django.db.models.fields.SmallIntegerField', [], {'default': '0'}),
+ 'status': ('django.db.models.fields.CharField', [], {'default': "'w'", 'max_length': '2'}),
+ 'user_permissions': ('django.db.models.fields.related.ManyToManyField', [], {'to': "orm['auth.Permission']", 'symmetrical': 'False', 'blank': 'True'}),
+ 'username': ('django.db.models.fields.CharField', [], {'unique': 'True', 'max_length': '30'}),
+ 'website': ('django.db.models.fields.URLField', [], {'max_length': '200', 'blank': 'True'})
+ },
+ 'contenttypes.contenttype': {
+ 'Meta': {'ordering': "('name',)", 'unique_together': "(('app_label', 'model'),)", 'object_name': 'ContentType', 'db_table': "'django_content_type'"},
+ 'app_label': ('django.db.models.fields.CharField', [], {'max_length': '100'}),
+ 'id': ('django.db.models.fields.AutoField', [], {'primary_key': 'True'}),
+ 'model': ('django.db.models.fields.CharField', [], {'max_length': '100'}),
+ 'name': ('django.db.models.fields.CharField', [], {'max_length': '100'})
+ }
+ }
+
+ complete_apps = ['askbot']
diff --git a/askbot/models/question.py b/askbot/models/question.py
index 0cff2a89..018671bc 100644
--- a/askbot/models/question.py
+++ b/askbot/models/question.py
@@ -448,7 +448,6 @@ class QuestionQuerySet(models.query.QuerySet):
'sort',
const.DEFAULT_POST_SORT_METHOD
)
-
qs = self.filter(deleted=False)#todo - add a possibility to see deleted questions
#return metadata
diff --git a/askbot/search/state_manager.py b/askbot/search/state_manager.py
index d441e33b..1ea4e405 100644
--- a/askbot/search/state_manager.py
+++ b/askbot/search/state_manager.py
@@ -152,13 +152,14 @@ class SearchState(object):
self.__init__()
self.logged_in = is_logged_in
- def update_value(self, key, store):
+ def update_value(self, key, store, reset_page=True):
if key in store:
old_value = getattr(self, key)
new_value = store[key]
if new_value != old_value:
setattr(self, key, new_value)
- self.reset_page()
+ if reset_page == True:
+ self.reset_page()
def relax_stickiness(self, input_dict, view_log):
if view_log.get_previous(1) == 'questions':
@@ -172,22 +173,20 @@ class SearchState(object):
if 'start_over' in input_dict:
self.reset()
+ reset_page = True
if 'page' in input_dict:
self.page = input_dict['page']
- #special case - on page flip no other input is accepted
- return
+ reset_page = False # This is done to keep page from resetting in other sorting modes
if 'page_size' in input_dict:
self.update_value('page_size', input_dict)
self.reset_page()#todo may be smarter here - start with ~same q
- #same as with page - return right away
- return
if 'scope' in input_dict:
if input_dict['scope'] == 'favorite' and self.logged_in == False:
self.reset_scope()
else:
- self.update_value('scope', input_dict)
+ self.update_value('scope', input_dict, reset_page=reset_page)
if 'tags' in input_dict:
if self.tags:
@@ -223,20 +222,20 @@ class SearchState(object):
self.reset_sort()
return
- self.update_value('author', input_dict)
+ self.update_value('author', input_dict, reset_page=reset_page)
if 'query' in input_dict:
query_bits = parse_query(input_dict['query'])
tmp_input_dict = copy.deepcopy(input_dict)
tmp_input_dict.update(query_bits)
- self.update_value('query', tmp_input_dict)#the original query
+ self.update_value('query', tmp_input_dict, reset_page=reset_page)#the original query
#pull out values of [title:xxx], [user:some one]
#[tag: sometag], title:'xxx', title:"xxx", @user, @'some user',
#and #tag - (hash symbol to delineate the tag
- self.update_value('stripped_query', tmp_input_dict)
- self.update_value('query_tags', tmp_input_dict)
- self.update_value('query_users', tmp_input_dict)
- self.update_value('query_title', tmp_input_dict)
+ self.update_value('stripped_query', tmp_input_dict, reset_page=reset_page)
+ self.update_value('query_tags', tmp_input_dict, reset_page=reset_page)
+ self.update_value('query_users', tmp_input_dict, reset_page=reset_page)
+ self.update_value('query_title', tmp_input_dict, reset_page=reset_page)
self.sort = 'relevance-desc'
elif 'search' in input_dict:
#a case of use nulling search query by hand
@@ -253,7 +252,7 @@ class SearchState(object):
if input_dict['sort'] == 'relevance-desc' and self.query is None:
self.reset_sort()
else:
- self.update_value('sort', input_dict)
+ self.update_value('sort', input_dict, reset_page=reset_page)
#todo: plug - mysql has no relevance sort
if not askbot.conf.should_show_sort_by_relevance():
@@ -295,6 +294,28 @@ class SearchState(object):
def reset_scope(self):
self.scope = const.DEFAULT_POST_SCOPE
+ def query_string(self):
+ out = 'section:%s' % self.scope
+ out += '/sort:%s' % self.sort
+ if self.query:
+ out += '/query:%s' % '+'.join(self.query.split(' '))
+ if self.tags:
+ out += '/tags:%s' % '+'.join(self.tags)
+ if self.author:
+ out += '/author:%s' % self.author
+ return out+'/'
+
+ def make_parameters(self):
+ params_dict = {
+ 'scope': self.scope,
+ 'sort': self.sort,
+ 'query': '+'.join(self.query.split(' ')) if self.query else None,
+ 'tags': '+'.join(self.tags) if self.tags else None,
+ 'author': self.author,
+ 'page_size': self.page_size
+ }
+ return params_dict
+
class ViewLog(object):
"""The ViewLog helper obejcts store the trail of the page visits for a
given user. The trail is recorded only up to a certain depth.
diff --git a/askbot/shims/__init__.py b/askbot/shims/__init__.py
new file mode 100644
index 00000000..e69de29b
--- /dev/null
+++ b/askbot/shims/__init__.py
diff --git a/askbot/shims/django_shims.py b/askbot/shims/django_shims.py
new file mode 100644
index 00000000..0fe6a964
--- /dev/null
+++ b/askbot/shims/django_shims.py
@@ -0,0 +1,22 @@
+"""shims for django objects of different versions
+only functionality that is necessary is implemented"""
+import django
+
+class ResolverMatch(object):
+ """a shim for the ResolverMatch, implemented
+ since django 1.3
+ before the match result was a three-tuple
+ """
+ def __init__(self, resolver_match):
+ self.resolver_match = resolver_match
+
+ def _get_func(self):
+ """the getter function for the
+ ``func`` property
+ """
+ if django.VERSION[1] < 3:
+ return self.resolver_match[0]
+ else:
+ return self.resolver_match.func
+
+ func = property(_get_func)
diff --git a/askbot/skins/common/media/js/jquery.history.js b/askbot/skins/common/media/js/jquery.history.js
new file mode 100644
index 00000000..8d4edcd2
--- /dev/null
+++ b/askbot/skins/common/media/js/jquery.history.js
@@ -0,0 +1 @@
+window.JSON||(window.JSON={}),function(){function f(a){return a<10?"0"+a:a}function quote(a){return escapable.lastIndex=0,escapable.test(a)?'"'+a.replace(escapable,function(a){var b=meta[a];return typeof b=="string"?b:"\\u"+("0000"+a.charCodeAt(0).toString(16)).slice(-4)})+'"':'"'+a+'"'}function str(a,b){var c,d,e,f,g=gap,h,i=b[a];i&&typeof i=="object"&&typeof i.toJSON=="function"&&(i=i.toJSON(a)),typeof rep=="function"&&(i=rep.call(b,a,i));switch(typeof i){case"string":return quote(i);case"number":return isFinite(i)?String(i):"null";case"boolean":case"null":return String(i);case"object":if(!i)return"null";gap+=indent,h=[];if(Object.prototype.toString.apply(i)==="[object Array]"){f=i.length;for(c=0;c<f;c+=1)h[c]=str(c,i)||"null";return e=h.length===0?"[]":gap?"[\n"+gap+h.join(",\n"+gap)+"\n"+g+"]":"["+h.join(",")+"]",gap=g,e}if(rep&&typeof rep=="object"){f=rep.length;for(c=0;c<f;c+=1)d=rep[c],typeof d=="string"&&(e=str(d,i),e&&h.push(quote(d)+(gap?": ":":")+e))}else for(d in i)Object.hasOwnProperty.call(i,d)&&(e=str(d,i),e&&h.push(quote(d)+(gap?": ":":")+e));return e=h.length===0?"{}":gap?"{\n"+gap+h.join(",\n"+gap)+"\n"+g+"}":"{"+h.join(",")+"}",gap=g,e}}"use strict",typeof Date.prototype.toJSON!="function"&&(Date.prototype.toJSON=function(a){return isFinite(this.valueOf())?this.getUTCFullYear()+"-"+f(this.getUTCMonth()+1)+"-"+f(this.getUTCDate())+"T"+f(this.getUTCHours())+":"+f(this.getUTCMinutes())+":"+f(this.getUTCSeconds())+"Z":null},String.prototype.toJSON=Number.prototype.toJSON=Boolean.prototype.toJSON=function(a){return this.valueOf()});var JSON=window.JSON,cx=/[\u0000\u00ad\u0600-\u0604\u070f\u17b4\u17b5\u200c-\u200f\u2028-\u202f\u2060-\u206f\ufeff\ufff0-\uffff]/g,escapable=/[\\\"\x00-\x1f\x7f-\x9f\u00ad\u0600-\u0604\u070f\u17b4\u17b5\u200c-\u200f\u2028-\u202f\u2060-\u206f\ufeff\ufff0-\uffff]/g,gap,indent,meta={"\b":"\\b","\t":"\\t","\n":"\\n","\f":"\\f","\r":"\\r",'"':'\\"',"\\":"\\\\"},rep;typeof JSON.stringify!="function"&&(JSON.stringify=function(a,b,c){var d;gap="",indent="";if(typeof c=="number")for(d=0;d<c;d+=1)indent+=" ";else typeof c=="string"&&(indent=c);rep=b;if(!b||typeof b=="function"||typeof b=="object"&&typeof b.length=="number")return str("",{"":a});throw new Error("JSON.stringify")}),typeof JSON.parse!="function"&&(JSON.parse=function(text,reviver){function walk(a,b){var c,d,e=a[b];if(e&&typeof e=="object")for(c in e)Object.hasOwnProperty.call(e,c)&&(d=walk(e,c),d!==undefined?e[c]=d:delete e[c]);return reviver.call(a,b,e)}var j;text=String(text),cx.lastIndex=0,cx.test(text)&&(text=text.replace(cx,function(a){return"\\u"+("0000"+a.charCodeAt(0).toString(16)).slice(-4)}));if(/^[\],:{}\s]*$/.test(text.replace(/\\(?:["\\\/bfnrt]|u[0-9a-fA-F]{4})/g,"@").replace(/"[^"\\\n\r]*"|true|false|null|-?\d+(?:\.\d*)?(?:[eE][+\-]?\d+)?/g,"]").replace(/(?:^|:|,)(?:\s*\[)+/g,"")))return j=eval("("+text+")"),typeof reviver=="function"?walk({"":j},""):j;throw new SyntaxError("JSON.parse")})}(),function(a,b){"use strict";var c=a.History=a.History||{},d=a.jQuery;if(typeof c.Adapter!="undefined")throw new Error("History.js Adapter has already been loaded...");c.Adapter={bind:function(a,b,c){d(a).bind(b,c)},trigger:function(a,b,c){d(a).trigger(b,c)},extractEventData:function(a,c,d){var e=c&&c.originalEvent&&c.originalEvent[a]||d&&d[a]||b;return e},onDomLoad:function(a){d(a)}},typeof c.init!="undefined"&&c.init()}(window),function(a,b){"use strict";var c=a.document,d=a.setTimeout||d,e=a.clearTimeout||e,f=a.setInterval||f,g=a.History=a.History||{};if(typeof g.initHtml4!="undefined")throw new Error("History.js HTML4 Support has already been loaded...");g.initHtml4=function(){if(typeof g.initHtml4.initialized!="undefined")return!1;g.initHtml4.initialized=!0,g.enabled=!0,g.savedHashes=[],g.isLastHash=function(a){var b=g.getHashByIndex(),c;return c=a===b,c},g.saveHash=function(a){return g.isLastHash(a)?!1:(g.savedHashes.push(a),!0)},g.getHashByIndex=function(a){var b=null;return typeof a=="undefined"?b=g.savedHashes[g.savedHashes.length-1]:a<0?b=g.savedHashes[g.savedHashes.length+a]:b=g.savedHashes[a],b},g.discardedHashes={},g.discardedStates={},g.discardState=function(a,b,c){var d=g.getHashByState(a),e;return e={discardedState:a,backState:c,forwardState:b},g.discardedStates[d]=e,!0},g.discardHash=function(a,b,c){var d={discardedHash:a,backState:c,forwardState:b};return g.discardedHashes[a]=d,!0},g.discardedState=function(a){var b=g.getHashByState(a),c;return c=g.discardedStates[b]||!1,c},g.discardedHash=function(a){var b=g.discardedHashes[a]||!1;return b},g.recycleState=function(a){var b=g.getHashByState(a);return g.discardedState(a)&&delete g.discardedStates[b],!0},g.emulated.hashChange&&(g.hashChangeInit=function(){g.checkerFunction=null;var b="",d,e,h,i;return g.isInternetExplorer()?(d="historyjs-iframe",e=c.createElement("iframe"),e.setAttribute("id",d),e.style.display="none",c.body.appendChild(e),e.contentWindow.document.open(),e.contentWindow.document.close(),h="",i=!1,g.checkerFunction=function(){if(i)return!1;i=!0;var c=g.getHash()||"",d=g.unescapeHash(e.contentWindow.document.location.hash)||"";return c!==b?(b=c,d!==c&&(h=d=c,e.contentWindow.document.open(),e.contentWindow.document.close(),e.contentWindow.document.location.hash=g.escapeHash(c)),g.Adapter.trigger(a,"hashchange")):d!==h&&(h=d,g.setHash(d,!1)),i=!1,!0}):g.checkerFunction=function(){var c=g.getHash();return c!==b&&(b=c,g.Adapter.trigger(a,"hashchange")),!0},g.intervalList.push(f(g.checkerFunction,g.options.hashChangeInterval)),!0},g.Adapter.onDomLoad(g.hashChangeInit)),g.emulated.pushState&&(g.onHashChange=function(b){var d=b&&b.newURL||c.location.href,e=g.getHashByUrl(d),f=null,h=null,i=null,j;return g.isLastHash(e)?(g.busy(!1),!1):(g.doubleCheckComplete(),g.saveHash(e),e&&g.isTraditionalAnchor(e)?(g.Adapter.trigger(a,"anchorchange"),g.busy(!1),!1):(f=g.extractState(g.getFullUrl(e||c.location.href,!1),!0),g.isLastSavedState(f)?(g.busy(!1),!1):(h=g.getHashByState(f),j=g.discardedState(f),j?(g.getHashByIndex(-2)===g.getHashByState(j.forwardState)?g.back(!1):g.forward(!1),!1):(g.pushState(f.data,f.title,f.url,!1),!0))))},g.Adapter.bind(a,"hashchange",g.onHashChange),g.pushState=function(b,d,e,f){if(g.getHashByUrl(e))throw new Error("History.js does not support states with fragement-identifiers (hashes/anchors).");if(f!==!1&&g.busy())return g.pushQueue({scope:g,callback:g.pushState,args:arguments,queue:f}),!1;g.busy(!0);var h=g.createStateObject(b,d,e),i=g.getHashByState(h),j=g.getState(!1),k=g.getHashByState(j),l=g.getHash();return g.storeState(h),g.expectedStateId=h.id,g.recycleState(h),g.setTitle(h),i===k?(g.busy(!1),!1):i!==l&&i!==g.getShortUrl(c.location.href)?(g.setHash(i,!1),!1):(g.saveState(h),g.Adapter.trigger(a,"statechange"),g.busy(!1),!0)},g.replaceState=function(a,b,c,d){if(g.getHashByUrl(c))throw new Error("History.js does not support states with fragement-identifiers (hashes/anchors).");if(d!==!1&&g.busy())return g.pushQueue({scope:g,callback:g.replaceState,args:arguments,queue:d}),!1;g.busy(!0);var e=g.createStateObject(a,b,c),f=g.getState(!1),h=g.getStateByIndex(-2);return g.discardState(f,e,h),g.pushState(e.data,e.title,e.url,!1),!0}),g.emulated.pushState&&g.getHash()&&!g.emulated.hashChange&&g.Adapter.onDomLoad(function(){g.Adapter.trigger(a,"hashchange")})},typeof g.init!="undefined"&&g.init()}(window),function(a,b){"use strict";var c=a.console||b,d=a.document,e=a.navigator,f=a.sessionStorage||!1,g=a.setTimeout,h=a.clearTimeout,i=a.setInterval,j=a.clearInterval,k=a.JSON,l=a.alert,m=a.History=a.History||{},n=a.history;k.stringify=k.stringify||k.encode,k.parse=k.parse||k.decode;if(typeof m.init!="undefined")throw new Error("History.js Core has already been loaded...");m.init=function(){return typeof m.Adapter=="undefined"?!1:(typeof m.initCore!="undefined"&&m.initCore(),typeof m.initHtml4!="undefined"&&m.initHtml4(),!0)},m.initCore=function(){if(typeof m.initCore.initialized!="undefined")return!1;m.initCore.initialized=!0,m.options=m.options||{},m.options.hashChangeInterval=m.options.hashChangeInterval||100,m.options.safariPollInterval=m.options.safariPollInterval||500,m.options.doubleCheckInterval=m.options.doubleCheckInterval||500,m.options.storeInterval=m.options.storeInterval||1e3,m.options.busyDelay=m.options.busyDelay||250,m.options.debug=m.options.debug||!1,m.options.initialTitle=m.options.initialTitle||d.title,m.intervalList=[],m.clearAllIntervals=function(){var a,b=m.intervalList;if(typeof b!="undefined"&&b!==null){for(a=0;a<b.length;a++)j(b[a]);m.intervalList=null}},m.debug=function(){(m.options.debug||!1)&&m.log.apply(m,arguments)},m.log=function(){var a=typeof c!="undefined"&&typeof c.log!="undefined"&&typeof c.log.apply!="undefined",b=d.getElementById("log"),e,f,g,h,i;a?(h=Array.prototype.slice.call(arguments),e=h.shift(),typeof c.debug!="undefined"?c.debug.apply(c,[e,h]):c.log.apply(c,[e,h])):e="\n"+arguments[0]+"\n";for(f=1,g=arguments.length;f<g;++f){i=arguments[f];if(typeof i=="object"&&typeof k!="undefined")try{i=k.stringify(i)}catch(j){}e+="\n"+i+"\n"}return b?(b.value+=e+"\n-----\n",b.scrollTop=b.scrollHeight-b.clientHeight):a||l(e),!0},m.getInternetExplorerMajorVersion=function(){var a=m.getInternetExplorerMajorVersion.cached=typeof m.getInternetExplorerMajorVersion.cached!="undefined"?m.getInternetExplorerMajorVersion.cached:function(){var a=3,b=d.createElement("div"),c=b.getElementsByTagName("i");while((b.innerHTML="<!--[if gt IE "+ ++a+"]><i></i><![endif]-->")&&c[0]);return a>4?a:!1}();return a},m.isInternetExplorer=function(){var a=m.isInternetExplorer.cached=typeof m.isInternetExplorer.cached!="undefined"?m.isInternetExplorer.cached:Boolean(m.getInternetExplorerMajorVersion());return a},m.emulated={pushState:!Boolean(a.history&&a.history.pushState&&a.history.replaceState&&!/ Mobile\/([1-7][a-z]|(8([abcde]|f(1[0-8]))))/i.test(e.userAgent)&&!/AppleWebKit\/5([0-2]|3[0-2])/i.test(e.userAgent)),hashChange:Boolean(!("onhashchange"in a||"onhashchange"in d)||m.isInternetExplorer()&&m.getInternetExplorerMajorVersion()<8)},m.enabled=!m.emulated.pushState,m.bugs={setHash:Boolean(!m.emulated.pushState&&e.vendor==="Apple Computer, Inc."&&/AppleWebKit\/5([0-2]|3[0-3])/.test(e.userAgent)),safariPoll:Boolean(!m.emulated.pushState&&e.vendor==="Apple Computer, Inc."&&/AppleWebKit\/5([0-2]|3[0-3])/.test(e.userAgent)),ieDoubleCheck:Boolean(m.isInternetExplorer()&&m.getInternetExplorerMajorVersion()<8),hashEscape:Boolean(m.isInternetExplorer()&&m.getInternetExplorerMajorVersion()<7)},m.isEmptyObject=function(a){for(var b in a)return!1;return!0},m.cloneObject=function(a){var b,c;return a?(b=k.stringify(a),c=k.parse(b)):c={},c},m.getRootUrl=function(){var a=d.location.protocol+"//"+(d.location.hostname||d.location.host);if(d.location.port||!1)a+=":"+d.location.port;return a+="/",a},m.getBaseHref=function(){var a=d.getElementsByTagName("base"),b=null,c="";return a.length===1&&(b=a[0],c=b.href.replace(/[^\/]+$/,"")),c=c.replace(/\/+$/,""),c&&(c+="/"),c},m.getBaseUrl=function(){var a=m.getBaseHref()||m.getBasePageUrl()||m.getRootUrl();return a},m.getPageUrl=function(){var a=m.getState(!1,!1),b=(a||{}).url||d.location.href,c;return c=b.replace(/\/+$/,"").replace(/[^\/]+$/,function(a,b,c){return/\./.test(a)?a:a+"/"}),c},m.getBasePageUrl=function(){var a=d.location.href.replace(/[#\?].*/,"").replace(/[^\/]+$/,function(a,b,c){return/[^\/]$/.test(a)?"":a}).replace(/\/+$/,"")+"/";return a},m.getFullUrl=function(a,b){var c=a,d=a.substring(0,1);return b=typeof b=="undefined"?!0:b,/[a-z]+\:\/\//.test(a)||(d==="/"?c=m.getRootUrl()+a.replace(/^\/+/,""):d==="#"?c=m.getPageUrl().replace(/#.*/,"")+a:d==="?"?c=m.getPageUrl().replace(/[\?#].*/,"")+a:b?c=m.getBaseUrl()+a.replace(/^(\.\/)+/,""):c=m.getBasePageUrl()+a.replace(/^(\.\/)+/,"")),c.replace(/\#$/,"")},m.getShortUrl=function(a){var b=a,c=m.getBaseUrl(),d=m.getRootUrl();return m.emulated.pushState&&(b=b.replace(c,"")),b=b.replace(d,"/"),m.isTraditionalAnchor(b)&&(b="./"+b),b=b.replace(/^(\.\/)+/g,"./").replace(/\#$/,""),b},m.store={},m.idToState=m.idToState||{},m.stateToId=m.stateToId||{},m.urlToId=m.urlToId||{},m.storedStates=m.storedStates||[],m.savedStates=m.savedStates||[],m.normalizeStore=function(){m.store.idToState=m.store.idToState||{},m.store.urlToId=m.store.urlToId||{},m.store.stateToId=m.store.stateToId||{}},m.getState=function(a,b){typeof a=="undefined"&&(a=!0),typeof b=="undefined"&&(b=!0);var c=m.getLastSavedState();return!c&&b&&(c=m.createStateObject()),a&&(c=m.cloneObject(c),c.url=c.cleanUrl||c.url),c},m.getIdByState=function(a){var b=m.extractId(a.url),c;if(!b){c=m.getStateString(a);if(typeof m.stateToId[c]!="undefined")b=m.stateToId[c];else if(typeof m.store.stateToId[c]!="undefined")b=m.store.stateToId[c];else{for(;;){b=(new Date).getTime()+String(Math.random()).replace(/\D/g,"");if(typeof m.idToState[b]=="undefined"&&typeof m.store.idToState[b]=="undefined")break}m.stateToId[c]=b,m.idToState[b]=a}}return b},m.normalizeState=function(a){var b,c;if(!a||typeof a!="object")a={};if(typeof a.normalized!="undefined")return a;if(!a.data||typeof a.data!="object")a.data={};b={},b.normalized=!0,b.title=a.title||"",b.url=m.getFullUrl(m.unescapeString(a.url||d.location.href)),b.hash=m.getShortUrl(b.url),b.data=m.cloneObject(a.data),b.id=m.getIdByState(b),b.cleanUrl=b.url.replace(/\??\&_suid.*/,""),b.url=b.cleanUrl,c=!m.isEmptyObject(b.data);if(b.title||c)b.hash=m.getShortUrl(b.url).replace(/\??\&_suid.*/,""),/\?/.test(b.hash)||(b.hash+="?"),b.hash+="&_suid="+b.id;return b.hashedUrl=m.getFullUrl(b.hash),(m.emulated.pushState||m.bugs.safariPoll)&&m.hasUrlDuplicate(b)&&(b.url=b.hashedUrl),b},m.createStateObject=function(a,b,c){var d={data:a,title:b,url:c};return d=m.normalizeState(d),d},m.getStateById=function(a){a=String(a);var c=m.idToState[a]||m.store.idToState[a]||b;return c},m.getStateString=function(a){var b,c,d;return b=m.normalizeState(a),c={data:b.data,title:a.title,url:a.url},d=k.stringify(c),d},m.getStateId=function(a){var b,c;return b=m.normalizeState(a),c=b.id,c},m.getHashByState=function(a){var b,c;return b=m.normalizeState(a),c=b.hash,c},m.extractId=function(a){var b,c,d;return c=/(.*)\&_suid=([0-9]+)$/.exec(a),d=c?c[1]||a:a,b=c?String(c[2]||""):"",b||!1},m.isTraditionalAnchor=function(a){var b=!/[\/\?\.]/.test(a);return b},m.extractState=function(a,b){var c=null,d,e;return b=b||!1,d=m.extractId(a),d&&(c=m.getStateById(d)),c||(e=m.getFullUrl(a),d=m.getIdByUrl(e)||!1,d&&(c=m.getStateById(d)),!c&&b&&!m.isTraditionalAnchor(a)&&(c=m.createStateObject(null,null,e))),c},m.getIdByUrl=function(a){var c=m.urlToId[a]||m.store.urlToId[a]||b;return c},m.getLastSavedState=function(){return m.savedStates[m.savedStates.length-1]||b},m.getLastStoredState=function(){return m.storedStates[m.storedStates.length-1]||b},m.hasUrlDuplicate=function(a){var b=!1,c;return c=m.extractState(a.url),b=c&&c.id!==a.id,b},m.storeState=function(a){return m.urlToId[a.url]=a.id,m.storedStates.push(m.cloneObject(a)),a},m.isLastSavedState=function(a){var b=!1,c,d,e;return m.savedStates.length&&(c=a.id,d=m.getLastSavedState(),e=d.id,b=c===e),b},m.saveState=function(a){return m.isLastSavedState(a)?!1:(m.savedStates.push(m.cloneObject(a)),!0)},m.getStateByIndex=function(a){var b=null;return typeof a=="undefined"?b=m.savedStates[m.savedStates.length-1]:a<0?b=m.savedStates[m.savedStates.length+a]:b=m.savedStates[a],b},m.getHash=function(){var a=m.unescapeHash(d.location.hash);return a},m.unescapeString=function(b){var c=b,d;for(;;){d=a.unescape(c);if(d===c)break;c=d}return c},m.unescapeHash=function(a){var b=m.normalizeHash(a);return b=m.unescapeString(b),b},m.normalizeHash=function(a){var b=a.replace(/[^#]*#/,"").replace(/#.*/,"");return b},m.setHash=function(a,b){var c,e,f;return b!==!1&&m.busy()?(m.pushQueue({scope:m,callback:m.setHash,args:arguments,queue:b}),!1):(c=m.escapeHash(a),m.busy(!0),e=m.extractState(a,!0),e&&!m.emulated.pushState?m.pushState(e.data,e.title,e.url,!1):d.location.hash!==c&&(m.bugs.setHash?(f=m.getPageUrl(),m.pushState(null,null,f+"#"+c,!1)):d.location.hash=c),m)},m.escapeHash=function(b){var c=m.normalizeHash(b);return c=a.escape(c),m.bugs.hashEscape||(c=c.replace(/\%21/g,"!").replace(/\%26/g,"&").replace(/\%3D/g,"=").replace(/\%3F/g,"?")),c},m.getHashByUrl=function(a){var b=String(a).replace(/([^#]*)#?([^#]*)#?(.*)/,"$2");return b=m.unescapeHash(b),b},m.setTitle=function(a){var b=a.title,c;b||(c=m.getStateByIndex(0),c&&c.url===a.url&&(b=c.title||m.options.initialTitle));try{d.getElementsByTagName("title")[0].innerHTML=b.replace("<","&lt;").replace(">","&gt;").replace(" & "," &amp; ")}catch(e){}return d.title=b,m},m.queues=[],m.busy=function(a){typeof a!="undefined"?m.busy.flag=a:typeof m.busy.flag=="undefined"&&(m.busy.flag=!1);if(!m.busy.flag){h(m.busy.timeout);var b=function(){var a,c,d;if(m.busy.flag)return;for(a=m.queues.length-1;a>=0;--a){c=m.queues[a];if(c.length===0)continue;d=c.shift(),m.fireQueueItem(d),m.busy.timeout=g(b,m.options.busyDelay)}};m.busy.timeout=g(b,m.options.busyDelay)}return m.busy.flag},m.busy.flag=!1,m.fireQueueItem=function(a){return a.callback.apply(a.scope||m,a.args||[])},m.pushQueue=function(a){return m.queues[a.queue||0]=m.queues[a.queue||0]||[],m.queues[a.queue||0].push(a),m},m.queue=function(a,b){return typeof a=="function"&&(a={callback:a}),typeof b!="undefined"&&(a.queue=b),m.busy()?m.pushQueue(a):m.fireQueueItem(a),m},m.clearQueue=function(){return m.busy.flag=!1,m.queues=[],m},m.stateChanged=!1,m.doubleChecker=!1,m.doubleCheckComplete=function(){return m.stateChanged=!0,m.doubleCheckClear(),m},m.doubleCheckClear=function(){return m.doubleChecker&&(h(m.doubleChecker),m.doubleChecker=!1),m},m.doubleCheck=function(a){return m.stateChanged=!1,m.doubleCheckClear(),m.bugs.ieDoubleCheck&&(m.doubleChecker=g(function(){return m.doubleCheckClear(),m.stateChanged||a(),!0},m.options.doubleCheckInterval)),m},m.safariStatePoll=function(){var b=m.extractState(d.location.href),c;if(!m.isLastSavedState(b))c=b;else return;return c||(c=m.createStateObject()),m.Adapter.trigger(a,"popstate"),m},m.back=function(a){return a!==!1&&m.busy()?(m.pushQueue({scope:m,callback:m.back,args:arguments,queue:a}),!1):(m.busy(!0),m.doubleCheck(function(){m.back(!1)}),n.go(-1),!0)},m.forward=function(a){return a!==!1&&m.busy()?(m.pushQueue({scope:m,callback:m.forward,args:arguments,queue:a}),!1):(m.busy(!0),m.doubleCheck(function(){m.forward(!1)}),n.go(1),!0)},m.go=function(a,b){var c;if(a>0)for(c=1;c<=a;++c)m.forward(b);else{if(!(a<0))throw new Error("History.go: History.go requires a positive or negative integer passed.");for(c=-1;c>=a;--c)m.back(b)}return m};if(m.emulated.pushState){var o=function(){};m.pushState=m.pushState||o,m.replaceState=m.replaceState||o}else m.onPopState=function(b,c){var e=!1,f=!1,g,h;return m.doubleCheckComplete(),g=m.getHash(),g?(h=m.extractState(g||d.location.href,!0),h?m.replaceState(h.data,h.title,h.url,!1):(m.Adapter.trigger(a,"anchorchange"),m.busy(!1)),m.expectedStateId=!1,!1):(e=m.Adapter.extractEventData("state",b,c)||!1,e?f=m.getStateById(e):m.expectedStateId?f=m.getStateById(m.expectedStateId):f=m.extractState(d.location.href),f||(f=m.createStateObject(null,null,d.location.href)),m.expectedStateId=!1,m.isLastSavedState(f)?(m.busy(!1),!1):(m.storeState(f),m.saveState(f),m.setTitle(f),m.Adapter.trigger(a,"statechange"),m.busy(!1),!0))},m.Adapter.bind(a,"popstate",m.onPopState),m.pushState=function(b,c,d,e){if(m.getHashByUrl(d)&&m.emulated.pushState)throw new Error("History.js does not support states with fragement-identifiers (hashes/anchors).");if(e!==!1&&m.busy())return m.pushQueue({scope:m,callback:m.pushState,args:arguments,queue:e}),!1;m.busy(!0);var f=m.createStateObject(b,c,d);return m.isLastSavedState(f)?m.busy(!1):(m.storeState(f),m.expectedStateId=f.id,n.pushState(f.id,f.title,f.url),m.Adapter.trigger(a,"popstate")),!0},m.replaceState=function(b,c,d,e){if(m.getHashByUrl(d)&&m.emulated.pushState)throw new Error("History.js does not support states with fragement-identifiers (hashes/anchors).");if(e!==!1&&m.busy())return m.pushQueue({scope:m,callback:m.replaceState,args:arguments,queue:e}),!1;m.busy(!0);var f=m.createStateObject(b,c,d);return m.isLastSavedState(f)?m.busy(!1):(m.storeState(f),m.expectedStateId=f.id,n.replaceState(f.id,f.title,f.url),m.Adapter.trigger(a,"popstate")),!0};if(f){try{m.store=k.parse(f.getItem("History.store"))||{}}catch(p){m.store={}}m.normalizeStore()}else m.store={},m.normalizeStore();m.Adapter.bind(a,"beforeunload",m.clearAllIntervals),m.Adapter.bind(a,"unload",m.clearAllIntervals),m.saveState(m.storeState(m.extractState(d.location.href,!0))),f&&(m.onUnload=function(){var a,b;try{a=k.parse(f.getItem("History.store"))||{}}catch(c){a={}}a.idToState=a.idToState||{},a.urlToId=a.urlToId||{},a.stateToId=a.stateToId||{};for(b in m.idToState){if(!m.idToState.hasOwnProperty(b))continue;a.idToState[b]=m.idToState[b]}for(b in m.urlToId){if(!m.urlToId.hasOwnProperty(b))continue;a.urlToId[b]=m.urlToId[b]}for(b in m.stateToId){if(!m.stateToId.hasOwnProperty(b))continue;a.stateToId[b]=m.stateToId[b]}m.store=a,m.normalizeStore(),f.setItem("History.store",k.stringify(a))},m.intervalList.push(i(m.onUnload,m.options.storeInterval)),m.Adapter.bind(a,"beforeunload",m.onUnload),m.Adapter.bind(a,"unload",m.onUnload));if(!m.emulated.pushState){m.bugs.safariPoll&&m.intervalList.push(i(m.safariStatePoll,m.options.safariPollInterval));if(e.vendor==="Apple Computer, Inc."||(e.appCodeName||"")==="Mozilla")m.Adapter.bind(a,"hashchange",function(){m.Adapter.trigger(a,"popstate")}),m.getHash()&&m.Adapter.onDomLoad(function(){m.Adapter.trigger(a,"hashchange")})}},m.init()}(window) \ No newline at end of file
diff --git a/askbot/skins/common/media/js/live_search.js b/askbot/skins/common/media/js/live_search.js
index 73e1453a..bb18ce3b 100644
--- a/askbot/skins/common/media/js/live_search.js
+++ b/askbot/skins/common/media/js/live_search.js
@@ -5,6 +5,7 @@ var liveSearch = function(){
var running = false;
var q_list_sel = 'question-list';//id of question listing div
var search_url = undefined;
+ var current_url = undefined;
var restart_query = function(){};
var process_query = function(){};
var render_result = function(){};
@@ -23,7 +24,9 @@ var liveSearch = function(){
sortMethod = prevSortMethod;
}
refresh_x_button();
- reset_query(sortMethod);
+ new_url = remove_from_url(search_url, 'query')
+ search_url = askbot['urls']['questions'] + 'reset_query:true/';
+ reset_query(new_url,sortMethod);
}
);
query.after(x_button);
@@ -189,23 +192,63 @@ var liveSearch = function(){
return user_html;
};
- var render_tag = function(tag_name, linkable, deletable){
+ var render_tag = function(tag_name, linkable, deletable, query_string){
var tag = new Tag();
tag.setName(tag_name);
tag.setDeletable(deletable);
tag.setLinkable(linkable);
+ tag.setUrlParams(query_string);
return tag.getElement().outerHTML();
};
- var render_tags = function(tags, linkable, deletable){
+ var render_tags = function(tags, linkable, deletable, query_string){
var tags_html = '<ul class="tags">';
$.each(tags, function(idx, item){
- tags_html += render_tag(item, linkable, deletable);
+ tags_html += render_tag(item, linkable, deletable, query_string);
});
tags_html += '</ul>';
return tags_html;
};
+ var render_question = function(question, query_string){
+ var entry_html =
+ '<div class="short-summary">' +
+ '<div class="counts">' +
+ render_counter(
+ question['views'],
+ question['views_word'],
+ 'views',
+ question['views_class']
+ ) +
+ render_counter(
+ question['answers'],
+ question['answers_word'],
+ 'answers',
+ question['answers_class']
+ ) +
+ render_counter(
+ question['votes'],
+ question['votes_word'],
+ 'votes',
+ question['votes_class']
+ ) +
+ '<div style="clear:both"></div>' +
+ render_user_info(question) +
+ '</div>' +
+ render_title(question) +
+ render_tags(question['tags'], true, false, query_string) +
+ '</div>';
+ return entry_html;
+ };
+
+ var render_question_list = function(questions, query_string){
+ var output = '';
+ for (var i=0; i<questions.length; i++){
+ output += render_question(questions[i], query_string);
+ }
+ return output;
+ };
+
var render_faces = function(faces){
if (faces.length === 0){
return;
@@ -218,13 +261,13 @@ var liveSearch = function(){
$('#contrib-users').append(html);
};
- var render_related_tags = function(tags){
+ var render_related_tags = function(tags, query_string){
if (tags.length === 0){
return;
}
var html = '';
for (var i=0; i<tags.length; i++){
- html += render_tag(tags[i]['name'], true, false);
+ html += render_tag(tags[i]['name'], true, false, query_string);
html += '<span class="tag-number">&#215; ' +
tags[i]['used_count'] +
'</span>' +
@@ -258,7 +301,7 @@ var liveSearch = function(){
return old_tags;
};
- var render_search_tags = function(tags){
+ var render_search_tags = function(tags, query_string){
var search_tags = $('#searchTags');
search_tags.children().remove();
if (tags.length == 0){
@@ -275,7 +318,7 @@ var liveSearch = function(){
tag.setLinkable(false);
tag.setDeleteHandler(
function(){
- remove_search_tag(tag_name);
+ remove_search_tag(tag_name, query_string);
}
);
search_tags.append(tag.getElement());
@@ -283,24 +326,112 @@ var liveSearch = function(){
}
};
- var create_relevance_tab = function(){
+ var create_relevance_tab = function(query_string){
relevance_tab = $('<a></a>');
- relevance_tab.attr('href', '?sort=relevance-desc');
+ href = '/questions/' + replace_in_url(query_string, 'sort:relevance-desc')
+ relevance_tab.attr('href', href);
relevance_tab.attr('id', 'by_relevance');
relevance_tab.html('<span>' + sortButtonData['relevance']['label'] + '</span>');
return relevance_tab;
}
- var set_active_sort_tab = function(sort_method){
+ var replace_in_url = function (query_string, param){
+ values = param.split(':')
+ type = values[0]
+ value = values[1]
+ params = query_string.split('/')
+ url=""
+
+ for (var i = 0; i < params.length; i++){
+ if (params[i] !== ''){
+ if (params[i].substring(0, type.length) == type){
+ url += param + '/'
+ }
+ else{
+ url += params[i] + '/'
+ }
+ }
+ }
+ return url
+ }
+
+ var remove_from_url = function (query_string, type){
+ params = query_string.split('/')
+ url=""
+ for (var i = 0; i < params.length; i++){
+ if (params[i] !== ''){
+ if (params[i].substring(0, type.length) !== type){
+ url += params[i] + '/'
+ }
+ }
+ }
+ return '/'+url
+ }
+
+ var remove_tag_from_url =function (query_string, tag){
+ url = askbot['urls']['questions'];
+ flag = false
+ author = ''
+ if (query_string !== null){
+ params = query_string.split('/')
+ for (var i = 0; i < params.length; i++){
+ if (params[i] !== ''){
+ if (params[i].substring(0, 5) == "tags:"){
+ tags = params[i].substr(5).split('+');
+ new_tags = ''
+ for(var j = 0; j < tags.length; j++){
+ if(escape(tags[j]) !== escape(tag)){
+ if (new_tags !== ''){
+ new_tags += '+'
+ }
+ new_tags += escape(tags[j]);
+ }
+ }
+ if(new_tags !== ''){
+ url += 'tags:'+new_tags+'/'
+ }
+ flag = true
+ }
+ else if (params[i].substring(0, 7) == "author:"){
+ author = params[i];
+ }
+ else{
+ url += params[i] + '/';
+ }
+ }
+ }
+ if (author !== '') {
+ url += author+'/'
+ }
+ }
+ return url
+
+ }
+
+ var set_section_tabs = function(query_string){
+ var tabs = $('#section_tabs>a');
+ tabs.each(function(index, element){
+ var tab = $(element);
+ var tab_name = tab.attr('id').replace(/^by_/,'');
+ href = '/questions/' + replace_in_url(query_string, 'section:'+tab_name)
+ tab.attr(
+ 'href',
+ href
+ );
+ });
+ };
+
+ var set_active_sort_tab = function(sort_method, query_string){
var tabs = $('#sort_tabs>a');
tabs.attr('class', 'off');
tabs.each(function(index, element){
var tab = $(element);
var tab_name = tab.attr('id').replace(/^by_/,'');
if (tab_name in sortButtonData){
+ href = '/questions/' + replace_in_url(query_string, 'sort:'+tab_name+'-desc')
tab.attr(
'href',
- '?sort=' + tab_name + '-desc'
+ href
);
tab.attr(
'title',
@@ -320,14 +451,14 @@ var liveSearch = function(){
active_tab.html(sortButtonData[name]['label'] + arrow);
};
- var render_relevance_sort_tab = function(){
+ var render_relevance_sort_tab = function(query_string){
if (showSortByRelevance === false){
return;
}
var relevance_tab = $('#by_relevance');
if (prev_text && prev_text.length > 0){
if (relevance_tab.length == 0){
- relevance_tab = create_relevance_tab();
+ relevance_tab = create_relevance_tab(query_string);
$('#sort_tabs>span').after(relevance_tab);
}
}
@@ -338,23 +469,31 @@ var liveSearch = function(){
}
};
- var change_rss_url = function(feed_url){
- if(feed_url){
- $("#ContentLeft a.rss:first").attr("href", feed_url);
- }
- }
-
- var remove_search_tag = function(tag_name){
+ var remove_search_tag = function(tag_name, query_string){
$.ajax({
- url: askbot['urls']['questions'],
- data: {remove_tag: tag_name},
+ url: askbot['urls']['questions']+'remove_tag:'+escape(tag_name)+'/',
dataType: 'json',
success: render_result,
complete: try_again
});
+ search_url = remove_tag_from_url(query_string, tag_name)
+ this.current_url = search_url
+ var context = { state:1, rand:Math.random() };
+ var title = "Questions";
+ var query = search_url;
+ History.pushState( context, title, query );
+
+ //var stateObj = { page: search_url };
+ //window.history.pushState(stateObj, "Questions", search_url);
};
- var activate_search_tags = function(){
+ var change_rss_url = function(feed_url){
+ if(feed_url){
+ $("#ContentLeft a.rss:first").attr("href", feed_url);
+ }
+ }
+
+ var activate_search_tags = function(query_string){
var search_tags = $('#searchTags .tag-left');
$.each(search_tags, function(idx, element){
var tag = new Tag();
@@ -363,7 +502,7 @@ var liveSearch = function(){
//must work after decorate & must have getName
tag.setDeleteHandler(
function(){
- remove_search_tag(tag.getName());
+ remove_search_tag(tag.getName(), query_string);
}
);
});
@@ -416,12 +555,13 @@ var liveSearch = function(){
//rename new div to old
render_paginator(data['paginator']);
set_question_count(data['question_counter']);
- render_search_tags(data['query_data']['tags']);
+ render_search_tags(data['query_data']['tags'], data['query_string']);
render_faces(data['faces']);
- render_related_tags(data['related_tags']);
- render_relevance_sort_tab();
+ render_related_tags(data['related_tags'], data['query_string']);
+ render_relevance_sort_tab(data['query_string']);
+ set_active_sort_tab(sortMethod, data['query_string']);
+ set_section_tabs(data['query_string']);
change_rss_url(data['feed_url']);
- set_active_sort_tab(sortMethod);
query.focus();
//show new div with a fadeIn effect
@@ -442,23 +582,37 @@ var liveSearch = function(){
var post_data = {query: query_text};
$.ajax({
url: search_url,
- data: {query: query_text, sort: sort_method},
+ //data: {query: query_text, sort: sort_method},
dataType: 'json',
success: render_result,
complete: try_again
});
prev_text = query_text;
+ var context = { state:1, rand:Math.random() };
+ var title = "Questions";
+ var query = search_url;
+ History.pushState( context, title, query );
+
+ //var stateObj = { page: search_url };
+ //window.history.pushState(stateObj, "Questions", search_url);
}
- var reset_query = function(sort_method){
+ var reset_query = function(new_url, sort_method){
$.ajax({
url: search_url,
- data: {reset_query: true, sort: sort_method},
+ //data: {reset_query: true, sort: sort_method},
dataType: 'json',
success: render_result,
complete: try_again
});
prev_text = '';
+ var context = { state:1, rand:Math.random() };
+ var title = "Questions";
+ var query = new_url;
+ History.pushState( context, title, query );
+
+ //var stateObj = { page: new_url };
+ //window.history.pushState(stateObj, "Questions", new_url);
}
var refresh_main_page = function(){
@@ -468,6 +622,15 @@ var liveSearch = function(){
dataType: 'json',
success: render_main_page_result
});
+
+
+ var context = { state:1, rand:Math.random() };
+ var title = "Questions";
+ var query = askbot['urls']['questions'];
+ History.pushState( context, title, query );
+
+ //var stateObj = { page: askbot['urls']['questions'] };
+ //window.history.pushState(stateObj, "Questions", askbot['urls']['questions']);
};
return {
@@ -475,13 +638,13 @@ var liveSearch = function(){
query = $('input#keywords');
refresh_main_page();
},
- init: function(mode){
+ init: function(mode, query_string){
if (mode === 'main_page'){
//live search for the main page
query = $('input#keywords');
search_url = askbot['urls']['questions'];
render_result = render_main_page_result;
-
+ this.current_url = search_url + query_string
process_query = function(){
if (prev_text.length === 0 && showSortByRelevance){
if (sortMethod === 'activity-desc'){
@@ -489,16 +652,37 @@ var liveSearch = function(){
sortMethod = 'relevance-desc';
}
}
+ if (this.current_url !== undefined){
+ search_url = '/'; //resetting search_url every times
+ query_string = this.current_url
+ }
+ else{
+ search_url = askbot['urls']['questions']; //resetting search_url every times
+ }
+ params = query_string.split('/')
+ for (var i = 0; i < params.length; i++){
+ if (params[i] !== ''){
+ if (params[i].substring(0, 5) == "sort:"){ //change the sort method
+ search_url += 'sort:'+sortMethod+'/'
+ search_url += 'query:'+ cur_text.split(' ').join('+') + '/' //we add the query here
+ }
+ else{
+ search_url += params[i] + '/';
+ }
+ }
+ }
send_query(cur_text, sortMethod);
};
restart_query = function() {
reset_sort_method();
refresh_x_button();
- reset_query(sortMethod);
+ new_url = remove_from_url(search_url, 'query')
+ search_url = askbot['urls']['questions'] + 'reset_query:true/';
+ reset_query(new_url, sortMethod);
running = true;
};
- activate_search_tags();
+ activate_search_tags(query_string);
main_page_search_listen();
} else {
query = $('input#id_title.questionTitleInput');
diff --git a/askbot/skins/common/media/js/modernizr.custom.js b/askbot/skins/common/media/js/modernizr.custom.js
new file mode 100644
index 00000000..cf1d0196
--- /dev/null
+++ b/askbot/skins/common/media/js/modernizr.custom.js
@@ -0,0 +1,4 @@
+/* Modernizr 2.0.6 (Custom Build) | MIT & BSD
+ * Build: http://www.modernizr.com/download/#-history-iepp-cssclasses-load
+ */
+;window.Modernizr=function(a,b,c){function x(a,b){return!!~(""+a).indexOf(b)}function w(a,b){return typeof a===b}function v(a,b){return u(prefixes.join(a+";")+(b||""))}function u(a){k.cssText=a}var d="2.0.6",e={},f=!0,g=b.documentElement,h=b.head||b.getElementsByTagName("head")[0],i="modernizr",j=b.createElement(i),k=j.style,l,m=Object.prototype.toString,n={},o={},p={},q=[],r,s={}.hasOwnProperty,t;!w(s,c)&&!w(s.call,c)?t=function(a,b){return s.call(a,b)}:t=function(a,b){return b in a&&w(a.constructor.prototype[b],c)},n.history=function(){return!!a.history&&!!history.pushState};for(var y in n)t(n,y)&&(r=y.toLowerCase(),e[r]=n[y](),q.push((e[r]?"":"no-")+r));u(""),j=l=null,a.attachEvent&&function(){var a=b.createElement("div");a.innerHTML="<elem></elem>";return a.childNodes.length!==1}()&&function(a,b){function s(a){var b=-1;while(++b<g)a.createElement(f[b])}a.iepp=a.iepp||{};var d=a.iepp,e=d.html5elements||"abbr|article|aside|audio|canvas|datalist|details|figcaption|figure|footer|header|hgroup|mark|meter|nav|output|progress|section|summary|time|video",f=e.split("|"),g=f.length,h=new RegExp("(^|\\s)("+e+")","gi"),i=new RegExp("<(/*)("+e+")","gi"),j=/^\s*[\{\}]\s*$/,k=new RegExp("(^|[^\\n]*?\\s)("+e+")([^\\n]*)({[\\n\\w\\W]*?})","gi"),l=b.createDocumentFragment(),m=b.documentElement,n=m.firstChild,o=b.createElement("body"),p=b.createElement("style"),q=/print|all/,r;d.getCSS=function(a,b){if(a+""===c)return"";var e=-1,f=a.length,g,h=[];while(++e<f){g=a[e];if(g.disabled)continue;b=g.media||b,q.test(b)&&h.push(d.getCSS(g.imports,b),g.cssText),b="all"}return h.join("")},d.parseCSS=function(a){var b=[],c;while((c=k.exec(a))!=null)b.push(((j.exec(c[1])?"\n":c[1])+c[2]+c[3]).replace(h,"$1.iepp_$2")+c[4]);return b.join("\n")},d.writeHTML=function(){var a=-1;r=r||b.body;while(++a<g){var c=b.getElementsByTagName(f[a]),d=c.length,e=-1;while(++e<d)c[e].className.indexOf("iepp_")<0&&(c[e].className+=" iepp_"+f[a])}l.appendChild(r),m.appendChild(o),o.className=r.className,o.id=r.id,o.innerHTML=r.innerHTML.replace(i,"<$1font")},d._beforePrint=function(){p.styleSheet.cssText=d.parseCSS(d.getCSS(b.styleSheets,"all")),d.writeHTML()},d.restoreHTML=function(){o.innerHTML="",m.removeChild(o),m.appendChild(r)},d._afterPrint=function(){d.restoreHTML(),p.styleSheet.cssText=""},s(b),s(l);d.disablePP||(n.insertBefore(p,n.firstChild),p.media="print",p.className="iepp-printshim",a.attachEvent("onbeforeprint",d._beforePrint),a.attachEvent("onafterprint",d._afterPrint))}(a,b),e._version=d,g.className=g.className.replace(/\bno-js\b/,"")+(f?" js "+q.join(" "):"");return e}(this,this.document),function(a,b,c){function k(a){return!a||a=="loaded"||a=="complete"}function j(){var a=1,b=-1;while(p.length- ++b)if(p[b].s&&!(a=p[b].r))break;a&&g()}function i(a){var c=b.createElement("script"),d;c.src=a.s,c.onreadystatechange=c.onload=function(){!d&&k(c.readyState)&&(d=1,j(),c.onload=c.onreadystatechange=null)},m(function(){d||(d=1,j())},H.errorTimeout),a.e?c.onload():n.parentNode.insertBefore(c,n)}function h(a){var c=b.createElement("link"),d;c.href=a.s,c.rel="stylesheet",c.type="text/css";if(!a.e&&(w||r)){var e=function(a){m(function(){if(!d)try{a.sheet.cssRules.length?(d=1,j()):e(a)}catch(b){b.code==1e3||b.message=="security"||b.message=="denied"?(d=1,m(function(){j()},0)):e(a)}},0)};e(c)}else c.onload=function(){d||(d=1,m(function(){j()},0))},a.e&&c.onload();m(function(){d||(d=1,j())},H.errorTimeout),!a.e&&n.parentNode.insertBefore(c,n)}function g(){var a=p.shift();q=1,a?a.t?m(function(){a.t=="c"?h(a):i(a)},0):(a(),j()):q=0}function f(a,c,d,e,f,h){function i(){!o&&k(l.readyState)&&(r.r=o=1,!q&&j(),l.onload=l.onreadystatechange=null,m(function(){u.removeChild(l)},0))}var l=b.createElement(a),o=0,r={t:d,s:c,e:h};l.src=l.data=c,!s&&(l.style.display="none"),l.width=l.height="0",a!="object"&&(l.type=d),l.onload=l.onreadystatechange=i,a=="img"?l.onerror=i:a=="script"&&(l.onerror=function(){r.e=r.r=1,g()}),p.splice(e,0,r),u.insertBefore(l,s?null:n),m(function(){o||(u.removeChild(l),r.r=r.e=o=1,j())},H.errorTimeout)}function e(a,b,c){var d=b=="c"?z:y;q=0,b=b||"j",C(a)?f(d,a,b,this.i++,l,c):(p.splice(this.i++,0,a),p.length==1&&g());return this}function d(){var a=H;a.loader={load:e,i:0};return a}var l=b.documentElement,m=a.setTimeout,n=b.getElementsByTagName("script")[0],o={}.toString,p=[],q=0,r="MozAppearance"in l.style,s=r&&!!b.createRange().compareNode,t=r&&!s,u=s?l:n.parentNode,v=a.opera&&o.call(a.opera)=="[object Opera]",w="webkitAppearance"in l.style,x=w&&"async"in b.createElement("script"),y=r?"object":v||x?"img":"script",z=w?"img":y,A=Array.isArray||function(a){return o.call(a)=="[object Array]"},B=function(a){return Object(a)===a},C=function(a){return typeof a=="string"},D=function(a){return o.call(a)=="[object Function]"},E=[],F={},G,H;H=function(a){function f(a){var b=a.split("!"),c=E.length,d=b.pop(),e=b.length,f={url:d,origUrl:d,prefixes:b},g,h;for(h=0;h<e;h++)g=F[b[h]],g&&(f=g(f));for(h=0;h<c;h++)f=E[h](f);return f}function e(a,b,e,g,h){var i=f(a),j=i.autoCallback;if(!i.bypass){b&&(b=D(b)?b:b[a]||b[g]||b[a.split("/").pop().split("?")[0]]);if(i.instead)return i.instead(a,b,e,g,h);e.load(i.url,i.forceCSS||!i.forceJS&&/css$/.test(i.url)?"c":c,i.noexec),(D(b)||D(j))&&e.load(function(){d(),b&&b(i.origUrl,h,g),j&&j(i.origUrl,h,g)})}}function b(a,b){function c(a){if(C(a))e(a,h,b,0,d);else if(B(a))for(i in a)a.hasOwnProperty(i)&&e(a[i],h,b,i,d)}var d=!!a.test,f=d?a.yep:a.nope,g=a.load||a.both,h=a.callback,i;c(f),c(g),a.complete&&b.load(a.complete)}var g,h,i=this.yepnope.loader;if(C(a))e(a,0,i,0);else if(A(a))for(g=0;g<a.length;g++)h=a[g],C(h)?e(h,0,i,0):A(h)?H(h):B(h)&&b(h,i);else B(a)&&b(a,i)},H.addPrefix=function(a,b){F[a]=b},H.addFilter=function(a){E.push(a)},H.errorTimeout=1e4,b.readyState==null&&b.addEventListener&&(b.readyState="loading",b.addEventListener("DOMContentLoaded",G=function(){b.removeEventListener("DOMContentLoaded",G,0),b.readyState="complete"},0)),a.yepnope=d()}(this,this.document),Modernizr.load=function(){yepnope.apply(window,[].slice.call(arguments,0))};
diff --git a/askbot/skins/common/media/js/utils.js b/askbot/skins/common/media/js/utils.js
index 0afd03a7..4d8cb92d 100644
--- a/askbot/skins/common/media/js/utils.js
+++ b/askbot/skins/common/media/js/utils.js
@@ -356,9 +356,41 @@ Tag.prototype.createDom = function(){
this._inner_element = this.makeElement(this._inner_html_tag);
if (this.isLinkable()){
var url = askbot['urls']['questions'];
- url += '?tags=' + escape(this.getName());
+ var flag = false
+ var author = ''
if (this._url_params !== null){
- url += escape('&' + this._url_params);
+ params = this._url_params.split('/')
+ for (var i = 0; i < params.length; i++){
+ if (params[i] !== ''){
+ if (params[i].substring(0, 5) == "tags:"){
+ tags = params[i].substr(5).split('+');
+ new_tags = ''
+ for(var j = 0; j < tags.length; j++){
+ if(escape(tags[j]) !== escape(this.getName())){
+ new_tags += escape(tags[j]) + '+';
+ }
+ }
+ new_tags += escape(this.getName())
+ url += 'tags:'+new_tags+'/'
+ flag = true
+ }
+ else if (params[i].substring(0, 7) == "author:"){
+ author = params[i];
+ }
+ else{
+ url += params[i] + '/';
+ }
+ }
+ }
+ if (flag == false) {
+ url += 'tags:'+escape(this.getName())+'/'
+ }
+ if (author !== '') {
+ url += author+'/'
+ }
+ }
+ else{
+ url += 'tags:' + escape(this.getName()) + '/';
}
this._inner_element.attr('href', url);
}
@@ -366,7 +398,7 @@ Tag.prototype.createDom = function(){
this._inner_element.attr('rel', 'tag');
if (this._title === null){
this.setTitle(
- interpolate(gettext("see questions tagged '%s'"), [this.getName()])
+ interpolate(gettext("see questions tagged '%s'"), [this.getName()])
);
}
this._inner_element.attr('title', this._title);
diff --git a/askbot/skins/common/templates/widgets/related_tags.html b/askbot/skins/common/templates/widgets/related_tags.html
index 34ea698e..9e1bfd86 100644
--- a/askbot/skins/common/templates/widgets/related_tags.html
+++ b/askbot/skins/common/templates/widgets/related_tags.html
@@ -9,7 +9,8 @@
tag.name,
html_tag = 'div',
extra_content = '<span class="tag-number">&#215; ' ~
- tag.local_used_count|intcomma ~ '</span>'
+ tag.local_used_count|intcomma ~ '</span>',
+ url_params = query_string,
)}}
</li>
{% endfor %}
diff --git a/askbot/skins/common/templates/widgets/search_bar.html b/askbot/skins/common/templates/widgets/search_bar.html
index 5efe3860..fffbebaa 100644
--- a/askbot/skins/common/templates/widgets/search_bar.html
+++ b/askbot/skins/common/templates/widgets/search_bar.html
@@ -8,7 +8,7 @@
{% elif active_tab == "users" %}
action="{% url users %}"
{% else %}
- action="{% url questions %}"
+ action="{% url questions %}" id="searchForm"
{% endif %}
method="get">
<input type="submit" value="" name="search" class="searchBtn" />
@@ -36,7 +36,7 @@
value="X"
name="reset_query"
{# todo - make sure it works on Enter keypress #}
- onclick="window.location.href='{% url questions %}?reset_query=true'"
+ onclick="window.location.href='{% url questions %}{{ query_string|remove_from_url('query') }}'"
class="cancelSearchBtn"/>
{% endif %}
diff --git a/askbot/skins/default/templates/macros.html b/askbot/skins/default/templates/macros.html
index 901d4b3f..f7005d3c 100644
--- a/askbot/skins/default/templates/macros.html
+++ b/askbot/skins/default/templates/macros.html
@@ -1,3 +1,5 @@
+{% load extra_filters %}
+
{%- macro share(site = None, site_label = None, icon = False) -%}
<a class="{{ site }}-share{% if icon == True %} icon{% endif %}"
title="{% trans %}Share this question on {{site}}{% endtrans %}"
@@ -211,13 +213,7 @@ poor design of the data or methods on data objects #}
<{% if not is_link or tag[-1] == '*' %}span{% else %}a{% endif %}
class="tag tag-right{% if css_class %} {{ css_class }}{% endif %}"
{% if is_link %}
- href="{% url questions %}?tags={{tag|urlencode}}{{
- if_else(
- url_params != None,
- '&' ~ url_params,
- ''
- )|escape
- }}"
+ href="{% url questions %}{% if url_params %}{{url_params|add_tag_to_url(tag|urlencode)}}{% else %}tags:{{ tag|urlencode }}/{% endif %}"
title="{% trans %}see questions tagged '{{ tag }}'{% endtrans %}"
{% endif %}
rel="tag"
@@ -252,7 +248,7 @@ poor design of the data or methods on data objects #}
{% endfor %}
{%- endmacro -%}
-{%- macro question_summary(question, extra_class=None) -%}
+{%- macro question_summary(question, extra_class=None, query_string=None) -%}
{%include "widgets/question_summary.html" %}
{%- endmacro -%}
@@ -383,7 +379,7 @@ for the purposes of the AJAX comment editor #}
{%- endmacro -%}
{%- macro reversible_sort_button(button_sort_criterium=None, asc_tooltip=None,
- desc_tooltip=None, label=None, current_sort_method=None) -%}
+ desc_tooltip=None, label=None, current_sort_method=None, query_string=None) -%}
{#
sort button where descending sort is default
and the search method is togglable between ascending and descending
@@ -396,17 +392,17 @@ for the purposes of the AJAX comment editor #}
{% set sort = current_sort_method %}
{% if sort == key_name + "-asc" %}{# "worst" first #}
<a id="by_{{key_name}}"
- href="?sort={{key_name}}-desc"
+ href={% url questions %}{{ query_string|replace_in_url("sort:"+key_name+"-desc") }}
class="rev on"
title="{{desc_tooltip}}"><span>{{label}} &#9650;</span></a>
{% elif sort == key_name + "-desc" %}{# "best first" #}
<a id="by_{{key_name}}"
- href="?sort={{key_name}}-asc"
+ href={% url questions %}{{ query_string|replace_in_url("sort:"+key_name+"-asc") }}
class="rev on"
title="{{asc_tooltip}}"><span>{{label}} &#9660;</span></a>
{% else %}{# default, when other button is active #}
<a id="by_{{key_name}}"
- href="?sort={{key_name}}-desc"
+ href={% url questions %}{{ query_string|replace_in_url("sort:"+key_name+"-desc") }}
class="off"
title="{{desc_tooltip}}"><span>{{label}}</span></a>
{% endif %}
@@ -557,17 +553,17 @@ answer {% if answer.accepted() %}accepted-answer{% endif %} {% if answer.author_
{% endif %}
{%- endmacro -%}
-{%- macro paginator(p, position='left') -%}{# p is paginator context dictionary #}
+{%- macro paginator(p, position='left', active_tab='') -%}{# p is paginator context dictionary #}
{% spaceless %}
{% if p.is_paginated %}
<div class="paginator" style="float:{{position}}">
{% if p.has_previous %}
- <span class="prev"><a href="{{p.base_url}}page={{ p.previous }}{{ p.extend_url }}" title="{% trans %}previous{% endtrans %}">
+ <span class="prev"><a href="{% if active_tab == "questions" %}{% url questions%}{% endif %}{{p.base_url}}page{% if active_tab == "questions" %}:{%else%}={%endif%}{{ p.previous }}/{{ p.extend_url }}" title="{% trans %}previous{% endtrans %}">
&laquo; {% trans %}previous{% endtrans %}</a></span>
{% endif %}
{% if not p.in_leading_range %}
{% for num in p.pages_outside_trailing_range %}
- <span class="page"><a href="{{p.base_url}}page={{ num }}{{ p.extend_url }}" >{{ num }}</a></span>
+ <span class="page"><a href="{% if active_tab == "questions" %}{% url questions%}{% endif %}{{p.base_url}}page{% if active_tab == "questions" %}:{%else%}={%endif%}{{ num }}/{{ p.extend_url }}" >{{ num }}</a></span>
{% endfor %}
...
{% endif %}
@@ -576,18 +572,18 @@ answer {% if answer.accepted() %}accepted-answer{% endif %} {% if answer.author_
{% if num == p.page and p.pages != 1%}
<span class="curr" title="{% trans %}current page{% endtrans %}">{{ num }}</span>
{% else %}
- <span class="page"><a href="{{p.base_url}}page={{ num }}{{ p.extend_url }}" title="{% trans %}page number {{num}}{% endtrans %}">{{ num }}</a></span>
+ <span class="page"><a href="{% if active_tab == "questions" %}{% url questions%}{% endif %}{{p.base_url}}page{% if active_tab == "questions" %}:{%else%}={%endif%}{{ num }}/{{ p.extend_url }}" title="{% trans %}page number {{num}}{% endtrans %}">{{ num }}</a></span>
{% endif %}
{% endfor %}
{% if not p.in_trailing_range %}
...
{% for num in p.pages_outside_leading_range|reverse %}
- <span class="page"><a href="{{p.base_url}}page={{ num }}{{ p.extend_url }}" title="{% trans %}page number {{ num }}{% endtrans %}">{{ num }}</a></span>
+ <span class="page"><a href="{% if active_tab == "questions" %}{% url questions%}{% endif %}{{p.base_url}}page{% if active_tab == "questions" %}:{%else%}={%endif%}{{ num }}/{{ p.extend_url }}" title="{% trans %}page number {{ num }}{% endtrans %}">{{ num }}</a></span>
{% endfor %}
{% endif %}
{% if p.has_next %}
- <span class="next"><a href="{{p.base_url}}page={{ p.next }}{{ p.extend_url }}" title="{% trans %}next page{% endtrans %}">{% trans %}next page{% endtrans %} &raquo;</a></span>
+ <span class="next"><a href="{% if active_tab == "questions" %}{% url questions%}{% endif %}{{p.base_url}}page{% if active_tab == "questions" %}:{%else%}={%endif%}{{ p.next }}/{{ p.extend_url }}" title="{% trans %}next page{% endtrans %}">{% trans %}next page{% endtrans %} &raquo;</a></span>
{% endif %}
</div>
{% endif %}
@@ -602,19 +598,19 @@ answer {% if answer.accepted() %}accepted-answer{% endif %} {% if answer.author_
{% if p.page_size == 10 %}
<span class="curr">10</span>
{% else %}
- <span class="page"><a href="{{p.base_url}}page_size=10">10</a></span>
+ <span class="page"><a href="{% url questions %}{{p.base_url}}page_size:10/">10</a></span>
{% endif %}
{% if p.page_size == 30 %}
<span class="curr">30</span>
{% else %}
- <span class="page"><a href="{{p.base_url}}page_size=30">30</a></span>
+ <span class="page"><a href="{% url questions %}{{p.base_url}}page_size:30/">30</a></span>
{% endif %}
{% if p.page_size == 50 %}
<span class="curr">50</span>
{% else %}
- <span class="page"><a href="{{p.base_url}}page_size=50">50</a></span>
+ <span class="page"><a href="{% url questions %}{{p.base_url}}page_size:50/">50</a></span>
{% endif %}
</div>
{% endif %}
diff --git a/askbot/skins/default/templates/main_page/headline.html b/askbot/skins/default/templates/main_page/headline.html
index 2ba156c8..444787e6 100644
--- a/askbot/skins/default/templates/main_page/headline.html
+++ b/askbot/skins/default/templates/main_page/headline.html
@@ -23,16 +23,16 @@
<p class="search-tips"><b>{% trans %}Search tips:{% endtrans %}</b>
{% if reset_method_count > 1 %}
{% if author_name %}
- <a href="{% url questions %}?reset_author=true">{% trans %}reset author{% endtrans %}</a>
+ <a href="{% url questions %}{{ query_string|remove_from_url('author') }}">{% trans %}reset author{% endtrans %}</a>
{% endif %}
{% if search_tags %}{% if author_name and query %}, {% elif author_name %}{% trans %} or {% endtrans %}{% endif %}
- <a href="{% url questions %}?reset_tags=true">{% trans %}reset tags{% endtrans %}</a>
+ <a href="{% url questions %}{{ query_string|remove_from_url('tags') }}">{% trans %}reset tags{% endtrans %}</a>
{% endif %}
{% if query %}{% trans %} or {% endtrans %}
- <a href="{% url questions %}?start_over=true">{% trans %}start over{% endtrans %}</a>
+ <a href="{% url questions %}">{% trans %}start over{% endtrans %}</a>
{% endif %}
{% else %}
- <a href="{% url questions %}?start_over=true">{% trans %}start over{% endtrans %}</a>
+ <a href="{% url questions %}">{% trans %}start over{% endtrans %}</a>
{% endif %}
{% trans %} - to expand, or dig in by adding more tags and revising the query.{% endtrans %}
</p>
diff --git a/askbot/skins/default/templates/main_page/javascript.html b/askbot/skins/default/templates/main_page/javascript.html
index e35113dd..e726d5b4 100644
--- a/askbot/skins/default/templates/main_page/javascript.html
+++ b/askbot/skins/default/templates/main_page/javascript.html
@@ -5,7 +5,7 @@
$(document).ready(function(){
/*var on_tab = '#nav_questions';
$(on_tab).attr('className','on');*/
- liveSearch().init('main_page');
+ liveSearch().init('main_page', '{{query_string}}');
Hilite.exact = false;
Hilite.elementid = "question-list";
Hilite.debug_referrer = location.href;
@@ -48,3 +48,19 @@
<script type='text/javascript' src='{{"/js/tag_selector.js"|media}}'></script>
{% endif %}
<script type="text/javascript" src="{{"/js/live_search.js"|media}}"></script>
+{% if active_tab != "tags" and active_tab != "users" %}
+<script>
+$("form#searchForm").submit(function(event) {
+ event.preventDefault();
+ form_action = $("form#searchForm").attr('action')
+ query = $("input#keywords").attr('value').split(' ').join('+')
+ $("input#keywords").attr('value', '')
+ $("input#searchButton").attr('value', '')
+ form_action += 'section:{{parameters.scope}}/sort:{{parameters.sort}}/'
+ + 'query:' + query + '/search:search/'
+ + '{% if parameters.tags %}tags:{{parameters.tags}}/{% endif %}'
+ + '{% if parameters.author %}author:{{parameters.author}}/{% endif %}'
+ window.location.href = form_action;
+});
+</script>
+{% endif %}
diff --git a/askbot/skins/default/templates/main_page/nothing_found.html b/askbot/skins/default/templates/main_page/nothing_found.html
index e6d65ea5..8e7624cc 100644
--- a/askbot/skins/default/templates/main_page/nothing_found.html
+++ b/askbot/skins/default/templates/main_page/nothing_found.html
@@ -13,16 +13,16 @@
{% trans %}You can expand your search by {% endtrans %}
{% if reset_method_count > 1 %}
{% if author_name %}
- <a href="{% url questions %}?reset_author=true">{% trans %}resetting author{% endtrans %}</a>
+ <a href="{% url questions %}{{ query_string|remove_from_url('author') }}">{% trans %}resetting author{% endtrans %}</a>
{% endif %}
{% if search_tags %}{% if author_name and query %}, {% elif author_name %}{% trans %} or {% endtrans %}{% endif %}
- <a href="{% url questions %}?reset_tags=true">{% trans %}resetting tags{% endtrans %}</a>
+ <a href="{% url questions %}{{ query_string|remove_from_url('tags') }}">{% trans %}resetting tags{% endtrans %}</a>
{% endif %}
{% if query %}{% trans %} or {% endtrans %}
- <a href="{% url questions %}?start_over=true">{% trans %}starting over{% endtrans %}</a>
+ <a href="{% url questions %}">{% trans %}starting over{% endtrans %}</a>
{% endif %}
{% else %}
- <a href="{% url questions %}?start_over=true">{% trans %}starting over{% endtrans %}</a>
+ <a href="{% url questions %}">{% trans %}starting over{% endtrans %}</a>
{% endif %}
</p>
{% endif %}
diff --git a/askbot/skins/default/templates/main_page/paginator.html b/askbot/skins/default/templates/main_page/paginator.html
index b7fd9501..6766261b 100644
--- a/askbot/skins/default/templates/main_page/paginator.html
+++ b/askbot/skins/default/templates/main_page/paginator.html
@@ -1,7 +1,7 @@
{% import "macros.html" as macros %}
-{% if questions_count > 10 %}{# todo: remove magic number #}
+{% if questions_count > page_size %}{# todo: remove magic number #}
<div id="pager" class="pager">
- {{ macros.paginator(context|setup_paginator, position='left') }}
+ {{ macros.paginator(context|setup_paginator, position='left', active_tab=active_tab) }}
{{ macros.pagesize_switch(context, position='right') }}
<div class="clean"></div>
</div>
diff --git a/askbot/skins/default/templates/main_page/questions_loop.html b/askbot/skins/default/templates/main_page/questions_loop.html
index 1a920516..8e6c0492 100644
--- a/askbot/skins/default/templates/main_page/questions_loop.html
+++ b/askbot/skins/default/templates/main_page/questions_loop.html
@@ -1,7 +1,7 @@
{% import "macros.html" as macros %}
{% cache 0 "questions" questions search_tags scope sort query context.page context.page_size language_code %}
{% for question in questions.object_list %}
- {{macros.question_summary(question)}}
+ {{macros.question_summary(question, query_string=query_string)}}
{% endfor %}
{% endcache %}
{# comment todo: fix css here #}
diff --git a/askbot/skins/default/templates/main_page/tab_bar.html b/askbot/skins/default/templates/main_page/tab_bar.html
index 5ed6e5b5..1802640f 100644
--- a/askbot/skins/default/templates/main_page/tab_bar.html
+++ b/askbot/skins/default/templates/main_page/tab_bar.html
@@ -1,4 +1,5 @@
{% import "macros.html" as macros %}
+{% load extra_filters %}
{% cache 0 "scope_sort_tabs" search_tags request.user scope sort query context.page context.page_size language_code %}
<a class="rss"
{% if feed_url %}
@@ -19,11 +20,11 @@
{% if query %}
<a id="by_relevance"
{% if sort == "relevance-desc" %}
- href="?sort=relevance-desc"
+ href="{% url questions %}{{ query_string|replace_in_url("sort:relevance-desc") }}"
class="on"
title="{{asc_relevance_tooltip}}"><span>{{relevance_label}} &#9660;</span>
{% else %}
- href="?sort=relevance-desc"
+ href="{% url questions %}{{ query_string|replace_in_url("sort:relevance-desc") }}"
class="off"
title="{{desc_relevance_tooltip}}"><span>{{relevance_label}}</span>
{% endif %}
@@ -43,7 +44,8 @@
label = gettext('by date'),
asc_tooltip = gettext('click to see the oldest questions'),
desc_tooltip = gettext('click to see the newest questions'),
- current_sort_method = sort
+ current_sort_method = sort,
+ query_string = query_string,
)
}}
{{macros.reversible_sort_button(
@@ -51,7 +53,8 @@
label = gettext('by activity'),
asc_tooltip = gettext('click to see the least recently updated questions'),
desc_tooltip = gettext('click to see the most recently updated questions'),
- current_sort_method = sort
+ current_sort_method = sort,
+ query_string = query_string,
)
}}
{{macros.reversible_sort_button(
@@ -59,7 +62,8 @@
label = gettext('by answers'),
asc_tooltip = gettext('click to see the least answered questions'),
desc_tooltip = gettext('click to see the most answered questions'),
- current_sort_method = sort
+ current_sort_method = sort,
+ query_string = query_string,
)
}}
{{macros.reversible_sort_button(
@@ -67,7 +71,8 @@
label = gettext('by votes'),
asc_tooltip = gettext('click to see least voted questions'),
desc_tooltip = gettext('click to see most voted questions'),
- current_sort_method = sort
+ current_sort_method = sort,
+ query_string = query_string,
)
}}
diff --git a/askbot/skins/default/templates/meta/bottom_scripts.html b/askbot/skins/default/templates/meta/bottom_scripts.html
index 0df25e7c..c506df58 100644
--- a/askbot/skins/default/templates/meta/bottom_scripts.html
+++ b/askbot/skins/default/templates/meta/bottom_scripts.html
@@ -37,6 +37,8 @@
src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.3/jquery.min.js"
{% endif %}
></script>
+<!-- History.js -->
+<script defer src="{{"/js/jquery.history.js"|media }}"></script>
<script type='text/javascript' src="{{"/js/utils.js"|media }}"></script>
<script type="text/javascript" src="{% url django.views.i18n.javascript_catalog %}"></script>
{% if settings.ENABLE_MATHJAX %}
@@ -52,6 +54,21 @@
{% if active_tab != "tags" and active_tab != "users" %}
{# start asking question with title from search query #}
$(document).ready(function(){
+ if (Modernizr.history) {
+ // history management works!
+ } else {
+ // no history support :(
+ hash = unescape(window.location.hash).replace('#','').split("?")[0]
+ if (hash.substring(0,11)==askbot['urls']['questions']){
+ url = hash
+ }else{
+ url = askbot['urls']['questions']+hash
+ }
+ if (hash !== ''){
+ window.location = 'http://'+window.location.host+url
+ }
+ }
+
$('#nav_ask').click(
function(){
var starting_title = $('#keywords').attr('value');
diff --git a/askbot/skins/default/templates/meta/html_head_javascript.html b/askbot/skins/default/templates/meta/html_head_javascript.html
index f960d11d..2d453215 100644
--- a/askbot/skins/default/templates/meta/html_head_javascript.html
+++ b/askbot/skins/default/templates/meta/html_head_javascript.html
@@ -1,3 +1,4 @@
+<script src="{{"/js/modernizr.custom.js"|media }}"></script>
<script type="text/javascript">
var askbot = {};
askbot['data'] = {};
diff --git a/askbot/skins/default/templates/tags.html b/askbot/skins/default/templates/tags.html
index 1cd4c4b9..4894bdb1 100644
--- a/askbot/skins/default/templates/tags.html
+++ b/askbot/skins/default/templates/tags.html
@@ -37,7 +37,6 @@
<li>
{{ macros.tag_widget(
tag = tag.name,
- url_params = 'start_over=true',
html_tag = 'div',
extra_content = '<span class="tag-number">&#215; ' ~
tag.used_count|intcomma ~ '</span>'
diff --git a/askbot/skins/default/templates/widgets/logo.html b/askbot/skins/default/templates/widgets/logo.html
index 6d4d86d2..1b251432 100644
--- a/askbot/skins/default/templates/widgets/logo.html
+++ b/askbot/skins/default/templates/widgets/logo.html
@@ -1,4 +1,5 @@
-<a id="logo" href="{% url questions %}?start_over=true"><img
+<a id="logo" href="{% url questions %}"><img
src="{{ settings.SITE_LOGO_URL|media }}"
title="{% trans %}back to home page{% endtrans %}"
- alt="{% trans site=settings.APP_SHORT_NAME %}{{site}} logo{% endtrans %}"/></a>
+ alt="{% trans site=settings.APP_SHORT_NAME %}{{site}} logo{% endtrans %}"/>
+</a>
diff --git a/askbot/skins/default/templates/widgets/question_summary.html b/askbot/skins/default/templates/widgets/question_summary.html
index f5c3c962..554dc7f9 100644
--- a/askbot/skins/default/templates/widgets/question_summary.html
+++ b/askbot/skins/default/templates/widgets/question_summary.html
@@ -53,6 +53,6 @@
</div>
</div>
<h2><a title="{{question.summary|escape}}" href="{{ question.get_absolute_url() }}">{{question.get_question_title()|escape}}</a></h2>
- {{ tag_list_widget(question.get_tag_names()) }}
+ {{ tag_list_widget(question.get_tag_names(), url_params=query_string) }}
</div>
diff --git a/askbot/skins/default/templates/widgets/scope_nav.html b/askbot/skins/default/templates/widgets/scope_nav.html
index 3b6d2182..bed34d44 100644
--- a/askbot/skins/default/templates/widgets/scope_nav.html
+++ b/askbot/skins/default/templates/widgets/scope_nav.html
@@ -1,11 +1,11 @@
{% if active_tab != "ask" %}
<a class="scope-selector {% if scope == 'all' %}on{% endif %}"
- href="{% url questions %}?scope=all" title="{% trans %}see all questions{% endtrans %}">ALL</a>
+ href="{% url questions %}{{ query_string|replace_in_url("section:all")|replace_in_url("sort:activity-desc") }}" title="{% trans %}see all questions{% endtrans %}">ALL</a>
<a class="scope-selector {% if scope == 'unanswered' %}on{% endif %}"
- href="{% url questions %}?scope=unanswered&amp;sort=answers-asc" title="{% trans %}see unanswered questions{% endtrans %}">UNANSWERED</a>
+ href="{% url questions %}{{ query_string|replace_in_url("section:unanswered")|replace_in_url("sort:answers-asc") }}" title="{% trans %}see unanswered questions{% endtrans %}">UNANSWERED</a>
{% if request.user.is_authenticated() %}
<a class="scope-selector {% if scope == 'favorite' %}on{% endif %}"
- href="{% url questions %}?scope=favorite" title="{% trans %}see your followed questions{% endtrans %}">FOLLOWED</a>
+ href="{% url questions %}{{ query_string|replace_in_url("section:favorite") }}" title="{% trans %}see your followed questions{% endtrans %}">FOLLOWED</a>
{% endif %}
{% else %}
<div class="scope-selector ask-message">{% trans %}Please ask your question here{% endtrans %}</div>
diff --git a/askbot/templatetags/extra_filters.py b/askbot/templatetags/extra_filters.py
index ffdfd9d8..7bf3a8af 100644
--- a/askbot/templatetags/extra_filters.py
+++ b/askbot/templatetags/extra_filters.py
@@ -5,6 +5,7 @@ from askbot import exceptions as askbot_exceptions
from askbot import auth
from askbot.conf import settings as askbot_settings
from askbot.utils.slug import slugify
+import urllib2
register = template.Library()
@@ -156,3 +157,54 @@ def humanize_counter(number):
@register.filter
def absolute_value(number):
return abs(number)
+
+
+@register.filter
+def replace_in_url(query_string, param):
+ type, value = param.split(':')
+ params = query_string.rstrip('/').split('/')
+
+ for p in params:
+ if type in p:
+ params[params.index(p)] = param
+
+ query_string = '/'.join(params)+'/'
+ return query_string
+
+@register.filter
+def add_tag_to_url(query_string, param):
+ if query_string:
+ params = query_string.rstrip('/').split('/')
+ flag = False
+
+ tags = [s for s in params if "tags:" in s]
+ if tags:
+ tags = tags[0]
+ flag = True
+ type, value = tags.split(':')
+ values = value.split('+')
+ if not urllib2.unquote(param) in values:
+ values.append(param)
+ values = [urllib2.quote(value) for value in values]
+ params[params.index(tags)] = 'tags:'+'+'.join(values)
+
+ if not flag:
+ author = [s for s in params if "author:" in s]
+ if author:
+ author = author[0]
+ params.insert(params.index(author), 'tags:'+param)
+ else:
+ params.append('tags:'+param)
+ query_string = '/'.join(params)+'/'
+ return query_string
+
+@register.filter
+def remove_from_url(query_string, param_type):
+ if query_string:
+ params = query_string.rstrip('/').split('/')
+ new_params = []
+ for p in params:
+ if not p.startswith(param_type):
+ new_params.append(p)
+ query_string = '/'.join(new_params)+'/'
+ return query_string
diff --git a/askbot/templatetags/extra_filters_jinja.py b/askbot/templatetags/extra_filters_jinja.py
index 8486d934..f4e0a5ee 100644
--- a/askbot/templatetags/extra_filters_jinja.py
+++ b/askbot/templatetags/extra_filters_jinja.py
@@ -14,6 +14,7 @@ from askbot.conf import settings as askbot_settings
from askbot.skins import utils as skin_utils
from askbot.utils import functions
from askbot.utils.slug import slugify
+from askbot.shims.django_shims import ResolverMatch
from django_countries import countries
from django_countries import settings as countries_settings
@@ -36,8 +37,9 @@ absolutize_urls = register.filter(absolutize_urls_func)
def clean_login_url(url):
"""pass through, unless user was originally on the logout page"""
try:
- resolver_match = resolve(url)
- if resolver_match.url_name == 'question':
+ resolver_match = ResolverMatch(resolve(url))
+ from askbot.views.readers import question
+ if resolver_match.func == question:
return url
except Http404:
pass
diff --git a/askbot/tests/misc_tests.py b/askbot/tests/misc_tests.py
index c452d518..306d62ce 100644
--- a/askbot/tests/misc_tests.py
+++ b/askbot/tests/misc_tests.py
@@ -43,18 +43,20 @@ class MiscTests(AskbotTestCase):
def test_get_related_object_type_name_for_anything_else_1(self):
ct = ContentType.objects.get_for_model(self.u2)
- self.assertIsNone(get_related_object_type_name(ct.id, self.u2.id))
+ self.assertTrue(
+ get_related_object_type_name(ct.id, self.u2.id) is None
+ )
def test_get_related_object_type_name_for_anything_else_2(self):
question = self.post_question(user=self.u1)
comment = self.post_comment(user=self.u1, parent_post=question)
ct = ContentType.objects.get_for_model(comment)
- self.assertIsNone(get_related_object_type_name(ct.id, comment.id))
+ self.assertTrue(
+ get_related_object_type_name(ct.id, comment.id) is None
+ )
def test_proper_PostRevision_manager_is_used(self):
"Makes sure that both normal and related managers for PostRevision don't implement .create() method"
question = self.post_question(user=self.u1)
- with self.assertRaises(NotImplementedError):
- question.revisions.create()
- with self.assertRaises(NotImplementedError):
- PostRevision.objects.create()
+ self.assertRaises(NotImplementedError, question.revisions.create)
+ self.assertRaises(NotImplementedError, PostRevision.objects.create)
diff --git a/askbot/tests/page_load_tests.py b/askbot/tests/page_load_tests.py
index 79344621..8cebb602 100644
--- a/askbot/tests/page_load_tests.py
+++ b/askbot/tests/page_load_tests.py
@@ -36,10 +36,14 @@ if CMAJOR == 0 and CMINOR == 3 and CMICRO < 4:
class PageLoadTestCase(AskbotTestCase):
- #fixtures = [ os.path.join(os.path.dirname(__file__), 'test_data.json'),]
+ if getattr(settings, 'ASKBOT_FAST_TESTS', False) == True:
+ fixtures = [ os.path.join(os.path.dirname(__file__), 'test_data.json'),]
def setUp(self):
- from django.core import management
- management.call_command('askbot_add_test_content', verbosity=0, interactive=False)
+ if getattr(settings, 'ASKBOT_FAST_TESTS', False) == True:
+ return
+ else:
+ from django.core import management
+ management.call_command('askbot_add_test_content', verbosity=0, interactive=False)
def try_url(
self,
diff --git a/askbot/tests/post_model_tests.py b/askbot/tests/post_model_tests.py
index 7ea8621a..48e0d667 100644
--- a/askbot/tests/post_model_tests.py
+++ b/askbot/tests/post_model_tests.py
@@ -13,31 +13,84 @@ class PostModelTests(AskbotTestCase):
self.u3 = self.create_user(username='user3')
def test_model_validation(self):
- with self.assertRaises(NotImplementedError):
- PostRevision.objects.create(text='blah', author=self.u1, revised_at=datetime.datetime.now(), revision_type=PostRevision.QUESTION_REVISION)
+ self.assertRaises(
+ NotImplementedError,
+ PostRevision.objects.create,
+ [],
+ {
+ 'text': 'blah',
+ 'author': self.u1,
+ 'revised_at': datetime.datetime.now(),
+ 'revision_type': PostRevision.QUESTION_REVISION
+ }
+ )
- with self.assertRaisesRegexp(AttributeError, r"'NoneType' object has no attribute 'revisions'"):
+ self.assertRaisesRegexp(
+ AttributeError,
+ r"'NoneType' object has no attribute 'revisions'",
# cannot set `revision` without a parent
- PostRevision.objects.create_answer_revision(text='blah', author=self.u1, revised_at=datetime.datetime.now())
+ PostRevision.objects.create_answer_revision,
+ *[],
+ **{
+ 'text': 'blah',
+ 'author': self.u1,
+ 'revised_at': datetime.datetime.now()
+ }
+ )
+
+ post_revision = PostRevision(
+ text='blah',
+ author=self.u1,
+ revised_at=datetime.datetime.now(),
+ revision=1,
+ revision_type=4
+ )
+
+ self.assertRaisesRegexp(
+ ValidationError,
+ r"{'__all__': \[u'One \(and only one\) of question/answer fields has to be set.'\], 'revision_type': \[u'Value 4 is not a valid choice.'\]}",
+ post_revision.save
+ )
- with self.assertRaisesRegexp(ValidationError, r"{'__all__': \[u'One \(and only one\) of question/answer fields has to be set.'\], 'revision_type': \[u'Value 4 is not a valid choice.'\]}"):
# revision_type not in (1,2)
- PostRevision(text='blah', author=self.u1, revised_at=datetime.datetime.now(), revision=1, revision_type=4).save()
question = self.post_question(user=self.u1)
rev2 = PostRevision(question=question, text='blah', author=self.u1, revised_at=datetime.datetime.now(), revision=2, revision_type=PostRevision.QUESTION_REVISION)
rev2.save()
- self.assertIsNotNone(rev2.id)
+ self.assertFalse(rev2.id is None)
+
+ post_revision = PostRevision(
+ question=question,
+ text='blah',
+ author=self.u1,
+ revised_at=datetime.datetime.now(),
+ revision=2,
+ revision_type=PostRevision.ANSWER_REVISION
+ )
+ self.assertRaisesRegexp(
+ ValidationError,
+ r"{'__all__': \[u'Revision_type doesn`t match values in question/answer fields.', u'Post revision with this Question and Revision already exists.'\]}",
+ post_revision.save
+ )
- with self.assertRaisesRegexp(ValidationError, r"{'__all__': \[u'Revision_type doesn`t match values in question/answer fields.', u'Post revision with this Question and Revision already exists.'\]}"):
- PostRevision(question=question, text='blah', author=self.u1, revised_at=datetime.datetime.now(), revision=2, revision_type=PostRevision.ANSWER_REVISION).save()
- with self.assertRaisesRegexp(ValidationError, r"{'__all__': \[u'Revision_type doesn`t match values in question/answer fields.'\]}"):
- PostRevision(question=question, text='blah', author=self.u1, revised_at=datetime.datetime.now(), revision=3, revision_type=PostRevision.ANSWER_REVISION).save()
+ post_revision = PostRevision(
+ question=question,
+ text='blah',
+ author=self.u1,
+ revised_at=datetime.datetime.now(),
+ revision=3,
+ revision_type=PostRevision.ANSWER_REVISION
+ )
+ self.assertRaisesRegexp(
+ ValidationError,
+ r"{'__all__': \[u'Revision_type doesn`t match values in question/answer fields.'\]}",
+ post_revision.save
+ )
rev3 = PostRevision.objects.create_question_revision(question=question, text='blah', author=self.u1, revised_at=datetime.datetime.now(), revision_type=123) # revision_type
- self.assertIsNotNone(rev3.id)
+ self.assertFalse(rev3.id is None)
self.assertEqual(3, rev3.revision) # By the way: let's test the auto-increase of revision number
self.assertEqual(PostRevision.QUESTION_REVISION, rev3.revision_type)
diff --git a/askbot/tests/test_data.json b/askbot/tests/test_data.json
index 75b386e3..ec28b620 100644
--- a/askbot/tests/test_data.json
+++ b/askbot/tests/test_data.json
@@ -81,138 +81,138 @@
}
},
{
- "pk": 64,
+ "pk": 79,
"model": "auth.permission",
"fields": {
"codename": "add_anonymousanswer",
"name": "Can add anonymous answer",
- "content_type": 22
+ "content_type": 27
}
},
{
- "pk": 65,
+ "pk": 80,
"model": "auth.permission",
"fields": {
"codename": "change_anonymousanswer",
"name": "Can change anonymous answer",
- "content_type": 22
+ "content_type": 27
}
},
{
- "pk": 66,
+ "pk": 81,
"model": "auth.permission",
"fields": {
"codename": "delete_anonymousanswer",
"name": "Can delete anonymous answer",
- "content_type": 22
+ "content_type": 27
}
},
{
- "pk": 58,
+ "pk": 73,
"model": "auth.permission",
"fields": {
"codename": "add_anonymousquestion",
"name": "Can add anonymous question",
- "content_type": 20
+ "content_type": 25
}
},
{
- "pk": 59,
+ "pk": 74,
"model": "auth.permission",
"fields": {
"codename": "change_anonymousquestion",
"name": "Can change anonymous question",
- "content_type": 20
+ "content_type": 25
}
},
{
- "pk": 60,
+ "pk": 75,
"model": "auth.permission",
"fields": {
"codename": "delete_anonymousquestion",
"name": "Can delete anonymous question",
- "content_type": 20
+ "content_type": 25
}
},
{
- "pk": 61,
+ "pk": 76,
"model": "auth.permission",
"fields": {
"codename": "add_answer",
"name": "Can add answer",
- "content_type": 21
+ "content_type": 26
}
},
{
- "pk": 62,
+ "pk": 77,
"model": "auth.permission",
"fields": {
"codename": "change_answer",
"name": "Can change answer",
- "content_type": 21
+ "content_type": 26
}
},
{
- "pk": 63,
+ "pk": 78,
"model": "auth.permission",
"fields": {
"codename": "delete_answer",
"name": "Can delete answer",
- "content_type": 21
+ "content_type": 26
}
},
{
- "pk": 70,
+ "pk": 28,
"model": "auth.permission",
"fields": {
"codename": "add_award",
"name": "Can add award",
- "content_type": 24
+ "content_type": 10
}
},
{
- "pk": 71,
+ "pk": 29,
"model": "auth.permission",
"fields": {
"codename": "change_award",
"name": "Can change award",
- "content_type": 24
+ "content_type": 10
}
},
{
- "pk": 72,
+ "pk": 30,
"model": "auth.permission",
"fields": {
"codename": "delete_award",
"name": "Can delete award",
- "content_type": 24
+ "content_type": 10
}
},
{
- "pk": 67,
+ "pk": 25,
"model": "auth.permission",
"fields": {
"codename": "add_badgedata",
"name": "Can add badge data",
- "content_type": 23
+ "content_type": 9
}
},
{
- "pk": 68,
+ "pk": 26,
"model": "auth.permission",
"fields": {
"codename": "change_badgedata",
"name": "Can change badge data",
- "content_type": 23
+ "content_type": 9
}
},
{
- "pk": 69,
+ "pk": 27,
"model": "auth.permission",
"fields": {
"codename": "delete_badgedata",
"name": "Can delete badge data",
- "content_type": 23
+ "content_type": 9
}
},
{
@@ -270,192 +270,246 @@
}
},
{
- "pk": 55,
+ "pk": 70,
"model": "auth.permission",
"fields": {
"codename": "add_favoritequestion",
"name": "Can add favorite question",
- "content_type": 19
+ "content_type": 24
}
},
{
- "pk": 56,
+ "pk": 71,
"model": "auth.permission",
"fields": {
"codename": "change_favoritequestion",
"name": "Can change favorite question",
- "content_type": 19
+ "content_type": 24
}
},
{
- "pk": 57,
+ "pk": 72,
"model": "auth.permission",
"fields": {
"codename": "delete_favoritequestion",
"name": "Can delete favorite question",
- "content_type": 19
+ "content_type": 24
}
},
{
- "pk": 28,
+ "pk": 52,
"model": "auth.permission",
"fields": {
"codename": "add_markedtag",
"name": "Can add marked tag",
- "content_type": 10
+ "content_type": 18
}
},
{
- "pk": 29,
+ "pk": 53,
"model": "auth.permission",
"fields": {
"codename": "change_markedtag",
"name": "Can change marked tag",
- "content_type": 10
+ "content_type": 18
}
},
{
- "pk": 30,
+ "pk": 54,
"model": "auth.permission",
"fields": {
"codename": "delete_markedtag",
"name": "Can delete marked tag",
- "content_type": 10
+ "content_type": 18
}
},
{
- "pk": 31,
+ "pk": 55,
+ "model": "auth.permission",
+ "fields": {
+ "codename": "add_post",
+ "name": "Can add post",
+ "content_type": 19
+ }
+ },
+ {
+ "pk": 56,
+ "model": "auth.permission",
+ "fields": {
+ "codename": "change_post",
+ "name": "Can change post",
+ "content_type": 19
+ }
+ },
+ {
+ "pk": 57,
+ "model": "auth.permission",
+ "fields": {
+ "codename": "delete_post",
+ "name": "Can delete post",
+ "content_type": 19
+ }
+ },
+ {
+ "pk": 58,
"model": "auth.permission",
"fields": {
"codename": "add_postrevision",
"name": "Can add post revision",
- "content_type": 11
+ "content_type": 20
}
},
{
- "pk": 32,
+ "pk": 59,
"model": "auth.permission",
"fields": {
"codename": "change_postrevision",
"name": "Can change post revision",
- "content_type": 11
+ "content_type": 20
}
},
{
- "pk": 33,
+ "pk": 60,
"model": "auth.permission",
"fields": {
"codename": "delete_postrevision",
"name": "Can delete post revision",
- "content_type": 11
+ "content_type": 20
}
},
{
- "pk": 49,
+ "pk": 64,
"model": "auth.permission",
"fields": {
"codename": "add_question",
"name": "Can add question",
- "content_type": 17
+ "content_type": 22
}
},
{
- "pk": 50,
+ "pk": 65,
"model": "auth.permission",
"fields": {
"codename": "change_question",
"name": "Can change question",
- "content_type": 17
+ "content_type": 22
}
},
{
- "pk": 51,
+ "pk": 66,
"model": "auth.permission",
"fields": {
"codename": "delete_question",
"name": "Can delete question",
- "content_type": 17
+ "content_type": 22
}
},
{
- "pk": 52,
+ "pk": 67,
"model": "auth.permission",
"fields": {
"codename": "add_questionview",
"name": "Can add question view",
- "content_type": 18
+ "content_type": 23
}
},
{
- "pk": 53,
+ "pk": 68,
"model": "auth.permission",
"fields": {
"codename": "change_questionview",
"name": "Can change question view",
- "content_type": 18
+ "content_type": 23
}
},
{
- "pk": 54,
+ "pk": 69,
"model": "auth.permission",
"fields": {
"codename": "delete_questionview",
"name": "Can delete question view",
- "content_type": 18
+ "content_type": 23
}
},
{
- "pk": 73,
+ "pk": 31,
"model": "auth.permission",
"fields": {
"codename": "add_repute",
"name": "Can add repute",
- "content_type": 25
+ "content_type": 11
}
},
{
- "pk": 74,
+ "pk": 32,
"model": "auth.permission",
"fields": {
"codename": "change_repute",
"name": "Can change repute",
- "content_type": 25
+ "content_type": 11
}
},
{
- "pk": 75,
+ "pk": 33,
"model": "auth.permission",
"fields": {
"codename": "delete_repute",
"name": "Can delete repute",
- "content_type": 25
+ "content_type": 11
}
},
{
- "pk": 25,
+ "pk": 49,
"model": "auth.permission",
"fields": {
"codename": "add_tag",
"name": "Can add tag",
- "content_type": 9
+ "content_type": 17
}
},
{
- "pk": 26,
+ "pk": 50,
"model": "auth.permission",
"fields": {
"codename": "change_tag",
"name": "Can change tag",
- "content_type": 9
+ "content_type": 17
}
},
{
- "pk": 27,
+ "pk": 51,
"model": "auth.permission",
"fields": {
"codename": "delete_tag",
"name": "Can delete tag",
- "content_type": 9
+ "content_type": 17
+ }
+ },
+ {
+ "pk": 61,
+ "model": "auth.permission",
+ "fields": {
+ "codename": "add_thread",
+ "name": "Can add thread",
+ "content_type": 21
+ }
+ },
+ {
+ "pk": 62,
+ "model": "auth.permission",
+ "fields": {
+ "codename": "change_thread",
+ "name": "Can change thread",
+ "content_type": 21
+ }
+ },
+ {
+ "pk": 63,
+ "model": "auth.permission",
+ "fields": {
+ "codename": "delete_thread",
+ "name": "Can delete thread",
+ "content_type": 21
}
},
{
@@ -621,516 +675,516 @@
}
},
{
- "pk": 79,
+ "pk": 85,
"model": "auth.permission",
"fields": {
"codename": "add_association",
"name": "Can add association",
- "content_type": 27
+ "content_type": 29
}
},
{
- "pk": 80,
+ "pk": 86,
"model": "auth.permission",
"fields": {
"codename": "change_association",
"name": "Can change association",
- "content_type": 27
+ "content_type": 29
}
},
{
- "pk": 81,
+ "pk": 87,
"model": "auth.permission",
"fields": {
"codename": "delete_association",
"name": "Can delete association",
- "content_type": 27
+ "content_type": 29
}
},
{
- "pk": 76,
+ "pk": 82,
"model": "auth.permission",
"fields": {
"codename": "add_nonce",
"name": "Can add nonce",
- "content_type": 26
+ "content_type": 28
}
},
{
- "pk": 77,
+ "pk": 83,
"model": "auth.permission",
"fields": {
"codename": "change_nonce",
"name": "Can change nonce",
- "content_type": 26
+ "content_type": 28
}
},
{
- "pk": 78,
+ "pk": 84,
"model": "auth.permission",
"fields": {
"codename": "delete_nonce",
"name": "Can delete nonce",
- "content_type": 26
+ "content_type": 28
}
},
{
- "pk": 82,
+ "pk": 88,
"model": "auth.permission",
"fields": {
"codename": "add_userassociation",
"name": "Can add user association",
- "content_type": 28
+ "content_type": 30
}
},
{
- "pk": 83,
+ "pk": 89,
"model": "auth.permission",
"fields": {
"codename": "change_userassociation",
"name": "Can change user association",
- "content_type": 28
+ "content_type": 30
}
},
{
- "pk": 84,
+ "pk": 90,
"model": "auth.permission",
"fields": {
"codename": "delete_userassociation",
"name": "Can delete user association",
- "content_type": 28
+ "content_type": 30
}
},
{
- "pk": 85,
+ "pk": 91,
"model": "auth.permission",
"fields": {
"codename": "add_userpasswordqueue",
"name": "Can add user password queue",
- "content_type": 29
+ "content_type": 31
}
},
{
- "pk": 86,
+ "pk": 92,
"model": "auth.permission",
"fields": {
"codename": "change_userpasswordqueue",
"name": "Can change user password queue",
- "content_type": 29
+ "content_type": 31
}
},
{
- "pk": 87,
+ "pk": 93,
"model": "auth.permission",
"fields": {
"codename": "delete_userpasswordqueue",
"name": "Can delete user password queue",
- "content_type": 29
+ "content_type": 31
}
},
{
- "pk": 112,
+ "pk": 118,
"model": "auth.permission",
"fields": {
"codename": "add_crontabschedule",
"name": "Can add crontab",
- "content_type": 38
+ "content_type": 40
}
},
{
- "pk": 113,
+ "pk": 119,
"model": "auth.permission",
"fields": {
"codename": "change_crontabschedule",
"name": "Can change crontab",
- "content_type": 38
+ "content_type": 40
}
},
{
- "pk": 114,
+ "pk": 120,
"model": "auth.permission",
"fields": {
"codename": "delete_crontabschedule",
"name": "Can delete crontab",
- "content_type": 38
+ "content_type": 40
}
},
{
- "pk": 109,
+ "pk": 115,
"model": "auth.permission",
"fields": {
"codename": "add_intervalschedule",
"name": "Can add interval",
- "content_type": 37
+ "content_type": 39
}
},
{
- "pk": 110,
+ "pk": 116,
"model": "auth.permission",
"fields": {
"codename": "change_intervalschedule",
"name": "Can change interval",
- "content_type": 37
+ "content_type": 39
}
},
{
- "pk": 111,
+ "pk": 117,
"model": "auth.permission",
"fields": {
"codename": "delete_intervalschedule",
"name": "Can delete interval",
- "content_type": 37
+ "content_type": 39
}
},
{
- "pk": 118,
+ "pk": 124,
"model": "auth.permission",
"fields": {
"codename": "add_periodictask",
"name": "Can add periodic task",
- "content_type": 40
+ "content_type": 42
}
},
{
- "pk": 119,
+ "pk": 125,
"model": "auth.permission",
"fields": {
"codename": "change_periodictask",
"name": "Can change periodic task",
- "content_type": 40
+ "content_type": 42
}
},
{
- "pk": 120,
+ "pk": 126,
"model": "auth.permission",
"fields": {
"codename": "delete_periodictask",
"name": "Can delete periodic task",
- "content_type": 40
+ "content_type": 42
}
},
{
- "pk": 115,
+ "pk": 121,
"model": "auth.permission",
"fields": {
"codename": "add_periodictasks",
"name": "Can add periodic tasks",
- "content_type": 39
+ "content_type": 41
}
},
{
- "pk": 116,
+ "pk": 122,
"model": "auth.permission",
"fields": {
"codename": "change_periodictasks",
"name": "Can change periodic tasks",
- "content_type": 39
+ "content_type": 41
}
},
{
- "pk": 117,
+ "pk": 123,
"model": "auth.permission",
"fields": {
"codename": "delete_periodictasks",
"name": "Can delete periodic tasks",
- "content_type": 39
+ "content_type": 41
}
},
{
- "pk": 103,
+ "pk": 109,
"model": "auth.permission",
"fields": {
"codename": "add_taskmeta",
"name": "Can add task meta",
- "content_type": 35
+ "content_type": 37
}
},
{
- "pk": 104,
+ "pk": 110,
"model": "auth.permission",
"fields": {
"codename": "change_taskmeta",
"name": "Can change task meta",
- "content_type": 35
+ "content_type": 37
}
},
{
- "pk": 105,
+ "pk": 111,
"model": "auth.permission",
"fields": {
"codename": "delete_taskmeta",
"name": "Can delete task meta",
- "content_type": 35
+ "content_type": 37
}
},
{
- "pk": 106,
+ "pk": 112,
"model": "auth.permission",
"fields": {
"codename": "add_tasksetmeta",
"name": "Can add taskset meta",
- "content_type": 36
+ "content_type": 38
}
},
{
- "pk": 107,
+ "pk": 113,
"model": "auth.permission",
"fields": {
"codename": "change_tasksetmeta",
"name": "Can change taskset meta",
- "content_type": 36
+ "content_type": 38
}
},
{
- "pk": 108,
+ "pk": 114,
"model": "auth.permission",
"fields": {
"codename": "delete_tasksetmeta",
"name": "Can delete taskset meta",
- "content_type": 36
+ "content_type": 38
}
},
{
- "pk": 124,
+ "pk": 130,
"model": "auth.permission",
"fields": {
"codename": "add_taskstate",
"name": "Can add task",
- "content_type": 42
+ "content_type": 44
}
},
{
- "pk": 125,
+ "pk": 131,
"model": "auth.permission",
"fields": {
"codename": "change_taskstate",
"name": "Can change task",
- "content_type": 42
+ "content_type": 44
}
},
{
- "pk": 126,
+ "pk": 132,
"model": "auth.permission",
"fields": {
"codename": "delete_taskstate",
"name": "Can delete task",
- "content_type": 42
+ "content_type": 44
}
},
{
- "pk": 121,
+ "pk": 127,
"model": "auth.permission",
"fields": {
"codename": "add_workerstate",
"name": "Can add worker",
- "content_type": 41
+ "content_type": 43
}
},
{
- "pk": 122,
+ "pk": 128,
"model": "auth.permission",
"fields": {
"codename": "change_workerstate",
"name": "Can change worker",
- "content_type": 41
+ "content_type": 43
}
},
{
- "pk": 123,
+ "pk": 129,
"model": "auth.permission",
"fields": {
"codename": "delete_workerstate",
"name": "Can delete worker",
- "content_type": 41
+ "content_type": 43
}
},
{
- "pk": 130,
+ "pk": 136,
"model": "auth.permission",
"fields": {
"codename": "add_message",
"name": "Can add message",
- "content_type": 44
+ "content_type": 46
}
},
{
- "pk": 131,
+ "pk": 137,
"model": "auth.permission",
"fields": {
"codename": "change_message",
"name": "Can change message",
- "content_type": 44
+ "content_type": 46
}
},
{
- "pk": 132,
+ "pk": 138,
"model": "auth.permission",
"fields": {
"codename": "delete_message",
"name": "Can delete message",
- "content_type": 44
+ "content_type": 46
}
},
{
- "pk": 127,
+ "pk": 133,
"model": "auth.permission",
"fields": {
"codename": "add_queue",
"name": "Can add queue",
- "content_type": 43
+ "content_type": 45
}
},
{
- "pk": 128,
+ "pk": 134,
"model": "auth.permission",
"fields": {
"codename": "change_queue",
"name": "Can change queue",
- "content_type": 43
+ "content_type": 45
}
},
{
- "pk": 129,
+ "pk": 135,
"model": "auth.permission",
"fields": {
"codename": "delete_queue",
"name": "Can delete queue",
- "content_type": 43
+ "content_type": 45
}
},
{
- "pk": 133,
+ "pk": 139,
"model": "auth.permission",
"fields": {
"codename": "add_followuser",
"name": "Can add followuser",
- "content_type": 45
+ "content_type": 47
}
},
{
- "pk": 134,
+ "pk": 140,
"model": "auth.permission",
"fields": {
"codename": "change_followuser",
"name": "Can change followuser",
- "content_type": 45
+ "content_type": 47
}
},
{
- "pk": 135,
+ "pk": 141,
"model": "auth.permission",
"fields": {
"codename": "delete_followuser",
"name": "Can delete followuser",
- "content_type": 45
+ "content_type": 47
}
},
{
- "pk": 94,
+ "pk": 100,
"model": "auth.permission",
"fields": {
"codename": "add_longsetting",
"name": "Can add long setting",
- "content_type": 32
+ "content_type": 34
}
},
{
- "pk": 95,
+ "pk": 101,
"model": "auth.permission",
"fields": {
"codename": "change_longsetting",
"name": "Can change long setting",
- "content_type": 32
+ "content_type": 34
}
},
{
- "pk": 96,
+ "pk": 102,
"model": "auth.permission",
"fields": {
"codename": "delete_longsetting",
"name": "Can delete long setting",
- "content_type": 32
+ "content_type": 34
}
},
{
- "pk": 91,
+ "pk": 97,
"model": "auth.permission",
"fields": {
"codename": "add_setting",
"name": "Can add setting",
- "content_type": 31
+ "content_type": 33
}
},
{
- "pk": 92,
+ "pk": 98,
"model": "auth.permission",
"fields": {
"codename": "change_setting",
"name": "Can change setting",
- "content_type": 31
+ "content_type": 33
}
},
{
- "pk": 93,
+ "pk": 99,
"model": "auth.permission",
"fields": {
"codename": "delete_setting",
"name": "Can delete setting",
- "content_type": 31
+ "content_type": 33
}
},
{
- "pk": 100,
+ "pk": 106,
"model": "auth.permission",
"fields": {
"codename": "add_rule",
"name": "Can add rule",
- "content_type": 34
+ "content_type": 36
}
},
{
- "pk": 101,
+ "pk": 107,
"model": "auth.permission",
"fields": {
"codename": "change_rule",
"name": "Can change rule",
- "content_type": 34
+ "content_type": 36
}
},
{
- "pk": 102,
+ "pk": 108,
"model": "auth.permission",
"fields": {
"codename": "delete_rule",
"name": "Can delete rule",
- "content_type": 34
+ "content_type": 36
}
},
{
- "pk": 97,
+ "pk": 103,
"model": "auth.permission",
"fields": {
"codename": "add_url",
"name": "Can add url",
- "content_type": 33
+ "content_type": 35
}
},
{
- "pk": 98,
+ "pk": 104,
"model": "auth.permission",
"fields": {
"codename": "change_url",
"name": "Can change url",
- "content_type": 33
+ "content_type": 35
}
},
{
- "pk": 99,
+ "pk": 105,
"model": "auth.permission",
"fields": {
"codename": "delete_url",
"name": "Can delete url",
- "content_type": 33
+ "content_type": 35
}
},
{
@@ -1188,34 +1242,77 @@
}
},
{
- "pk": 88,
+ "pk": 94,
"model": "auth.permission",
"fields": {
"codename": "add_migrationhistory",
"name": "Can add migration history",
- "content_type": 30
+ "content_type": 32
}
},
{
- "pk": 89,
+ "pk": 95,
"model": "auth.permission",
"fields": {
"codename": "change_migrationhistory",
"name": "Can change migration history",
- "content_type": 30
+ "content_type": 32
}
},
{
- "pk": 90,
+ "pk": 96,
"model": "auth.permission",
"fields": {
"codename": "delete_migrationhistory",
"name": "Can delete migration history",
- "content_type": 30
+ "content_type": 32
}
},
{
- "pk": 9,
+ "pk": 1,
+ "model": "auth.user",
+ "fields": {
+ "status": "w",
+ "last_name": "",
+ "gold": 0,
+ "is_staff": true,
+ "user_permissions": [],
+ "interesting_tags": "",
+ "email_key": null,
+ "date_joined": "2011-12-11 12:21:03",
+ "first_name": "",
+ "email_isvalid": false,
+ "avatar_type": "n",
+ "website": "",
+ "is_superuser": true,
+ "date_of_birth": null,
+ "last_login": "2011-12-11 12:21:03",
+ "location": "",
+ "new_response_count": 61,
+ "email": "test_user_0@askbot.org",
+ "username": "test_user_0",
+ "is_active": true,
+ "consecutive_days_visit_count": 0,
+ "email_tag_filter_strategy": 1,
+ "groups": [],
+ "password": "sha1$28ede$e0333227f9bb834d548024b26ff6551e9131b993",
+ "silver": 0,
+ "bronze": 3,
+ "questions_per_page": 10,
+ "about": "",
+ "show_country": false,
+ "country": "",
+ "display_tag_filter_strategy": 0,
+ "seen_response_count": 0,
+ "real_name": "",
+ "ignored_tags": "",
+ "reputation": 520,
+ "gravatar": "97b89e3082d2741855254393f078fe6c",
+ "last_seen": "2011-12-11 12:21:03"
+ }
+ },
+ {
+ "pk": 2,
"model": "auth.user",
"fields": {
"status": "w",
@@ -1225,25 +1322,25 @@
"user_permissions": [],
"interesting_tags": "",
"email_key": null,
- "date_joined": "2011-11-29 11:22:00",
+ "date_joined": "2011-12-11 12:21:04",
"first_name": "",
"email_isvalid": false,
"avatar_type": "n",
"website": "",
"is_superuser": false,
"date_of_birth": null,
- "last_login": "2011-11-29 11:22:00",
+ "last_login": "2011-12-11 12:21:04",
"location": "",
- "new_response_count": 37,
- "email": "test_user_8@askbot.org",
- "username": "test_user_8",
+ "new_response_count": 58,
+ "email": "test_user_1@askbot.org",
+ "username": "test_user_1",
"is_active": true,
"consecutive_days_visit_count": 0,
"email_tag_filter_strategy": 1,
"groups": [],
- "password": "sha1$6fcb7$fe736ba4d649a8dc6c4a418968f2385f0a21bbb0",
+ "password": "sha1$5c053$504d7906f08ed3d3adc24ad477b0216875be5448",
"silver": 0,
- "bronze": 4,
+ "bronze": 1,
"questions_per_page": 10,
"about": "",
"show_country": false,
@@ -1252,13 +1349,13 @@
"seen_response_count": 0,
"real_name": "",
"ignored_tags": "",
- "reputation": 518,
- "gravatar": "2efc123f13b1590ab7f54b229b6ce61c",
- "last_seen": "2011-11-29 11:22:00"
+ "reputation": 496,
+ "gravatar": "6859f8f5f86ae184bab4c5e2297a6f85",
+ "last_seen": "2011-12-11 12:21:04"
}
},
{
- "pk": 7,
+ "pk": 3,
"model": "auth.user",
"fields": {
"status": "w",
@@ -1268,23 +1365,23 @@
"user_permissions": [],
"interesting_tags": "",
"email_key": null,
- "date_joined": "2011-11-29 11:22:00",
+ "date_joined": "2011-12-11 12:21:04",
"first_name": "",
"email_isvalid": false,
"avatar_type": "n",
"website": "",
"is_superuser": false,
"date_of_birth": null,
- "last_login": "2011-11-29 11:22:00",
+ "last_login": "2011-12-11 12:21:04",
"location": "",
- "new_response_count": 43,
- "email": "test_user_6@askbot.org",
- "username": "test_user_6",
+ "new_response_count": 55,
+ "email": "test_user_2@askbot.org",
+ "username": "test_user_2",
"is_active": true,
"consecutive_days_visit_count": 0,
"email_tag_filter_strategy": 1,
"groups": [],
- "password": "sha1$411f1$9d201e56bb0c56ec136d1c8d934c0eab147593b7",
+ "password": "sha1$db565$fe44dc640442a94e04e2c314b8b464b47b394f75",
"silver": 0,
"bronze": 4,
"questions_per_page": 10,
@@ -1296,12 +1393,12 @@
"real_name": "",
"ignored_tags": "",
"reputation": 518,
- "gravatar": "7ce778a81f19e1304bbcc21ee6331063",
- "last_seen": "2011-11-29 11:22:00"
+ "gravatar": "564666778b07615b15a36ce51ac7f7d2",
+ "last_seen": "2011-12-11 12:21:04"
}
},
{
- "pk": 8,
+ "pk": 4,
"model": "auth.user",
"fields": {
"status": "w",
@@ -1311,23 +1408,23 @@
"user_permissions": [],
"interesting_tags": "",
"email_key": null,
- "date_joined": "2011-11-29 11:22:00",
+ "date_joined": "2011-12-11 12:21:04",
"first_name": "",
"email_isvalid": false,
"avatar_type": "n",
"website": "",
"is_superuser": false,
"date_of_birth": null,
- "last_login": "2011-11-29 11:22:00",
+ "last_login": "2011-12-11 12:21:04",
"location": "",
- "new_response_count": 40,
- "email": "test_user_7@askbot.org",
- "username": "test_user_7",
+ "new_response_count": 52,
+ "email": "test_user_3@askbot.org",
+ "username": "test_user_3",
"is_active": true,
"consecutive_days_visit_count": 0,
"email_tag_filter_strategy": 1,
"groups": [],
- "password": "sha1$eb1b8$c942013b7849d6c72efc3297b0bdd18f0c28c62f",
+ "password": "sha1$04b34$9dbbc060c36a2b1661dfa44c9893e33ea03c36e7",
"silver": 0,
"bronze": 1,
"questions_per_page": 10,
@@ -1339,12 +1436,12 @@
"real_name": "",
"ignored_tags": "",
"reputation": 496,
- "gravatar": "4556e9e446c727e6fdf37af356097ff2",
- "last_seen": "2011-11-29 11:22:00"
+ "gravatar": "32f9b7a8113ca3b42b63435fe4859b31",
+ "last_seen": "2011-12-11 12:21:04"
}
},
{
- "pk": 6,
+ "pk": 5,
"model": "auth.user",
"fields": {
"status": "w",
@@ -1354,25 +1451,25 @@
"user_permissions": [],
"interesting_tags": "",
"email_key": null,
- "date_joined": "2011-11-29 11:22:00",
+ "date_joined": "2011-12-11 12:21:04",
"first_name": "",
"email_isvalid": false,
"avatar_type": "n",
"website": "",
"is_superuser": false,
"date_of_birth": null,
- "last_login": "2011-11-29 11:22:00",
+ "last_login": "2011-12-11 12:21:04",
"location": "",
- "new_response_count": 46,
- "email": "test_user_5@askbot.org",
- "username": "test_user_5",
+ "new_response_count": 49,
+ "email": "test_user_4@askbot.org",
+ "username": "test_user_4",
"is_active": true,
"consecutive_days_visit_count": 0,
"email_tag_filter_strategy": 1,
"groups": [],
- "password": "sha1$5598c$4fa4cdef0a597bcf92e417da7bc3b77e78361e7e",
+ "password": "sha1$f9e98$f50d28f44f3dcbff6efc12ef6b870217310df82a",
"silver": 0,
- "bronze": 1,
+ "bronze": 4,
"questions_per_page": 10,
"about": "",
"show_country": false,
@@ -1381,13 +1478,13 @@
"seen_response_count": 0,
"real_name": "",
"ignored_tags": "",
- "reputation": 496,
- "gravatar": "9846d347d8a7d759c40cda0f3d13483f",
- "last_seen": "2011-11-29 11:22:00"
+ "reputation": 518,
+ "gravatar": "23f7d972c0c664b156d0473c0999a697",
+ "last_seen": "2011-12-11 12:21:04"
}
},
{
- "pk": 12,
+ "pk": 6,
"model": "auth.user",
"fields": {
"status": "w",
@@ -1397,23 +1494,23 @@
"user_permissions": [],
"interesting_tags": "",
"email_key": null,
- "date_joined": "2011-11-29 11:22:01",
+ "date_joined": "2011-12-11 12:21:04",
"first_name": "",
"email_isvalid": false,
"avatar_type": "n",
"website": "",
"is_superuser": false,
"date_of_birth": null,
- "last_login": "2011-11-29 11:22:01",
+ "last_login": "2011-12-11 12:21:04",
"location": "",
- "new_response_count": 28,
- "email": "test_user_11@askbot.org",
- "username": "test_user_11",
+ "new_response_count": 46,
+ "email": "test_user_5@askbot.org",
+ "username": "test_user_5",
"is_active": true,
"consecutive_days_visit_count": 0,
"email_tag_filter_strategy": 1,
"groups": [],
- "password": "sha1$93294$3ac177911647fe34438c8dae115b20bdec80f914",
+ "password": "sha1$6f065$986e96cd6fcee11455af7bcc3d6364a090900071",
"silver": 0,
"bronze": 1,
"questions_per_page": 10,
@@ -1425,12 +1522,12 @@
"real_name": "",
"ignored_tags": "",
"reputation": 496,
- "gravatar": "ccb4b8fe5a80781e5051435db97becaa",
- "last_seen": "2011-11-29 11:22:01"
+ "gravatar": "9846d347d8a7d759c40cda0f3d13483f",
+ "last_seen": "2011-12-11 12:21:04"
}
},
{
- "pk": 10,
+ "pk": 7,
"model": "auth.user",
"fields": {
"status": "w",
@@ -1440,25 +1537,25 @@
"user_permissions": [],
"interesting_tags": "",
"email_key": null,
- "date_joined": "2011-11-29 11:22:01",
+ "date_joined": "2011-12-11 12:21:04",
"first_name": "",
"email_isvalid": false,
"avatar_type": "n",
"website": "",
"is_superuser": false,
"date_of_birth": null,
- "last_login": "2011-11-29 11:22:01",
+ "last_login": "2011-12-11 12:21:04",
"location": "",
- "new_response_count": 34,
- "email": "test_user_9@askbot.org",
- "username": "test_user_9",
+ "new_response_count": 43,
+ "email": "test_user_6@askbot.org",
+ "username": "test_user_6",
"is_active": true,
"consecutive_days_visit_count": 0,
"email_tag_filter_strategy": 1,
"groups": [],
- "password": "sha1$8a201$c8572b07ccf47c55563721392ae83dc4d2a45ec9",
+ "password": "sha1$09325$e8409e902f673f32437f615d2843164fa0e5d488",
"silver": 0,
- "bronze": 1,
+ "bronze": 4,
"questions_per_page": 10,
"about": "",
"show_country": false,
@@ -1467,13 +1564,13 @@
"seen_response_count": 0,
"real_name": "",
"ignored_tags": "",
- "reputation": 496,
- "gravatar": "2872546b9b5fa933413b58b18b0d56ca",
- "last_seen": "2011-11-29 11:22:01"
+ "reputation": 518,
+ "gravatar": "7ce778a81f19e1304bbcc21ee6331063",
+ "last_seen": "2011-12-11 12:21:04"
}
},
{
- "pk": 2,
+ "pk": 8,
"model": "auth.user",
"fields": {
"status": "w",
@@ -1483,23 +1580,23 @@
"user_permissions": [],
"interesting_tags": "",
"email_key": null,
- "date_joined": "2011-11-29 11:22:00",
+ "date_joined": "2011-12-11 12:21:05",
"first_name": "",
"email_isvalid": false,
"avatar_type": "n",
"website": "",
"is_superuser": false,
"date_of_birth": null,
- "last_login": "2011-11-29 11:22:00",
+ "last_login": "2011-12-11 12:21:05",
"location": "",
- "new_response_count": 58,
- "email": "test_user_1@askbot.org",
- "username": "test_user_1",
+ "new_response_count": 40,
+ "email": "test_user_7@askbot.org",
+ "username": "test_user_7",
"is_active": true,
"consecutive_days_visit_count": 0,
"email_tag_filter_strategy": 1,
"groups": [],
- "password": "sha1$61ffc$5ad65aa128b4edc2c56b6cf960dddcad9f66ecb0",
+ "password": "sha1$8e2b7$513eb49f2da28614680d3f571bc598867313b2a6",
"silver": 0,
"bronze": 1,
"questions_per_page": 10,
@@ -1511,12 +1608,12 @@
"real_name": "",
"ignored_tags": "",
"reputation": 496,
- "gravatar": "6859f8f5f86ae184bab4c5e2297a6f85",
- "last_seen": "2011-11-29 11:22:00"
+ "gravatar": "4556e9e446c727e6fdf37af356097ff2",
+ "last_seen": "2011-12-11 12:21:05"
}
},
{
- "pk": 14,
+ "pk": 9,
"model": "auth.user",
"fields": {
"status": "w",
@@ -1526,25 +1623,25 @@
"user_permissions": [],
"interesting_tags": "",
"email_key": null,
- "date_joined": "2011-11-29 11:22:01",
+ "date_joined": "2011-12-11 12:21:05",
"first_name": "",
"email_isvalid": false,
"avatar_type": "n",
"website": "",
"is_superuser": false,
"date_of_birth": null,
- "last_login": "2011-11-29 11:22:01",
+ "last_login": "2011-12-11 12:21:05",
"location": "",
- "new_response_count": 22,
- "email": "test_user_13@askbot.org",
- "username": "test_user_13",
+ "new_response_count": 37,
+ "email": "test_user_8@askbot.org",
+ "username": "test_user_8",
"is_active": true,
"consecutive_days_visit_count": 0,
"email_tag_filter_strategy": 1,
"groups": [],
- "password": "sha1$6bde8$2b1182edb0e72c5db59b7b76386fbafc6298b5c4",
+ "password": "sha1$46965$643f4cdf41bd8ca58c294f20f2fe610a9f1372e1",
"silver": 0,
- "bronze": 1,
+ "bronze": 4,
"questions_per_page": 10,
"about": "",
"show_country": false,
@@ -1553,13 +1650,13 @@
"seen_response_count": 0,
"real_name": "",
"ignored_tags": "",
- "reputation": 496,
- "gravatar": "77dc2a59fecaa4eeb06fa9f563ebf669",
- "last_seen": "2011-11-29 11:22:01"
+ "reputation": 518,
+ "gravatar": "2efc123f13b1590ab7f54b229b6ce61c",
+ "last_seen": "2011-12-11 12:21:05"
}
},
{
- "pk": 15,
+ "pk": 10,
"model": "auth.user",
"fields": {
"status": "w",
@@ -1569,25 +1666,25 @@
"user_permissions": [],
"interesting_tags": "",
"email_key": null,
- "date_joined": "2011-11-29 11:22:01",
+ "date_joined": "2011-12-11 12:21:05",
"first_name": "",
"email_isvalid": false,
"avatar_type": "n",
"website": "",
"is_superuser": false,
"date_of_birth": null,
- "last_login": "2011-11-29 11:22:01",
+ "last_login": "2011-12-11 12:21:05",
"location": "",
- "new_response_count": 19,
- "email": "test_user_14@askbot.org",
- "username": "test_user_14",
+ "new_response_count": 34,
+ "email": "test_user_9@askbot.org",
+ "username": "test_user_9",
"is_active": true,
"consecutive_days_visit_count": 0,
"email_tag_filter_strategy": 1,
"groups": [],
- "password": "sha1$7f38e$5933ca3795008d9e0114244864faac1d743155be",
+ "password": "sha1$1edf2$e5b6e0953d71db102406f9f6b61cb5d3f56bcdbf",
"silver": 0,
- "bronze": 4,
+ "bronze": 1,
"questions_per_page": 10,
"about": "",
"show_country": false,
@@ -1596,9 +1693,9 @@
"seen_response_count": 0,
"real_name": "",
"ignored_tags": "",
- "reputation": 518,
- "gravatar": "0a4b98e7ec7867d097ef4ee1c3d23104",
- "last_seen": "2011-11-29 11:22:01"
+ "reputation": 496,
+ "gravatar": "2872546b9b5fa933413b58b18b0d56ca",
+ "last_seen": "2011-12-11 12:21:05"
}
},
{
@@ -1612,14 +1709,14 @@
"user_permissions": [],
"interesting_tags": "",
"email_key": null,
- "date_joined": "2011-11-29 11:22:01",
+ "date_joined": "2011-12-11 12:21:05",
"first_name": "",
"email_isvalid": false,
"avatar_type": "n",
"website": "",
"is_superuser": false,
"date_of_birth": null,
- "last_login": "2011-11-29 11:22:01",
+ "last_login": "2011-12-11 12:21:05",
"location": "",
"new_response_count": 31,
"email": "test_user_10@askbot.org",
@@ -1628,7 +1725,7 @@
"consecutive_days_visit_count": 0,
"email_tag_filter_strategy": 1,
"groups": [],
- "password": "sha1$f90ee$15da682179f192e85dec5325dafd531a4efd10b5",
+ "password": "sha1$3e724$f0d55f488152721d59f2fbe649c15a6e223404b8",
"silver": 0,
"bronze": 4,
"questions_per_page": 10,
@@ -1641,11 +1738,11 @@
"ignored_tags": "",
"reputation": 518,
"gravatar": "83458295fcf6dcdc6ee5815491cbee3f",
- "last_seen": "2011-11-29 11:22:01"
+ "last_seen": "2011-12-11 12:21:05"
}
},
{
- "pk": 4,
+ "pk": 12,
"model": "auth.user",
"fields": {
"status": "w",
@@ -1655,23 +1752,23 @@
"user_permissions": [],
"interesting_tags": "",
"email_key": null,
- "date_joined": "2011-11-29 11:22:00",
+ "date_joined": "2011-12-11 12:21:05",
"first_name": "",
"email_isvalid": false,
"avatar_type": "n",
"website": "",
"is_superuser": false,
"date_of_birth": null,
- "last_login": "2011-11-29 11:22:00",
+ "last_login": "2011-12-11 12:21:05",
"location": "",
- "new_response_count": 52,
- "email": "test_user_3@askbot.org",
- "username": "test_user_3",
+ "new_response_count": 28,
+ "email": "test_user_11@askbot.org",
+ "username": "test_user_11",
"is_active": true,
"consecutive_days_visit_count": 0,
"email_tag_filter_strategy": 1,
"groups": [],
- "password": "sha1$64fe9$44f013204511c63ce0cbdb0c7a1f2c81e44a5c3e",
+ "password": "sha1$57e94$57b743b187c1e14a0c5907c33b0eb1e60f77e0ad",
"silver": 0,
"bronze": 1,
"questions_per_page": 10,
@@ -1683,12 +1780,12 @@
"real_name": "",
"ignored_tags": "",
"reputation": 496,
- "gravatar": "32f9b7a8113ca3b42b63435fe4859b31",
- "last_seen": "2011-11-29 11:22:00"
+ "gravatar": "ccb4b8fe5a80781e5051435db97becaa",
+ "last_seen": "2011-12-11 12:21:05"
}
},
{
- "pk": 19,
+ "pk": 13,
"model": "auth.user",
"fields": {
"status": "w",
@@ -1698,23 +1795,23 @@
"user_permissions": [],
"interesting_tags": "",
"email_key": null,
- "date_joined": "2011-11-29 11:22:01",
+ "date_joined": "2011-12-11 12:21:05",
"first_name": "",
"email_isvalid": false,
"avatar_type": "n",
"website": "",
"is_superuser": false,
"date_of_birth": null,
- "last_login": "2011-11-29 11:22:01",
+ "last_login": "2011-12-11 12:21:05",
"location": "",
- "new_response_count": 7,
- "email": "test_user_18@askbot.org",
- "username": "test_user_18",
+ "new_response_count": 25,
+ "email": "test_user_12@askbot.org",
+ "username": "test_user_12",
"is_active": true,
"consecutive_days_visit_count": 0,
"email_tag_filter_strategy": 1,
"groups": [],
- "password": "sha1$6629c$0f6ae97e0ebcb09c23469abef32080102bafa4a0",
+ "password": "sha1$3bc9d$32c336efb6e2f2b907ed4528f4a25b9731448228",
"silver": 0,
"bronze": 4,
"questions_per_page": 10,
@@ -1726,40 +1823,40 @@
"real_name": "",
"ignored_tags": "",
"reputation": 518,
- "gravatar": "ec0f9a859b26512fdcc994516be5e752",
- "last_seen": "2011-11-29 11:22:01"
+ "gravatar": "6a70087a63bbc7c6a4028365ed4e1950",
+ "last_seen": "2011-12-11 12:21:05"
}
},
{
- "pk": 20,
+ "pk": 14,
"model": "auth.user",
"fields": {
"status": "w",
"last_name": "",
- "gold": 2,
+ "gold": 0,
"is_staff": false,
"user_permissions": [],
"interesting_tags": "",
"email_key": null,
- "date_joined": "2011-11-29 11:22:01",
+ "date_joined": "2011-12-11 12:21:05",
"first_name": "",
"email_isvalid": false,
"avatar_type": "n",
"website": "",
"is_superuser": false,
"date_of_birth": null,
- "last_login": "2011-11-29 11:22:01",
+ "last_login": "2011-12-11 12:21:05",
"location": "",
- "new_response_count": 0,
- "email": "test_user_19@askbot.org",
- "username": "test_user_19",
+ "new_response_count": 22,
+ "email": "test_user_13@askbot.org",
+ "username": "test_user_13",
"is_active": true,
"consecutive_days_visit_count": 0,
"email_tag_filter_strategy": 1,
"groups": [],
- "password": "sha1$0ef82$173d590b1c23c9f6c7b6cfb1196498a53cf0be2b",
- "silver": 2,
- "bronze": 4,
+ "password": "sha1$b82c1$8fbec15cf190aa71451e786b2ae181acc31fb486",
+ "silver": 0,
+ "bronze": 1,
"questions_per_page": 10,
"about": "",
"show_country": false,
@@ -1768,13 +1865,13 @@
"seen_response_count": 0,
"real_name": "",
"ignored_tags": "",
- "reputation": 713,
- "gravatar": "b75bdbeb7354745fdf9fdf72200eb799",
- "last_seen": "2011-11-29 11:22:01"
+ "reputation": 496,
+ "gravatar": "77dc2a59fecaa4eeb06fa9f563ebf669",
+ "last_seen": "2011-12-11 12:21:05"
}
},
{
- "pk": 18,
+ "pk": 15,
"model": "auth.user",
"fields": {
"status": "w",
@@ -1784,25 +1881,25 @@
"user_permissions": [],
"interesting_tags": "",
"email_key": null,
- "date_joined": "2011-11-29 11:22:01",
+ "date_joined": "2011-12-11 12:21:05",
"first_name": "",
"email_isvalid": false,
"avatar_type": "n",
"website": "",
"is_superuser": false,
"date_of_birth": null,
- "last_login": "2011-11-29 11:22:01",
+ "last_login": "2011-12-11 12:21:05",
"location": "",
- "new_response_count": 10,
- "email": "test_user_17@askbot.org",
- "username": "test_user_17",
+ "new_response_count": 19,
+ "email": "test_user_14@askbot.org",
+ "username": "test_user_14",
"is_active": true,
"consecutive_days_visit_count": 0,
"email_tag_filter_strategy": 1,
"groups": [],
- "password": "sha1$55744$75ca9a6b006211c4870dee080e4158db26c5d4c1",
+ "password": "sha1$537ad$f540d9e5a3302cfc97e11172b2f015ac96e84a48",
"silver": 0,
- "bronze": 1,
+ "bronze": 4,
"questions_per_page": 10,
"about": "",
"show_country": false,
@@ -1811,9 +1908,9 @@
"seen_response_count": 0,
"real_name": "",
"ignored_tags": "",
- "reputation": 496,
- "gravatar": "b6778982e44fe0fbd78e3496069f1352",
- "last_seen": "2011-11-29 11:22:01"
+ "reputation": 518,
+ "gravatar": "0a4b98e7ec7867d097ef4ee1c3d23104",
+ "last_seen": "2011-12-11 12:21:05"
}
},
{
@@ -1827,14 +1924,14 @@
"user_permissions": [],
"interesting_tags": "",
"email_key": null,
- "date_joined": "2011-11-29 11:22:01",
+ "date_joined": "2011-12-11 12:21:06",
"first_name": "",
"email_isvalid": false,
"avatar_type": "n",
"website": "",
"is_superuser": false,
"date_of_birth": null,
- "last_login": "2011-11-29 11:22:01",
+ "last_login": "2011-12-11 12:21:06",
"location": "",
"new_response_count": 16,
"email": "test_user_15@askbot.org",
@@ -1843,7 +1940,7 @@
"consecutive_days_visit_count": 0,
"email_tag_filter_strategy": 1,
"groups": [],
- "password": "sha1$c3c00$0f4108eb249034369125c3a299715f47c7da84c3",
+ "password": "sha1$84f09$3cc49da268adcd9f8a46c0cf7c1c506a045a5fff",
"silver": 0,
"bronze": 1,
"questions_per_page": 10,
@@ -1856,39 +1953,39 @@
"ignored_tags": "",
"reputation": 496,
"gravatar": "6c5d8511aa4f85cd75a16dbb3e03c5c7",
- "last_seen": "2011-11-29 11:22:01"
+ "last_seen": "2011-12-11 12:21:06"
}
},
{
- "pk": 1,
+ "pk": 17,
"model": "auth.user",
"fields": {
"status": "w",
"last_name": "",
"gold": 0,
- "is_staff": true,
+ "is_staff": false,
"user_permissions": [],
"interesting_tags": "",
"email_key": null,
- "date_joined": "2011-11-29 11:22:00",
+ "date_joined": "2011-12-11 12:21:06",
"first_name": "",
"email_isvalid": false,
"avatar_type": "n",
"website": "",
- "is_superuser": true,
+ "is_superuser": false,
"date_of_birth": null,
- "last_login": "2011-11-29 11:22:00",
+ "last_login": "2011-12-11 12:21:06",
"location": "",
- "new_response_count": 61,
- "email": "test_user_0@askbot.org",
- "username": "test_user_0",
+ "new_response_count": 13,
+ "email": "test_user_16@askbot.org",
+ "username": "test_user_16",
"is_active": true,
"consecutive_days_visit_count": 0,
"email_tag_filter_strategy": 1,
"groups": [],
- "password": "sha1$ea5da$c3bdc0df82479cc3a1498e0c4288ae8a718056b7",
+ "password": "sha1$b90a3$c7da8d5ef1cbea003b0f797e5718d2f2b5c9277b",
"silver": 0,
- "bronze": 3,
+ "bronze": 4,
"questions_per_page": 10,
"about": "",
"show_country": false,
@@ -1897,13 +1994,13 @@
"seen_response_count": 0,
"real_name": "",
"ignored_tags": "",
- "reputation": 520,
- "gravatar": "97b89e3082d2741855254393f078fe6c",
- "last_seen": "2011-11-29 11:22:00"
+ "reputation": 518,
+ "gravatar": "f2174ffb3833816753de7f596f69468b",
+ "last_seen": "2011-12-11 12:21:06"
}
},
{
- "pk": 17,
+ "pk": 18,
"model": "auth.user",
"fields": {
"status": "w",
@@ -1913,25 +2010,25 @@
"user_permissions": [],
"interesting_tags": "",
"email_key": null,
- "date_joined": "2011-11-29 11:22:01",
+ "date_joined": "2011-12-11 12:21:06",
"first_name": "",
"email_isvalid": false,
"avatar_type": "n",
"website": "",
"is_superuser": false,
"date_of_birth": null,
- "last_login": "2011-11-29 11:22:01",
+ "last_login": "2011-12-11 12:21:06",
"location": "",
- "new_response_count": 13,
- "email": "test_user_16@askbot.org",
- "username": "test_user_16",
+ "new_response_count": 10,
+ "email": "test_user_17@askbot.org",
+ "username": "test_user_17",
"is_active": true,
"consecutive_days_visit_count": 0,
"email_tag_filter_strategy": 1,
"groups": [],
- "password": "sha1$817e3$44ea366ab209461095f1c6f236c156166cc17a7f",
+ "password": "sha1$a6806$152177e98b0decfb37346fd7c5171bd219ecb0c2",
"silver": 0,
- "bronze": 4,
+ "bronze": 1,
"questions_per_page": 10,
"about": "",
"show_country": false,
@@ -1940,13 +2037,13 @@
"seen_response_count": 0,
"real_name": "",
"ignored_tags": "",
- "reputation": 518,
- "gravatar": "f2174ffb3833816753de7f596f69468b",
- "last_seen": "2011-11-29 11:22:01"
+ "reputation": 496,
+ "gravatar": "b6778982e44fe0fbd78e3496069f1352",
+ "last_seen": "2011-12-11 12:21:06"
}
},
{
- "pk": 21,
+ "pk": 19,
"model": "auth.user",
"fields": {
"status": "w",
@@ -1956,25 +2053,25 @@
"user_permissions": [],
"interesting_tags": "",
"email_key": null,
- "date_joined": "2011-11-29 11:22:01",
+ "date_joined": "2011-12-11 12:21:06",
"first_name": "",
"email_isvalid": false,
"avatar_type": "n",
"website": "",
"is_superuser": false,
"date_of_birth": null,
- "last_login": "2011-11-29 11:22:01",
+ "last_login": "2011-12-11 12:21:06",
"location": "",
- "new_response_count": 0,
- "email": "test_user_20@askbot.org",
- "username": "test_user_20",
+ "new_response_count": 7,
+ "email": "test_user_18@askbot.org",
+ "username": "test_user_18",
"is_active": true,
"consecutive_days_visit_count": 0,
"email_tag_filter_strategy": 1,
"groups": [],
- "password": "sha1$59574$54ce25571357313105b19a39daa7dfedeb369fc8",
+ "password": "sha1$75ac5$2da920312f8c09e25feff79fab8fad2a035dead5",
"silver": 0,
- "bronze": 2,
+ "bronze": 4,
"questions_per_page": 10,
"about": "",
"show_country": false,
@@ -1983,40 +2080,40 @@
"seen_response_count": 0,
"real_name": "",
"ignored_tags": "",
- "reputation": 509,
- "gravatar": "4f877025b0ab869a9e9400e28ed3eab5",
- "last_seen": "2011-11-29 11:22:01"
+ "reputation": 518,
+ "gravatar": "ec0f9a859b26512fdcc994516be5e752",
+ "last_seen": "2011-12-11 12:21:06"
}
},
{
- "pk": 5,
+ "pk": 20,
"model": "auth.user",
"fields": {
"status": "w",
"last_name": "",
- "gold": 0,
+ "gold": 2,
"is_staff": false,
"user_permissions": [],
"interesting_tags": "",
"email_key": null,
- "date_joined": "2011-11-29 11:22:00",
+ "date_joined": "2011-12-11 12:21:06",
"first_name": "",
"email_isvalid": false,
"avatar_type": "n",
"website": "",
"is_superuser": false,
"date_of_birth": null,
- "last_login": "2011-11-29 11:22:00",
+ "last_login": "2011-12-11 12:21:06",
"location": "",
- "new_response_count": 49,
- "email": "test_user_4@askbot.org",
- "username": "test_user_4",
+ "new_response_count": 0,
+ "email": "test_user_19@askbot.org",
+ "username": "test_user_19",
"is_active": true,
"consecutive_days_visit_count": 0,
"email_tag_filter_strategy": 1,
"groups": [],
- "password": "sha1$7bd4f$4fed2fd2f0a50c59a3e1c7f5bc2d245f185e6941",
- "silver": 0,
+ "password": "sha1$723a1$8ce382fe67f0810d6c8b162dd785a0b3c70508ad",
+ "silver": 2,
"bronze": 4,
"questions_per_page": 10,
"about": "",
@@ -2026,13 +2123,13 @@
"seen_response_count": 0,
"real_name": "",
"ignored_tags": "",
- "reputation": 518,
- "gravatar": "23f7d972c0c664b156d0473c0999a697",
- "last_seen": "2011-11-29 11:22:00"
+ "reputation": 713,
+ "gravatar": "b75bdbeb7354745fdf9fdf72200eb799",
+ "last_seen": "2011-12-11 12:21:06"
}
},
{
- "pk": 23,
+ "pk": 21,
"model": "auth.user",
"fields": {
"status": "w",
@@ -2042,23 +2139,23 @@
"user_permissions": [],
"interesting_tags": "",
"email_key": null,
- "date_joined": "2011-11-29 11:22:01",
+ "date_joined": "2011-12-11 12:21:06",
"first_name": "",
"email_isvalid": false,
"avatar_type": "n",
"website": "",
"is_superuser": false,
"date_of_birth": null,
- "last_login": "2011-11-29 11:22:01",
+ "last_login": "2011-12-11 12:21:06",
"location": "",
"new_response_count": 0,
- "email": "test_user_22@askbot.org",
- "username": "test_user_22",
+ "email": "test_user_20@askbot.org",
+ "username": "test_user_20",
"is_active": true,
"consecutive_days_visit_count": 0,
"email_tag_filter_strategy": 1,
"groups": [],
- "password": "sha1$f7180$8502442f4727bdb5cc22bb1a5c920b8d85ede44f",
+ "password": "sha1$90dda$2333489d0383b84e0f23e5d947550ee85b67e780",
"silver": 0,
"bronze": 2,
"questions_per_page": 10,
@@ -2070,8 +2167,8 @@
"real_name": "",
"ignored_tags": "",
"reputation": 509,
- "gravatar": "a5ddb8c0343a8aa84250f50535368aaf",
- "last_seen": "2011-11-29 11:22:01"
+ "gravatar": "4f877025b0ab869a9e9400e28ed3eab5",
+ "last_seen": "2011-12-11 12:21:06"
}
},
{
@@ -2085,14 +2182,14 @@
"user_permissions": [],
"interesting_tags": "",
"email_key": null,
- "date_joined": "2011-11-29 11:22:01",
+ "date_joined": "2011-12-11 12:21:06",
"first_name": "",
"email_isvalid": false,
"avatar_type": "n",
"website": "",
"is_superuser": false,
"date_of_birth": null,
- "last_login": "2011-11-29 11:22:01",
+ "last_login": "2011-12-11 12:21:06",
"location": "",
"new_response_count": 0,
"email": "test_user_21@askbot.org",
@@ -2101,7 +2198,7 @@
"consecutive_days_visit_count": 0,
"email_tag_filter_strategy": 1,
"groups": [],
- "password": "sha1$51fa7$cff0d645baf77691f67eec2bb34ee2e0b9e08108",
+ "password": "sha1$c751c$468e76e64b94f22d8f2bd27f81efd297d0b7323d",
"silver": 0,
"bronze": 1,
"questions_per_page": 10,
@@ -2114,11 +2211,11 @@
"ignored_tags": "",
"reputation": 498,
"gravatar": "76b52b8b8655a296120d87715dbdd3e6",
- "last_seen": "2011-11-29 11:22:01"
+ "last_seen": "2011-12-11 12:21:06"
}
},
{
- "pk": 25,
+ "pk": 23,
"model": "auth.user",
"fields": {
"status": "w",
@@ -2128,23 +2225,23 @@
"user_permissions": [],
"interesting_tags": "",
"email_key": null,
- "date_joined": "2011-11-29 11:22:01",
+ "date_joined": "2011-12-11 12:21:06",
"first_name": "",
"email_isvalid": false,
"avatar_type": "n",
"website": "",
"is_superuser": false,
"date_of_birth": null,
- "last_login": "2011-11-29 11:22:01",
+ "last_login": "2011-12-11 12:21:06",
"location": "",
"new_response_count": 0,
- "email": "test_user_24@askbot.org",
- "username": "test_user_24",
+ "email": "test_user_22@askbot.org",
+ "username": "test_user_22",
"is_active": true,
"consecutive_days_visit_count": 0,
"email_tag_filter_strategy": 1,
"groups": [],
- "password": "sha1$e5279$0c376c7f9e7912cdcb9a8e8e5f7227c52c6e15ef",
+ "password": "sha1$41347$6251c2d30237ea8da1e857c925fb5ca13a7a0ec4",
"silver": 0,
"bronze": 2,
"questions_per_page": 10,
@@ -2156,8 +2253,8 @@
"real_name": "",
"ignored_tags": "",
"reputation": 509,
- "gravatar": "9273b4ea8133885f6864afbc27b17a6b",
- "last_seen": "2011-11-29 11:22:01"
+ "gravatar": "a5ddb8c0343a8aa84250f50535368aaf",
+ "last_seen": "2011-12-11 12:21:06"
}
},
{
@@ -2171,14 +2268,14 @@
"user_permissions": [],
"interesting_tags": "",
"email_key": null,
- "date_joined": "2011-11-29 11:22:01",
+ "date_joined": "2011-12-11 12:21:07",
"first_name": "",
"email_isvalid": false,
"avatar_type": "n",
"website": "",
"is_superuser": false,
"date_of_birth": null,
- "last_login": "2011-11-29 11:22:01",
+ "last_login": "2011-12-11 12:21:07",
"location": "",
"new_response_count": 0,
"email": "test_user_23@askbot.org",
@@ -2187,7 +2284,7 @@
"consecutive_days_visit_count": 0,
"email_tag_filter_strategy": 1,
"groups": [],
- "password": "sha1$de87a$3bc6401bdfc6775887c3ecbec09fa394eb634a83",
+ "password": "sha1$07b2d$209fbd5a273e4d23cc92c6040d44f37ff76d6f3c",
"silver": 0,
"bronze": 1,
"questions_per_page": 10,
@@ -2200,11 +2297,11 @@
"ignored_tags": "",
"reputation": 498,
"gravatar": "0b7ee0d2855d536bfcd272fe59e51e85",
- "last_seen": "2011-11-29 11:22:01"
+ "last_seen": "2011-12-11 12:21:07"
}
},
{
- "pk": 27,
+ "pk": 25,
"model": "auth.user",
"fields": {
"status": "w",
@@ -2214,23 +2311,23 @@
"user_permissions": [],
"interesting_tags": "",
"email_key": null,
- "date_joined": "2011-11-29 11:22:02",
+ "date_joined": "2011-12-11 12:21:07",
"first_name": "",
"email_isvalid": false,
"avatar_type": "n",
"website": "",
"is_superuser": false,
"date_of_birth": null,
- "last_login": "2011-11-29 11:22:02",
+ "last_login": "2011-12-11 12:21:07",
"location": "",
"new_response_count": 0,
- "email": "test_user_26@askbot.org",
- "username": "test_user_26",
+ "email": "test_user_24@askbot.org",
+ "username": "test_user_24",
"is_active": true,
"consecutive_days_visit_count": 0,
"email_tag_filter_strategy": 1,
"groups": [],
- "password": "sha1$4cbd4$032e616ef2c08f66347037f0cce9af0713076140",
+ "password": "sha1$a8307$ed42f41a58d4fa8469f8afb9e5ea95d0fc9c8451",
"silver": 0,
"bronze": 2,
"questions_per_page": 10,
@@ -2242,8 +2339,8 @@
"real_name": "",
"ignored_tags": "",
"reputation": 509,
- "gravatar": "2089b5251d55cadb48417b9d2b78b4b2",
- "last_seen": "2011-11-29 11:22:02"
+ "gravatar": "9273b4ea8133885f6864afbc27b17a6b",
+ "last_seen": "2011-12-11 12:21:07"
}
},
{
@@ -2257,14 +2354,14 @@
"user_permissions": [],
"interesting_tags": "",
"email_key": null,
- "date_joined": "2011-11-29 11:22:01",
+ "date_joined": "2011-12-11 12:21:07",
"first_name": "",
"email_isvalid": false,
"avatar_type": "n",
"website": "",
"is_superuser": false,
"date_of_birth": null,
- "last_login": "2011-11-29 11:22:01",
+ "last_login": "2011-12-11 12:21:07",
"location": "",
"new_response_count": 0,
"email": "test_user_25@askbot.org",
@@ -2273,7 +2370,7 @@
"consecutive_days_visit_count": 0,
"email_tag_filter_strategy": 1,
"groups": [],
- "password": "sha1$08d97$9ac274dc54da11e83f0dcf1991f57dbd3fbb95a7",
+ "password": "sha1$b9997$31c8c45ea9633aeebebb3d114f3781eb56af8d34",
"silver": 0,
"bronze": 1,
"questions_per_page": 10,
@@ -2286,11 +2383,11 @@
"ignored_tags": "",
"reputation": 498,
"gravatar": "3f02ce1295ff1104020fb76e0a713f19",
- "last_seen": "2011-11-29 11:22:01"
+ "last_seen": "2011-12-11 12:21:07"
}
},
{
- "pk": 29,
+ "pk": 27,
"model": "auth.user",
"fields": {
"status": "w",
@@ -2300,23 +2397,23 @@
"user_permissions": [],
"interesting_tags": "",
"email_key": null,
- "date_joined": "2011-11-29 11:22:02",
+ "date_joined": "2011-12-11 12:21:07",
"first_name": "",
"email_isvalid": false,
"avatar_type": "n",
"website": "",
"is_superuser": false,
"date_of_birth": null,
- "last_login": "2011-11-29 11:22:02",
+ "last_login": "2011-12-11 12:21:07",
"location": "",
"new_response_count": 0,
- "email": "test_user_28@askbot.org",
- "username": "test_user_28",
+ "email": "test_user_26@askbot.org",
+ "username": "test_user_26",
"is_active": true,
"consecutive_days_visit_count": 0,
"email_tag_filter_strategy": 1,
"groups": [],
- "password": "sha1$d4453$8074db2f03a12e0ff84956ba3f80a863f02135f4",
+ "password": "sha1$775c8$fe86d53913f50b9bd07508e853229b1496b8de18",
"silver": 0,
"bronze": 2,
"questions_per_page": 10,
@@ -2328,8 +2425,8 @@
"real_name": "",
"ignored_tags": "",
"reputation": 509,
- "gravatar": "7ea520152dac05fa69541ffe139bcca2",
- "last_seen": "2011-11-29 11:22:02"
+ "gravatar": "2089b5251d55cadb48417b9d2b78b4b2",
+ "last_seen": "2011-12-11 12:21:07"
}
},
{
@@ -2343,14 +2440,14 @@
"user_permissions": [],
"interesting_tags": "",
"email_key": null,
- "date_joined": "2011-11-29 11:22:02",
+ "date_joined": "2011-12-11 12:21:07",
"first_name": "",
"email_isvalid": false,
"avatar_type": "n",
"website": "",
"is_superuser": false,
"date_of_birth": null,
- "last_login": "2011-11-29 11:22:02",
+ "last_login": "2011-12-11 12:21:07",
"location": "",
"new_response_count": 0,
"email": "test_user_27@askbot.org",
@@ -2359,7 +2456,7 @@
"consecutive_days_visit_count": 0,
"email_tag_filter_strategy": 1,
"groups": [],
- "password": "sha1$6435c$c0148935a628c8430570c8e5ba1ac4dc425b03a9",
+ "password": "sha1$897e9$e3e755a52414ced7eeddea34c6472b06e2e4ed2f",
"silver": 0,
"bronze": 1,
"questions_per_page": 10,
@@ -2372,11 +2469,11 @@
"ignored_tags": "",
"reputation": 498,
"gravatar": "489074a9a117be5320690bd6977ece9e",
- "last_seen": "2011-11-29 11:22:02"
+ "last_seen": "2011-12-11 12:21:07"
}
},
{
- "pk": 31,
+ "pk": 29,
"model": "auth.user",
"fields": {
"status": "w",
@@ -2386,23 +2483,23 @@
"user_permissions": [],
"interesting_tags": "",
"email_key": null,
- "date_joined": "2011-11-29 11:22:02",
+ "date_joined": "2011-12-11 12:21:07",
"first_name": "",
"email_isvalid": false,
"avatar_type": "n",
"website": "",
"is_superuser": false,
"date_of_birth": null,
- "last_login": "2011-11-29 11:22:02",
+ "last_login": "2011-12-11 12:21:07",
"location": "",
"new_response_count": 0,
- "email": "test_user_30@askbot.org",
- "username": "test_user_30",
+ "email": "test_user_28@askbot.org",
+ "username": "test_user_28",
"is_active": true,
"consecutive_days_visit_count": 0,
"email_tag_filter_strategy": 1,
"groups": [],
- "password": "sha1$491b8$601af2150570d0a6a6994348cffcb98e8bffaa62",
+ "password": "sha1$e8282$2af03f9fec1b64f5d001ac96dca891d4bb988c92",
"silver": 0,
"bronze": 2,
"questions_per_page": 10,
@@ -2414,8 +2511,8 @@
"real_name": "",
"ignored_tags": "",
"reputation": 509,
- "gravatar": "4db2d8490aa35168e331b5ee5a0fd63b",
- "last_seen": "2011-11-29 11:22:02"
+ "gravatar": "7ea520152dac05fa69541ffe139bcca2",
+ "last_seen": "2011-12-11 12:21:07"
}
},
{
@@ -2429,14 +2526,14 @@
"user_permissions": [],
"interesting_tags": "",
"email_key": null,
- "date_joined": "2011-11-29 11:22:02",
+ "date_joined": "2011-12-11 12:21:07",
"first_name": "",
"email_isvalid": false,
"avatar_type": "n",
"website": "",
"is_superuser": false,
"date_of_birth": null,
- "last_login": "2011-11-29 11:22:02",
+ "last_login": "2011-12-11 12:21:07",
"location": "",
"new_response_count": 0,
"email": "test_user_29@askbot.org",
@@ -2445,7 +2542,7 @@
"consecutive_days_visit_count": 0,
"email_tag_filter_strategy": 1,
"groups": [],
- "password": "sha1$7b80f$c44e6b4fd46f296e04b2b05b1b0d35c11eace4c9",
+ "password": "sha1$737bd$9a47d2dc4aa9f0fafb99ce41d0afed8725bdd0f6",
"silver": 0,
"bronze": 1,
"questions_per_page": 10,
@@ -2458,11 +2555,11 @@
"ignored_tags": "",
"reputation": 498,
"gravatar": "98be33fd4cf91cd0d26e8bbdda1691f2",
- "last_seen": "2011-11-29 11:22:02"
+ "last_seen": "2011-12-11 12:21:07"
}
},
{
- "pk": 13,
+ "pk": 31,
"model": "auth.user",
"fields": {
"status": "w",
@@ -2472,25 +2569,25 @@
"user_permissions": [],
"interesting_tags": "",
"email_key": null,
- "date_joined": "2011-11-29 11:22:01",
+ "date_joined": "2011-12-11 12:21:07",
"first_name": "",
"email_isvalid": false,
"avatar_type": "n",
"website": "",
"is_superuser": false,
"date_of_birth": null,
- "last_login": "2011-11-29 11:22:01",
+ "last_login": "2011-12-11 12:21:07",
"location": "",
- "new_response_count": 25,
- "email": "test_user_12@askbot.org",
- "username": "test_user_12",
+ "new_response_count": 0,
+ "email": "test_user_30@askbot.org",
+ "username": "test_user_30",
"is_active": true,
"consecutive_days_visit_count": 0,
"email_tag_filter_strategy": 1,
"groups": [],
- "password": "sha1$06cc8$75eb8ea982a0c7fa2d508133df9edba158ffae36",
+ "password": "sha1$4743d$2565af4e1da086a9271409189114eea6d96cd7a1",
"silver": 0,
- "bronze": 4,
+ "bronze": 2,
"questions_per_page": 10,
"about": "",
"show_country": false,
@@ -2499,9 +2596,9 @@
"seen_response_count": 0,
"real_name": "",
"ignored_tags": "",
- "reputation": 518,
- "gravatar": "6a70087a63bbc7c6a4028365ed4e1950",
- "last_seen": "2011-11-29 11:22:01"
+ "reputation": 509,
+ "gravatar": "4db2d8490aa35168e331b5ee5a0fd63b",
+ "last_seen": "2011-12-11 12:21:07"
}
},
{
@@ -2515,14 +2612,14 @@
"user_permissions": [],
"interesting_tags": "",
"email_key": null,
- "date_joined": "2011-11-29 11:22:02",
+ "date_joined": "2011-12-11 12:21:07",
"first_name": "",
"email_isvalid": false,
"avatar_type": "n",
"website": "",
"is_superuser": false,
"date_of_birth": null,
- "last_login": "2011-11-29 11:22:02",
+ "last_login": "2011-12-11 12:21:07",
"location": "",
"new_response_count": 0,
"email": "test_user_31@askbot.org",
@@ -2531,7 +2628,7 @@
"consecutive_days_visit_count": 0,
"email_tag_filter_strategy": 1,
"groups": [],
- "password": "sha1$6c784$fabf3831df0bc28d7116e5ecead54f70f52b6af6",
+ "password": "sha1$19432$3f64b303bd0d0464878fd6b83d86d21f89f0ff1a",
"silver": 0,
"bronze": 1,
"questions_per_page": 10,
@@ -2544,11 +2641,11 @@
"ignored_tags": "",
"reputation": 498,
"gravatar": "e1646ca0338becadfc188108ef11a963",
- "last_seen": "2011-11-29 11:22:02"
+ "last_seen": "2011-12-11 12:21:07"
}
},
{
- "pk": 37,
+ "pk": 33,
"model": "auth.user",
"fields": {
"status": "w",
@@ -2558,23 +2655,23 @@
"user_permissions": [],
"interesting_tags": "",
"email_key": null,
- "date_joined": "2011-11-29 11:22:02",
+ "date_joined": "2011-12-11 12:21:08",
"first_name": "",
"email_isvalid": false,
"avatar_type": "n",
"website": "",
"is_superuser": false,
"date_of_birth": null,
- "last_login": "2011-11-29 11:22:02",
+ "last_login": "2011-12-11 12:21:08",
"location": "",
"new_response_count": 0,
- "email": "test_user_36@askbot.org",
- "username": "test_user_36",
+ "email": "test_user_32@askbot.org",
+ "username": "test_user_32",
"is_active": true,
"consecutive_days_visit_count": 0,
"email_tag_filter_strategy": 1,
"groups": [],
- "password": "sha1$91100$2e7c3a6a0e1c53e64dddcc681995d8a8f6cee1c2",
+ "password": "sha1$17461$efda456a3c137f24e45332636a2a9a137fb729dc",
"silver": 0,
"bronze": 2,
"questions_per_page": 10,
@@ -2586,55 +2683,12 @@
"real_name": "",
"ignored_tags": "",
"reputation": 509,
- "gravatar": "906f494d5d4015f2d7d13a781d5dd2e7",
- "last_seen": "2011-11-29 11:22:02"
- }
- },
- {
- "pk": 3,
- "model": "auth.user",
- "fields": {
- "status": "w",
- "last_name": "",
- "gold": 0,
- "is_staff": false,
- "user_permissions": [],
- "interesting_tags": "",
- "email_key": null,
- "date_joined": "2011-11-29 11:22:00",
- "first_name": "",
- "email_isvalid": false,
- "avatar_type": "n",
- "website": "",
- "is_superuser": false,
- "date_of_birth": null,
- "last_login": "2011-11-29 11:22:00",
- "location": "",
- "new_response_count": 55,
- "email": "test_user_2@askbot.org",
- "username": "test_user_2",
- "is_active": true,
- "consecutive_days_visit_count": 0,
- "email_tag_filter_strategy": 1,
- "groups": [],
- "password": "sha1$2f111$37691e24cf2f74476313cbf132ca032a36517690",
- "silver": 0,
- "bronze": 4,
- "questions_per_page": 10,
- "about": "",
- "show_country": false,
- "country": "",
- "display_tag_filter_strategy": 0,
- "seen_response_count": 0,
- "real_name": "",
- "ignored_tags": "",
- "reputation": 518,
- "gravatar": "564666778b07615b15a36ce51ac7f7d2",
- "last_seen": "2011-11-29 11:22:00"
+ "gravatar": "1f4576d9b347126a61b9b6ca39aaf46d",
+ "last_seen": "2011-12-11 12:21:08"
}
},
{
- "pk": 38,
+ "pk": 34,
"model": "auth.user",
"fields": {
"status": "w",
@@ -2644,23 +2698,23 @@
"user_permissions": [],
"interesting_tags": "",
"email_key": null,
- "date_joined": "2011-11-29 11:22:02",
+ "date_joined": "2011-12-11 12:21:08",
"first_name": "",
"email_isvalid": false,
"avatar_type": "n",
"website": "",
"is_superuser": false,
"date_of_birth": null,
- "last_login": "2011-11-29 11:22:02",
+ "last_login": "2011-12-11 12:21:08",
"location": "",
"new_response_count": 0,
- "email": "test_user_37@askbot.org",
- "username": "test_user_37",
+ "email": "test_user_33@askbot.org",
+ "username": "test_user_33",
"is_active": true,
"consecutive_days_visit_count": 0,
"email_tag_filter_strategy": 1,
"groups": [],
- "password": "sha1$c882c$efdc667baf367463332f96139e8850b437dcfd49",
+ "password": "sha1$a9596$eb73b8fd26847db5875833349a5695c99a8cdbe0",
"silver": 0,
"bronze": 1,
"questions_per_page": 10,
@@ -2672,40 +2726,40 @@
"real_name": "",
"ignored_tags": "",
"reputation": 498,
- "gravatar": "641aca2f46519377ccd0500b6ab96ef0",
- "last_seen": "2011-11-29 11:22:02"
+ "gravatar": "a3d70733b55cca2d4e94e42b246ce2af",
+ "last_seen": "2011-12-11 12:21:08"
}
},
{
- "pk": 40,
+ "pk": 35,
"model": "auth.user",
"fields": {
"status": "w",
"last_name": "",
- "gold": 1,
+ "gold": 0,
"is_staff": false,
"user_permissions": [],
"interesting_tags": "",
"email_key": null,
- "date_joined": "2011-11-29 11:22:02",
+ "date_joined": "2011-12-11 12:21:08",
"first_name": "",
"email_isvalid": false,
"avatar_type": "n",
"website": "",
"is_superuser": false,
"date_of_birth": null,
- "last_login": "2011-11-29 11:22:02",
+ "last_login": "2011-12-11 12:21:08",
"location": "",
"new_response_count": 0,
- "email": "test_user_39@askbot.org",
- "username": "test_user_39",
+ "email": "test_user_34@askbot.org",
+ "username": "test_user_34",
"is_active": true,
"consecutive_days_visit_count": 0,
"email_tag_filter_strategy": 1,
"groups": [],
- "password": "sha1$60a6a$c9fba8b461a8b5d566f6296ed8eb3937a1bea923",
- "silver": 1,
- "bronze": 5,
+ "password": "sha1$ff74a$138d47ac254ad6739801259e50cf987aab4dc852",
+ "silver": 0,
+ "bronze": 2,
"questions_per_page": 10,
"about": "",
"show_country": false,
@@ -2714,13 +2768,13 @@
"seen_response_count": 0,
"real_name": "",
"ignored_tags": "",
- "reputation": 702,
- "gravatar": "43d568bd3fb5f364a3e3a5aa2db795e4",
- "last_seen": "2011-11-29 11:22:02"
+ "reputation": 509,
+ "gravatar": "a0a078c93e5bae4f19920e9f0ab6bd1d",
+ "last_seen": "2011-12-11 12:21:08"
}
},
{
- "pk": 33,
+ "pk": 36,
"model": "auth.user",
"fields": {
"status": "w",
@@ -2730,25 +2784,25 @@
"user_permissions": [],
"interesting_tags": "",
"email_key": null,
- "date_joined": "2011-11-29 11:22:02",
+ "date_joined": "2011-12-11 12:21:08",
"first_name": "",
"email_isvalid": false,
"avatar_type": "n",
"website": "",
"is_superuser": false,
"date_of_birth": null,
- "last_login": "2011-11-29 11:22:02",
+ "last_login": "2011-12-11 12:21:08",
"location": "",
"new_response_count": 0,
- "email": "test_user_32@askbot.org",
- "username": "test_user_32",
+ "email": "test_user_35@askbot.org",
+ "username": "test_user_35",
"is_active": true,
"consecutive_days_visit_count": 0,
"email_tag_filter_strategy": 1,
"groups": [],
- "password": "sha1$79b0d$c792ceafd2ae759c5b2c6952e83b07396372b569",
+ "password": "sha1$58dee$1fab1a4fe596f6661ef8a313e0574bcbfb0bc16c",
"silver": 0,
- "bronze": 2,
+ "bronze": 1,
"questions_per_page": 10,
"about": "",
"show_country": false,
@@ -2757,13 +2811,13 @@
"seen_response_count": 0,
"real_name": "",
"ignored_tags": "",
- "reputation": 509,
- "gravatar": "1f4576d9b347126a61b9b6ca39aaf46d",
- "last_seen": "2011-11-29 11:22:02"
+ "reputation": 498,
+ "gravatar": "7cb624e123b95ef9694b64823b0fb0f1",
+ "last_seen": "2011-12-11 12:21:08"
}
},
{
- "pk": 39,
+ "pk": 37,
"model": "auth.user",
"fields": {
"status": "w",
@@ -2773,23 +2827,23 @@
"user_permissions": [],
"interesting_tags": "",
"email_key": null,
- "date_joined": "2011-11-29 11:22:02",
+ "date_joined": "2011-12-11 12:21:08",
"first_name": "",
"email_isvalid": false,
"avatar_type": "n",
"website": "",
"is_superuser": false,
"date_of_birth": null,
- "last_login": "2011-11-29 11:22:02",
+ "last_login": "2011-12-11 12:21:08",
"location": "",
"new_response_count": 0,
- "email": "test_user_38@askbot.org",
- "username": "test_user_38",
+ "email": "test_user_36@askbot.org",
+ "username": "test_user_36",
"is_active": true,
"consecutive_days_visit_count": 0,
"email_tag_filter_strategy": 1,
"groups": [],
- "password": "sha1$9af1a$f8d569c6b7f5543edd1da16054d99d9e50f032b9",
+ "password": "sha1$9f6c4$9b36352496dbd169e6e28d3474a7ce670838fe75",
"silver": 0,
"bronze": 2,
"questions_per_page": 10,
@@ -2801,12 +2855,12 @@
"real_name": "",
"ignored_tags": "",
"reputation": 509,
- "gravatar": "fcc3f6722e53bafdacdfea9ced92bbff",
- "last_seen": "2011-11-29 11:22:02"
+ "gravatar": "906f494d5d4015f2d7d13a781d5dd2e7",
+ "last_seen": "2011-12-11 12:21:08"
}
},
{
- "pk": 34,
+ "pk": 38,
"model": "auth.user",
"fields": {
"status": "w",
@@ -2816,23 +2870,23 @@
"user_permissions": [],
"interesting_tags": "",
"email_key": null,
- "date_joined": "2011-11-29 11:22:02",
+ "date_joined": "2011-12-11 12:21:08",
"first_name": "",
"email_isvalid": false,
"avatar_type": "n",
"website": "",
"is_superuser": false,
"date_of_birth": null,
- "last_login": "2011-11-29 11:22:02",
+ "last_login": "2011-12-11 12:21:08",
"location": "",
"new_response_count": 0,
- "email": "test_user_33@askbot.org",
- "username": "test_user_33",
+ "email": "test_user_37@askbot.org",
+ "username": "test_user_37",
"is_active": true,
"consecutive_days_visit_count": 0,
"email_tag_filter_strategy": 1,
"groups": [],
- "password": "sha1$461f2$0020c7758230a00f930867fe7c5bddf3cfb8a4ae",
+ "password": "sha1$f4f9a$332025eea13e63395cb696a2eb8960ac4f03b697",
"silver": 0,
"bronze": 1,
"questions_per_page": 10,
@@ -2844,12 +2898,12 @@
"real_name": "",
"ignored_tags": "",
"reputation": 498,
- "gravatar": "a3d70733b55cca2d4e94e42b246ce2af",
- "last_seen": "2011-11-29 11:22:02"
+ "gravatar": "641aca2f46519377ccd0500b6ab96ef0",
+ "last_seen": "2011-12-11 12:21:08"
}
},
{
- "pk": 35,
+ "pk": 39,
"model": "auth.user",
"fields": {
"status": "w",
@@ -2859,23 +2913,23 @@
"user_permissions": [],
"interesting_tags": "",
"email_key": null,
- "date_joined": "2011-11-29 11:22:02",
+ "date_joined": "2011-12-11 12:21:08",
"first_name": "",
"email_isvalid": false,
"avatar_type": "n",
"website": "",
"is_superuser": false,
"date_of_birth": null,
- "last_login": "2011-11-29 11:22:02",
+ "last_login": "2011-12-11 12:21:08",
"location": "",
"new_response_count": 0,
- "email": "test_user_34@askbot.org",
- "username": "test_user_34",
+ "email": "test_user_38@askbot.org",
+ "username": "test_user_38",
"is_active": true,
"consecutive_days_visit_count": 0,
"email_tag_filter_strategy": 1,
"groups": [],
- "password": "sha1$ede22$54addd84f03b7c654f112d102f940f09211b9902",
+ "password": "sha1$9e9f2$38ee515e7c124834d8db848745e7f5f6ec5808d9",
"silver": 0,
"bronze": 2,
"questions_per_page": 10,
@@ -2887,40 +2941,40 @@
"real_name": "",
"ignored_tags": "",
"reputation": 509,
- "gravatar": "a0a078c93e5bae4f19920e9f0ab6bd1d",
- "last_seen": "2011-11-29 11:22:02"
+ "gravatar": "fcc3f6722e53bafdacdfea9ced92bbff",
+ "last_seen": "2011-12-11 12:21:08"
}
},
{
- "pk": 36,
+ "pk": 40,
"model": "auth.user",
"fields": {
"status": "w",
"last_name": "",
- "gold": 0,
+ "gold": 1,
"is_staff": false,
"user_permissions": [],
"interesting_tags": "",
"email_key": null,
- "date_joined": "2011-11-29 11:22:02",
+ "date_joined": "2011-12-11 12:21:08",
"first_name": "",
"email_isvalid": false,
"avatar_type": "n",
"website": "",
"is_superuser": false,
"date_of_birth": null,
- "last_login": "2011-11-29 11:22:02",
+ "last_login": "2011-12-11 12:21:08",
"location": "",
"new_response_count": 0,
- "email": "test_user_35@askbot.org",
- "username": "test_user_35",
+ "email": "test_user_39@askbot.org",
+ "username": "test_user_39",
"is_active": true,
"consecutive_days_visit_count": 0,
"email_tag_filter_strategy": 1,
"groups": [],
- "password": "sha1$0952b$51d2fd274e952d6ad6012bc79fc883550dbf45ba",
- "silver": 0,
- "bronze": 1,
+ "password": "sha1$f7994$704bdbfa3daad4e82c3197352aec10c00fe26ea9",
+ "silver": 1,
+ "bronze": 5,
"questions_per_page": 10,
"about": "",
"show_country": false,
@@ -2929,2023 +2983,2905 @@
"seen_response_count": 0,
"real_name": "",
"ignored_tags": "",
- "reputation": 498,
- "gravatar": "7cb624e123b95ef9694b64823b0fb0f1",
- "last_seen": "2011-11-29 11:22:02"
+ "reputation": 702,
+ "gravatar": "43d568bd3fb5f364a3e3a5aa2db795e4",
+ "last_seen": "2011-12-11 12:21:08"
}
},
{
"pk": 1,
- "model": "askbot.tag",
+ "model": "askbot.award",
"fields": {
- "name": "tag-1-0",
- "deleted": false,
- "created_by": 1,
- "deleted_by": null,
- "used_count": 1,
- "deleted_at": null
+ "awarded_at": "2011-12-11 12:21:10",
+ "notified": false,
+ "object_id": 1,
+ "user": 1,
+ "content_type": 22,
+ "badge": 1
}
},
{
"pk": 2,
- "model": "askbot.tag",
+ "model": "askbot.award",
"fields": {
- "name": "tag-1-1",
- "deleted": false,
- "created_by": 1,
- "deleted_by": null,
- "used_count": 1,
- "deleted_at": null
+ "awarded_at": "2011-12-11 12:21:10",
+ "notified": false,
+ "object_id": 1,
+ "user": 2,
+ "content_type": 22,
+ "badge": 2
}
},
{
- "pk": 20,
- "model": "askbot.tag",
+ "pk": 3,
+ "model": "askbot.award",
"fields": {
- "name": "tag-10-0",
- "deleted": false,
- "created_by": 10,
- "deleted_by": null,
- "used_count": 1,
- "deleted_at": null
+ "awarded_at": "2011-12-11 12:21:15",
+ "notified": false,
+ "object_id": 2,
+ "user": 3,
+ "content_type": 22,
+ "badge": 3
+ }
+ },
+ {
+ "pk": 4,
+ "model": "askbot.award",
+ "fields": {
+ "awarded_at": "2011-12-11 12:21:16",
+ "notified": false,
+ "object_id": 3,
+ "user": 3,
+ "content_type": 22,
+ "badge": 1
+ }
+ },
+ {
+ "pk": 5,
+ "model": "askbot.award",
+ "fields": {
+ "awarded_at": "2011-12-11 12:21:16",
+ "notified": false,
+ "object_id": 3,
+ "user": 4,
+ "content_type": 22,
+ "badge": 2
+ }
+ },
+ {
+ "pk": 6,
+ "model": "askbot.award",
+ "fields": {
+ "awarded_at": "2011-12-11 12:21:16",
+ "notified": false,
+ "object_id": 4,
+ "user": 5,
+ "content_type": 22,
+ "badge": 3
+ }
+ },
+ {
+ "pk": 7,
+ "model": "askbot.award",
+ "fields": {
+ "awarded_at": "2011-12-11 12:21:17",
+ "notified": false,
+ "object_id": 5,
+ "user": 5,
+ "content_type": 22,
+ "badge": 1
+ }
+ },
+ {
+ "pk": 8,
+ "model": "askbot.award",
+ "fields": {
+ "awarded_at": "2011-12-11 12:21:17",
+ "notified": false,
+ "object_id": 5,
+ "user": 6,
+ "content_type": 22,
+ "badge": 2
+ }
+ },
+ {
+ "pk": 9,
+ "model": "askbot.award",
+ "fields": {
+ "awarded_at": "2011-12-11 12:21:17",
+ "notified": false,
+ "object_id": 6,
+ "user": 7,
+ "content_type": 22,
+ "badge": 3
+ }
+ },
+ {
+ "pk": 10,
+ "model": "askbot.award",
+ "fields": {
+ "awarded_at": "2011-12-11 12:21:18",
+ "notified": false,
+ "object_id": 7,
+ "user": 7,
+ "content_type": 22,
+ "badge": 1
+ }
+ },
+ {
+ "pk": 11,
+ "model": "askbot.award",
+ "fields": {
+ "awarded_at": "2011-12-11 12:21:18",
+ "notified": false,
+ "object_id": 7,
+ "user": 8,
+ "content_type": 22,
+ "badge": 2
+ }
+ },
+ {
+ "pk": 12,
+ "model": "askbot.award",
+ "fields": {
+ "awarded_at": "2011-12-11 12:21:18",
+ "notified": false,
+ "object_id": 8,
+ "user": 9,
+ "content_type": 22,
+ "badge": 3
+ }
+ },
+ {
+ "pk": 13,
+ "model": "askbot.award",
+ "fields": {
+ "awarded_at": "2011-12-11 12:21:19",
+ "notified": false,
+ "object_id": 9,
+ "user": 9,
+ "content_type": 22,
+ "badge": 1
+ }
+ },
+ {
+ "pk": 14,
+ "model": "askbot.award",
+ "fields": {
+ "awarded_at": "2011-12-11 12:21:19",
+ "notified": false,
+ "object_id": 9,
+ "user": 10,
+ "content_type": 22,
+ "badge": 2
+ }
+ },
+ {
+ "pk": 15,
+ "model": "askbot.award",
+ "fields": {
+ "awarded_at": "2011-12-11 12:21:19",
+ "notified": false,
+ "object_id": 10,
+ "user": 11,
+ "content_type": 22,
+ "badge": 3
+ }
+ },
+ {
+ "pk": 16,
+ "model": "askbot.award",
+ "fields": {
+ "awarded_at": "2011-12-11 12:21:20",
+ "notified": false,
+ "object_id": 11,
+ "user": 11,
+ "content_type": 22,
+ "badge": 1
+ }
+ },
+ {
+ "pk": 17,
+ "model": "askbot.award",
+ "fields": {
+ "awarded_at": "2011-12-11 12:21:20",
+ "notified": false,
+ "object_id": 11,
+ "user": 12,
+ "content_type": 22,
+ "badge": 2
+ }
+ },
+ {
+ "pk": 18,
+ "model": "askbot.award",
+ "fields": {
+ "awarded_at": "2011-12-11 12:21:20",
+ "notified": false,
+ "object_id": 12,
+ "user": 13,
+ "content_type": 22,
+ "badge": 3
}
},
{
"pk": 19,
- "model": "askbot.tag",
+ "model": "askbot.award",
"fields": {
- "name": "tag-10-1",
- "deleted": false,
- "created_by": 10,
- "deleted_by": null,
- "used_count": 1,
- "deleted_at": null
+ "awarded_at": "2011-12-11 12:21:21",
+ "notified": false,
+ "object_id": 13,
+ "user": 13,
+ "content_type": 22,
+ "badge": 1
+ }
+ },
+ {
+ "pk": 20,
+ "model": "askbot.award",
+ "fields": {
+ "awarded_at": "2011-12-11 12:21:21",
+ "notified": false,
+ "object_id": 13,
+ "user": 14,
+ "content_type": 22,
+ "badge": 2
}
},
{
"pk": 21,
- "model": "askbot.tag",
+ "model": "askbot.award",
"fields": {
- "name": "tag-11-0",
- "deleted": false,
- "created_by": 11,
- "deleted_by": null,
- "used_count": 1,
- "deleted_at": null
+ "awarded_at": "2011-12-11 12:21:21",
+ "notified": false,
+ "object_id": 14,
+ "user": 15,
+ "content_type": 22,
+ "badge": 3
}
},
{
"pk": 22,
- "model": "askbot.tag",
+ "model": "askbot.award",
"fields": {
- "name": "tag-11-1",
- "deleted": false,
- "created_by": 11,
- "deleted_by": null,
- "used_count": 1,
- "deleted_at": null
+ "awarded_at": "2011-12-11 12:21:22",
+ "notified": false,
+ "object_id": 15,
+ "user": 15,
+ "content_type": 22,
+ "badge": 1
}
},
{
- "pk": 24,
- "model": "askbot.tag",
+ "pk": 23,
+ "model": "askbot.award",
"fields": {
- "name": "tag-12-0",
- "deleted": false,
- "created_by": 12,
- "deleted_by": null,
- "used_count": 1,
- "deleted_at": null
+ "awarded_at": "2011-12-11 12:21:22",
+ "notified": false,
+ "object_id": 15,
+ "user": 16,
+ "content_type": 22,
+ "badge": 2
}
},
{
- "pk": 23,
- "model": "askbot.tag",
+ "pk": 24,
+ "model": "askbot.award",
"fields": {
- "name": "tag-12-1",
- "deleted": false,
- "created_by": 12,
- "deleted_by": null,
- "used_count": 1,
- "deleted_at": null
+ "awarded_at": "2011-12-11 12:21:22",
+ "notified": false,
+ "object_id": 16,
+ "user": 17,
+ "content_type": 22,
+ "badge": 3
}
},
{
"pk": 25,
- "model": "askbot.tag",
+ "model": "askbot.award",
"fields": {
- "name": "tag-13-0",
- "deleted": false,
- "created_by": 13,
- "deleted_by": null,
- "used_count": 1,
- "deleted_at": null
+ "awarded_at": "2011-12-11 12:21:23",
+ "notified": false,
+ "object_id": 17,
+ "user": 17,
+ "content_type": 22,
+ "badge": 1
}
},
{
"pk": 26,
- "model": "askbot.tag",
+ "model": "askbot.award",
"fields": {
- "name": "tag-13-1",
- "deleted": false,
- "created_by": 13,
- "deleted_by": null,
- "used_count": 1,
- "deleted_at": null
+ "awarded_at": "2011-12-11 12:21:23",
+ "notified": false,
+ "object_id": 17,
+ "user": 18,
+ "content_type": 22,
+ "badge": 2
}
},
{
- "pk": 28,
- "model": "askbot.tag",
+ "pk": 27,
+ "model": "askbot.award",
"fields": {
- "name": "tag-14-0",
- "deleted": false,
- "created_by": 14,
- "deleted_by": null,
- "used_count": 1,
- "deleted_at": null
+ "awarded_at": "2011-12-11 12:21:23",
+ "notified": false,
+ "object_id": 18,
+ "user": 19,
+ "content_type": 22,
+ "badge": 3
}
},
{
- "pk": 27,
- "model": "askbot.tag",
+ "pk": 28,
+ "model": "askbot.award",
"fields": {
- "name": "tag-14-1",
- "deleted": false,
- "created_by": 14,
- "deleted_by": null,
- "used_count": 1,
- "deleted_at": null
+ "awarded_at": "2011-12-11 12:21:24",
+ "notified": false,
+ "object_id": 19,
+ "user": 19,
+ "content_type": 22,
+ "badge": 1
}
},
{
"pk": 29,
- "model": "askbot.tag",
+ "model": "askbot.award",
"fields": {
- "name": "tag-15-0",
- "deleted": false,
- "created_by": 15,
- "deleted_by": null,
- "used_count": 1,
- "deleted_at": null
+ "awarded_at": "2011-12-11 12:21:24",
+ "notified": false,
+ "object_id": 19,
+ "user": 20,
+ "content_type": 22,
+ "badge": 2
}
},
{
"pk": 30,
- "model": "askbot.tag",
+ "model": "askbot.award",
"fields": {
- "name": "tag-15-1",
- "deleted": false,
- "created_by": 15,
- "deleted_by": null,
- "used_count": 1,
- "deleted_at": null
+ "awarded_at": "2011-12-11 12:21:24",
+ "notified": false,
+ "object_id": 20,
+ "user": 21,
+ "content_type": 22,
+ "badge": 3
}
},
{
- "pk": 32,
- "model": "askbot.tag",
+ "pk": 31,
+ "model": "askbot.award",
"fields": {
- "name": "tag-16-0",
- "deleted": false,
- "created_by": 16,
- "deleted_by": null,
- "used_count": 1,
- "deleted_at": null
+ "awarded_at": "2011-12-11 12:21:25",
+ "notified": false,
+ "object_id": 21,
+ "user": 21,
+ "content_type": 22,
+ "badge": 1
}
},
{
- "pk": 31,
- "model": "askbot.tag",
+ "pk": 32,
+ "model": "askbot.award",
"fields": {
- "name": "tag-16-1",
- "deleted": false,
- "created_by": 16,
- "deleted_by": null,
- "used_count": 1,
- "deleted_at": null
+ "awarded_at": "2011-12-11 12:21:25",
+ "notified": false,
+ "object_id": 21,
+ "user": 22,
+ "content_type": 22,
+ "badge": 2
}
},
{
"pk": 33,
- "model": "askbot.tag",
+ "model": "askbot.award",
"fields": {
- "name": "tag-17-0",
- "deleted": false,
- "created_by": 17,
- "deleted_by": null,
- "used_count": 1,
- "deleted_at": null
+ "awarded_at": "2011-12-11 12:21:25",
+ "notified": false,
+ "object_id": 22,
+ "user": 23,
+ "content_type": 22,
+ "badge": 3
}
},
{
"pk": 34,
- "model": "askbot.tag",
+ "model": "askbot.award",
"fields": {
- "name": "tag-17-1",
- "deleted": false,
- "created_by": 17,
- "deleted_by": null,
- "used_count": 1,
- "deleted_at": null
+ "awarded_at": "2011-12-11 12:21:26",
+ "notified": false,
+ "object_id": 23,
+ "user": 23,
+ "content_type": 22,
+ "badge": 1
}
},
{
- "pk": 36,
- "model": "askbot.tag",
+ "pk": 35,
+ "model": "askbot.award",
"fields": {
- "name": "tag-18-0",
- "deleted": false,
- "created_by": 18,
- "deleted_by": null,
- "used_count": 1,
- "deleted_at": null
+ "awarded_at": "2011-12-11 12:21:26",
+ "notified": false,
+ "object_id": 23,
+ "user": 24,
+ "content_type": 22,
+ "badge": 2
}
},
{
- "pk": 35,
- "model": "askbot.tag",
+ "pk": 36,
+ "model": "askbot.award",
"fields": {
- "name": "tag-18-1",
- "deleted": false,
- "created_by": 18,
- "deleted_by": null,
- "used_count": 1,
- "deleted_at": null
+ "awarded_at": "2011-12-11 12:21:26",
+ "notified": false,
+ "object_id": 24,
+ "user": 25,
+ "content_type": 22,
+ "badge": 3
}
},
{
"pk": 37,
- "model": "askbot.tag",
+ "model": "askbot.award",
"fields": {
- "name": "tag-19-0",
- "deleted": false,
- "created_by": 19,
- "deleted_by": null,
- "used_count": 1,
- "deleted_at": null
+ "awarded_at": "2011-12-11 12:21:27",
+ "notified": false,
+ "object_id": 25,
+ "user": 25,
+ "content_type": 22,
+ "badge": 1
}
},
{
"pk": 38,
- "model": "askbot.tag",
- "fields": {
- "name": "tag-19-1",
- "deleted": false,
- "created_by": 19,
- "deleted_by": null,
- "used_count": 1,
- "deleted_at": null
- }
- },
- {
- "pk": 4,
- "model": "askbot.tag",
- "fields": {
- "name": "tag-2-0",
- "deleted": false,
- "created_by": 2,
- "deleted_by": null,
- "used_count": 1,
- "deleted_at": null
- }
- },
- {
- "pk": 3,
- "model": "askbot.tag",
+ "model": "askbot.award",
"fields": {
- "name": "tag-2-1",
- "deleted": false,
- "created_by": 2,
- "deleted_by": null,
- "used_count": 1,
- "deleted_at": null
+ "awarded_at": "2011-12-11 12:21:27",
+ "notified": false,
+ "object_id": 25,
+ "user": 26,
+ "content_type": 22,
+ "badge": 2
}
},
{
"pk": 39,
- "model": "askbot.tag",
+ "model": "askbot.award",
"fields": {
- "name": "tag-20-0",
- "deleted": false,
- "created_by": 20,
- "deleted_by": null,
- "used_count": 1,
- "deleted_at": null
+ "awarded_at": "2011-12-11 12:21:27",
+ "notified": false,
+ "object_id": 26,
+ "user": 27,
+ "content_type": 22,
+ "badge": 3
}
},
{
"pk": 40,
- "model": "askbot.tag",
+ "model": "askbot.award",
"fields": {
- "name": "tag-20-1",
- "deleted": false,
- "created_by": 20,
- "deleted_by": null,
- "used_count": 1,
- "deleted_at": null
+ "awarded_at": "2011-12-11 12:21:28",
+ "notified": false,
+ "object_id": 27,
+ "user": 27,
+ "content_type": 22,
+ "badge": 1
}
},
{
- "pk": 42,
- "model": "askbot.tag",
+ "pk": 41,
+ "model": "askbot.award",
"fields": {
- "name": "tag-21-0",
- "deleted": false,
- "created_by": 21,
- "deleted_by": null,
- "used_count": 1,
- "deleted_at": null
+ "awarded_at": "2011-12-11 12:21:28",
+ "notified": false,
+ "object_id": 27,
+ "user": 28,
+ "content_type": 22,
+ "badge": 2
}
},
{
- "pk": 41,
- "model": "askbot.tag",
+ "pk": 42,
+ "model": "askbot.award",
"fields": {
- "name": "tag-21-1",
- "deleted": false,
- "created_by": 21,
- "deleted_by": null,
- "used_count": 1,
- "deleted_at": null
+ "awarded_at": "2011-12-11 12:21:28",
+ "notified": false,
+ "object_id": 28,
+ "user": 29,
+ "content_type": 22,
+ "badge": 3
}
},
{
"pk": 43,
- "model": "askbot.tag",
+ "model": "askbot.award",
"fields": {
- "name": "tag-22-0",
- "deleted": false,
- "created_by": 22,
- "deleted_by": null,
- "used_count": 1,
- "deleted_at": null
+ "awarded_at": "2011-12-11 12:21:29",
+ "notified": false,
+ "object_id": 29,
+ "user": 29,
+ "content_type": 22,
+ "badge": 1
}
},
{
"pk": 44,
- "model": "askbot.tag",
+ "model": "askbot.award",
"fields": {
- "name": "tag-22-1",
- "deleted": false,
- "created_by": 22,
- "deleted_by": null,
- "used_count": 1,
- "deleted_at": null
+ "awarded_at": "2011-12-11 12:21:29",
+ "notified": false,
+ "object_id": 29,
+ "user": 30,
+ "content_type": 22,
+ "badge": 2
}
},
{
- "pk": 46,
- "model": "askbot.tag",
+ "pk": 45,
+ "model": "askbot.award",
"fields": {
- "name": "tag-23-0",
- "deleted": false,
- "created_by": 23,
- "deleted_by": null,
- "used_count": 1,
- "deleted_at": null
+ "awarded_at": "2011-12-11 12:21:29",
+ "notified": false,
+ "object_id": 30,
+ "user": 31,
+ "content_type": 22,
+ "badge": 3
}
},
{
- "pk": 45,
- "model": "askbot.tag",
+ "pk": 46,
+ "model": "askbot.award",
"fields": {
- "name": "tag-23-1",
- "deleted": false,
- "created_by": 23,
- "deleted_by": null,
- "used_count": 1,
- "deleted_at": null
+ "awarded_at": "2011-12-11 12:21:30",
+ "notified": false,
+ "object_id": 31,
+ "user": 31,
+ "content_type": 22,
+ "badge": 1
}
},
{
"pk": 47,
- "model": "askbot.tag",
+ "model": "askbot.award",
"fields": {
- "name": "tag-24-0",
- "deleted": false,
- "created_by": 24,
- "deleted_by": null,
- "used_count": 1,
- "deleted_at": null
+ "awarded_at": "2011-12-11 12:21:30",
+ "notified": false,
+ "object_id": 31,
+ "user": 32,
+ "content_type": 22,
+ "badge": 2
}
},
{
"pk": 48,
- "model": "askbot.tag",
+ "model": "askbot.award",
"fields": {
- "name": "tag-24-1",
- "deleted": false,
- "created_by": 24,
- "deleted_by": null,
- "used_count": 1,
- "deleted_at": null
+ "awarded_at": "2011-12-11 12:21:30",
+ "notified": false,
+ "object_id": 32,
+ "user": 33,
+ "content_type": 22,
+ "badge": 3
}
},
{
- "pk": 50,
- "model": "askbot.tag",
+ "pk": 49,
+ "model": "askbot.award",
"fields": {
- "name": "tag-25-0",
- "deleted": false,
- "created_by": 25,
- "deleted_by": null,
- "used_count": 1,
- "deleted_at": null
+ "awarded_at": "2011-12-11 12:21:31",
+ "notified": false,
+ "object_id": 33,
+ "user": 33,
+ "content_type": 22,
+ "badge": 1
}
},
{
- "pk": 49,
- "model": "askbot.tag",
+ "pk": 50,
+ "model": "askbot.award",
"fields": {
- "name": "tag-25-1",
- "deleted": false,
- "created_by": 25,
- "deleted_by": null,
- "used_count": 1,
- "deleted_at": null
+ "awarded_at": "2011-12-11 12:21:31",
+ "notified": false,
+ "object_id": 33,
+ "user": 34,
+ "content_type": 22,
+ "badge": 2
}
},
{
"pk": 51,
- "model": "askbot.tag",
+ "model": "askbot.award",
"fields": {
- "name": "tag-26-0",
- "deleted": false,
- "created_by": 26,
- "deleted_by": null,
- "used_count": 1,
- "deleted_at": null
+ "awarded_at": "2011-12-11 12:21:31",
+ "notified": false,
+ "object_id": 34,
+ "user": 35,
+ "content_type": 22,
+ "badge": 3
}
},
{
"pk": 52,
- "model": "askbot.tag",
+ "model": "askbot.award",
"fields": {
- "name": "tag-26-1",
- "deleted": false,
- "created_by": 26,
- "deleted_by": null,
- "used_count": 1,
- "deleted_at": null
+ "awarded_at": "2011-12-11 12:21:32",
+ "notified": false,
+ "object_id": 35,
+ "user": 35,
+ "content_type": 22,
+ "badge": 1
}
},
{
- "pk": 54,
- "model": "askbot.tag",
+ "pk": 53,
+ "model": "askbot.award",
"fields": {
- "name": "tag-27-0",
- "deleted": false,
- "created_by": 27,
- "deleted_by": null,
- "used_count": 1,
- "deleted_at": null
+ "awarded_at": "2011-12-11 12:21:32",
+ "notified": false,
+ "object_id": 35,
+ "user": 36,
+ "content_type": 22,
+ "badge": 2
}
},
{
- "pk": 53,
- "model": "askbot.tag",
+ "pk": 54,
+ "model": "askbot.award",
"fields": {
- "name": "tag-27-1",
- "deleted": false,
- "created_by": 27,
- "deleted_by": null,
- "used_count": 1,
- "deleted_at": null
+ "awarded_at": "2011-12-11 12:21:32",
+ "notified": false,
+ "object_id": 36,
+ "user": 37,
+ "content_type": 22,
+ "badge": 3
}
},
{
"pk": 55,
- "model": "askbot.tag",
+ "model": "askbot.award",
"fields": {
- "name": "tag-28-0",
- "deleted": false,
- "created_by": 28,
- "deleted_by": null,
- "used_count": 1,
- "deleted_at": null
+ "awarded_at": "2011-12-11 12:21:33",
+ "notified": false,
+ "object_id": 37,
+ "user": 37,
+ "content_type": 22,
+ "badge": 1
}
},
{
"pk": 56,
- "model": "askbot.tag",
- "fields": {
- "name": "tag-28-1",
- "deleted": false,
- "created_by": 28,
- "deleted_by": null,
- "used_count": 1,
- "deleted_at": null
- }
- },
- {
- "pk": 58,
- "model": "askbot.tag",
+ "model": "askbot.award",
"fields": {
- "name": "tag-29-0",
- "deleted": false,
- "created_by": 29,
- "deleted_by": null,
- "used_count": 1,
- "deleted_at": null
+ "awarded_at": "2011-12-11 12:21:33",
+ "notified": false,
+ "object_id": 37,
+ "user": 38,
+ "content_type": 22,
+ "badge": 2
}
},
{
"pk": 57,
- "model": "askbot.tag",
+ "model": "askbot.award",
"fields": {
- "name": "tag-29-1",
- "deleted": false,
- "created_by": 29,
- "deleted_by": null,
- "used_count": 1,
- "deleted_at": null
+ "awarded_at": "2011-12-11 12:21:34",
+ "notified": false,
+ "object_id": 38,
+ "user": 39,
+ "content_type": 22,
+ "badge": 3
}
},
{
- "pk": 5,
- "model": "askbot.tag",
+ "pk": 58,
+ "model": "askbot.award",
"fields": {
- "name": "tag-3-0",
- "deleted": false,
- "created_by": 3,
- "deleted_by": null,
- "used_count": 1,
- "deleted_at": null
+ "awarded_at": "2011-12-11 12:21:34",
+ "notified": false,
+ "object_id": 39,
+ "user": 39,
+ "content_type": 22,
+ "badge": 1
}
},
{
- "pk": 6,
- "model": "askbot.tag",
+ "pk": 59,
+ "model": "askbot.award",
"fields": {
- "name": "tag-3-1",
- "deleted": false,
- "created_by": 3,
- "deleted_by": null,
- "used_count": 1,
- "deleted_at": null
+ "awarded_at": "2011-12-11 12:21:34",
+ "notified": false,
+ "object_id": 39,
+ "user": 40,
+ "content_type": 22,
+ "badge": 2
}
},
{
"pk": 60,
- "model": "askbot.tag",
- "fields": {
- "name": "tag-30-0",
- "deleted": false,
- "created_by": 30,
- "deleted_by": null,
- "used_count": 1,
- "deleted_at": null
- }
- },
- {
- "pk": 59,
- "model": "askbot.tag",
+ "model": "askbot.award",
"fields": {
- "name": "tag-30-1",
- "deleted": false,
- "created_by": 30,
- "deleted_by": null,
- "used_count": 1,
- "deleted_at": null
+ "awarded_at": "2011-12-11 12:21:35",
+ "notified": false,
+ "object_id": 40,
+ "user": 40,
+ "content_type": 22,
+ "badge": 1
}
},
{
"pk": 61,
- "model": "askbot.tag",
+ "model": "askbot.award",
"fields": {
- "name": "tag-31-0",
- "deleted": false,
- "created_by": 31,
- "deleted_by": null,
- "used_count": 1,
- "deleted_at": null
+ "awarded_at": "2011-12-11 12:21:35",
+ "notified": false,
+ "object_id": 40,
+ "user": 1,
+ "content_type": 22,
+ "badge": 2
}
},
{
"pk": 62,
- "model": "askbot.tag",
+ "model": "askbot.award",
"fields": {
- "name": "tag-31-1",
- "deleted": false,
- "created_by": 31,
- "deleted_by": null,
- "used_count": 1,
- "deleted_at": null
+ "awarded_at": "2011-12-11 12:21:35",
+ "notified": false,
+ "object_id": 1,
+ "user": 1,
+ "content_type": 26,
+ "badge": 4
}
},
{
- "pk": 64,
- "model": "askbot.tag",
+ "pk": 63,
+ "model": "askbot.award",
"fields": {
- "name": "tag-32-0",
- "deleted": false,
- "created_by": 32,
- "deleted_by": null,
- "used_count": 1,
- "deleted_at": null
+ "awarded_at": "2011-12-11 12:21:36",
+ "notified": false,
+ "object_id": 40,
+ "user": 40,
+ "content_type": 22,
+ "badge": 5
}
},
{
- "pk": 63,
- "model": "askbot.tag",
+ "pk": 64,
+ "model": "askbot.award",
"fields": {
- "name": "tag-32-1",
- "deleted": false,
- "created_by": 32,
- "deleted_by": null,
- "used_count": 1,
- "deleted_at": null
+ "awarded_at": "2011-12-11 12:21:37",
+ "notified": false,
+ "object_id": 40,
+ "user": 40,
+ "content_type": 22,
+ "badge": 6
}
},
{
"pk": 65,
- "model": "askbot.tag",
+ "model": "askbot.award",
"fields": {
- "name": "tag-33-0",
- "deleted": false,
- "created_by": 33,
- "deleted_by": null,
- "used_count": 1,
- "deleted_at": null
+ "awarded_at": "2011-12-11 12:21:37",
+ "notified": false,
+ "object_id": 40,
+ "user": 3,
+ "content_type": 22,
+ "badge": 2
}
},
{
"pk": 66,
- "model": "askbot.tag",
+ "model": "askbot.award",
"fields": {
- "name": "tag-33-1",
- "deleted": false,
- "created_by": 33,
- "deleted_by": null,
- "used_count": 1,
- "deleted_at": null
+ "awarded_at": "2011-12-11 12:21:37",
+ "notified": false,
+ "object_id": 3,
+ "user": 3,
+ "content_type": 26,
+ "badge": 4
}
},
{
- "pk": 68,
- "model": "askbot.tag",
+ "pk": 67,
+ "model": "askbot.award",
"fields": {
- "name": "tag-34-0",
- "deleted": false,
- "created_by": 34,
- "deleted_by": null,
- "used_count": 1,
- "deleted_at": null
+ "awarded_at": "2011-12-11 12:21:38",
+ "notified": false,
+ "object_id": 40,
+ "user": 40,
+ "content_type": 22,
+ "badge": 7
}
},
{
- "pk": 67,
- "model": "askbot.tag",
+ "pk": 68,
+ "model": "askbot.award",
"fields": {
- "name": "tag-34-1",
- "deleted": false,
- "created_by": 34,
- "deleted_by": null,
- "used_count": 1,
- "deleted_at": null
+ "awarded_at": "2011-12-11 12:21:38",
+ "notified": false,
+ "object_id": 40,
+ "user": 5,
+ "content_type": 22,
+ "badge": 2
}
},
{
"pk": 69,
- "model": "askbot.tag",
+ "model": "askbot.award",
"fields": {
- "name": "tag-35-0",
- "deleted": false,
- "created_by": 35,
- "deleted_by": null,
- "used_count": 1,
- "deleted_at": null
+ "awarded_at": "2011-12-11 12:21:39",
+ "notified": false,
+ "object_id": 5,
+ "user": 5,
+ "content_type": 26,
+ "badge": 4
}
},
{
"pk": 70,
- "model": "askbot.tag",
+ "model": "askbot.award",
"fields": {
- "name": "tag-35-1",
- "deleted": false,
- "created_by": 35,
- "deleted_by": null,
- "used_count": 1,
- "deleted_at": null
+ "awarded_at": "2011-12-11 12:21:40",
+ "notified": false,
+ "object_id": 40,
+ "user": 7,
+ "content_type": 22,
+ "badge": 2
}
},
{
- "pk": 72,
- "model": "askbot.tag",
+ "pk": 71,
+ "model": "askbot.award",
"fields": {
- "name": "tag-36-0",
- "deleted": false,
- "created_by": 36,
- "deleted_by": null,
- "used_count": 1,
- "deleted_at": null
+ "awarded_at": "2011-12-11 12:21:41",
+ "notified": false,
+ "object_id": 7,
+ "user": 7,
+ "content_type": 26,
+ "badge": 4
}
},
{
- "pk": 71,
- "model": "askbot.tag",
+ "pk": 72,
+ "model": "askbot.award",
"fields": {
- "name": "tag-36-1",
- "deleted": false,
- "created_by": 36,
- "deleted_by": null,
- "used_count": 1,
- "deleted_at": null
+ "awarded_at": "2011-12-11 12:21:43",
+ "notified": false,
+ "object_id": 40,
+ "user": 9,
+ "content_type": 22,
+ "badge": 2
}
},
{
"pk": 73,
- "model": "askbot.tag",
+ "model": "askbot.award",
"fields": {
- "name": "tag-37-0",
- "deleted": false,
- "created_by": 37,
- "deleted_by": null,
- "used_count": 1,
- "deleted_at": null
+ "awarded_at": "2011-12-11 12:21:43",
+ "notified": false,
+ "object_id": 9,
+ "user": 9,
+ "content_type": 26,
+ "badge": 4
}
},
{
"pk": 74,
- "model": "askbot.tag",
+ "model": "askbot.award",
"fields": {
- "name": "tag-37-1",
- "deleted": false,
- "created_by": 37,
- "deleted_by": null,
- "used_count": 1,
- "deleted_at": null
+ "awarded_at": "2011-12-11 12:21:45",
+ "notified": false,
+ "object_id": 40,
+ "user": 11,
+ "content_type": 22,
+ "badge": 2
}
},
{
- "pk": 76,
- "model": "askbot.tag",
+ "pk": 75,
+ "model": "askbot.award",
"fields": {
- "name": "tag-38-0",
- "deleted": false,
- "created_by": 38,
- "deleted_by": null,
- "used_count": 1,
- "deleted_at": null
+ "awarded_at": "2011-12-11 12:21:45",
+ "notified": false,
+ "object_id": 11,
+ "user": 11,
+ "content_type": 26,
+ "badge": 4
}
},
{
- "pk": 75,
- "model": "askbot.tag",
+ "pk": 76,
+ "model": "askbot.award",
"fields": {
- "name": "tag-38-1",
- "deleted": false,
- "created_by": 38,
- "deleted_by": null,
- "used_count": 1,
- "deleted_at": null
+ "awarded_at": "2011-12-11 12:21:48",
+ "notified": false,
+ "object_id": 40,
+ "user": 13,
+ "content_type": 22,
+ "badge": 2
}
},
{
"pk": 77,
- "model": "askbot.tag",
+ "model": "askbot.award",
"fields": {
- "name": "tag-39-0",
- "deleted": false,
- "created_by": 39,
- "deleted_by": null,
- "used_count": 1,
- "deleted_at": null
+ "awarded_at": "2011-12-11 12:21:48",
+ "notified": false,
+ "object_id": 13,
+ "user": 13,
+ "content_type": 26,
+ "badge": 4
}
},
{
"pk": 78,
- "model": "askbot.tag",
+ "model": "askbot.award",
"fields": {
- "name": "tag-39-1",
- "deleted": false,
- "created_by": 39,
- "deleted_by": null,
- "used_count": 1,
- "deleted_at": null
+ "awarded_at": "2011-12-11 12:21:51",
+ "notified": false,
+ "object_id": 40,
+ "user": 15,
+ "content_type": 22,
+ "badge": 2
}
},
{
- "pk": 8,
- "model": "askbot.tag",
+ "pk": 79,
+ "model": "askbot.award",
"fields": {
- "name": "tag-4-0",
- "deleted": false,
- "created_by": 4,
- "deleted_by": null,
- "used_count": 1,
- "deleted_at": null
+ "awarded_at": "2011-12-11 12:21:51",
+ "notified": false,
+ "object_id": 15,
+ "user": 15,
+ "content_type": 26,
+ "badge": 4
}
},
{
- "pk": 7,
- "model": "askbot.tag",
+ "pk": 80,
+ "model": "askbot.award",
"fields": {
- "name": "tag-4-1",
- "deleted": false,
- "created_by": 4,
- "deleted_by": null,
- "used_count": 1,
- "deleted_at": null
+ "awarded_at": "2011-12-11 12:21:55",
+ "notified": false,
+ "object_id": 40,
+ "user": 17,
+ "content_type": 22,
+ "badge": 2
}
},
{
- "pk": 79,
- "model": "askbot.tag",
+ "pk": 81,
+ "model": "askbot.award",
"fields": {
- "name": "tag-40-0",
- "deleted": false,
- "created_by": 40,
- "deleted_by": null,
- "used_count": 1,
- "deleted_at": null
+ "awarded_at": "2011-12-11 12:21:55",
+ "notified": false,
+ "object_id": 17,
+ "user": 17,
+ "content_type": 26,
+ "badge": 4
}
},
{
- "pk": 80,
- "model": "askbot.tag",
+ "pk": 82,
+ "model": "askbot.award",
"fields": {
- "name": "tag-40-1",
- "deleted": false,
- "created_by": 40,
- "deleted_by": null,
- "used_count": 1,
- "deleted_at": null
+ "awarded_at": "2011-12-11 12:21:59",
+ "notified": false,
+ "object_id": 40,
+ "user": 19,
+ "content_type": 22,
+ "badge": 2
}
},
{
- "pk": 9,
- "model": "askbot.tag",
+ "pk": 83,
+ "model": "askbot.award",
"fields": {
- "name": "tag-5-0",
- "deleted": false,
- "created_by": 5,
- "deleted_by": null,
- "used_count": 1,
- "deleted_at": null
+ "awarded_at": "2011-12-11 12:21:59",
+ "notified": false,
+ "object_id": 19,
+ "user": 19,
+ "content_type": 26,
+ "badge": 4
}
},
{
- "pk": 10,
- "model": "askbot.tag",
+ "pk": 84,
+ "model": "askbot.award",
"fields": {
- "name": "tag-5-1",
- "deleted": false,
- "created_by": 5,
- "deleted_by": null,
- "used_count": 1,
- "deleted_at": null
+ "awarded_at": "2011-12-11 12:22:01",
+ "notified": false,
+ "object_id": 20,
+ "user": 20,
+ "content_type": 26,
+ "badge": 4
}
},
{
- "pk": 12,
- "model": "askbot.tag",
+ "pk": 85,
+ "model": "askbot.award",
"fields": {
- "name": "tag-6-0",
- "deleted": false,
- "created_by": 6,
- "deleted_by": null,
- "used_count": 1,
- "deleted_at": null
+ "awarded_at": "2011-12-11 12:22:02",
+ "notified": false,
+ "object_id": 20,
+ "user": 20,
+ "content_type": 26,
+ "badge": 8
}
},
{
- "pk": 11,
- "model": "askbot.tag",
+ "pk": 86,
+ "model": "askbot.award",
"fields": {
- "name": "tag-6-1",
- "deleted": false,
- "created_by": 6,
- "deleted_by": null,
- "used_count": 1,
- "deleted_at": null
+ "awarded_at": "2011-12-11 12:22:03",
+ "notified": false,
+ "object_id": 20,
+ "user": 20,
+ "content_type": 26,
+ "badge": 9
}
},
{
- "pk": 13,
- "model": "askbot.tag",
+ "pk": 87,
+ "model": "askbot.award",
"fields": {
- "name": "tag-7-0",
- "deleted": false,
- "created_by": 7,
- "deleted_by": null,
- "used_count": 1,
- "deleted_at": null
+ "awarded_at": "2011-12-11 12:22:05",
+ "notified": false,
+ "object_id": 20,
+ "user": 20,
+ "content_type": 26,
+ "badge": 10
}
},
{
- "pk": 14,
- "model": "askbot.tag",
+ "pk": 88,
+ "model": "askbot.award",
"fields": {
- "name": "tag-7-1",
- "deleted": false,
- "created_by": 7,
- "deleted_by": null,
- "used_count": 1,
- "deleted_at": null
+ "awarded_at": "2011-12-11 12:22:34",
+ "notified": false,
+ "object_id": 40,
+ "user": 40,
+ "content_type": 22,
+ "badge": 11
}
},
{
- "pk": 16,
- "model": "askbot.tag",
+ "pk": 89,
+ "model": "askbot.award",
"fields": {
- "name": "tag-8-0",
- "deleted": false,
- "created_by": 8,
- "deleted_by": null,
- "used_count": 1,
- "deleted_at": null
+ "awarded_at": "2011-12-11 12:22:36",
+ "notified": false,
+ "object_id": 20,
+ "user": 20,
+ "content_type": 26,
+ "badge": 11
}
},
{
- "pk": 15,
- "model": "askbot.tag",
+ "pk": 90,
+ "model": "askbot.award",
"fields": {
- "name": "tag-8-1",
- "deleted": false,
- "created_by": 8,
- "deleted_by": null,
- "used_count": 1,
- "deleted_at": null
+ "awarded_at": "2011-12-11 12:22:41",
+ "notified": false,
+ "object_id": 20,
+ "user": 40,
+ "content_type": 26,
+ "badge": 12
}
},
{
- "pk": 17,
- "model": "askbot.tag",
+ "pk": 91,
+ "model": "askbot.award",
"fields": {
- "name": "tag-9-0",
- "deleted": false,
- "created_by": 9,
- "deleted_by": null,
- "used_count": 1,
- "deleted_at": null
+ "awarded_at": "2011-12-11 12:22:41",
+ "notified": false,
+ "object_id": 20,
+ "user": 20,
+ "content_type": 26,
+ "badge": 13
}
},
{
- "pk": 18,
- "model": "askbot.tag",
+ "pk": 92,
+ "model": "askbot.award",
"fields": {
- "name": "tag-9-1",
- "deleted": false,
- "created_by": 9,
- "deleted_by": null,
- "used_count": 1,
- "deleted_at": null
+ "awarded_at": "2011-12-11 12:22:41",
+ "notified": false,
+ "object_id": 20,
+ "user": 20,
+ "content_type": 26,
+ "badge": 14
}
},
{
- "pk": 61,
- "model": "askbot.postrevision",
+ "pk": 1,
+ "model": "askbot.repute",
"fields": {
- "is_anonymous": false,
- "author": 40,
- "tagnames": "tag-40-0 tag-40-1",
- "text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
- "title": "Test question title No.EDITED",
- "question": 40,
- "revised_at": "2011-11-29 11:22:44",
- "summary": "EDITED",
- "revision_type": 1,
- "answer": null,
- "revision": 2
+ "comment": null,
+ "positive": 10,
+ "question": 1,
+ "negative": 0,
+ "reputation_type": 1,
+ "user": 1,
+ "reputed_at": "2011-12-11 12:21:10",
+ "reputation": 510
}
},
{
- "pk": 62,
- "model": "askbot.postrevision",
+ "pk": 2,
+ "model": "askbot.repute",
"fields": {
- "is_anonymous": false,
- "author": 20,
- "tagnames": "",
- "text": "Main differentiators business model micro economics\n marketplace equity augmented reality human computer",
- "title": "",
- "question": null,
- "revised_at": "2011-11-29 11:22:45",
- "summary": "No.2 Revision",
- "revision_type": 2,
- "answer": 20,
- "revision": 2
+ "comment": null,
+ "positive": 0,
+ "question": 2,
+ "negative": -2,
+ "reputation_type": -3,
+ "user": 2,
+ "reputed_at": "2011-12-11 12:21:15",
+ "reputation": 498
}
},
{
"pk": 3,
- "model": "askbot.postrevision",
+ "model": "askbot.repute",
"fields": {
- "is_anonymous": false,
- "author": 3,
- "tagnames": "tag-3-0 tag-3-1",
- "text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
- "title": "Test question title No.3",
- "question": 3,
- "revised_at": "2011-11-29 11:22:04",
- "summary": "initial version",
- "revision_type": 1,
- "answer": null,
- "revision": 1
+ "comment": null,
+ "positive": 0,
+ "question": 2,
+ "negative": -1,
+ "reputation_type": -5,
+ "user": 3,
+ "reputed_at": "2011-12-11 12:21:15",
+ "reputation": 499
}
},
{
"pk": 4,
- "model": "askbot.postrevision",
+ "model": "askbot.repute",
"fields": {
- "is_anonymous": false,
- "author": 4,
- "tagnames": "tag-4-0 tag-4-1",
- "text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
- "title": "Test question title No.4",
- "question": 4,
- "revised_at": "2011-11-29 11:22:05",
- "summary": "initial version",
- "revision_type": 1,
- "answer": null,
- "revision": 1
+ "comment": null,
+ "positive": 10,
+ "question": 3,
+ "negative": 0,
+ "reputation_type": 1,
+ "user": 3,
+ "reputed_at": "2011-12-11 12:21:16",
+ "reputation": 509
}
},
{
"pk": 5,
- "model": "askbot.postrevision",
+ "model": "askbot.repute",
"fields": {
- "is_anonymous": false,
- "author": 5,
- "tagnames": "tag-5-0 tag-5-1",
- "text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
- "title": "Test question title No.5",
- "question": 5,
- "revised_at": "2011-11-29 11:22:06",
- "summary": "initial version",
- "revision_type": 1,
- "answer": null,
- "revision": 1
+ "comment": null,
+ "positive": 0,
+ "question": 4,
+ "negative": -2,
+ "reputation_type": -3,
+ "user": 4,
+ "reputed_at": "2011-12-11 12:21:16",
+ "reputation": 498
}
},
{
"pk": 6,
- "model": "askbot.postrevision",
+ "model": "askbot.repute",
"fields": {
- "is_anonymous": false,
- "author": 6,
- "tagnames": "tag-6-0 tag-6-1",
- "text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
- "title": "Test question title No.6",
- "question": 6,
- "revised_at": "2011-11-29 11:22:07",
- "summary": "initial version",
- "revision_type": 1,
- "answer": null,
- "revision": 1
+ "comment": null,
+ "positive": 0,
+ "question": 4,
+ "negative": -1,
+ "reputation_type": -5,
+ "user": 5,
+ "reputed_at": "2011-12-11 12:21:16",
+ "reputation": 499
}
},
{
"pk": 7,
- "model": "askbot.postrevision",
+ "model": "askbot.repute",
"fields": {
- "is_anonymous": false,
- "author": 7,
- "tagnames": "tag-7-0 tag-7-1",
- "text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
- "title": "Test question title No.7",
- "question": 7,
- "revised_at": "2011-11-29 11:22:07",
- "summary": "initial version",
- "revision_type": 1,
- "answer": null,
- "revision": 1
+ "comment": null,
+ "positive": 10,
+ "question": 5,
+ "negative": 0,
+ "reputation_type": 1,
+ "user": 5,
+ "reputed_at": "2011-12-11 12:21:17",
+ "reputation": 509
}
},
{
"pk": 8,
- "model": "askbot.postrevision",
+ "model": "askbot.repute",
"fields": {
- "is_anonymous": false,
- "author": 8,
- "tagnames": "tag-8-0 tag-8-1",
- "text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
- "title": "Test question title No.8",
- "question": 8,
- "revised_at": "2011-11-29 11:22:08",
- "summary": "initial version",
- "revision_type": 1,
- "answer": null,
- "revision": 1
+ "comment": null,
+ "positive": 0,
+ "question": 6,
+ "negative": -2,
+ "reputation_type": -3,
+ "user": 6,
+ "reputed_at": "2011-12-11 12:21:17",
+ "reputation": 498
}
},
{
"pk": 9,
- "model": "askbot.postrevision",
+ "model": "askbot.repute",
"fields": {
- "is_anonymous": false,
- "author": 9,
- "tagnames": "tag-9-0 tag-9-1",
- "text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
- "title": "Test question title No.9",
- "question": 9,
- "revised_at": "2011-11-29 11:22:09",
- "summary": "initial version",
- "revision_type": 1,
- "answer": null,
- "revision": 1
+ "comment": null,
+ "positive": 0,
+ "question": 6,
+ "negative": -1,
+ "reputation_type": -5,
+ "user": 7,
+ "reputed_at": "2011-12-11 12:21:17",
+ "reputation": 499
}
},
{
"pk": 10,
- "model": "askbot.postrevision",
+ "model": "askbot.repute",
"fields": {
- "is_anonymous": false,
- "author": 10,
- "tagnames": "tag-10-0 tag-10-1",
- "text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
- "title": "Test question title No.10",
- "question": 10,
- "revised_at": "2011-11-29 11:22:09",
- "summary": "initial version",
- "revision_type": 1,
- "answer": null,
- "revision": 1
+ "comment": null,
+ "positive": 10,
+ "question": 7,
+ "negative": 0,
+ "reputation_type": 1,
+ "user": 7,
+ "reputed_at": "2011-12-11 12:21:18",
+ "reputation": 509
}
},
{
"pk": 11,
- "model": "askbot.postrevision",
+ "model": "askbot.repute",
"fields": {
- "is_anonymous": false,
- "author": 11,
- "tagnames": "tag-11-0 tag-11-1",
- "text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
- "title": "Test question title No.11",
- "question": 11,
- "revised_at": "2011-11-29 11:22:09",
- "summary": "initial version",
- "revision_type": 1,
- "answer": null,
- "revision": 1
+ "comment": null,
+ "positive": 0,
+ "question": 8,
+ "negative": -2,
+ "reputation_type": -3,
+ "user": 8,
+ "reputed_at": "2011-12-11 12:21:18",
+ "reputation": 498
}
},
{
"pk": 12,
- "model": "askbot.postrevision",
+ "model": "askbot.repute",
"fields": {
- "is_anonymous": false,
- "author": 12,
- "tagnames": "tag-12-0 tag-12-1",
- "text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
- "title": "Test question title No.12",
- "question": 12,
- "revised_at": "2011-11-29 11:22:09",
- "summary": "initial version",
- "revision_type": 1,
- "answer": null,
- "revision": 1
+ "comment": null,
+ "positive": 0,
+ "question": 8,
+ "negative": -1,
+ "reputation_type": -5,
+ "user": 9,
+ "reputed_at": "2011-12-11 12:21:18",
+ "reputation": 499
}
},
{
"pk": 13,
- "model": "askbot.postrevision",
+ "model": "askbot.repute",
"fields": {
- "is_anonymous": false,
- "author": 13,
- "tagnames": "tag-13-0 tag-13-1",
- "text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
- "title": "Test question title No.13",
- "question": 13,
- "revised_at": "2011-11-29 11:22:10",
- "summary": "initial version",
- "revision_type": 1,
- "answer": null,
- "revision": 1
+ "comment": null,
+ "positive": 10,
+ "question": 9,
+ "negative": 0,
+ "reputation_type": 1,
+ "user": 9,
+ "reputed_at": "2011-12-11 12:21:19",
+ "reputation": 509
}
},
{
"pk": 14,
- "model": "askbot.postrevision",
+ "model": "askbot.repute",
"fields": {
- "is_anonymous": false,
- "author": 14,
- "tagnames": "tag-14-0 tag-14-1",
- "text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
- "title": "Test question title No.14",
- "question": 14,
- "revised_at": "2011-11-29 11:22:10",
- "summary": "initial version",
- "revision_type": 1,
- "answer": null,
- "revision": 1
+ "comment": null,
+ "positive": 0,
+ "question": 10,
+ "negative": -2,
+ "reputation_type": -3,
+ "user": 10,
+ "reputed_at": "2011-12-11 12:21:19",
+ "reputation": 498
}
},
{
"pk": 15,
- "model": "askbot.postrevision",
+ "model": "askbot.repute",
"fields": {
- "is_anonymous": false,
- "author": 15,
- "tagnames": "tag-15-0 tag-15-1",
- "text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
- "title": "Test question title No.15",
- "question": 15,
- "revised_at": "2011-11-29 11:22:10",
- "summary": "initial version",
- "revision_type": 1,
- "answer": null,
- "revision": 1
+ "comment": null,
+ "positive": 0,
+ "question": 10,
+ "negative": -1,
+ "reputation_type": -5,
+ "user": 11,
+ "reputed_at": "2011-12-11 12:21:19",
+ "reputation": 499
}
},
{
"pk": 16,
- "model": "askbot.postrevision",
+ "model": "askbot.repute",
"fields": {
- "is_anonymous": false,
- "author": 16,
- "tagnames": "tag-16-0 tag-16-1",
- "text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
- "title": "Test question title No.16",
- "question": 16,
- "revised_at": "2011-11-29 11:22:10",
- "summary": "initial version",
- "revision_type": 1,
- "answer": null,
- "revision": 1
+ "comment": null,
+ "positive": 10,
+ "question": 11,
+ "negative": 0,
+ "reputation_type": 1,
+ "user": 11,
+ "reputed_at": "2011-12-11 12:21:20",
+ "reputation": 509
}
},
{
"pk": 17,
- "model": "askbot.postrevision",
+ "model": "askbot.repute",
"fields": {
- "is_anonymous": false,
- "author": 17,
- "tagnames": "tag-17-0 tag-17-1",
- "text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
- "title": "Test question title No.17",
- "question": 17,
- "revised_at": "2011-11-29 11:22:10",
- "summary": "initial version",
- "revision_type": 1,
- "answer": null,
- "revision": 1
+ "comment": null,
+ "positive": 0,
+ "question": 12,
+ "negative": -2,
+ "reputation_type": -3,
+ "user": 12,
+ "reputed_at": "2011-12-11 12:21:20",
+ "reputation": 498
}
},
{
"pk": 18,
- "model": "askbot.postrevision",
+ "model": "askbot.repute",
"fields": {
- "is_anonymous": false,
- "author": 18,
- "tagnames": "tag-18-0 tag-18-1",
- "text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
- "title": "Test question title No.18",
- "question": 18,
- "revised_at": "2011-11-29 11:22:11",
- "summary": "initial version",
- "revision_type": 1,
- "answer": null,
- "revision": 1
+ "comment": null,
+ "positive": 0,
+ "question": 12,
+ "negative": -1,
+ "reputation_type": -5,
+ "user": 13,
+ "reputed_at": "2011-12-11 12:21:20",
+ "reputation": 499
}
},
{
"pk": 19,
- "model": "askbot.postrevision",
+ "model": "askbot.repute",
"fields": {
- "is_anonymous": false,
- "author": 19,
- "tagnames": "tag-19-0 tag-19-1",
- "text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
- "title": "Test question title No.19",
- "question": 19,
- "revised_at": "2011-11-29 11:22:11",
- "summary": "initial version",
- "revision_type": 1,
- "answer": null,
- "revision": 1
+ "comment": null,
+ "positive": 10,
+ "question": 13,
+ "negative": 0,
+ "reputation_type": 1,
+ "user": 13,
+ "reputed_at": "2011-12-11 12:21:21",
+ "reputation": 509
}
},
{
"pk": 20,
- "model": "askbot.postrevision",
+ "model": "askbot.repute",
"fields": {
- "is_anonymous": false,
- "author": 20,
- "tagnames": "tag-20-0 tag-20-1",
- "text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
- "title": "Test question title No.20",
- "question": 20,
- "revised_at": "2011-11-29 11:22:11",
- "summary": "initial version",
- "revision_type": 1,
- "answer": null,
- "revision": 1
+ "comment": null,
+ "positive": 0,
+ "question": 14,
+ "negative": -2,
+ "reputation_type": -3,
+ "user": 14,
+ "reputed_at": "2011-12-11 12:21:21",
+ "reputation": 498
}
},
{
"pk": 21,
- "model": "askbot.postrevision",
+ "model": "askbot.repute",
"fields": {
- "is_anonymous": false,
- "author": 21,
- "tagnames": "tag-21-0 tag-21-1",
- "text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
- "title": "Test question title No.21",
- "question": 21,
- "revised_at": "2011-11-29 11:22:11",
- "summary": "initial version",
- "revision_type": 1,
- "answer": null,
- "revision": 1
+ "comment": null,
+ "positive": 0,
+ "question": 14,
+ "negative": -1,
+ "reputation_type": -5,
+ "user": 15,
+ "reputed_at": "2011-12-11 12:21:21",
+ "reputation": 499
}
},
{
"pk": 22,
- "model": "askbot.postrevision",
+ "model": "askbot.repute",
"fields": {
- "is_anonymous": false,
- "author": 22,
- "tagnames": "tag-22-0 tag-22-1",
- "text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
- "title": "Test question title No.22",
- "question": 22,
- "revised_at": "2011-11-29 11:22:12",
- "summary": "initial version",
- "revision_type": 1,
- "answer": null,
- "revision": 1
+ "comment": null,
+ "positive": 10,
+ "question": 15,
+ "negative": 0,
+ "reputation_type": 1,
+ "user": 15,
+ "reputed_at": "2011-12-11 12:21:22",
+ "reputation": 509
}
},
{
"pk": 23,
- "model": "askbot.postrevision",
- "fields": {
- "is_anonymous": false,
- "author": 23,
- "tagnames": "tag-23-0 tag-23-1",
- "text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
- "title": "Test question title No.23",
- "question": 23,
- "revised_at": "2011-11-29 11:22:12",
- "summary": "initial version",
- "revision_type": 1,
- "answer": null,
- "revision": 1
- }
- },
- {
- "pk": 51,
- "model": "askbot.postrevision",
+ "model": "askbot.repute",
"fields": {
- "is_anonymous": false,
- "author": 11,
- "tagnames": "",
- "text": "Accelerator photo sharing business school drop out ramen\n hustle crush it revenue traction platforms.",
- "title": "",
- "question": null,
- "revised_at": "2011-11-29 11:22:20",
- "summary": "initial version",
- "revision_type": 2,
- "answer": 11,
- "revision": 1
+ "comment": null,
+ "positive": 0,
+ "question": 16,
+ "negative": -2,
+ "reputation_type": -3,
+ "user": 16,
+ "reputed_at": "2011-12-11 12:21:22",
+ "reputation": 498
}
},
{
"pk": 24,
- "model": "askbot.postrevision",
+ "model": "askbot.repute",
"fields": {
- "is_anonymous": false,
- "author": 24,
- "tagnames": "tag-24-0 tag-24-1",
- "text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
- "title": "Test question title No.24",
- "question": 24,
- "revised_at": "2011-11-29 11:22:12",
- "summary": "initial version",
- "revision_type": 1,
- "answer": null,
- "revision": 1
+ "comment": null,
+ "positive": 0,
+ "question": 16,
+ "negative": -1,
+ "reputation_type": -5,
+ "user": 17,
+ "reputed_at": "2011-12-11 12:21:22",
+ "reputation": 499
}
},
{
"pk": 25,
- "model": "askbot.postrevision",
+ "model": "askbot.repute",
"fields": {
- "is_anonymous": false,
- "author": 25,
- "tagnames": "tag-25-0 tag-25-1",
- "text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
- "title": "Test question title No.25",
- "question": 25,
- "revised_at": "2011-11-29 11:22:12",
- "summary": "initial version",
- "revision_type": 1,
- "answer": null,
- "revision": 1
+ "comment": null,
+ "positive": 10,
+ "question": 17,
+ "negative": 0,
+ "reputation_type": 1,
+ "user": 17,
+ "reputed_at": "2011-12-11 12:21:23",
+ "reputation": 509
}
},
{
"pk": 26,
- "model": "askbot.postrevision",
+ "model": "askbot.repute",
"fields": {
- "is_anonymous": false,
- "author": 26,
- "tagnames": "tag-26-0 tag-26-1",
- "text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
- "title": "Test question title No.26",
- "question": 26,
- "revised_at": "2011-11-29 11:22:13",
- "summary": "initial version",
- "revision_type": 1,
- "answer": null,
- "revision": 1
+ "comment": null,
+ "positive": 0,
+ "question": 18,
+ "negative": -2,
+ "reputation_type": -3,
+ "user": 18,
+ "reputed_at": "2011-12-11 12:21:23",
+ "reputation": 498
}
},
{
"pk": 27,
- "model": "askbot.postrevision",
+ "model": "askbot.repute",
"fields": {
- "is_anonymous": false,
- "author": 27,
- "tagnames": "tag-27-0 tag-27-1",
- "text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
- "title": "Test question title No.27",
- "question": 27,
- "revised_at": "2011-11-29 11:22:13",
- "summary": "initial version",
- "revision_type": 1,
- "answer": null,
- "revision": 1
+ "comment": null,
+ "positive": 0,
+ "question": 18,
+ "negative": -1,
+ "reputation_type": -5,
+ "user": 19,
+ "reputed_at": "2011-12-11 12:21:23",
+ "reputation": 499
}
},
{
"pk": 28,
- "model": "askbot.postrevision",
+ "model": "askbot.repute",
"fields": {
- "is_anonymous": false,
- "author": 28,
- "tagnames": "tag-28-0 tag-28-1",
- "text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
- "title": "Test question title No.28",
- "question": 28,
- "revised_at": "2011-11-29 11:22:13",
- "summary": "initial version",
- "revision_type": 1,
- "answer": null,
- "revision": 1
+ "comment": null,
+ "positive": 10,
+ "question": 19,
+ "negative": 0,
+ "reputation_type": 1,
+ "user": 19,
+ "reputed_at": "2011-12-11 12:21:24",
+ "reputation": 509
}
},
{
"pk": 29,
- "model": "askbot.postrevision",
+ "model": "askbot.repute",
"fields": {
- "is_anonymous": false,
- "author": 29,
- "tagnames": "tag-29-0 tag-29-1",
- "text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
- "title": "Test question title No.29",
- "question": 29,
- "revised_at": "2011-11-29 11:22:13",
- "summary": "initial version",
- "revision_type": 1,
- "answer": null,
- "revision": 1
+ "comment": null,
+ "positive": 0,
+ "question": 20,
+ "negative": -2,
+ "reputation_type": -3,
+ "user": 20,
+ "reputed_at": "2011-12-11 12:21:24",
+ "reputation": 498
}
},
{
"pk": 30,
- "model": "askbot.postrevision",
+ "model": "askbot.repute",
"fields": {
- "is_anonymous": false,
- "author": 30,
- "tagnames": "tag-30-0 tag-30-1",
- "text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
- "title": "Test question title No.30",
- "question": 30,
- "revised_at": "2011-11-29 11:22:13",
- "summary": "initial version",
- "revision_type": 1,
- "answer": null,
- "revision": 1
+ "comment": null,
+ "positive": 0,
+ "question": 20,
+ "negative": -1,
+ "reputation_type": -5,
+ "user": 21,
+ "reputed_at": "2011-12-11 12:21:24",
+ "reputation": 499
}
},
{
"pk": 31,
- "model": "askbot.postrevision",
+ "model": "askbot.repute",
"fields": {
- "is_anonymous": false,
- "author": 31,
- "tagnames": "tag-31-0 tag-31-1",
- "text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
- "title": "Test question title No.31",
- "question": 31,
- "revised_at": "2011-11-29 11:22:14",
- "summary": "initial version",
- "revision_type": 1,
- "answer": null,
- "revision": 1
+ "comment": null,
+ "positive": 10,
+ "question": 21,
+ "negative": 0,
+ "reputation_type": 1,
+ "user": 21,
+ "reputed_at": "2011-12-11 12:21:25",
+ "reputation": 509
}
},
{
"pk": 32,
- "model": "askbot.postrevision",
+ "model": "askbot.repute",
"fields": {
- "is_anonymous": false,
- "author": 32,
- "tagnames": "tag-32-0 tag-32-1",
- "text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
- "title": "Test question title No.32",
- "question": 32,
- "revised_at": "2011-11-29 11:22:14",
- "summary": "initial version",
- "revision_type": 1,
- "answer": null,
- "revision": 1
+ "comment": null,
+ "positive": 0,
+ "question": 22,
+ "negative": -2,
+ "reputation_type": -3,
+ "user": 22,
+ "reputed_at": "2011-12-11 12:21:25",
+ "reputation": 498
}
},
{
"pk": 33,
- "model": "askbot.postrevision",
+ "model": "askbot.repute",
"fields": {
- "is_anonymous": false,
- "author": 33,
- "tagnames": "tag-33-0 tag-33-1",
- "text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
- "title": "Test question title No.33",
- "question": 33,
- "revised_at": "2011-11-29 11:22:14",
- "summary": "initial version",
- "revision_type": 1,
- "answer": null,
- "revision": 1
+ "comment": null,
+ "positive": 0,
+ "question": 22,
+ "negative": -1,
+ "reputation_type": -5,
+ "user": 23,
+ "reputed_at": "2011-12-11 12:21:25",
+ "reputation": 499
}
},
{
"pk": 34,
- "model": "askbot.postrevision",
+ "model": "askbot.repute",
"fields": {
- "is_anonymous": false,
- "author": 34,
- "tagnames": "tag-34-0 tag-34-1",
- "text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
- "title": "Test question title No.34",
- "question": 34,
- "revised_at": "2011-11-29 11:22:14",
- "summary": "initial version",
- "revision_type": 1,
- "answer": null,
- "revision": 1
+ "comment": null,
+ "positive": 10,
+ "question": 23,
+ "negative": 0,
+ "reputation_type": 1,
+ "user": 23,
+ "reputed_at": "2011-12-11 12:21:26",
+ "reputation": 509
}
},
{
"pk": 35,
- "model": "askbot.postrevision",
+ "model": "askbot.repute",
"fields": {
- "is_anonymous": false,
- "author": 35,
- "tagnames": "tag-35-0 tag-35-1",
- "text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
- "title": "Test question title No.35",
- "question": 35,
- "revised_at": "2011-11-29 11:22:15",
- "summary": "initial version",
- "revision_type": 1,
- "answer": null,
- "revision": 1
+ "comment": null,
+ "positive": 0,
+ "question": 24,
+ "negative": -2,
+ "reputation_type": -3,
+ "user": 24,
+ "reputed_at": "2011-12-11 12:21:26",
+ "reputation": 498
}
},
{
"pk": 36,
- "model": "askbot.postrevision",
+ "model": "askbot.repute",
"fields": {
- "is_anonymous": false,
- "author": 36,
- "tagnames": "tag-36-0 tag-36-1",
- "text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
- "title": "Test question title No.36",
- "question": 36,
- "revised_at": "2011-11-29 11:22:15",
- "summary": "initial version",
- "revision_type": 1,
- "answer": null,
- "revision": 1
+ "comment": null,
+ "positive": 0,
+ "question": 24,
+ "negative": -1,
+ "reputation_type": -5,
+ "user": 25,
+ "reputed_at": "2011-12-11 12:21:26",
+ "reputation": 499
}
},
{
"pk": 37,
- "model": "askbot.postrevision",
+ "model": "askbot.repute",
"fields": {
- "is_anonymous": false,
- "author": 37,
- "tagnames": "tag-37-0 tag-37-1",
- "text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
- "title": "Test question title No.37",
- "question": 37,
- "revised_at": "2011-11-29 11:22:15",
- "summary": "initial version",
- "revision_type": 1,
- "answer": null,
- "revision": 1
+ "comment": null,
+ "positive": 10,
+ "question": 25,
+ "negative": 0,
+ "reputation_type": 1,
+ "user": 25,
+ "reputed_at": "2011-12-11 12:21:27",
+ "reputation": 509
}
},
{
"pk": 38,
- "model": "askbot.postrevision",
+ "model": "askbot.repute",
"fields": {
- "is_anonymous": false,
- "author": 38,
- "tagnames": "tag-38-0 tag-38-1",
- "text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
- "title": "Test question title No.38",
- "question": 38,
- "revised_at": "2011-11-29 11:22:15",
- "summary": "initial version",
- "revision_type": 1,
- "answer": null,
- "revision": 1
+ "comment": null,
+ "positive": 0,
+ "question": 26,
+ "negative": -2,
+ "reputation_type": -3,
+ "user": 26,
+ "reputed_at": "2011-12-11 12:21:27",
+ "reputation": 498
}
},
{
"pk": 39,
- "model": "askbot.postrevision",
+ "model": "askbot.repute",
"fields": {
- "is_anonymous": false,
- "author": 39,
- "tagnames": "tag-39-0 tag-39-1",
- "text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
- "title": "Test question title No.39",
- "question": 39,
- "revised_at": "2011-11-29 11:22:16",
- "summary": "initial version",
- "revision_type": 1,
- "answer": null,
- "revision": 1
+ "comment": null,
+ "positive": 0,
+ "question": 26,
+ "negative": -1,
+ "reputation_type": -5,
+ "user": 27,
+ "reputed_at": "2011-12-11 12:21:27",
+ "reputation": 499
}
},
{
"pk": 40,
- "model": "askbot.postrevision",
+ "model": "askbot.repute",
"fields": {
- "is_anonymous": false,
- "author": 40,
- "tagnames": "tag-40-0 tag-40-1",
- "text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
- "title": "Test question title No.40",
- "question": 40,
- "revised_at": "2011-11-29 11:22:16",
- "summary": "initial version",
- "revision_type": 1,
- "answer": null,
- "revision": 1
+ "comment": null,
+ "positive": 10,
+ "question": 27,
+ "negative": 0,
+ "reputation_type": 1,
+ "user": 27,
+ "reputed_at": "2011-12-11 12:21:28",
+ "reputation": 509
}
},
{
"pk": 41,
- "model": "askbot.postrevision",
+ "model": "askbot.repute",
"fields": {
- "is_anonymous": false,
- "author": 1,
- "tagnames": "",
- "text": "Accelerator photo sharing business school drop out ramen\n hustle crush it revenue traction platforms.",
- "title": "",
- "question": null,
- "revised_at": "2011-11-29 11:22:16",
- "summary": "initial version",
- "revision_type": 2,
- "answer": 1,
- "revision": 1
+ "comment": null,
+ "positive": 0,
+ "question": 28,
+ "negative": -2,
+ "reputation_type": -3,
+ "user": 28,
+ "reputed_at": "2011-12-11 12:21:28",
+ "reputation": 498
}
},
{
"pk": 42,
- "model": "askbot.postrevision",
+ "model": "askbot.repute",
"fields": {
- "is_anonymous": false,
- "author": 2,
- "tagnames": "",
- "text": "Accelerator photo sharing business school drop out ramen\n hustle crush it revenue traction platforms.",
- "title": "",
- "question": null,
- "revised_at": "2011-11-29 11:22:16",
- "summary": "initial version",
- "revision_type": 2,
- "answer": 2,
- "revision": 1
+ "comment": null,
+ "positive": 0,
+ "question": 28,
+ "negative": -1,
+ "reputation_type": -5,
+ "user": 29,
+ "reputed_at": "2011-12-11 12:21:28",
+ "reputation": 499
}
},
{
"pk": 43,
- "model": "askbot.postrevision",
+ "model": "askbot.repute",
"fields": {
- "is_anonymous": false,
- "author": 3,
- "tagnames": "",
- "text": "Accelerator photo sharing business school drop out ramen\n hustle crush it revenue traction platforms.",
- "title": "",
- "question": null,
- "revised_at": "2011-11-29 11:22:17",
- "summary": "initial version",
- "revision_type": 2,
- "answer": 3,
- "revision": 1
+ "comment": null,
+ "positive": 10,
+ "question": 29,
+ "negative": 0,
+ "reputation_type": 1,
+ "user": 29,
+ "reputed_at": "2011-12-11 12:21:29",
+ "reputation": 509
}
},
{
"pk": 44,
- "model": "askbot.postrevision",
+ "model": "askbot.repute",
"fields": {
- "is_anonymous": false,
- "author": 4,
- "tagnames": "",
- "text": "Accelerator photo sharing business school drop out ramen\n hustle crush it revenue traction platforms.",
- "title": "",
- "question": null,
- "revised_at": "2011-11-29 11:22:17",
- "summary": "initial version",
- "revision_type": 2,
- "answer": 4,
- "revision": 1
+ "comment": null,
+ "positive": 0,
+ "question": 30,
+ "negative": -2,
+ "reputation_type": -3,
+ "user": 30,
+ "reputed_at": "2011-12-11 12:21:29",
+ "reputation": 498
}
},
{
"pk": 45,
- "model": "askbot.postrevision",
+ "model": "askbot.repute",
"fields": {
- "is_anonymous": false,
- "author": 5,
- "tagnames": "",
- "text": "Accelerator photo sharing business school drop out ramen\n hustle crush it revenue traction platforms.",
- "title": "",
- "question": null,
- "revised_at": "2011-11-29 11:22:17",
- "summary": "initial version",
- "revision_type": 2,
- "answer": 5,
- "revision": 1
+ "comment": null,
+ "positive": 0,
+ "question": 30,
+ "negative": -1,
+ "reputation_type": -5,
+ "user": 31,
+ "reputed_at": "2011-12-11 12:21:29",
+ "reputation": 499
}
},
{
"pk": 46,
- "model": "askbot.postrevision",
+ "model": "askbot.repute",
"fields": {
- "is_anonymous": false,
- "author": 6,
- "tagnames": "",
- "text": "Accelerator photo sharing business school drop out ramen\n hustle crush it revenue traction platforms.",
- "title": "",
- "question": null,
- "revised_at": "2011-11-29 11:22:18",
- "summary": "initial version",
- "revision_type": 2,
- "answer": 6,
- "revision": 1
+ "comment": null,
+ "positive": 10,
+ "question": 31,
+ "negative": 0,
+ "reputation_type": 1,
+ "user": 31,
+ "reputed_at": "2011-12-11 12:21:30",
+ "reputation": 509
}
},
{
"pk": 47,
- "model": "askbot.postrevision",
+ "model": "askbot.repute",
"fields": {
- "is_anonymous": false,
- "author": 7,
- "tagnames": "",
- "text": "Accelerator photo sharing business school drop out ramen\n hustle crush it revenue traction platforms.",
- "title": "",
- "question": null,
- "revised_at": "2011-11-29 11:22:18",
- "summary": "initial version",
- "revision_type": 2,
- "answer": 7,
- "revision": 1
+ "comment": null,
+ "positive": 0,
+ "question": 32,
+ "negative": -2,
+ "reputation_type": -3,
+ "user": 32,
+ "reputed_at": "2011-12-11 12:21:30",
+ "reputation": 498
}
},
{
"pk": 48,
- "model": "askbot.postrevision",
+ "model": "askbot.repute",
"fields": {
- "is_anonymous": false,
- "author": 8,
- "tagnames": "",
- "text": "Accelerator photo sharing business school drop out ramen\n hustle crush it revenue traction platforms.",
- "title": "",
- "question": null,
- "revised_at": "2011-11-29 11:22:19",
- "summary": "initial version",
- "revision_type": 2,
- "answer": 8,
- "revision": 1
+ "comment": null,
+ "positive": 0,
+ "question": 32,
+ "negative": -1,
+ "reputation_type": -5,
+ "user": 33,
+ "reputed_at": "2011-12-11 12:21:30",
+ "reputation": 499
}
},
{
"pk": 49,
- "model": "askbot.postrevision",
+ "model": "askbot.repute",
"fields": {
- "is_anonymous": false,
- "author": 9,
- "tagnames": "",
- "text": "Accelerator photo sharing business school drop out ramen\n hustle crush it revenue traction platforms.",
- "title": "",
- "question": null,
- "revised_at": "2011-11-29 11:22:19",
- "summary": "initial version",
- "revision_type": 2,
- "answer": 9,
- "revision": 1
+ "comment": null,
+ "positive": 10,
+ "question": 33,
+ "negative": 0,
+ "reputation_type": 1,
+ "user": 33,
+ "reputed_at": "2011-12-11 12:21:31",
+ "reputation": 509
}
},
{
"pk": 50,
- "model": "askbot.postrevision",
+ "model": "askbot.repute",
"fields": {
- "is_anonymous": false,
- "author": 10,
- "tagnames": "",
- "text": "Accelerator photo sharing business school drop out ramen\n hustle crush it revenue traction platforms.",
- "title": "",
- "question": null,
- "revised_at": "2011-11-29 11:22:20",
- "summary": "initial version",
- "revision_type": 2,
- "answer": 10,
- "revision": 1
+ "comment": null,
+ "positive": 0,
+ "question": 34,
+ "negative": -2,
+ "reputation_type": -3,
+ "user": 34,
+ "reputed_at": "2011-12-11 12:21:31",
+ "reputation": 498
+ }
+ },
+ {
+ "pk": 51,
+ "model": "askbot.repute",
+ "fields": {
+ "comment": null,
+ "positive": 0,
+ "question": 34,
+ "negative": -1,
+ "reputation_type": -5,
+ "user": 35,
+ "reputed_at": "2011-12-11 12:21:31",
+ "reputation": 499
}
},
{
"pk": 52,
- "model": "askbot.postrevision",
+ "model": "askbot.repute",
"fields": {
- "is_anonymous": false,
- "author": 12,
- "tagnames": "",
- "text": "Accelerator photo sharing business school drop out ramen\n hustle crush it revenue traction platforms.",
- "title": "",
- "question": null,
- "revised_at": "2011-11-29 11:22:21",
- "summary": "initial version",
- "revision_type": 2,
- "answer": 12,
- "revision": 1
+ "comment": null,
+ "positive": 10,
+ "question": 35,
+ "negative": 0,
+ "reputation_type": 1,
+ "user": 35,
+ "reputed_at": "2011-12-11 12:21:32",
+ "reputation": 509
}
},
{
"pk": 53,
- "model": "askbot.postrevision",
+ "model": "askbot.repute",
"fields": {
- "is_anonymous": false,
- "author": 13,
- "tagnames": "",
- "text": "Accelerator photo sharing business school drop out ramen\n hustle crush it revenue traction platforms.",
- "title": "",
- "question": null,
- "revised_at": "2011-11-29 11:22:22",
- "summary": "initial version",
- "revision_type": 2,
- "answer": 13,
- "revision": 1
+ "comment": null,
+ "positive": 0,
+ "question": 36,
+ "negative": -2,
+ "reputation_type": -3,
+ "user": 36,
+ "reputed_at": "2011-12-11 12:21:32",
+ "reputation": 498
}
},
{
"pk": 54,
- "model": "askbot.postrevision",
+ "model": "askbot.repute",
"fields": {
- "is_anonymous": false,
- "author": 14,
- "tagnames": "",
- "text": "Accelerator photo sharing business school drop out ramen\n hustle crush it revenue traction platforms.",
- "title": "",
- "question": null,
- "revised_at": "2011-11-29 11:22:22",
- "summary": "initial version",
- "revision_type": 2,
- "answer": 14,
- "revision": 1
+ "comment": null,
+ "positive": 0,
+ "question": 36,
+ "negative": -1,
+ "reputation_type": -5,
+ "user": 37,
+ "reputed_at": "2011-12-11 12:21:32",
+ "reputation": 499
}
},
{
- "pk": 1,
- "model": "askbot.postrevision",
+ "pk": 55,
+ "model": "askbot.repute",
"fields": {
- "is_anonymous": false,
- "author": 1,
- "tagnames": "tag-1-0 tag-1-1",
- "text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
- "title": "Test question title No.1",
- "question": 1,
- "revised_at": "2011-11-29 11:22:02",
- "summary": "initial version",
- "revision_type": 1,
- "answer": null,
- "revision": 1
+ "comment": null,
+ "positive": 10,
+ "question": 37,
+ "negative": 0,
+ "reputation_type": 1,
+ "user": 37,
+ "reputed_at": "2011-12-11 12:21:33",
+ "reputation": 509
}
},
{
"pk": 56,
- "model": "askbot.postrevision",
+ "model": "askbot.repute",
"fields": {
- "is_anonymous": false,
- "author": 16,
- "tagnames": "",
- "text": "Accelerator photo sharing business school drop out ramen\n hustle crush it revenue traction platforms.",
- "title": "",
- "question": null,
- "revised_at": "2011-11-29 11:22:24",
- "summary": "initial version",
- "revision_type": 2,
- "answer": 16,
- "revision": 1
+ "comment": null,
+ "positive": 0,
+ "question": 38,
+ "negative": -2,
+ "reputation_type": -3,
+ "user": 38,
+ "reputed_at": "2011-12-11 12:21:34",
+ "reputation": 498
}
},
{
"pk": 57,
- "model": "askbot.postrevision",
+ "model": "askbot.repute",
"fields": {
- "is_anonymous": false,
- "author": 17,
- "tagnames": "",
- "text": "Accelerator photo sharing business school drop out ramen\n hustle crush it revenue traction platforms.",
- "title": "",
- "question": null,
- "revised_at": "2011-11-29 11:22:25",
- "summary": "initial version",
- "revision_type": 2,
- "answer": 17,
- "revision": 1
+ "comment": null,
+ "positive": 0,
+ "question": 38,
+ "negative": -1,
+ "reputation_type": -5,
+ "user": 39,
+ "reputed_at": "2011-12-11 12:21:34",
+ "reputation": 499
}
},
{
"pk": 58,
- "model": "askbot.postrevision",
+ "model": "askbot.repute",
"fields": {
- "is_anonymous": false,
- "author": 18,
- "tagnames": "",
- "text": "Accelerator photo sharing business school drop out ramen\n hustle crush it revenue traction platforms.",
- "title": "",
- "question": null,
- "revised_at": "2011-11-29 11:22:25",
- "summary": "initial version",
- "revision_type": 2,
- "answer": 18,
- "revision": 1
+ "comment": null,
+ "positive": 10,
+ "question": 39,
+ "negative": 0,
+ "reputation_type": 1,
+ "user": 39,
+ "reputed_at": "2011-12-11 12:21:34",
+ "reputation": 509
}
},
{
"pk": 59,
- "model": "askbot.postrevision",
+ "model": "askbot.repute",
"fields": {
- "is_anonymous": false,
- "author": 19,
- "tagnames": "",
- "text": "Accelerator photo sharing business school drop out ramen\n hustle crush it revenue traction platforms.",
- "title": "",
- "question": null,
- "revised_at": "2011-11-29 11:22:26",
- "summary": "initial version",
- "revision_type": 2,
- "answer": 19,
- "revision": 1
+ "comment": null,
+ "positive": 10,
+ "question": 40,
+ "negative": 0,
+ "reputation_type": 1,
+ "user": 40,
+ "reputed_at": "2011-12-11 12:21:35",
+ "reputation": 510
}
},
{
"pk": 60,
- "model": "askbot.postrevision",
+ "model": "askbot.repute",
"fields": {
- "is_anonymous": false,
- "author": 20,
- "tagnames": "",
- "text": "Accelerator photo sharing business school drop out ramen\n hustle crush it revenue traction platforms.",
- "title": "",
- "question": null,
- "revised_at": "2011-11-29 11:22:27",
- "summary": "initial version",
- "revision_type": 2,
- "answer": 20,
- "revision": 1
+ "comment": null,
+ "positive": 10,
+ "question": 40,
+ "negative": 0,
+ "reputation_type": 1,
+ "user": 1,
+ "reputed_at": "2011-12-11 12:21:35",
+ "reputation": 520
}
},
{
- "pk": 55,
- "model": "askbot.postrevision",
+ "pk": 61,
+ "model": "askbot.repute",
"fields": {
- "is_anonymous": false,
- "author": 15,
- "tagnames": "",
- "text": "Accelerator photo sharing business school drop out ramen\n hustle crush it revenue traction platforms.",
- "title": "",
- "question": null,
- "revised_at": "2011-11-29 11:22:23",
- "summary": "initial version",
- "revision_type": 2,
- "answer": 15,
- "revision": 1
+ "comment": null,
+ "positive": 10,
+ "question": 40,
+ "negative": 0,
+ "reputation_type": 1,
+ "user": 40,
+ "reputed_at": "2011-12-11 12:21:36",
+ "reputation": 520
}
},
{
- "pk": 2,
- "model": "askbot.postrevision",
+ "pk": 62,
+ "model": "askbot.repute",
"fields": {
- "is_anonymous": false,
- "author": 2,
- "tagnames": "tag-2-0 tag-2-1",
- "text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
- "title": "Test question title No.2",
- "question": 2,
- "revised_at": "2011-11-29 11:22:04",
- "summary": "initial version",
- "revision_type": 1,
- "answer": null,
- "revision": 1
+ "comment": null,
+ "positive": 0,
+ "question": 40,
+ "negative": -2,
+ "reputation_type": -3,
+ "user": 2,
+ "reputed_at": "2011-12-11 12:21:36",
+ "reputation": 496
+ }
+ },
+ {
+ "pk": 63,
+ "model": "askbot.repute",
+ "fields": {
+ "comment": null,
+ "positive": 0,
+ "question": 40,
+ "negative": -1,
+ "reputation_type": -5,
+ "user": 3,
+ "reputed_at": "2011-12-11 12:21:36",
+ "reputation": 508
+ }
+ },
+ {
+ "pk": 64,
+ "model": "askbot.repute",
+ "fields": {
+ "comment": null,
+ "positive": 10,
+ "question": 40,
+ "negative": 0,
+ "reputation_type": 1,
+ "user": 40,
+ "reputed_at": "2011-12-11 12:21:37",
+ "reputation": 530
+ }
+ },
+ {
+ "pk": 65,
+ "model": "askbot.repute",
+ "fields": {
+ "comment": null,
+ "positive": 10,
+ "question": 40,
+ "negative": 0,
+ "reputation_type": 1,
+ "user": 3,
+ "reputed_at": "2011-12-11 12:21:37",
+ "reputation": 518
+ }
+ },
+ {
+ "pk": 66,
+ "model": "askbot.repute",
+ "fields": {
+ "comment": null,
+ "positive": 10,
+ "question": 40,
+ "negative": 0,
+ "reputation_type": 1,
+ "user": 40,
+ "reputed_at": "2011-12-11 12:21:38",
+ "reputation": 540
+ }
+ },
+ {
+ "pk": 67,
+ "model": "askbot.repute",
+ "fields": {
+ "comment": null,
+ "positive": 0,
+ "question": 40,
+ "negative": -2,
+ "reputation_type": -3,
+ "user": 4,
+ "reputed_at": "2011-12-11 12:21:38",
+ "reputation": 496
+ }
+ },
+ {
+ "pk": 68,
+ "model": "askbot.repute",
+ "fields": {
+ "comment": null,
+ "positive": 0,
+ "question": 40,
+ "negative": -1,
+ "reputation_type": -5,
+ "user": 5,
+ "reputed_at": "2011-12-11 12:21:38",
+ "reputation": 508
+ }
+ },
+ {
+ "pk": 69,
+ "model": "askbot.repute",
+ "fields": {
+ "comment": null,
+ "positive": 10,
+ "question": 40,
+ "negative": 0,
+ "reputation_type": 1,
+ "user": 40,
+ "reputed_at": "2011-12-11 12:21:38",
+ "reputation": 550
+ }
+ },
+ {
+ "pk": 70,
+ "model": "askbot.repute",
+ "fields": {
+ "comment": null,
+ "positive": 10,
+ "question": 40,
+ "negative": 0,
+ "reputation_type": 1,
+ "user": 5,
+ "reputed_at": "2011-12-11 12:21:39",
+ "reputation": 518
+ }
+ },
+ {
+ "pk": 71,
+ "model": "askbot.repute",
+ "fields": {
+ "comment": null,
+ "positive": 10,
+ "question": 40,
+ "negative": 0,
+ "reputation_type": 1,
+ "user": 40,
+ "reputed_at": "2011-12-11 12:21:39",
+ "reputation": 560
+ }
+ },
+ {
+ "pk": 72,
+ "model": "askbot.repute",
+ "fields": {
+ "comment": null,
+ "positive": 0,
+ "question": 40,
+ "negative": -2,
+ "reputation_type": -3,
+ "user": 6,
+ "reputed_at": "2011-12-11 12:21:40",
+ "reputation": 496
+ }
+ },
+ {
+ "pk": 73,
+ "model": "askbot.repute",
+ "fields": {
+ "comment": null,
+ "positive": 0,
+ "question": 40,
+ "negative": -1,
+ "reputation_type": -5,
+ "user": 7,
+ "reputed_at": "2011-12-11 12:21:40",
+ "reputation": 508
+ }
+ },
+ {
+ "pk": 74,
+ "model": "askbot.repute",
+ "fields": {
+ "comment": null,
+ "positive": 10,
+ "question": 40,
+ "negative": 0,
+ "reputation_type": 1,
+ "user": 40,
+ "reputed_at": "2011-12-11 12:21:40",
+ "reputation": 570
+ }
+ },
+ {
+ "pk": 75,
+ "model": "askbot.repute",
+ "fields": {
+ "comment": null,
+ "positive": 10,
+ "question": 40,
+ "negative": 0,
+ "reputation_type": 1,
+ "user": 7,
+ "reputed_at": "2011-12-11 12:21:41",
+ "reputation": 518
+ }
+ },
+ {
+ "pk": 76,
+ "model": "askbot.repute",
+ "fields": {
+ "comment": null,
+ "positive": 10,
+ "question": 40,
+ "negative": 0,
+ "reputation_type": 1,
+ "user": 40,
+ "reputed_at": "2011-12-11 12:21:42",
+ "reputation": 580
+ }
+ },
+ {
+ "pk": 77,
+ "model": "askbot.repute",
+ "fields": {
+ "comment": null,
+ "positive": 0,
+ "question": 40,
+ "negative": -2,
+ "reputation_type": -3,
+ "user": 8,
+ "reputed_at": "2011-12-11 12:21:42",
+ "reputation": 496
+ }
+ },
+ {
+ "pk": 78,
+ "model": "askbot.repute",
+ "fields": {
+ "comment": null,
+ "positive": 0,
+ "question": 40,
+ "negative": -1,
+ "reputation_type": -5,
+ "user": 9,
+ "reputed_at": "2011-12-11 12:21:42",
+ "reputation": 508
+ }
+ },
+ {
+ "pk": 79,
+ "model": "askbot.repute",
+ "fields": {
+ "comment": null,
+ "positive": 10,
+ "question": 40,
+ "negative": 0,
+ "reputation_type": 1,
+ "user": 40,
+ "reputed_at": "2011-12-11 12:21:43",
+ "reputation": 590
+ }
+ },
+ {
+ "pk": 80,
+ "model": "askbot.repute",
+ "fields": {
+ "comment": null,
+ "positive": 10,
+ "question": 40,
+ "negative": 0,
+ "reputation_type": 1,
+ "user": 9,
+ "reputed_at": "2011-12-11 12:21:43",
+ "reputation": 518
+ }
+ },
+ {
+ "pk": 81,
+ "model": "askbot.repute",
+ "fields": {
+ "comment": null,
+ "positive": 10,
+ "question": 40,
+ "negative": 0,
+ "reputation_type": 1,
+ "user": 40,
+ "reputed_at": "2011-12-11 12:21:44",
+ "reputation": 600
+ }
+ },
+ {
+ "pk": 82,
+ "model": "askbot.repute",
+ "fields": {
+ "comment": null,
+ "positive": 0,
+ "question": 40,
+ "negative": -2,
+ "reputation_type": -3,
+ "user": 10,
+ "reputed_at": "2011-12-11 12:21:44",
+ "reputation": 496
+ }
+ },
+ {
+ "pk": 83,
+ "model": "askbot.repute",
+ "fields": {
+ "comment": null,
+ "positive": 0,
+ "question": 40,
+ "negative": -1,
+ "reputation_type": -5,
+ "user": 11,
+ "reputed_at": "2011-12-11 12:21:44",
+ "reputation": 508
+ }
+ },
+ {
+ "pk": 84,
+ "model": "askbot.repute",
+ "fields": {
+ "comment": null,
+ "positive": 10,
+ "question": 40,
+ "negative": 0,
+ "reputation_type": 1,
+ "user": 40,
+ "reputed_at": "2011-12-11 12:21:45",
+ "reputation": 610
+ }
+ },
+ {
+ "pk": 85,
+ "model": "askbot.repute",
+ "fields": {
+ "comment": null,
+ "positive": 10,
+ "question": 40,
+ "negative": 0,
+ "reputation_type": 1,
+ "user": 11,
+ "reputed_at": "2011-12-11 12:21:45",
+ "reputation": 518
+ }
+ },
+ {
+ "pk": 86,
+ "model": "askbot.repute",
+ "fields": {
+ "comment": null,
+ "positive": 10,
+ "question": 40,
+ "negative": 0,
+ "reputation_type": 1,
+ "user": 40,
+ "reputed_at": "2011-12-11 12:21:46",
+ "reputation": 620
+ }
+ },
+ {
+ "pk": 87,
+ "model": "askbot.repute",
+ "fields": {
+ "comment": null,
+ "positive": 0,
+ "question": 40,
+ "negative": -2,
+ "reputation_type": -3,
+ "user": 12,
+ "reputed_at": "2011-12-11 12:21:47",
+ "reputation": 496
+ }
+ },
+ {
+ "pk": 88,
+ "model": "askbot.repute",
+ "fields": {
+ "comment": null,
+ "positive": 0,
+ "question": 40,
+ "negative": -1,
+ "reputation_type": -5,
+ "user": 13,
+ "reputed_at": "2011-12-11 12:21:47",
+ "reputation": 508
+ }
+ },
+ {
+ "pk": 89,
+ "model": "askbot.repute",
+ "fields": {
+ "comment": null,
+ "positive": 10,
+ "question": 40,
+ "negative": 0,
+ "reputation_type": 1,
+ "user": 40,
+ "reputed_at": "2011-12-11 12:21:48",
+ "reputation": 630
+ }
+ },
+ {
+ "pk": 90,
+ "model": "askbot.repute",
+ "fields": {
+ "comment": null,
+ "positive": 10,
+ "question": 40,
+ "negative": 0,
+ "reputation_type": 1,
+ "user": 13,
+ "reputed_at": "2011-12-11 12:21:48",
+ "reputation": 518
+ }
+ },
+ {
+ "pk": 91,
+ "model": "askbot.repute",
+ "fields": {
+ "comment": null,
+ "positive": 10,
+ "question": 40,
+ "negative": 0,
+ "reputation_type": 1,
+ "user": 40,
+ "reputed_at": "2011-12-11 12:21:50",
+ "reputation": 640
+ }
+ },
+ {
+ "pk": 92,
+ "model": "askbot.repute",
+ "fields": {
+ "comment": null,
+ "positive": 0,
+ "question": 40,
+ "negative": -2,
+ "reputation_type": -3,
+ "user": 14,
+ "reputed_at": "2011-12-11 12:21:50",
+ "reputation": 496
+ }
+ },
+ {
+ "pk": 93,
+ "model": "askbot.repute",
+ "fields": {
+ "comment": null,
+ "positive": 0,
+ "question": 40,
+ "negative": -1,
+ "reputation_type": -5,
+ "user": 15,
+ "reputed_at": "2011-12-11 12:21:50",
+ "reputation": 508
+ }
+ },
+ {
+ "pk": 94,
+ "model": "askbot.repute",
+ "fields": {
+ "comment": null,
+ "positive": 10,
+ "question": 40,
+ "negative": 0,
+ "reputation_type": 1,
+ "user": 40,
+ "reputed_at": "2011-12-11 12:21:51",
+ "reputation": 650
+ }
+ },
+ {
+ "pk": 95,
+ "model": "askbot.repute",
+ "fields": {
+ "comment": null,
+ "positive": 10,
+ "question": 40,
+ "negative": 0,
+ "reputation_type": 1,
+ "user": 15,
+ "reputed_at": "2011-12-11 12:21:51",
+ "reputation": 518
+ }
+ },
+ {
+ "pk": 96,
+ "model": "askbot.repute",
+ "fields": {
+ "comment": null,
+ "positive": 10,
+ "question": 40,
+ "negative": 0,
+ "reputation_type": 1,
+ "user": 40,
+ "reputed_at": "2011-12-11 12:21:53",
+ "reputation": 660
+ }
+ },
+ {
+ "pk": 97,
+ "model": "askbot.repute",
+ "fields": {
+ "comment": null,
+ "positive": 0,
+ "question": 40,
+ "negative": -2,
+ "reputation_type": -3,
+ "user": 16,
+ "reputed_at": "2011-12-11 12:21:53",
+ "reputation": 496
+ }
+ },
+ {
+ "pk": 98,
+ "model": "askbot.repute",
+ "fields": {
+ "comment": null,
+ "positive": 0,
+ "question": 40,
+ "negative": -1,
+ "reputation_type": -5,
+ "user": 17,
+ "reputed_at": "2011-12-11 12:21:53",
+ "reputation": 508
+ }
+ },
+ {
+ "pk": 99,
+ "model": "askbot.repute",
+ "fields": {
+ "comment": null,
+ "positive": 10,
+ "question": 40,
+ "negative": 0,
+ "reputation_type": 1,
+ "user": 40,
+ "reputed_at": "2011-12-11 12:21:55",
+ "reputation": 670
+ }
+ },
+ {
+ "pk": 100,
+ "model": "askbot.repute",
+ "fields": {
+ "comment": null,
+ "positive": 10,
+ "question": 40,
+ "negative": 0,
+ "reputation_type": 1,
+ "user": 17,
+ "reputed_at": "2011-12-11 12:21:55",
+ "reputation": 518
+ }
+ },
+ {
+ "pk": 101,
+ "model": "askbot.repute",
+ "fields": {
+ "comment": null,
+ "positive": 10,
+ "question": 40,
+ "negative": 0,
+ "reputation_type": 1,
+ "user": 40,
+ "reputed_at": "2011-12-11 12:21:57",
+ "reputation": 680
+ }
+ },
+ {
+ "pk": 102,
+ "model": "askbot.repute",
+ "fields": {
+ "comment": null,
+ "positive": 0,
+ "question": 40,
+ "negative": -2,
+ "reputation_type": -3,
+ "user": 18,
+ "reputed_at": "2011-12-11 12:21:57",
+ "reputation": 496
+ }
+ },
+ {
+ "pk": 103,
+ "model": "askbot.repute",
+ "fields": {
+ "comment": null,
+ "positive": 0,
+ "question": 40,
+ "negative": -1,
+ "reputation_type": -5,
+ "user": 19,
+ "reputed_at": "2011-12-11 12:21:57",
+ "reputation": 508
+ }
+ },
+ {
+ "pk": 104,
+ "model": "askbot.repute",
+ "fields": {
+ "comment": null,
+ "positive": 10,
+ "question": 40,
+ "negative": 0,
+ "reputation_type": 1,
+ "user": 40,
+ "reputed_at": "2011-12-11 12:21:59",
+ "reputation": 690
+ }
+ },
+ {
+ "pk": 105,
+ "model": "askbot.repute",
+ "fields": {
+ "comment": null,
+ "positive": 10,
+ "question": 40,
+ "negative": 0,
+ "reputation_type": 1,
+ "user": 19,
+ "reputed_at": "2011-12-11 12:21:59",
+ "reputation": 518
+ }
+ },
+ {
+ "pk": 106,
+ "model": "askbot.repute",
+ "fields": {
+ "comment": null,
+ "positive": 10,
+ "question": 40,
+ "negative": 0,
+ "reputation_type": 1,
+ "user": 40,
+ "reputed_at": "2011-12-11 12:22:00",
+ "reputation": 700
+ }
+ },
+ {
+ "pk": 107,
+ "model": "askbot.repute",
+ "fields": {
+ "comment": null,
+ "positive": 10,
+ "question": 40,
+ "negative": 0,
+ "reputation_type": 1,
+ "user": 20,
+ "reputed_at": "2011-12-11 12:22:01",
+ "reputation": 508
+ }
+ },
+ {
+ "pk": 108,
+ "model": "askbot.repute",
+ "fields": {
+ "comment": null,
+ "positive": 10,
+ "question": 40,
+ "negative": 0,
+ "reputation_type": 1,
+ "user": 20,
+ "reputed_at": "2011-12-11 12:22:02",
+ "reputation": 518
+ }
+ },
+ {
+ "pk": 109,
+ "model": "askbot.repute",
+ "fields": {
+ "comment": null,
+ "positive": 10,
+ "question": 40,
+ "negative": 0,
+ "reputation_type": 1,
+ "user": 20,
+ "reputed_at": "2011-12-11 12:22:03",
+ "reputation": 528
+ }
+ },
+ {
+ "pk": 110,
+ "model": "askbot.repute",
+ "fields": {
+ "comment": null,
+ "positive": 10,
+ "question": 40,
+ "negative": 0,
+ "reputation_type": 1,
+ "user": 20,
+ "reputed_at": "2011-12-11 12:22:04",
+ "reputation": 538
+ }
+ },
+ {
+ "pk": 111,
+ "model": "askbot.repute",
+ "fields": {
+ "comment": null,
+ "positive": 10,
+ "question": 40,
+ "negative": 0,
+ "reputation_type": 1,
+ "user": 20,
+ "reputed_at": "2011-12-11 12:22:05",
+ "reputation": 548
+ }
+ },
+ {
+ "pk": 112,
+ "model": "askbot.repute",
+ "fields": {
+ "comment": null,
+ "positive": 10,
+ "question": 40,
+ "negative": 0,
+ "reputation_type": 1,
+ "user": 20,
+ "reputed_at": "2011-12-11 12:22:06",
+ "reputation": 558
+ }
+ },
+ {
+ "pk": 113,
+ "model": "askbot.repute",
+ "fields": {
+ "comment": null,
+ "positive": 10,
+ "question": 40,
+ "negative": 0,
+ "reputation_type": 1,
+ "user": 20,
+ "reputed_at": "2011-12-11 12:22:08",
+ "reputation": 568
+ }
+ },
+ {
+ "pk": 114,
+ "model": "askbot.repute",
+ "fields": {
+ "comment": null,
+ "positive": 10,
+ "question": 40,
+ "negative": 0,
+ "reputation_type": 1,
+ "user": 20,
+ "reputed_at": "2011-12-11 12:22:09",
+ "reputation": 578
+ }
+ },
+ {
+ "pk": 115,
+ "model": "askbot.repute",
+ "fields": {
+ "comment": null,
+ "positive": 10,
+ "question": 40,
+ "negative": 0,
+ "reputation_type": 1,
+ "user": 20,
+ "reputed_at": "2011-12-11 12:22:11",
+ "reputation": 588
+ }
+ },
+ {
+ "pk": 116,
+ "model": "askbot.repute",
+ "fields": {
+ "comment": null,
+ "positive": 10,
+ "question": 40,
+ "negative": 0,
+ "reputation_type": 1,
+ "user": 20,
+ "reputed_at": "2011-12-11 12:22:12",
+ "reputation": 598
+ }
+ },
+ {
+ "pk": 117,
+ "model": "askbot.repute",
+ "fields": {
+ "comment": null,
+ "positive": 10,
+ "question": 40,
+ "negative": 0,
+ "reputation_type": 1,
+ "user": 20,
+ "reputed_at": "2011-12-11 12:22:14",
+ "reputation": 608
+ }
+ },
+ {
+ "pk": 118,
+ "model": "askbot.repute",
+ "fields": {
+ "comment": null,
+ "positive": 10,
+ "question": 40,
+ "negative": 0,
+ "reputation_type": 1,
+ "user": 20,
+ "reputed_at": "2011-12-11 12:22:16",
+ "reputation": 618
+ }
+ },
+ {
+ "pk": 119,
+ "model": "askbot.repute",
+ "fields": {
+ "comment": null,
+ "positive": 10,
+ "question": 40,
+ "negative": 0,
+ "reputation_type": 1,
+ "user": 20,
+ "reputed_at": "2011-12-11 12:22:17",
+ "reputation": 628
+ }
+ },
+ {
+ "pk": 120,
+ "model": "askbot.repute",
+ "fields": {
+ "comment": null,
+ "positive": 10,
+ "question": 40,
+ "negative": 0,
+ "reputation_type": 1,
+ "user": 20,
+ "reputed_at": "2011-12-11 12:22:19",
+ "reputation": 638
+ }
+ },
+ {
+ "pk": 121,
+ "model": "askbot.repute",
+ "fields": {
+ "comment": null,
+ "positive": 10,
+ "question": 40,
+ "negative": 0,
+ "reputation_type": 1,
+ "user": 20,
+ "reputed_at": "2011-12-11 12:22:22",
+ "reputation": 648
+ }
+ },
+ {
+ "pk": 122,
+ "model": "askbot.repute",
+ "fields": {
+ "comment": null,
+ "positive": 10,
+ "question": 40,
+ "negative": 0,
+ "reputation_type": 1,
+ "user": 20,
+ "reputed_at": "2011-12-11 12:22:24",
+ "reputation": 658
+ }
+ },
+ {
+ "pk": 123,
+ "model": "askbot.repute",
+ "fields": {
+ "comment": null,
+ "positive": 10,
+ "question": 40,
+ "negative": 0,
+ "reputation_type": 1,
+ "user": 20,
+ "reputed_at": "2011-12-11 12:22:26",
+ "reputation": 668
+ }
+ },
+ {
+ "pk": 124,
+ "model": "askbot.repute",
+ "fields": {
+ "comment": null,
+ "positive": 10,
+ "question": 40,
+ "negative": 0,
+ "reputation_type": 1,
+ "user": 20,
+ "reputed_at": "2011-12-11 12:22:29",
+ "reputation": 678
+ }
+ },
+ {
+ "pk": 125,
+ "model": "askbot.repute",
+ "fields": {
+ "comment": null,
+ "positive": 10,
+ "question": 40,
+ "negative": 0,
+ "reputation_type": 1,
+ "user": 20,
+ "reputed_at": "2011-12-11 12:22:31",
+ "reputation": 688
+ }
+ },
+ {
+ "pk": 126,
+ "model": "askbot.repute",
+ "fields": {
+ "comment": null,
+ "positive": 10,
+ "question": 40,
+ "negative": 0,
+ "reputation_type": 1,
+ "user": 20,
+ "reputed_at": "2011-12-11 12:22:33",
+ "reputation": 698
+ }
+ },
+ {
+ "pk": 127,
+ "model": "askbot.repute",
+ "fields": {
+ "comment": null,
+ "positive": 15,
+ "question": 40,
+ "negative": 0,
+ "reputation_type": 2,
+ "user": 20,
+ "reputed_at": "2011-12-11 12:22:41",
+ "reputation": 713
+ }
+ },
+ {
+ "pk": 128,
+ "model": "askbot.repute",
+ "fields": {
+ "comment": null,
+ "positive": 2,
+ "question": 40,
+ "negative": 0,
+ "reputation_type": 3,
+ "user": 40,
+ "reputed_at": "2011-12-11 12:22:41",
+ "reputation": 702
}
},
{
@@ -4953,9 +5889,9 @@
"model": "askbot.vote",
"fields": {
"vote": 1,
- "voted_at": "2011-11-29 11:22:03",
+ "voted_at": "2011-12-11 12:21:10",
"user": 2,
- "content_type": 17,
+ "content_type": 22,
"object_id": 1
}
},
@@ -4964,9 +5900,9 @@
"model": "askbot.vote",
"fields": {
"vote": -1,
- "voted_at": "2011-11-29 11:22:04",
+ "voted_at": "2011-12-11 12:21:15",
"user": 3,
- "content_type": 17,
+ "content_type": 22,
"object_id": 2
}
},
@@ -4975,9 +5911,9 @@
"model": "askbot.vote",
"fields": {
"vote": 1,
- "voted_at": "2011-11-29 11:22:05",
+ "voted_at": "2011-12-11 12:21:16",
"user": 4,
- "content_type": 17,
+ "content_type": 22,
"object_id": 3
}
},
@@ -4986,9 +5922,9 @@
"model": "askbot.vote",
"fields": {
"vote": -1,
- "voted_at": "2011-11-29 11:22:05",
+ "voted_at": "2011-12-11 12:21:16",
"user": 5,
- "content_type": 17,
+ "content_type": 22,
"object_id": 4
}
},
@@ -4997,9 +5933,9 @@
"model": "askbot.vote",
"fields": {
"vote": 1,
- "voted_at": "2011-11-29 11:22:06",
+ "voted_at": "2011-12-11 12:21:17",
"user": 6,
- "content_type": 17,
+ "content_type": 22,
"object_id": 5
}
},
@@ -5008,9 +5944,9 @@
"model": "askbot.vote",
"fields": {
"vote": -1,
- "voted_at": "2011-11-29 11:22:07",
+ "voted_at": "2011-12-11 12:21:17",
"user": 7,
- "content_type": 17,
+ "content_type": 22,
"object_id": 6
}
},
@@ -5019,9 +5955,9 @@
"model": "askbot.vote",
"fields": {
"vote": 1,
- "voted_at": "2011-11-29 11:22:08",
+ "voted_at": "2011-12-11 12:21:18",
"user": 8,
- "content_type": 17,
+ "content_type": 22,
"object_id": 7
}
},
@@ -5030,9 +5966,9 @@
"model": "askbot.vote",
"fields": {
"vote": -1,
- "voted_at": "2011-11-29 11:22:08",
+ "voted_at": "2011-12-11 12:21:18",
"user": 9,
- "content_type": 17,
+ "content_type": 22,
"object_id": 8
}
},
@@ -5041,9 +5977,9 @@
"model": "askbot.vote",
"fields": {
"vote": 1,
- "voted_at": "2011-11-29 11:22:09",
+ "voted_at": "2011-12-11 12:21:19",
"user": 10,
- "content_type": 17,
+ "content_type": 22,
"object_id": 9
}
},
@@ -5052,9 +5988,9 @@
"model": "askbot.vote",
"fields": {
"vote": -1,
- "voted_at": "2011-11-29 11:22:09",
+ "voted_at": "2011-12-11 12:21:19",
"user": 11,
- "content_type": 17,
+ "content_type": 22,
"object_id": 10
}
},
@@ -5063,9 +5999,9 @@
"model": "askbot.vote",
"fields": {
"vote": 1,
- "voted_at": "2011-11-29 11:22:09",
+ "voted_at": "2011-12-11 12:21:20",
"user": 12,
- "content_type": 17,
+ "content_type": 22,
"object_id": 11
}
},
@@ -5074,9 +6010,9 @@
"model": "askbot.vote",
"fields": {
"vote": -1,
- "voted_at": "2011-11-29 11:22:09",
+ "voted_at": "2011-12-11 12:21:20",
"user": 13,
- "content_type": 17,
+ "content_type": 22,
"object_id": 12
}
},
@@ -5085,9 +6021,9 @@
"model": "askbot.vote",
"fields": {
"vote": 1,
- "voted_at": "2011-11-29 11:22:10",
+ "voted_at": "2011-12-11 12:21:21",
"user": 14,
- "content_type": 17,
+ "content_type": 22,
"object_id": 13
}
},
@@ -5096,9 +6032,9 @@
"model": "askbot.vote",
"fields": {
"vote": -1,
- "voted_at": "2011-11-29 11:22:10",
+ "voted_at": "2011-12-11 12:21:21",
"user": 15,
- "content_type": 17,
+ "content_type": 22,
"object_id": 14
}
},
@@ -5107,9 +6043,9 @@
"model": "askbot.vote",
"fields": {
"vote": 1,
- "voted_at": "2011-11-29 11:22:10",
+ "voted_at": "2011-12-11 12:21:22",
"user": 16,
- "content_type": 17,
+ "content_type": 22,
"object_id": 15
}
},
@@ -5118,9 +6054,9 @@
"model": "askbot.vote",
"fields": {
"vote": -1,
- "voted_at": "2011-11-29 11:22:10",
+ "voted_at": "2011-12-11 12:21:22",
"user": 17,
- "content_type": 17,
+ "content_type": 22,
"object_id": 16
}
},
@@ -5129,9 +6065,9 @@
"model": "askbot.vote",
"fields": {
"vote": 1,
- "voted_at": "2011-11-29 11:22:11",
+ "voted_at": "2011-12-11 12:21:23",
"user": 18,
- "content_type": 17,
+ "content_type": 22,
"object_id": 17
}
},
@@ -5140,9 +6076,9 @@
"model": "askbot.vote",
"fields": {
"vote": -1,
- "voted_at": "2011-11-29 11:22:11",
+ "voted_at": "2011-12-11 12:21:23",
"user": 19,
- "content_type": 17,
+ "content_type": 22,
"object_id": 18
}
},
@@ -5151,9 +6087,9 @@
"model": "askbot.vote",
"fields": {
"vote": 1,
- "voted_at": "2011-11-29 11:22:11",
+ "voted_at": "2011-12-11 12:21:24",
"user": 20,
- "content_type": 17,
+ "content_type": 22,
"object_id": 19
}
},
@@ -5162,9 +6098,9 @@
"model": "askbot.vote",
"fields": {
"vote": -1,
- "voted_at": "2011-11-29 11:22:11",
+ "voted_at": "2011-12-11 12:21:24",
"user": 21,
- "content_type": 17,
+ "content_type": 22,
"object_id": 20
}
},
@@ -5173,9 +6109,9 @@
"model": "askbot.vote",
"fields": {
"vote": 1,
- "voted_at": "2011-11-29 11:22:11",
+ "voted_at": "2011-12-11 12:21:25",
"user": 22,
- "content_type": 17,
+ "content_type": 22,
"object_id": 21
}
},
@@ -5184,9 +6120,9 @@
"model": "askbot.vote",
"fields": {
"vote": -1,
- "voted_at": "2011-11-29 11:22:12",
+ "voted_at": "2011-12-11 12:21:25",
"user": 23,
- "content_type": 17,
+ "content_type": 22,
"object_id": 22
}
},
@@ -5195,9 +6131,9 @@
"model": "askbot.vote",
"fields": {
"vote": 1,
- "voted_at": "2011-11-29 11:22:12",
+ "voted_at": "2011-12-11 12:21:26",
"user": 24,
- "content_type": 17,
+ "content_type": 22,
"object_id": 23
}
},
@@ -5206,9 +6142,9 @@
"model": "askbot.vote",
"fields": {
"vote": -1,
- "voted_at": "2011-11-29 11:22:12",
+ "voted_at": "2011-12-11 12:21:26",
"user": 25,
- "content_type": 17,
+ "content_type": 22,
"object_id": 24
}
},
@@ -5217,9 +6153,9 @@
"model": "askbot.vote",
"fields": {
"vote": 1,
- "voted_at": "2011-11-29 11:22:12",
+ "voted_at": "2011-12-11 12:21:27",
"user": 26,
- "content_type": 17,
+ "content_type": 22,
"object_id": 25
}
},
@@ -5228,9 +6164,9 @@
"model": "askbot.vote",
"fields": {
"vote": -1,
- "voted_at": "2011-11-29 11:22:13",
+ "voted_at": "2011-12-11 12:21:27",
"user": 27,
- "content_type": 17,
+ "content_type": 22,
"object_id": 26
}
},
@@ -5239,9 +6175,9 @@
"model": "askbot.vote",
"fields": {
"vote": 1,
- "voted_at": "2011-11-29 11:22:13",
+ "voted_at": "2011-12-11 12:21:28",
"user": 28,
- "content_type": 17,
+ "content_type": 22,
"object_id": 27
}
},
@@ -5250,9 +6186,9 @@
"model": "askbot.vote",
"fields": {
"vote": -1,
- "voted_at": "2011-11-29 11:22:13",
+ "voted_at": "2011-12-11 12:21:28",
"user": 29,
- "content_type": 17,
+ "content_type": 22,
"object_id": 28
}
},
@@ -5261,9 +6197,9 @@
"model": "askbot.vote",
"fields": {
"vote": 1,
- "voted_at": "2011-11-29 11:22:13",
+ "voted_at": "2011-12-11 12:21:29",
"user": 30,
- "content_type": 17,
+ "content_type": 22,
"object_id": 29
}
},
@@ -5272,9 +6208,9 @@
"model": "askbot.vote",
"fields": {
"vote": -1,
- "voted_at": "2011-11-29 11:22:14",
+ "voted_at": "2011-12-11 12:21:29",
"user": 31,
- "content_type": 17,
+ "content_type": 22,
"object_id": 30
}
},
@@ -5283,9 +6219,9 @@
"model": "askbot.vote",
"fields": {
"vote": 1,
- "voted_at": "2011-11-29 11:22:14",
+ "voted_at": "2011-12-11 12:21:30",
"user": 32,
- "content_type": 17,
+ "content_type": 22,
"object_id": 31
}
},
@@ -5294,9 +6230,9 @@
"model": "askbot.vote",
"fields": {
"vote": -1,
- "voted_at": "2011-11-29 11:22:14",
+ "voted_at": "2011-12-11 12:21:30",
"user": 33,
- "content_type": 17,
+ "content_type": 22,
"object_id": 32
}
},
@@ -5305,9 +6241,9 @@
"model": "askbot.vote",
"fields": {
"vote": 1,
- "voted_at": "2011-11-29 11:22:14",
+ "voted_at": "2011-12-11 12:21:31",
"user": 34,
- "content_type": 17,
+ "content_type": 22,
"object_id": 33
}
},
@@ -5316,9 +6252,9 @@
"model": "askbot.vote",
"fields": {
"vote": -1,
- "voted_at": "2011-11-29 11:22:15",
+ "voted_at": "2011-12-11 12:21:31",
"user": 35,
- "content_type": 17,
+ "content_type": 22,
"object_id": 34
}
},
@@ -5327,9 +6263,9 @@
"model": "askbot.vote",
"fields": {
"vote": 1,
- "voted_at": "2011-11-29 11:22:15",
+ "voted_at": "2011-12-11 12:21:32",
"user": 36,
- "content_type": 17,
+ "content_type": 22,
"object_id": 35
}
},
@@ -5338,9 +6274,9 @@
"model": "askbot.vote",
"fields": {
"vote": -1,
- "voted_at": "2011-11-29 11:22:15",
+ "voted_at": "2011-12-11 12:21:32",
"user": 37,
- "content_type": 17,
+ "content_type": 22,
"object_id": 36
}
},
@@ -5349,9 +6285,9 @@
"model": "askbot.vote",
"fields": {
"vote": 1,
- "voted_at": "2011-11-29 11:22:15",
+ "voted_at": "2011-12-11 12:21:33",
"user": 38,
- "content_type": 17,
+ "content_type": 22,
"object_id": 37
}
},
@@ -5360,9 +6296,9 @@
"model": "askbot.vote",
"fields": {
"vote": -1,
- "voted_at": "2011-11-29 11:22:16",
+ "voted_at": "2011-12-11 12:21:34",
"user": 39,
- "content_type": 17,
+ "content_type": 22,
"object_id": 38
}
},
@@ -5371,9 +6307,9 @@
"model": "askbot.vote",
"fields": {
"vote": 1,
- "voted_at": "2011-11-29 11:22:16",
+ "voted_at": "2011-12-11 12:21:34",
"user": 40,
- "content_type": 17,
+ "content_type": 22,
"object_id": 39
}
},
@@ -5382,9 +6318,9 @@
"model": "askbot.vote",
"fields": {
"vote": 1,
- "voted_at": "2011-11-29 11:22:16",
+ "voted_at": "2011-12-11 12:21:35",
"user": 1,
- "content_type": 17,
+ "content_type": 22,
"object_id": 40
}
},
@@ -5393,9 +6329,9 @@
"model": "askbot.vote",
"fields": {
"vote": 1,
- "voted_at": "2011-11-29 11:22:16",
+ "voted_at": "2011-12-11 12:21:35",
"user": 2,
- "content_type": 21,
+ "content_type": 26,
"object_id": 1
}
},
@@ -5404,9 +6340,9 @@
"model": "askbot.vote",
"fields": {
"vote": 1,
- "voted_at": "2011-11-29 11:22:17",
+ "voted_at": "2011-12-11 12:21:36",
"user": 2,
- "content_type": 17,
+ "content_type": 22,
"object_id": 40
}
},
@@ -5415,9 +6351,9 @@
"model": "askbot.vote",
"fields": {
"vote": -1,
- "voted_at": "2011-11-29 11:22:17",
+ "voted_at": "2011-12-11 12:21:36",
"user": 3,
- "content_type": 21,
+ "content_type": 26,
"object_id": 2
}
},
@@ -5426,9 +6362,9 @@
"model": "askbot.vote",
"fields": {
"vote": 1,
- "voted_at": "2011-11-29 11:22:17",
+ "voted_at": "2011-12-11 12:21:37",
"user": 3,
- "content_type": 17,
+ "content_type": 22,
"object_id": 40
}
},
@@ -5437,9 +6373,9 @@
"model": "askbot.vote",
"fields": {
"vote": 1,
- "voted_at": "2011-11-29 11:22:17",
+ "voted_at": "2011-12-11 12:21:37",
"user": 4,
- "content_type": 21,
+ "content_type": 26,
"object_id": 3
}
},
@@ -5448,9 +6384,9 @@
"model": "askbot.vote",
"fields": {
"vote": 1,
- "voted_at": "2011-11-29 11:22:17",
+ "voted_at": "2011-12-11 12:21:38",
"user": 4,
- "content_type": 17,
+ "content_type": 22,
"object_id": 40
}
},
@@ -5459,9 +6395,9 @@
"model": "askbot.vote",
"fields": {
"vote": -1,
- "voted_at": "2011-11-29 11:22:17",
+ "voted_at": "2011-12-11 12:21:38",
"user": 5,
- "content_type": 21,
+ "content_type": 26,
"object_id": 4
}
},
@@ -5470,9 +6406,9 @@
"model": "askbot.vote",
"fields": {
"vote": 1,
- "voted_at": "2011-11-29 11:22:18",
+ "voted_at": "2011-12-11 12:21:38",
"user": 5,
- "content_type": 17,
+ "content_type": 22,
"object_id": 40
}
},
@@ -5481,9 +6417,9 @@
"model": "askbot.vote",
"fields": {
"vote": 1,
- "voted_at": "2011-11-29 11:22:18",
+ "voted_at": "2011-12-11 12:21:39",
"user": 6,
- "content_type": 21,
+ "content_type": 26,
"object_id": 5
}
},
@@ -5492,9 +6428,9 @@
"model": "askbot.vote",
"fields": {
"vote": 1,
- "voted_at": "2011-11-29 11:22:18",
+ "voted_at": "2011-12-11 12:21:39",
"user": 6,
- "content_type": 17,
+ "content_type": 22,
"object_id": 40
}
},
@@ -5503,9 +6439,9 @@
"model": "askbot.vote",
"fields": {
"vote": -1,
- "voted_at": "2011-11-29 11:22:18",
+ "voted_at": "2011-12-11 12:21:40",
"user": 7,
- "content_type": 21,
+ "content_type": 26,
"object_id": 6
}
},
@@ -5514,9 +6450,9 @@
"model": "askbot.vote",
"fields": {
"vote": 1,
- "voted_at": "2011-11-29 11:22:19",
+ "voted_at": "2011-12-11 12:21:40",
"user": 7,
- "content_type": 17,
+ "content_type": 22,
"object_id": 40
}
},
@@ -5525,9 +6461,9 @@
"model": "askbot.vote",
"fields": {
"vote": 1,
- "voted_at": "2011-11-29 11:22:19",
+ "voted_at": "2011-12-11 12:21:41",
"user": 8,
- "content_type": 21,
+ "content_type": 26,
"object_id": 7
}
},
@@ -5536,9 +6472,9 @@
"model": "askbot.vote",
"fields": {
"vote": 1,
- "voted_at": "2011-11-29 11:22:19",
+ "voted_at": "2011-12-11 12:21:42",
"user": 8,
- "content_type": 17,
+ "content_type": 22,
"object_id": 40
}
},
@@ -5547,9 +6483,9 @@
"model": "askbot.vote",
"fields": {
"vote": -1,
- "voted_at": "2011-11-29 11:22:19",
+ "voted_at": "2011-12-11 12:21:42",
"user": 9,
- "content_type": 21,
+ "content_type": 26,
"object_id": 8
}
},
@@ -5558,9 +6494,9 @@
"model": "askbot.vote",
"fields": {
"vote": 1,
- "voted_at": "2011-11-29 11:22:20",
+ "voted_at": "2011-12-11 12:21:43",
"user": 9,
- "content_type": 17,
+ "content_type": 22,
"object_id": 40
}
},
@@ -5569,9 +6505,9 @@
"model": "askbot.vote",
"fields": {
"vote": 1,
- "voted_at": "2011-11-29 11:22:20",
+ "voted_at": "2011-12-11 12:21:43",
"user": 10,
- "content_type": 21,
+ "content_type": 26,
"object_id": 9
}
},
@@ -5580,9 +6516,9 @@
"model": "askbot.vote",
"fields": {
"vote": 1,
- "voted_at": "2011-11-29 11:22:20",
+ "voted_at": "2011-12-11 12:21:44",
"user": 10,
- "content_type": 17,
+ "content_type": 22,
"object_id": 40
}
},
@@ -5591,9 +6527,9 @@
"model": "askbot.vote",
"fields": {
"vote": -1,
- "voted_at": "2011-11-29 11:22:20",
+ "voted_at": "2011-12-11 12:21:44",
"user": 11,
- "content_type": 21,
+ "content_type": 26,
"object_id": 10
}
},
@@ -5602,9 +6538,9 @@
"model": "askbot.vote",
"fields": {
"vote": 1,
- "voted_at": "2011-11-29 11:22:21",
+ "voted_at": "2011-12-11 12:21:45",
"user": 11,
- "content_type": 17,
+ "content_type": 22,
"object_id": 40
}
},
@@ -5613,9 +6549,9 @@
"model": "askbot.vote",
"fields": {
"vote": 1,
- "voted_at": "2011-11-29 11:22:21",
+ "voted_at": "2011-12-11 12:21:45",
"user": 12,
- "content_type": 21,
+ "content_type": 26,
"object_id": 11
}
},
@@ -5624,9 +6560,9 @@
"model": "askbot.vote",
"fields": {
"vote": 1,
- "voted_at": "2011-11-29 11:22:22",
+ "voted_at": "2011-12-11 12:21:46",
"user": 12,
- "content_type": 17,
+ "content_type": 22,
"object_id": 40
}
},
@@ -5635,9 +6571,9 @@
"model": "askbot.vote",
"fields": {
"vote": -1,
- "voted_at": "2011-11-29 11:22:22",
+ "voted_at": "2011-12-11 12:21:47",
"user": 13,
- "content_type": 21,
+ "content_type": 26,
"object_id": 12
}
},
@@ -5646,9 +6582,9 @@
"model": "askbot.vote",
"fields": {
"vote": 1,
- "voted_at": "2011-11-29 11:22:22",
+ "voted_at": "2011-12-11 12:21:48",
"user": 13,
- "content_type": 17,
+ "content_type": 22,
"object_id": 40
}
},
@@ -5657,9 +6593,9 @@
"model": "askbot.vote",
"fields": {
"vote": 1,
- "voted_at": "2011-11-29 11:22:22",
+ "voted_at": "2011-12-11 12:21:48",
"user": 14,
- "content_type": 21,
+ "content_type": 26,
"object_id": 13
}
},
@@ -5668,9 +6604,9 @@
"model": "askbot.vote",
"fields": {
"vote": 1,
- "voted_at": "2011-11-29 11:22:23",
+ "voted_at": "2011-12-11 12:21:50",
"user": 14,
- "content_type": 17,
+ "content_type": 22,
"object_id": 40
}
},
@@ -5679,9 +6615,9 @@
"model": "askbot.vote",
"fields": {
"vote": -1,
- "voted_at": "2011-11-29 11:22:23",
+ "voted_at": "2011-12-11 12:21:50",
"user": 15,
- "content_type": 21,
+ "content_type": 26,
"object_id": 14
}
},
@@ -5690,9 +6626,9 @@
"model": "askbot.vote",
"fields": {
"vote": 1,
- "voted_at": "2011-11-29 11:22:24",
+ "voted_at": "2011-12-11 12:21:51",
"user": 15,
- "content_type": 17,
+ "content_type": 22,
"object_id": 40
}
},
@@ -5701,9 +6637,9 @@
"model": "askbot.vote",
"fields": {
"vote": 1,
- "voted_at": "2011-11-29 11:22:24",
+ "voted_at": "2011-12-11 12:21:51",
"user": 16,
- "content_type": 21,
+ "content_type": 26,
"object_id": 15
}
},
@@ -5712,9 +6648,9 @@
"model": "askbot.vote",
"fields": {
"vote": 1,
- "voted_at": "2011-11-29 11:22:24",
+ "voted_at": "2011-12-11 12:21:53",
"user": 16,
- "content_type": 17,
+ "content_type": 22,
"object_id": 40
}
},
@@ -5723,9 +6659,9 @@
"model": "askbot.vote",
"fields": {
"vote": -1,
- "voted_at": "2011-11-29 11:22:24",
+ "voted_at": "2011-12-11 12:21:53",
"user": 17,
- "content_type": 21,
+ "content_type": 26,
"object_id": 16
}
},
@@ -5734,9 +6670,9 @@
"model": "askbot.vote",
"fields": {
"vote": 1,
- "voted_at": "2011-11-29 11:22:25",
+ "voted_at": "2011-12-11 12:21:55",
"user": 17,
- "content_type": 17,
+ "content_type": 22,
"object_id": 40
}
},
@@ -5745,9 +6681,9 @@
"model": "askbot.vote",
"fields": {
"vote": 1,
- "voted_at": "2011-11-29 11:22:25",
+ "voted_at": "2011-12-11 12:21:55",
"user": 18,
- "content_type": 21,
+ "content_type": 26,
"object_id": 17
}
},
@@ -5756,9 +6692,9 @@
"model": "askbot.vote",
"fields": {
"vote": 1,
- "voted_at": "2011-11-29 11:22:26",
+ "voted_at": "2011-12-11 12:21:57",
"user": 18,
- "content_type": 17,
+ "content_type": 22,
"object_id": 40
}
},
@@ -5767,9 +6703,9 @@
"model": "askbot.vote",
"fields": {
"vote": -1,
- "voted_at": "2011-11-29 11:22:26",
+ "voted_at": "2011-12-11 12:21:57",
"user": 19,
- "content_type": 21,
+ "content_type": 26,
"object_id": 18
}
},
@@ -5778,9 +6714,9 @@
"model": "askbot.vote",
"fields": {
"vote": 1,
- "voted_at": "2011-11-29 11:22:27",
+ "voted_at": "2011-12-11 12:21:59",
"user": 19,
- "content_type": 17,
+ "content_type": 22,
"object_id": 40
}
},
@@ -5789,9 +6725,9 @@
"model": "askbot.vote",
"fields": {
"vote": 1,
- "voted_at": "2011-11-29 11:22:27",
+ "voted_at": "2011-12-11 12:21:59",
"user": 20,
- "content_type": 21,
+ "content_type": 26,
"object_id": 19
}
},
@@ -5800,9 +6736,9 @@
"model": "askbot.vote",
"fields": {
"vote": 1,
- "voted_at": "2011-11-29 11:22:28",
+ "voted_at": "2011-12-11 12:22:00",
"user": 20,
- "content_type": 17,
+ "content_type": 22,
"object_id": 40
}
},
@@ -5811,9 +6747,9 @@
"model": "askbot.vote",
"fields": {
"vote": 1,
- "voted_at": "2011-11-29 11:22:28",
+ "voted_at": "2011-12-11 12:22:01",
"user": 1,
- "content_type": 21,
+ "content_type": 26,
"object_id": 20
}
},
@@ -5822,9 +6758,9 @@
"model": "askbot.vote",
"fields": {
"vote": 1,
- "voted_at": "2011-11-29 11:22:28",
+ "voted_at": "2011-12-11 12:22:02",
"user": 2,
- "content_type": 21,
+ "content_type": 26,
"object_id": 20
}
},
@@ -5833,9 +6769,9 @@
"model": "askbot.vote",
"fields": {
"vote": 1,
- "voted_at": "2011-11-29 11:22:29",
+ "voted_at": "2011-12-11 12:22:03",
"user": 3,
- "content_type": 21,
+ "content_type": 26,
"object_id": 20
}
},
@@ -5844,9 +6780,9 @@
"model": "askbot.vote",
"fields": {
"vote": 1,
- "voted_at": "2011-11-29 11:22:29",
+ "voted_at": "2011-12-11 12:22:04",
"user": 4,
- "content_type": 21,
+ "content_type": 26,
"object_id": 20
}
},
@@ -5855,9 +6791,9 @@
"model": "askbot.vote",
"fields": {
"vote": 1,
- "voted_at": "2011-11-29 11:22:30",
+ "voted_at": "2011-12-11 12:22:05",
"user": 5,
- "content_type": 21,
+ "content_type": 26,
"object_id": 20
}
},
@@ -5866,9 +6802,9 @@
"model": "askbot.vote",
"fields": {
"vote": 1,
- "voted_at": "2011-11-29 11:22:30",
+ "voted_at": "2011-12-11 12:22:06",
"user": 6,
- "content_type": 21,
+ "content_type": 26,
"object_id": 20
}
},
@@ -5877,9 +6813,9 @@
"model": "askbot.vote",
"fields": {
"vote": 1,
- "voted_at": "2011-11-29 11:22:31",
+ "voted_at": "2011-12-11 12:22:08",
"user": 7,
- "content_type": 21,
+ "content_type": 26,
"object_id": 20
}
},
@@ -5888,9 +6824,9 @@
"model": "askbot.vote",
"fields": {
"vote": 1,
- "voted_at": "2011-11-29 11:22:32",
+ "voted_at": "2011-12-11 12:22:09",
"user": 8,
- "content_type": 21,
+ "content_type": 26,
"object_id": 20
}
},
@@ -5899,9 +6835,9 @@
"model": "askbot.vote",
"fields": {
"vote": 1,
- "voted_at": "2011-11-29 11:22:32",
+ "voted_at": "2011-12-11 12:22:11",
"user": 9,
- "content_type": 21,
+ "content_type": 26,
"object_id": 20
}
},
@@ -5910,9 +6846,9 @@
"model": "askbot.vote",
"fields": {
"vote": 1,
- "voted_at": "2011-11-29 11:22:33",
+ "voted_at": "2011-12-11 12:22:12",
"user": 10,
- "content_type": 21,
+ "content_type": 26,
"object_id": 20
}
},
@@ -5921,9 +6857,9 @@
"model": "askbot.vote",
"fields": {
"vote": 1,
- "voted_at": "2011-11-29 11:22:34",
+ "voted_at": "2011-12-11 12:22:14",
"user": 11,
- "content_type": 21,
+ "content_type": 26,
"object_id": 20
}
},
@@ -5932,9 +6868,9 @@
"model": "askbot.vote",
"fields": {
"vote": 1,
- "voted_at": "2011-11-29 11:22:35",
+ "voted_at": "2011-12-11 12:22:16",
"user": 12,
- "content_type": 21,
+ "content_type": 26,
"object_id": 20
}
},
@@ -5943,9 +6879,9 @@
"model": "askbot.vote",
"fields": {
"vote": 1,
- "voted_at": "2011-11-29 11:22:36",
+ "voted_at": "2011-12-11 12:22:17",
"user": 13,
- "content_type": 21,
+ "content_type": 26,
"object_id": 20
}
},
@@ -5954,9 +6890,9 @@
"model": "askbot.vote",
"fields": {
"vote": 1,
- "voted_at": "2011-11-29 11:22:37",
+ "voted_at": "2011-12-11 12:22:19",
"user": 14,
- "content_type": 21,
+ "content_type": 26,
"object_id": 20
}
},
@@ -5965,9 +6901,9 @@
"model": "askbot.vote",
"fields": {
"vote": 1,
- "voted_at": "2011-11-29 11:22:38",
+ "voted_at": "2011-12-11 12:22:22",
"user": 15,
- "content_type": 21,
+ "content_type": 26,
"object_id": 20
}
},
@@ -5976,9 +6912,9 @@
"model": "askbot.vote",
"fields": {
"vote": 1,
- "voted_at": "2011-11-29 11:22:39",
+ "voted_at": "2011-12-11 12:22:24",
"user": 16,
- "content_type": 21,
+ "content_type": 26,
"object_id": 20
}
},
@@ -5987,9 +6923,9 @@
"model": "askbot.vote",
"fields": {
"vote": 1,
- "voted_at": "2011-11-29 11:22:40",
+ "voted_at": "2011-12-11 12:22:26",
"user": 17,
- "content_type": 21,
+ "content_type": 26,
"object_id": 20
}
},
@@ -5998,9 +6934,9 @@
"model": "askbot.vote",
"fields": {
"vote": 1,
- "voted_at": "2011-11-29 11:22:41",
+ "voted_at": "2011-12-11 12:22:29",
"user": 18,
- "content_type": 21,
+ "content_type": 26,
"object_id": 20
}
},
@@ -6009,9 +6945,9 @@
"model": "askbot.vote",
"fields": {
"vote": 1,
- "voted_at": "2011-11-29 11:22:42",
+ "voted_at": "2011-12-11 12:22:31",
"user": 19,
- "content_type": 21,
+ "content_type": 26,
"object_id": 20
}
},
@@ -6020,9 +6956,9 @@
"model": "askbot.vote",
"fields": {
"vote": 1,
- "voted_at": "2011-11-29 11:22:44",
+ "voted_at": "2011-12-11 12:22:33",
"user": 20,
- "content_type": 21,
+ "content_type": 26,
"object_id": 20
}
},
@@ -6031,7 +6967,7 @@
"model": "askbot.vote",
"fields": {
"vote": 1,
- "voted_at": "2011-11-29 11:22:44",
+ "voted_at": "2011-12-11 12:22:33",
"user": 1,
"content_type": 16,
"object_id": 39
@@ -6042,7 +6978,7 @@
"model": "askbot.vote",
"fields": {
"vote": 1,
- "voted_at": "2011-11-29 11:22:44",
+ "voted_at": "2011-12-11 12:22:33",
"user": 1,
"content_type": 16,
"object_id": 40
@@ -6053,7 +6989,7 @@
"model": "askbot.vote",
"fields": {
"vote": 1,
- "voted_at": "2011-11-29 11:22:44",
+ "voted_at": "2011-12-11 12:22:34",
"user": 2,
"content_type": 16,
"object_id": 39
@@ -6064,7 +7000,7 @@
"model": "askbot.vote",
"fields": {
"vote": 1,
- "voted_at": "2011-11-29 11:22:44",
+ "voted_at": "2011-12-11 12:22:34",
"user": 2,
"content_type": 16,
"object_id": 40
@@ -6075,7 +7011,7 @@
"model": "askbot.vote",
"fields": {
"vote": 1,
- "voted_at": "2011-11-29 11:22:44",
+ "voted_at": "2011-12-11 12:22:34",
"user": 3,
"content_type": 16,
"object_id": 39
@@ -6086,7 +7022,7 @@
"model": "askbot.vote",
"fields": {
"vote": 1,
- "voted_at": "2011-11-29 11:22:44",
+ "voted_at": "2011-12-11 12:22:34",
"user": 3,
"content_type": 16,
"object_id": 40
@@ -6097,7 +7033,7 @@
"model": "askbot.vote",
"fields": {
"vote": 1,
- "voted_at": "2011-11-29 11:22:44",
+ "voted_at": "2011-12-11 12:22:34",
"user": 4,
"content_type": 16,
"object_id": 39
@@ -6108,7 +7044,7 @@
"model": "askbot.vote",
"fields": {
"vote": 1,
- "voted_at": "2011-11-29 11:22:44",
+ "voted_at": "2011-12-11 12:22:34",
"user": 4,
"content_type": 16,
"object_id": 40
@@ -6119,7 +7055,7 @@
"model": "askbot.vote",
"fields": {
"vote": 1,
- "voted_at": "2011-11-29 11:22:44",
+ "voted_at": "2011-12-11 12:22:34",
"user": 5,
"content_type": 16,
"object_id": 39
@@ -6130,7 +7066,7 @@
"model": "askbot.vote",
"fields": {
"vote": 1,
- "voted_at": "2011-11-29 11:22:44",
+ "voted_at": "2011-12-11 12:22:34",
"user": 5,
"content_type": 16,
"object_id": 40
@@ -6141,7 +7077,7 @@
"model": "askbot.vote",
"fields": {
"vote": 1,
- "voted_at": "2011-11-29 11:22:44",
+ "voted_at": "2011-12-11 12:22:34",
"user": 6,
"content_type": 16,
"object_id": 39
@@ -6152,7 +7088,7 @@
"model": "askbot.vote",
"fields": {
"vote": 1,
- "voted_at": "2011-11-29 11:22:44",
+ "voted_at": "2011-12-11 12:22:34",
"user": 6,
"content_type": 16,
"object_id": 40
@@ -6163,7 +7099,7 @@
"model": "askbot.vote",
"fields": {
"vote": 1,
- "voted_at": "2011-11-29 11:22:44",
+ "voted_at": "2011-12-11 12:22:34",
"user": 7,
"content_type": 16,
"object_id": 39
@@ -6174,7 +7110,7 @@
"model": "askbot.vote",
"fields": {
"vote": 1,
- "voted_at": "2011-11-29 11:22:44",
+ "voted_at": "2011-12-11 12:22:34",
"user": 7,
"content_type": 16,
"object_id": 40
@@ -6185,7 +7121,7 @@
"model": "askbot.vote",
"fields": {
"vote": 1,
- "voted_at": "2011-11-29 11:22:44",
+ "voted_at": "2011-12-11 12:22:34",
"user": 8,
"content_type": 16,
"object_id": 39
@@ -6196,7 +7132,7 @@
"model": "askbot.vote",
"fields": {
"vote": 1,
- "voted_at": "2011-11-29 11:22:44",
+ "voted_at": "2011-12-11 12:22:34",
"user": 8,
"content_type": 16,
"object_id": 40
@@ -6207,7 +7143,7 @@
"model": "askbot.vote",
"fields": {
"vote": 1,
- "voted_at": "2011-11-29 11:22:44",
+ "voted_at": "2011-12-11 12:22:34",
"user": 9,
"content_type": 16,
"object_id": 39
@@ -6218,7 +7154,7 @@
"model": "askbot.vote",
"fields": {
"vote": 1,
- "voted_at": "2011-11-29 11:22:44",
+ "voted_at": "2011-12-11 12:22:34",
"user": 9,
"content_type": 16,
"object_id": 40
@@ -6229,7 +7165,7 @@
"model": "askbot.vote",
"fields": {
"vote": 1,
- "voted_at": "2011-11-29 11:22:44",
+ "voted_at": "2011-12-11 12:22:34",
"user": 10,
"content_type": 16,
"object_id": 39
@@ -6240,7 +7176,7 @@
"model": "askbot.vote",
"fields": {
"vote": 1,
- "voted_at": "2011-11-29 11:22:44",
+ "voted_at": "2011-12-11 12:22:34",
"user": 10,
"content_type": 16,
"object_id": 40
@@ -6251,7 +7187,7 @@
"model": "askbot.vote",
"fields": {
"vote": 1,
- "voted_at": "2011-11-29 11:22:44",
+ "voted_at": "2011-12-11 12:22:34",
"user": 11,
"content_type": 16,
"object_id": 39
@@ -6262,7 +7198,7 @@
"model": "askbot.vote",
"fields": {
"vote": 1,
- "voted_at": "2011-11-29 11:22:44",
+ "voted_at": "2011-12-11 12:22:34",
"user": 11,
"content_type": 16,
"object_id": 40
@@ -6273,7 +7209,7 @@
"model": "askbot.vote",
"fields": {
"vote": 1,
- "voted_at": "2011-11-29 11:22:44",
+ "voted_at": "2011-12-11 12:22:34",
"user": 12,
"content_type": 16,
"object_id": 39
@@ -6284,7 +7220,7 @@
"model": "askbot.vote",
"fields": {
"vote": 1,
- "voted_at": "2011-11-29 11:22:44",
+ "voted_at": "2011-12-11 12:22:34",
"user": 12,
"content_type": 16,
"object_id": 40
@@ -6295,7 +7231,7 @@
"model": "askbot.vote",
"fields": {
"vote": 1,
- "voted_at": "2011-11-29 11:22:44",
+ "voted_at": "2011-12-11 12:22:34",
"user": 13,
"content_type": 16,
"object_id": 39
@@ -6306,7 +7242,7 @@
"model": "askbot.vote",
"fields": {
"vote": 1,
- "voted_at": "2011-11-29 11:22:44",
+ "voted_at": "2011-12-11 12:22:34",
"user": 13,
"content_type": 16,
"object_id": 40
@@ -6317,7 +7253,7 @@
"model": "askbot.vote",
"fields": {
"vote": 1,
- "voted_at": "2011-11-29 11:22:44",
+ "voted_at": "2011-12-11 12:22:34",
"user": 14,
"content_type": 16,
"object_id": 39
@@ -6328,7 +7264,7 @@
"model": "askbot.vote",
"fields": {
"vote": 1,
- "voted_at": "2011-11-29 11:22:44",
+ "voted_at": "2011-12-11 12:22:34",
"user": 14,
"content_type": 16,
"object_id": 40
@@ -6339,7 +7275,7 @@
"model": "askbot.vote",
"fields": {
"vote": 1,
- "voted_at": "2011-11-29 11:22:44",
+ "voted_at": "2011-12-11 12:22:34",
"user": 15,
"content_type": 16,
"object_id": 39
@@ -6350,7 +7286,7 @@
"model": "askbot.vote",
"fields": {
"vote": 1,
- "voted_at": "2011-11-29 11:22:44",
+ "voted_at": "2011-12-11 12:22:34",
"user": 15,
"content_type": 16,
"object_id": 40
@@ -6361,7 +7297,7 @@
"model": "askbot.vote",
"fields": {
"vote": 1,
- "voted_at": "2011-11-29 11:22:44",
+ "voted_at": "2011-12-11 12:22:34",
"user": 16,
"content_type": 16,
"object_id": 39
@@ -6372,7 +7308,7 @@
"model": "askbot.vote",
"fields": {
"vote": 1,
- "voted_at": "2011-11-29 11:22:44",
+ "voted_at": "2011-12-11 12:22:34",
"user": 16,
"content_type": 16,
"object_id": 40
@@ -6383,7 +7319,7 @@
"model": "askbot.vote",
"fields": {
"vote": 1,
- "voted_at": "2011-11-29 11:22:44",
+ "voted_at": "2011-12-11 12:22:34",
"user": 17,
"content_type": 16,
"object_id": 39
@@ -6394,7 +7330,7 @@
"model": "askbot.vote",
"fields": {
"vote": 1,
- "voted_at": "2011-11-29 11:22:44",
+ "voted_at": "2011-12-11 12:22:34",
"user": 17,
"content_type": 16,
"object_id": 40
@@ -6405,7 +7341,7 @@
"model": "askbot.vote",
"fields": {
"vote": 1,
- "voted_at": "2011-11-29 11:22:44",
+ "voted_at": "2011-12-11 12:22:34",
"user": 18,
"content_type": 16,
"object_id": 39
@@ -6416,7 +7352,7 @@
"model": "askbot.vote",
"fields": {
"vote": 1,
- "voted_at": "2011-11-29 11:22:44",
+ "voted_at": "2011-12-11 12:22:34",
"user": 18,
"content_type": 16,
"object_id": 40
@@ -6427,7 +7363,7 @@
"model": "askbot.vote",
"fields": {
"vote": 1,
- "voted_at": "2011-11-29 11:22:44",
+ "voted_at": "2011-12-11 12:22:34",
"user": 19,
"content_type": 16,
"object_id": 39
@@ -6438,7 +7374,7 @@
"model": "askbot.vote",
"fields": {
"vote": 1,
- "voted_at": "2011-11-29 11:22:44",
+ "voted_at": "2011-12-11 12:22:34",
"user": 19,
"content_type": 16,
"object_id": 40
@@ -6451,11 +7387,11 @@
"comment": "Accelerator photo sharing business school drop out ramen\n hustle crush it revenue traction platforms.",
"score": 19,
"object_id": 20,
- "added_at": "2011-11-29 11:22:43",
+ "added_at": "2011-12-11 12:22:32",
"offensive_flag_count": 0,
"html": "<p>Accelerator photo sharing business school drop out ramen\n hustle crush it revenue traction platforms.</p>\n",
"user": 20,
- "content_type": 21
+ "content_type": 26
}
},
{
@@ -6465,11 +7401,11 @@
"comment": "Accelerator photo sharing business school drop out ramen\n hustle crush it revenue traction platforms.",
"score": 19,
"object_id": 40,
- "added_at": "2011-11-29 11:22:42",
+ "added_at": "2011-12-11 12:22:31",
"offensive_flag_count": 0,
"html": "<p>Accelerator photo sharing business school drop out ramen\n hustle crush it revenue traction platforms.</p>\n",
"user": 20,
- "content_type": 17
+ "content_type": 22
}
},
{
@@ -6479,11 +7415,11 @@
"comment": "Main differentiators business model micro economics\n marketplace equity augmented reality human computer",
"score": 0,
"object_id": 20,
- "added_at": "2011-11-29 11:22:42",
+ "added_at": "2011-12-11 12:22:30",
"offensive_flag_count": 0,
"html": "<p>Main differentiators business model micro economics\n marketplace equity augmented reality human computer</p>\n",
"user": 19,
- "content_type": 21
+ "content_type": 26
}
},
{
@@ -6493,11 +7429,11 @@
"comment": "Main differentiators business model micro economics\n marketplace equity augmented reality human computer",
"score": 0,
"object_id": 40,
- "added_at": "2011-11-29 11:22:41",
+ "added_at": "2011-12-11 12:22:29",
"offensive_flag_count": 0,
"html": "<p>Main differentiators business model micro economics\n marketplace equity augmented reality human computer</p>\n",
"user": 19,
- "content_type": 17
+ "content_type": 22
}
},
{
@@ -6507,11 +7443,11 @@
"comment": "Main differentiators business model micro economics\n marketplace equity augmented reality human computer",
"score": 0,
"object_id": 20,
- "added_at": "2011-11-29 11:22:41",
+ "added_at": "2011-12-11 12:22:27",
"offensive_flag_count": 0,
"html": "<p>Main differentiators business model micro economics\n marketplace equity augmented reality human computer</p>\n",
"user": 18,
- "content_type": 21
+ "content_type": 26
}
},
{
@@ -6521,11 +7457,11 @@
"comment": "Main differentiators business model micro economics\n marketplace equity augmented reality human computer",
"score": 0,
"object_id": 40,
- "added_at": "2011-11-29 11:22:40",
+ "added_at": "2011-12-11 12:22:26",
"offensive_flag_count": 0,
"html": "<p>Main differentiators business model micro economics\n marketplace equity augmented reality human computer</p>\n",
"user": 18,
- "content_type": 17
+ "content_type": 22
}
},
{
@@ -6535,11 +7471,11 @@
"comment": "Main differentiators business model micro economics\n marketplace equity augmented reality human computer",
"score": 0,
"object_id": 20,
- "added_at": "2011-11-29 11:22:39",
+ "added_at": "2011-12-11 12:22:25",
"offensive_flag_count": 0,
"html": "<p>Main differentiators business model micro economics\n marketplace equity augmented reality human computer</p>\n",
"user": 17,
- "content_type": 21
+ "content_type": 26
}
},
{
@@ -6549,11 +7485,11 @@
"comment": "Main differentiators business model micro economics\n marketplace equity augmented reality human computer",
"score": 0,
"object_id": 40,
- "added_at": "2011-11-29 11:22:39",
+ "added_at": "2011-12-11 12:22:24",
"offensive_flag_count": 0,
"html": "<p>Main differentiators business model micro economics\n marketplace equity augmented reality human computer</p>\n",
"user": 17,
- "content_type": 17
+ "content_type": 22
}
},
{
@@ -6563,11 +7499,11 @@
"comment": "Main differentiators business model micro economics\n marketplace equity augmented reality human computer",
"score": 0,
"object_id": 20,
- "added_at": "2011-11-29 11:22:38",
+ "added_at": "2011-12-11 12:22:23",
"offensive_flag_count": 0,
"html": "<p>Main differentiators business model micro economics\n marketplace equity augmented reality human computer</p>\n",
"user": 16,
- "content_type": 21
+ "content_type": 26
}
},
{
@@ -6577,11 +7513,11 @@
"comment": "Main differentiators business model micro economics\n marketplace equity augmented reality human computer",
"score": 0,
"object_id": 40,
- "added_at": "2011-11-29 11:22:38",
+ "added_at": "2011-12-11 12:22:22",
"offensive_flag_count": 0,
"html": "<p>Main differentiators business model micro economics\n marketplace equity augmented reality human computer</p>\n",
"user": 16,
- "content_type": 17
+ "content_type": 22
}
},
{
@@ -6591,11 +7527,11 @@
"comment": "Main differentiators business model micro economics\n marketplace equity augmented reality human computer",
"score": 0,
"object_id": 20,
- "added_at": "2011-11-29 11:22:37",
+ "added_at": "2011-12-11 12:22:21",
"offensive_flag_count": 0,
"html": "<p>Main differentiators business model micro economics\n marketplace equity augmented reality human computer</p>\n",
"user": 15,
- "content_type": 21
+ "content_type": 26
}
},
{
@@ -6605,11 +7541,11 @@
"comment": "Main differentiators business model micro economics\n marketplace equity augmented reality human computer",
"score": 0,
"object_id": 40,
- "added_at": "2011-11-29 11:22:37",
+ "added_at": "2011-12-11 12:22:20",
"offensive_flag_count": 0,
"html": "<p>Main differentiators business model micro economics\n marketplace equity augmented reality human computer</p>\n",
"user": 15,
- "content_type": 17
+ "content_type": 22
}
},
{
@@ -6619,11 +7555,11 @@
"comment": "Main differentiators business model micro economics\n marketplace equity augmented reality human computer",
"score": 0,
"object_id": 20,
- "added_at": "2011-11-29 11:22:36",
+ "added_at": "2011-12-11 12:22:18",
"offensive_flag_count": 0,
"html": "<p>Main differentiators business model micro economics\n marketplace equity augmented reality human computer</p>\n",
"user": 14,
- "content_type": 21
+ "content_type": 26
}
},
{
@@ -6633,11 +7569,11 @@
"comment": "Main differentiators business model micro economics\n marketplace equity augmented reality human computer",
"score": 0,
"object_id": 40,
- "added_at": "2011-11-29 11:22:36",
+ "added_at": "2011-12-11 12:22:18",
"offensive_flag_count": 0,
"html": "<p>Main differentiators business model micro economics\n marketplace equity augmented reality human computer</p>\n",
"user": 14,
- "content_type": 17
+ "content_type": 22
}
},
{
@@ -6647,11 +7583,11 @@
"comment": "Main differentiators business model micro economics\n marketplace equity augmented reality human computer",
"score": 0,
"object_id": 20,
- "added_at": "2011-11-29 11:22:35",
+ "added_at": "2011-12-11 12:22:17",
"offensive_flag_count": 0,
"html": "<p>Main differentiators business model micro economics\n marketplace equity augmented reality human computer</p>\n",
"user": 13,
- "content_type": 21
+ "content_type": 26
}
},
{
@@ -6661,11 +7597,11 @@
"comment": "Main differentiators business model micro economics\n marketplace equity augmented reality human computer",
"score": 0,
"object_id": 40,
- "added_at": "2011-11-29 11:22:35",
+ "added_at": "2011-12-11 12:22:16",
"offensive_flag_count": 0,
"html": "<p>Main differentiators business model micro economics\n marketplace equity augmented reality human computer</p>\n",
"user": 13,
- "content_type": 17
+ "content_type": 22
}
},
{
@@ -6675,11 +7611,11 @@
"comment": "Main differentiators business model micro economics\n marketplace equity augmented reality human computer",
"score": 0,
"object_id": 20,
- "added_at": "2011-11-29 11:22:34",
+ "added_at": "2011-12-11 12:22:15",
"offensive_flag_count": 0,
"html": "<p>Main differentiators business model micro economics\n marketplace equity augmented reality human computer</p>\n",
"user": 12,
- "content_type": 21
+ "content_type": 26
}
},
{
@@ -6689,11 +7625,11 @@
"comment": "Main differentiators business model micro economics\n marketplace equity augmented reality human computer",
"score": 0,
"object_id": 40,
- "added_at": "2011-11-29 11:22:34",
+ "added_at": "2011-12-11 12:22:14",
"offensive_flag_count": 0,
"html": "<p>Main differentiators business model micro economics\n marketplace equity augmented reality human computer</p>\n",
"user": 12,
- "content_type": 17
+ "content_type": 22
}
},
{
@@ -6703,11 +7639,11 @@
"comment": "Main differentiators business model micro economics\n marketplace equity augmented reality human computer",
"score": 0,
"object_id": 20,
- "added_at": "2011-11-29 11:22:33",
+ "added_at": "2011-12-11 12:22:13",
"offensive_flag_count": 0,
"html": "<p>Main differentiators business model micro economics\n marketplace equity augmented reality human computer</p>\n",
"user": 11,
- "content_type": 21
+ "content_type": 26
}
},
{
@@ -6717,11 +7653,11 @@
"comment": "Main differentiators business model micro economics\n marketplace equity augmented reality human computer",
"score": 0,
"object_id": 40,
- "added_at": "2011-11-29 11:22:33",
+ "added_at": "2011-12-11 12:22:12",
"offensive_flag_count": 0,
"html": "<p>Main differentiators business model micro economics\n marketplace equity augmented reality human computer</p>\n",
"user": 11,
- "content_type": 17
+ "content_type": 22
}
},
{
@@ -6731,11 +7667,11 @@
"comment": "Main differentiators business model micro economics\n marketplace equity augmented reality human computer",
"score": 0,
"object_id": 20,
- "added_at": "2011-11-29 11:22:33",
+ "added_at": "2011-12-11 12:22:11",
"offensive_flag_count": 0,
"html": "<p>Main differentiators business model micro economics\n marketplace equity augmented reality human computer</p>\n",
"user": 10,
- "content_type": 21
+ "content_type": 26
}
},
{
@@ -6745,11 +7681,11 @@
"comment": "Main differentiators business model micro economics\n marketplace equity augmented reality human computer",
"score": 0,
"object_id": 40,
- "added_at": "2011-11-29 11:22:32",
+ "added_at": "2011-12-11 12:22:11",
"offensive_flag_count": 0,
"html": "<p>Main differentiators business model micro economics\n marketplace equity augmented reality human computer</p>\n",
"user": 10,
- "content_type": 17
+ "content_type": 22
}
},
{
@@ -6759,11 +7695,11 @@
"comment": "Main differentiators business model micro economics\n marketplace equity augmented reality human computer",
"score": 0,
"object_id": 20,
- "added_at": "2011-11-29 11:22:32",
+ "added_at": "2011-12-11 12:22:10",
"offensive_flag_count": 0,
"html": "<p>Main differentiators business model micro economics\n marketplace equity augmented reality human computer</p>\n",
"user": 9,
- "content_type": 21
+ "content_type": 26
}
},
{
@@ -6773,11 +7709,11 @@
"comment": "Main differentiators business model micro economics\n marketplace equity augmented reality human computer",
"score": 0,
"object_id": 40,
- "added_at": "2011-11-29 11:22:32",
+ "added_at": "2011-12-11 12:22:09",
"offensive_flag_count": 0,
"html": "<p>Main differentiators business model micro economics\n marketplace equity augmented reality human computer</p>\n",
"user": 9,
- "content_type": 17
+ "content_type": 22
}
},
{
@@ -6787,11 +7723,11 @@
"comment": "Main differentiators business model micro economics\n marketplace equity augmented reality human computer",
"score": 0,
"object_id": 20,
- "added_at": "2011-11-29 11:22:31",
+ "added_at": "2011-12-11 12:22:09",
"offensive_flag_count": 0,
"html": "<p>Main differentiators business model micro economics\n marketplace equity augmented reality human computer</p>\n",
"user": 8,
- "content_type": 21
+ "content_type": 26
}
},
{
@@ -6801,11 +7737,11 @@
"comment": "Main differentiators business model micro economics\n marketplace equity augmented reality human computer",
"score": 0,
"object_id": 40,
- "added_at": "2011-11-29 11:22:31",
+ "added_at": "2011-12-11 12:22:08",
"offensive_flag_count": 0,
"html": "<p>Main differentiators business model micro economics\n marketplace equity augmented reality human computer</p>\n",
"user": 8,
- "content_type": 17
+ "content_type": 22
}
},
{
@@ -6815,11 +7751,11 @@
"comment": "Main differentiators business model micro economics\n marketplace equity augmented reality human computer",
"score": 0,
"object_id": 20,
- "added_at": "2011-11-29 11:22:31",
+ "added_at": "2011-12-11 12:22:07",
"offensive_flag_count": 0,
"html": "<p>Main differentiators business model micro economics\n marketplace equity augmented reality human computer</p>\n",
"user": 7,
- "content_type": 21
+ "content_type": 26
}
},
{
@@ -6829,11 +7765,11 @@
"comment": "Main differentiators business model micro economics\n marketplace equity augmented reality human computer",
"score": 0,
"object_id": 40,
- "added_at": "2011-11-29 11:22:30",
+ "added_at": "2011-12-11 12:22:06",
"offensive_flag_count": 0,
"html": "<p>Main differentiators business model micro economics\n marketplace equity augmented reality human computer</p>\n",
"user": 7,
- "content_type": 17
+ "content_type": 22
}
},
{
@@ -6843,11 +7779,11 @@
"comment": "Main differentiators business model micro economics\n marketplace equity augmented reality human computer",
"score": 0,
"object_id": 20,
- "added_at": "2011-11-29 11:22:30",
+ "added_at": "2011-12-11 12:22:06",
"offensive_flag_count": 0,
"html": "<p>Main differentiators business model micro economics\n marketplace equity augmented reality human computer</p>\n",
"user": 6,
- "content_type": 21
+ "content_type": 26
}
},
{
@@ -6857,11 +7793,11 @@
"comment": "Main differentiators business model micro economics\n marketplace equity augmented reality human computer",
"score": 0,
"object_id": 40,
- "added_at": "2011-11-29 11:22:30",
+ "added_at": "2011-12-11 12:22:05",
"offensive_flag_count": 0,
"html": "<p>Main differentiators business model micro economics\n marketplace equity augmented reality human computer</p>\n",
"user": 6,
- "content_type": 17
+ "content_type": 22
}
},
{
@@ -6871,11 +7807,11 @@
"comment": "Main differentiators business model micro economics\n marketplace equity augmented reality human computer",
"score": 0,
"object_id": 20,
- "added_at": "2011-11-29 11:22:30",
+ "added_at": "2011-12-11 12:22:04",
"offensive_flag_count": 0,
"html": "<p>Main differentiators business model micro economics\n marketplace equity augmented reality human computer</p>\n",
"user": 5,
- "content_type": 21
+ "content_type": 26
}
},
{
@@ -6885,11 +7821,11 @@
"comment": "Main differentiators business model micro economics\n marketplace equity augmented reality human computer",
"score": 0,
"object_id": 40,
- "added_at": "2011-11-29 11:22:29",
+ "added_at": "2011-12-11 12:22:04",
"offensive_flag_count": 0,
"html": "<p>Main differentiators business model micro economics\n marketplace equity augmented reality human computer</p>\n",
"user": 5,
- "content_type": 17
+ "content_type": 22
}
},
{
@@ -6899,11 +7835,11 @@
"comment": "Main differentiators business model micro economics\n marketplace equity augmented reality human computer",
"score": 0,
"object_id": 20,
- "added_at": "2011-11-29 11:22:29",
+ "added_at": "2011-12-11 12:22:04",
"offensive_flag_count": 0,
"html": "<p>Main differentiators business model micro economics\n marketplace equity augmented reality human computer</p>\n",
"user": 4,
- "content_type": 21
+ "content_type": 26
}
},
{
@@ -6913,11 +7849,11 @@
"comment": "Main differentiators business model micro economics\n marketplace equity augmented reality human computer",
"score": 0,
"object_id": 40,
- "added_at": "2011-11-29 11:22:29",
+ "added_at": "2011-12-11 12:22:03",
"offensive_flag_count": 0,
"html": "<p>Main differentiators business model micro economics\n marketplace equity augmented reality human computer</p>\n",
"user": 4,
- "content_type": 17
+ "content_type": 22
}
},
{
@@ -6927,11 +7863,11 @@
"comment": "Main differentiators business model micro economics\n marketplace equity augmented reality human computer",
"score": 0,
"object_id": 20,
- "added_at": "2011-11-29 11:22:29",
+ "added_at": "2011-12-11 12:22:03",
"offensive_flag_count": 0,
"html": "<p>Main differentiators business model micro economics\n marketplace equity augmented reality human computer</p>\n",
"user": 3,
- "content_type": 21
+ "content_type": 26
}
},
{
@@ -6941,11 +7877,11 @@
"comment": "Main differentiators business model micro economics\n marketplace equity augmented reality human computer",
"score": 0,
"object_id": 40,
- "added_at": "2011-11-29 11:22:29",
+ "added_at": "2011-12-11 12:22:02",
"offensive_flag_count": 0,
"html": "<p>Main differentiators business model micro economics\n marketplace equity augmented reality human computer</p>\n",
"user": 3,
- "content_type": 17
+ "content_type": 22
}
},
{
@@ -6955,11 +7891,11 @@
"comment": "Main differentiators business model micro economics\n marketplace equity augmented reality human computer",
"score": 0,
"object_id": 20,
- "added_at": "2011-11-29 11:22:28",
+ "added_at": "2011-12-11 12:22:02",
"offensive_flag_count": 0,
"html": "<p>Main differentiators business model micro economics\n marketplace equity augmented reality human computer</p>\n",
"user": 2,
- "content_type": 21
+ "content_type": 26
}
},
{
@@ -6969,11 +7905,11 @@
"comment": "Main differentiators business model micro economics\n marketplace equity augmented reality human computer",
"score": 0,
"object_id": 40,
- "added_at": "2011-11-29 11:22:28",
+ "added_at": "2011-12-11 12:22:01",
"offensive_flag_count": 0,
"html": "<p>Main differentiators business model micro economics\n marketplace equity augmented reality human computer</p>\n",
"user": 2,
- "content_type": 17
+ "content_type": 22
}
},
{
@@ -6983,11 +7919,11 @@
"comment": "Main differentiators business model micro economics\n marketplace equity augmented reality human computer",
"score": 0,
"object_id": 20,
- "added_at": "2011-11-29 11:22:28",
+ "added_at": "2011-12-11 12:22:01",
"offensive_flag_count": 0,
"html": "<p>Main differentiators business model micro economics\n marketplace equity augmented reality human computer</p>\n",
"user": 1,
- "content_type": 21
+ "content_type": 26
}
},
{
@@ -6997,11 +7933,3006 @@
"comment": "Main differentiators business model micro economics\n marketplace equity augmented reality human computer",
"score": 0,
"object_id": 40,
- "added_at": "2011-11-29 11:22:28",
+ "added_at": "2011-12-11 12:22:01",
"offensive_flag_count": 0,
"html": "<p>Main differentiators business model micro economics\n marketplace equity augmented reality human computer</p>\n",
"user": 1,
- "content_type": 17
+ "content_type": 22
+ }
+ },
+ {
+ "pk": 1,
+ "model": "askbot.tag",
+ "fields": {
+ "name": "tag-1-0",
+ "deleted": false,
+ "created_by": 1,
+ "deleted_by": null,
+ "used_count": 1,
+ "deleted_at": null
+ }
+ },
+ {
+ "pk": 2,
+ "model": "askbot.tag",
+ "fields": {
+ "name": "tag-1-1",
+ "deleted": false,
+ "created_by": 1,
+ "deleted_by": null,
+ "used_count": 1,
+ "deleted_at": null
+ }
+ },
+ {
+ "pk": 20,
+ "model": "askbot.tag",
+ "fields": {
+ "name": "tag-10-0",
+ "deleted": false,
+ "created_by": 10,
+ "deleted_by": null,
+ "used_count": 1,
+ "deleted_at": null
+ }
+ },
+ {
+ "pk": 19,
+ "model": "askbot.tag",
+ "fields": {
+ "name": "tag-10-1",
+ "deleted": false,
+ "created_by": 10,
+ "deleted_by": null,
+ "used_count": 1,
+ "deleted_at": null
+ }
+ },
+ {
+ "pk": 21,
+ "model": "askbot.tag",
+ "fields": {
+ "name": "tag-11-0",
+ "deleted": false,
+ "created_by": 11,
+ "deleted_by": null,
+ "used_count": 1,
+ "deleted_at": null
+ }
+ },
+ {
+ "pk": 22,
+ "model": "askbot.tag",
+ "fields": {
+ "name": "tag-11-1",
+ "deleted": false,
+ "created_by": 11,
+ "deleted_by": null,
+ "used_count": 1,
+ "deleted_at": null
+ }
+ },
+ {
+ "pk": 24,
+ "model": "askbot.tag",
+ "fields": {
+ "name": "tag-12-0",
+ "deleted": false,
+ "created_by": 12,
+ "deleted_by": null,
+ "used_count": 1,
+ "deleted_at": null
+ }
+ },
+ {
+ "pk": 23,
+ "model": "askbot.tag",
+ "fields": {
+ "name": "tag-12-1",
+ "deleted": false,
+ "created_by": 12,
+ "deleted_by": null,
+ "used_count": 1,
+ "deleted_at": null
+ }
+ },
+ {
+ "pk": 25,
+ "model": "askbot.tag",
+ "fields": {
+ "name": "tag-13-0",
+ "deleted": false,
+ "created_by": 13,
+ "deleted_by": null,
+ "used_count": 1,
+ "deleted_at": null
+ }
+ },
+ {
+ "pk": 26,
+ "model": "askbot.tag",
+ "fields": {
+ "name": "tag-13-1",
+ "deleted": false,
+ "created_by": 13,
+ "deleted_by": null,
+ "used_count": 1,
+ "deleted_at": null
+ }
+ },
+ {
+ "pk": 28,
+ "model": "askbot.tag",
+ "fields": {
+ "name": "tag-14-0",
+ "deleted": false,
+ "created_by": 14,
+ "deleted_by": null,
+ "used_count": 1,
+ "deleted_at": null
+ }
+ },
+ {
+ "pk": 27,
+ "model": "askbot.tag",
+ "fields": {
+ "name": "tag-14-1",
+ "deleted": false,
+ "created_by": 14,
+ "deleted_by": null,
+ "used_count": 1,
+ "deleted_at": null
+ }
+ },
+ {
+ "pk": 29,
+ "model": "askbot.tag",
+ "fields": {
+ "name": "tag-15-0",
+ "deleted": false,
+ "created_by": 15,
+ "deleted_by": null,
+ "used_count": 1,
+ "deleted_at": null
+ }
+ },
+ {
+ "pk": 30,
+ "model": "askbot.tag",
+ "fields": {
+ "name": "tag-15-1",
+ "deleted": false,
+ "created_by": 15,
+ "deleted_by": null,
+ "used_count": 1,
+ "deleted_at": null
+ }
+ },
+ {
+ "pk": 32,
+ "model": "askbot.tag",
+ "fields": {
+ "name": "tag-16-0",
+ "deleted": false,
+ "created_by": 16,
+ "deleted_by": null,
+ "used_count": 1,
+ "deleted_at": null
+ }
+ },
+ {
+ "pk": 31,
+ "model": "askbot.tag",
+ "fields": {
+ "name": "tag-16-1",
+ "deleted": false,
+ "created_by": 16,
+ "deleted_by": null,
+ "used_count": 1,
+ "deleted_at": null
+ }
+ },
+ {
+ "pk": 33,
+ "model": "askbot.tag",
+ "fields": {
+ "name": "tag-17-0",
+ "deleted": false,
+ "created_by": 17,
+ "deleted_by": null,
+ "used_count": 1,
+ "deleted_at": null
+ }
+ },
+ {
+ "pk": 34,
+ "model": "askbot.tag",
+ "fields": {
+ "name": "tag-17-1",
+ "deleted": false,
+ "created_by": 17,
+ "deleted_by": null,
+ "used_count": 1,
+ "deleted_at": null
+ }
+ },
+ {
+ "pk": 36,
+ "model": "askbot.tag",
+ "fields": {
+ "name": "tag-18-0",
+ "deleted": false,
+ "created_by": 18,
+ "deleted_by": null,
+ "used_count": 1,
+ "deleted_at": null
+ }
+ },
+ {
+ "pk": 35,
+ "model": "askbot.tag",
+ "fields": {
+ "name": "tag-18-1",
+ "deleted": false,
+ "created_by": 18,
+ "deleted_by": null,
+ "used_count": 1,
+ "deleted_at": null
+ }
+ },
+ {
+ "pk": 37,
+ "model": "askbot.tag",
+ "fields": {
+ "name": "tag-19-0",
+ "deleted": false,
+ "created_by": 19,
+ "deleted_by": null,
+ "used_count": 1,
+ "deleted_at": null
+ }
+ },
+ {
+ "pk": 38,
+ "model": "askbot.tag",
+ "fields": {
+ "name": "tag-19-1",
+ "deleted": false,
+ "created_by": 19,
+ "deleted_by": null,
+ "used_count": 1,
+ "deleted_at": null
+ }
+ },
+ {
+ "pk": 4,
+ "model": "askbot.tag",
+ "fields": {
+ "name": "tag-2-0",
+ "deleted": false,
+ "created_by": 2,
+ "deleted_by": null,
+ "used_count": 1,
+ "deleted_at": null
+ }
+ },
+ {
+ "pk": 3,
+ "model": "askbot.tag",
+ "fields": {
+ "name": "tag-2-1",
+ "deleted": false,
+ "created_by": 2,
+ "deleted_by": null,
+ "used_count": 1,
+ "deleted_at": null
+ }
+ },
+ {
+ "pk": 39,
+ "model": "askbot.tag",
+ "fields": {
+ "name": "tag-20-0",
+ "deleted": false,
+ "created_by": 20,
+ "deleted_by": null,
+ "used_count": 1,
+ "deleted_at": null
+ }
+ },
+ {
+ "pk": 40,
+ "model": "askbot.tag",
+ "fields": {
+ "name": "tag-20-1",
+ "deleted": false,
+ "created_by": 20,
+ "deleted_by": null,
+ "used_count": 1,
+ "deleted_at": null
+ }
+ },
+ {
+ "pk": 42,
+ "model": "askbot.tag",
+ "fields": {
+ "name": "tag-21-0",
+ "deleted": false,
+ "created_by": 21,
+ "deleted_by": null,
+ "used_count": 1,
+ "deleted_at": null
+ }
+ },
+ {
+ "pk": 41,
+ "model": "askbot.tag",
+ "fields": {
+ "name": "tag-21-1",
+ "deleted": false,
+ "created_by": 21,
+ "deleted_by": null,
+ "used_count": 1,
+ "deleted_at": null
+ }
+ },
+ {
+ "pk": 43,
+ "model": "askbot.tag",
+ "fields": {
+ "name": "tag-22-0",
+ "deleted": false,
+ "created_by": 22,
+ "deleted_by": null,
+ "used_count": 1,
+ "deleted_at": null
+ }
+ },
+ {
+ "pk": 44,
+ "model": "askbot.tag",
+ "fields": {
+ "name": "tag-22-1",
+ "deleted": false,
+ "created_by": 22,
+ "deleted_by": null,
+ "used_count": 1,
+ "deleted_at": null
+ }
+ },
+ {
+ "pk": 46,
+ "model": "askbot.tag",
+ "fields": {
+ "name": "tag-23-0",
+ "deleted": false,
+ "created_by": 23,
+ "deleted_by": null,
+ "used_count": 1,
+ "deleted_at": null
+ }
+ },
+ {
+ "pk": 45,
+ "model": "askbot.tag",
+ "fields": {
+ "name": "tag-23-1",
+ "deleted": false,
+ "created_by": 23,
+ "deleted_by": null,
+ "used_count": 1,
+ "deleted_at": null
+ }
+ },
+ {
+ "pk": 47,
+ "model": "askbot.tag",
+ "fields": {
+ "name": "tag-24-0",
+ "deleted": false,
+ "created_by": 24,
+ "deleted_by": null,
+ "used_count": 1,
+ "deleted_at": null
+ }
+ },
+ {
+ "pk": 48,
+ "model": "askbot.tag",
+ "fields": {
+ "name": "tag-24-1",
+ "deleted": false,
+ "created_by": 24,
+ "deleted_by": null,
+ "used_count": 1,
+ "deleted_at": null
+ }
+ },
+ {
+ "pk": 50,
+ "model": "askbot.tag",
+ "fields": {
+ "name": "tag-25-0",
+ "deleted": false,
+ "created_by": 25,
+ "deleted_by": null,
+ "used_count": 1,
+ "deleted_at": null
+ }
+ },
+ {
+ "pk": 49,
+ "model": "askbot.tag",
+ "fields": {
+ "name": "tag-25-1",
+ "deleted": false,
+ "created_by": 25,
+ "deleted_by": null,
+ "used_count": 1,
+ "deleted_at": null
+ }
+ },
+ {
+ "pk": 51,
+ "model": "askbot.tag",
+ "fields": {
+ "name": "tag-26-0",
+ "deleted": false,
+ "created_by": 26,
+ "deleted_by": null,
+ "used_count": 1,
+ "deleted_at": null
+ }
+ },
+ {
+ "pk": 52,
+ "model": "askbot.tag",
+ "fields": {
+ "name": "tag-26-1",
+ "deleted": false,
+ "created_by": 26,
+ "deleted_by": null,
+ "used_count": 1,
+ "deleted_at": null
+ }
+ },
+ {
+ "pk": 54,
+ "model": "askbot.tag",
+ "fields": {
+ "name": "tag-27-0",
+ "deleted": false,
+ "created_by": 27,
+ "deleted_by": null,
+ "used_count": 1,
+ "deleted_at": null
+ }
+ },
+ {
+ "pk": 53,
+ "model": "askbot.tag",
+ "fields": {
+ "name": "tag-27-1",
+ "deleted": false,
+ "created_by": 27,
+ "deleted_by": null,
+ "used_count": 1,
+ "deleted_at": null
+ }
+ },
+ {
+ "pk": 55,
+ "model": "askbot.tag",
+ "fields": {
+ "name": "tag-28-0",
+ "deleted": false,
+ "created_by": 28,
+ "deleted_by": null,
+ "used_count": 1,
+ "deleted_at": null
+ }
+ },
+ {
+ "pk": 56,
+ "model": "askbot.tag",
+ "fields": {
+ "name": "tag-28-1",
+ "deleted": false,
+ "created_by": 28,
+ "deleted_by": null,
+ "used_count": 1,
+ "deleted_at": null
+ }
+ },
+ {
+ "pk": 58,
+ "model": "askbot.tag",
+ "fields": {
+ "name": "tag-29-0",
+ "deleted": false,
+ "created_by": 29,
+ "deleted_by": null,
+ "used_count": 1,
+ "deleted_at": null
+ }
+ },
+ {
+ "pk": 57,
+ "model": "askbot.tag",
+ "fields": {
+ "name": "tag-29-1",
+ "deleted": false,
+ "created_by": 29,
+ "deleted_by": null,
+ "used_count": 1,
+ "deleted_at": null
+ }
+ },
+ {
+ "pk": 5,
+ "model": "askbot.tag",
+ "fields": {
+ "name": "tag-3-0",
+ "deleted": false,
+ "created_by": 3,
+ "deleted_by": null,
+ "used_count": 1,
+ "deleted_at": null
+ }
+ },
+ {
+ "pk": 6,
+ "model": "askbot.tag",
+ "fields": {
+ "name": "tag-3-1",
+ "deleted": false,
+ "created_by": 3,
+ "deleted_by": null,
+ "used_count": 1,
+ "deleted_at": null
+ }
+ },
+ {
+ "pk": 60,
+ "model": "askbot.tag",
+ "fields": {
+ "name": "tag-30-0",
+ "deleted": false,
+ "created_by": 30,
+ "deleted_by": null,
+ "used_count": 1,
+ "deleted_at": null
+ }
+ },
+ {
+ "pk": 59,
+ "model": "askbot.tag",
+ "fields": {
+ "name": "tag-30-1",
+ "deleted": false,
+ "created_by": 30,
+ "deleted_by": null,
+ "used_count": 1,
+ "deleted_at": null
+ }
+ },
+ {
+ "pk": 61,
+ "model": "askbot.tag",
+ "fields": {
+ "name": "tag-31-0",
+ "deleted": false,
+ "created_by": 31,
+ "deleted_by": null,
+ "used_count": 1,
+ "deleted_at": null
+ }
+ },
+ {
+ "pk": 62,
+ "model": "askbot.tag",
+ "fields": {
+ "name": "tag-31-1",
+ "deleted": false,
+ "created_by": 31,
+ "deleted_by": null,
+ "used_count": 1,
+ "deleted_at": null
+ }
+ },
+ {
+ "pk": 64,
+ "model": "askbot.tag",
+ "fields": {
+ "name": "tag-32-0",
+ "deleted": false,
+ "created_by": 32,
+ "deleted_by": null,
+ "used_count": 1,
+ "deleted_at": null
+ }
+ },
+ {
+ "pk": 63,
+ "model": "askbot.tag",
+ "fields": {
+ "name": "tag-32-1",
+ "deleted": false,
+ "created_by": 32,
+ "deleted_by": null,
+ "used_count": 1,
+ "deleted_at": null
+ }
+ },
+ {
+ "pk": 65,
+ "model": "askbot.tag",
+ "fields": {
+ "name": "tag-33-0",
+ "deleted": false,
+ "created_by": 33,
+ "deleted_by": null,
+ "used_count": 1,
+ "deleted_at": null
+ }
+ },
+ {
+ "pk": 66,
+ "model": "askbot.tag",
+ "fields": {
+ "name": "tag-33-1",
+ "deleted": false,
+ "created_by": 33,
+ "deleted_by": null,
+ "used_count": 1,
+ "deleted_at": null
+ }
+ },
+ {
+ "pk": 68,
+ "model": "askbot.tag",
+ "fields": {
+ "name": "tag-34-0",
+ "deleted": false,
+ "created_by": 34,
+ "deleted_by": null,
+ "used_count": 1,
+ "deleted_at": null
+ }
+ },
+ {
+ "pk": 67,
+ "model": "askbot.tag",
+ "fields": {
+ "name": "tag-34-1",
+ "deleted": false,
+ "created_by": 34,
+ "deleted_by": null,
+ "used_count": 1,
+ "deleted_at": null
+ }
+ },
+ {
+ "pk": 69,
+ "model": "askbot.tag",
+ "fields": {
+ "name": "tag-35-0",
+ "deleted": false,
+ "created_by": 35,
+ "deleted_by": null,
+ "used_count": 1,
+ "deleted_at": null
+ }
+ },
+ {
+ "pk": 70,
+ "model": "askbot.tag",
+ "fields": {
+ "name": "tag-35-1",
+ "deleted": false,
+ "created_by": 35,
+ "deleted_by": null,
+ "used_count": 1,
+ "deleted_at": null
+ }
+ },
+ {
+ "pk": 72,
+ "model": "askbot.tag",
+ "fields": {
+ "name": "tag-36-0",
+ "deleted": false,
+ "created_by": 36,
+ "deleted_by": null,
+ "used_count": 1,
+ "deleted_at": null
+ }
+ },
+ {
+ "pk": 71,
+ "model": "askbot.tag",
+ "fields": {
+ "name": "tag-36-1",
+ "deleted": false,
+ "created_by": 36,
+ "deleted_by": null,
+ "used_count": 1,
+ "deleted_at": null
+ }
+ },
+ {
+ "pk": 73,
+ "model": "askbot.tag",
+ "fields": {
+ "name": "tag-37-0",
+ "deleted": false,
+ "created_by": 37,
+ "deleted_by": null,
+ "used_count": 1,
+ "deleted_at": null
+ }
+ },
+ {
+ "pk": 74,
+ "model": "askbot.tag",
+ "fields": {
+ "name": "tag-37-1",
+ "deleted": false,
+ "created_by": 37,
+ "deleted_by": null,
+ "used_count": 1,
+ "deleted_at": null
+ }
+ },
+ {
+ "pk": 76,
+ "model": "askbot.tag",
+ "fields": {
+ "name": "tag-38-0",
+ "deleted": false,
+ "created_by": 38,
+ "deleted_by": null,
+ "used_count": 1,
+ "deleted_at": null
+ }
+ },
+ {
+ "pk": 75,
+ "model": "askbot.tag",
+ "fields": {
+ "name": "tag-38-1",
+ "deleted": false,
+ "created_by": 38,
+ "deleted_by": null,
+ "used_count": 1,
+ "deleted_at": null
+ }
+ },
+ {
+ "pk": 77,
+ "model": "askbot.tag",
+ "fields": {
+ "name": "tag-39-0",
+ "deleted": false,
+ "created_by": 39,
+ "deleted_by": null,
+ "used_count": 1,
+ "deleted_at": null
+ }
+ },
+ {
+ "pk": 78,
+ "model": "askbot.tag",
+ "fields": {
+ "name": "tag-39-1",
+ "deleted": false,
+ "created_by": 39,
+ "deleted_by": null,
+ "used_count": 1,
+ "deleted_at": null
+ }
+ },
+ {
+ "pk": 8,
+ "model": "askbot.tag",
+ "fields": {
+ "name": "tag-4-0",
+ "deleted": false,
+ "created_by": 4,
+ "deleted_by": null,
+ "used_count": 1,
+ "deleted_at": null
+ }
+ },
+ {
+ "pk": 7,
+ "model": "askbot.tag",
+ "fields": {
+ "name": "tag-4-1",
+ "deleted": false,
+ "created_by": 4,
+ "deleted_by": null,
+ "used_count": 1,
+ "deleted_at": null
+ }
+ },
+ {
+ "pk": 79,
+ "model": "askbot.tag",
+ "fields": {
+ "name": "tag-40-0",
+ "deleted": false,
+ "created_by": 40,
+ "deleted_by": null,
+ "used_count": 1,
+ "deleted_at": null
+ }
+ },
+ {
+ "pk": 80,
+ "model": "askbot.tag",
+ "fields": {
+ "name": "tag-40-1",
+ "deleted": false,
+ "created_by": 40,
+ "deleted_by": null,
+ "used_count": 1,
+ "deleted_at": null
+ }
+ },
+ {
+ "pk": 9,
+ "model": "askbot.tag",
+ "fields": {
+ "name": "tag-5-0",
+ "deleted": false,
+ "created_by": 5,
+ "deleted_by": null,
+ "used_count": 1,
+ "deleted_at": null
+ }
+ },
+ {
+ "pk": 10,
+ "model": "askbot.tag",
+ "fields": {
+ "name": "tag-5-1",
+ "deleted": false,
+ "created_by": 5,
+ "deleted_by": null,
+ "used_count": 1,
+ "deleted_at": null
+ }
+ },
+ {
+ "pk": 12,
+ "model": "askbot.tag",
+ "fields": {
+ "name": "tag-6-0",
+ "deleted": false,
+ "created_by": 6,
+ "deleted_by": null,
+ "used_count": 1,
+ "deleted_at": null
+ }
+ },
+ {
+ "pk": 11,
+ "model": "askbot.tag",
+ "fields": {
+ "name": "tag-6-1",
+ "deleted": false,
+ "created_by": 6,
+ "deleted_by": null,
+ "used_count": 1,
+ "deleted_at": null
+ }
+ },
+ {
+ "pk": 13,
+ "model": "askbot.tag",
+ "fields": {
+ "name": "tag-7-0",
+ "deleted": false,
+ "created_by": 7,
+ "deleted_by": null,
+ "used_count": 1,
+ "deleted_at": null
+ }
+ },
+ {
+ "pk": 14,
+ "model": "askbot.tag",
+ "fields": {
+ "name": "tag-7-1",
+ "deleted": false,
+ "created_by": 7,
+ "deleted_by": null,
+ "used_count": 1,
+ "deleted_at": null
+ }
+ },
+ {
+ "pk": 16,
+ "model": "askbot.tag",
+ "fields": {
+ "name": "tag-8-0",
+ "deleted": false,
+ "created_by": 8,
+ "deleted_by": null,
+ "used_count": 1,
+ "deleted_at": null
+ }
+ },
+ {
+ "pk": 15,
+ "model": "askbot.tag",
+ "fields": {
+ "name": "tag-8-1",
+ "deleted": false,
+ "created_by": 8,
+ "deleted_by": null,
+ "used_count": 1,
+ "deleted_at": null
+ }
+ },
+ {
+ "pk": 17,
+ "model": "askbot.tag",
+ "fields": {
+ "name": "tag-9-0",
+ "deleted": false,
+ "created_by": 9,
+ "deleted_by": null,
+ "used_count": 1,
+ "deleted_at": null
+ }
+ },
+ {
+ "pk": 18,
+ "model": "askbot.tag",
+ "fields": {
+ "name": "tag-9-1",
+ "deleted": false,
+ "created_by": 9,
+ "deleted_by": null,
+ "used_count": 1,
+ "deleted_at": null
+ }
+ },
+ {
+ "pk": 61,
+ "model": "askbot.postrevision",
+ "fields": {
+ "is_anonymous": false,
+ "author": 40,
+ "tagnames": "tag-40-0 tag-40-1",
+ "text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
+ "title": "Test question title No.40",
+ "question": 40,
+ "revised_at": "2011-12-11 12:22:34",
+ "summary": "EDITED",
+ "revision_type": 1,
+ "answer": null,
+ "revision": 2
+ }
+ },
+ {
+ "pk": 62,
+ "model": "askbot.postrevision",
+ "fields": {
+ "is_anonymous": false,
+ "author": 20,
+ "tagnames": "",
+ "text": "Main differentiators business model micro economics\n marketplace equity augmented reality human computer",
+ "title": "",
+ "question": null,
+ "revised_at": "2011-12-11 12:22:36",
+ "summary": "No.2 Revision",
+ "revision_type": 2,
+ "answer": 20,
+ "revision": 2
+ }
+ },
+ {
+ "pk": 1,
+ "model": "askbot.postrevision",
+ "fields": {
+ "is_anonymous": false,
+ "author": 1,
+ "tagnames": "tag-1-0 tag-1-1",
+ "text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
+ "title": "Test question title No.1",
+ "question": 1,
+ "revised_at": "2011-12-11 12:21:08",
+ "summary": "initial version",
+ "revision_type": 1,
+ "answer": null,
+ "revision": 1
+ }
+ },
+ {
+ "pk": 2,
+ "model": "askbot.postrevision",
+ "fields": {
+ "is_anonymous": false,
+ "author": 2,
+ "tagnames": "tag-2-0 tag-2-1",
+ "text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
+ "title": "Test question title No.2",
+ "question": 2,
+ "revised_at": "2011-12-11 12:21:15",
+ "summary": "initial version",
+ "revision_type": 1,
+ "answer": null,
+ "revision": 1
+ }
+ },
+ {
+ "pk": 3,
+ "model": "askbot.postrevision",
+ "fields": {
+ "is_anonymous": false,
+ "author": 3,
+ "tagnames": "tag-3-0 tag-3-1",
+ "text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
+ "title": "Test question title No.3",
+ "question": 3,
+ "revised_at": "2011-12-11 12:21:15",
+ "summary": "initial version",
+ "revision_type": 1,
+ "answer": null,
+ "revision": 1
+ }
+ },
+ {
+ "pk": 4,
+ "model": "askbot.postrevision",
+ "fields": {
+ "is_anonymous": false,
+ "author": 4,
+ "tagnames": "tag-4-0 tag-4-1",
+ "text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
+ "title": "Test question title No.4",
+ "question": 4,
+ "revised_at": "2011-12-11 12:21:16",
+ "summary": "initial version",
+ "revision_type": 1,
+ "answer": null,
+ "revision": 1
+ }
+ },
+ {
+ "pk": 5,
+ "model": "askbot.postrevision",
+ "fields": {
+ "is_anonymous": false,
+ "author": 5,
+ "tagnames": "tag-5-0 tag-5-1",
+ "text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
+ "title": "Test question title No.5",
+ "question": 5,
+ "revised_at": "2011-12-11 12:21:16",
+ "summary": "initial version",
+ "revision_type": 1,
+ "answer": null,
+ "revision": 1
+ }
+ },
+ {
+ "pk": 6,
+ "model": "askbot.postrevision",
+ "fields": {
+ "is_anonymous": false,
+ "author": 6,
+ "tagnames": "tag-6-0 tag-6-1",
+ "text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
+ "title": "Test question title No.6",
+ "question": 6,
+ "revised_at": "2011-12-11 12:21:17",
+ "summary": "initial version",
+ "revision_type": 1,
+ "answer": null,
+ "revision": 1
+ }
+ },
+ {
+ "pk": 7,
+ "model": "askbot.postrevision",
+ "fields": {
+ "is_anonymous": false,
+ "author": 7,
+ "tagnames": "tag-7-0 tag-7-1",
+ "text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
+ "title": "Test question title No.7",
+ "question": 7,
+ "revised_at": "2011-12-11 12:21:17",
+ "summary": "initial version",
+ "revision_type": 1,
+ "answer": null,
+ "revision": 1
+ }
+ },
+ {
+ "pk": 8,
+ "model": "askbot.postrevision",
+ "fields": {
+ "is_anonymous": false,
+ "author": 8,
+ "tagnames": "tag-8-0 tag-8-1",
+ "text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
+ "title": "Test question title No.8",
+ "question": 8,
+ "revised_at": "2011-12-11 12:21:18",
+ "summary": "initial version",
+ "revision_type": 1,
+ "answer": null,
+ "revision": 1
+ }
+ },
+ {
+ "pk": 9,
+ "model": "askbot.postrevision",
+ "fields": {
+ "is_anonymous": false,
+ "author": 9,
+ "tagnames": "tag-9-0 tag-9-1",
+ "text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
+ "title": "Test question title No.9",
+ "question": 9,
+ "revised_at": "2011-12-11 12:21:18",
+ "summary": "initial version",
+ "revision_type": 1,
+ "answer": null,
+ "revision": 1
+ }
+ },
+ {
+ "pk": 10,
+ "model": "askbot.postrevision",
+ "fields": {
+ "is_anonymous": false,
+ "author": 10,
+ "tagnames": "tag-10-0 tag-10-1",
+ "text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
+ "title": "Test question title No.10",
+ "question": 10,
+ "revised_at": "2011-12-11 12:21:19",
+ "summary": "initial version",
+ "revision_type": 1,
+ "answer": null,
+ "revision": 1
+ }
+ },
+ {
+ "pk": 11,
+ "model": "askbot.postrevision",
+ "fields": {
+ "is_anonymous": false,
+ "author": 11,
+ "tagnames": "tag-11-0 tag-11-1",
+ "text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
+ "title": "Test question title No.11",
+ "question": 11,
+ "revised_at": "2011-12-11 12:21:19",
+ "summary": "initial version",
+ "revision_type": 1,
+ "answer": null,
+ "revision": 1
+ }
+ },
+ {
+ "pk": 12,
+ "model": "askbot.postrevision",
+ "fields": {
+ "is_anonymous": false,
+ "author": 12,
+ "tagnames": "tag-12-0 tag-12-1",
+ "text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
+ "title": "Test question title No.12",
+ "question": 12,
+ "revised_at": "2011-12-11 12:21:20",
+ "summary": "initial version",
+ "revision_type": 1,
+ "answer": null,
+ "revision": 1
+ }
+ },
+ {
+ "pk": 13,
+ "model": "askbot.postrevision",
+ "fields": {
+ "is_anonymous": false,
+ "author": 13,
+ "tagnames": "tag-13-0 tag-13-1",
+ "text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
+ "title": "Test question title No.13",
+ "question": 13,
+ "revised_at": "2011-12-11 12:21:20",
+ "summary": "initial version",
+ "revision_type": 1,
+ "answer": null,
+ "revision": 1
+ }
+ },
+ {
+ "pk": 14,
+ "model": "askbot.postrevision",
+ "fields": {
+ "is_anonymous": false,
+ "author": 14,
+ "tagnames": "tag-14-0 tag-14-1",
+ "text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
+ "title": "Test question title No.14",
+ "question": 14,
+ "revised_at": "2011-12-11 12:21:21",
+ "summary": "initial version",
+ "revision_type": 1,
+ "answer": null,
+ "revision": 1
+ }
+ },
+ {
+ "pk": 15,
+ "model": "askbot.postrevision",
+ "fields": {
+ "is_anonymous": false,
+ "author": 15,
+ "tagnames": "tag-15-0 tag-15-1",
+ "text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
+ "title": "Test question title No.15",
+ "question": 15,
+ "revised_at": "2011-12-11 12:21:21",
+ "summary": "initial version",
+ "revision_type": 1,
+ "answer": null,
+ "revision": 1
+ }
+ },
+ {
+ "pk": 16,
+ "model": "askbot.postrevision",
+ "fields": {
+ "is_anonymous": false,
+ "author": 16,
+ "tagnames": "tag-16-0 tag-16-1",
+ "text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
+ "title": "Test question title No.16",
+ "question": 16,
+ "revised_at": "2011-12-11 12:21:22",
+ "summary": "initial version",
+ "revision_type": 1,
+ "answer": null,
+ "revision": 1
+ }
+ },
+ {
+ "pk": 17,
+ "model": "askbot.postrevision",
+ "fields": {
+ "is_anonymous": false,
+ "author": 17,
+ "tagnames": "tag-17-0 tag-17-1",
+ "text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
+ "title": "Test question title No.17",
+ "question": 17,
+ "revised_at": "2011-12-11 12:21:22",
+ "summary": "initial version",
+ "revision_type": 1,
+ "answer": null,
+ "revision": 1
+ }
+ },
+ {
+ "pk": 18,
+ "model": "askbot.postrevision",
+ "fields": {
+ "is_anonymous": false,
+ "author": 18,
+ "tagnames": "tag-18-0 tag-18-1",
+ "text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
+ "title": "Test question title No.18",
+ "question": 18,
+ "revised_at": "2011-12-11 12:21:23",
+ "summary": "initial version",
+ "revision_type": 1,
+ "answer": null,
+ "revision": 1
+ }
+ },
+ {
+ "pk": 19,
+ "model": "askbot.postrevision",
+ "fields": {
+ "is_anonymous": false,
+ "author": 19,
+ "tagnames": "tag-19-0 tag-19-1",
+ "text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
+ "title": "Test question title No.19",
+ "question": 19,
+ "revised_at": "2011-12-11 12:21:23",
+ "summary": "initial version",
+ "revision_type": 1,
+ "answer": null,
+ "revision": 1
+ }
+ },
+ {
+ "pk": 20,
+ "model": "askbot.postrevision",
+ "fields": {
+ "is_anonymous": false,
+ "author": 20,
+ "tagnames": "tag-20-0 tag-20-1",
+ "text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
+ "title": "Test question title No.20",
+ "question": 20,
+ "revised_at": "2011-12-11 12:21:24",
+ "summary": "initial version",
+ "revision_type": 1,
+ "answer": null,
+ "revision": 1
+ }
+ },
+ {
+ "pk": 21,
+ "model": "askbot.postrevision",
+ "fields": {
+ "is_anonymous": false,
+ "author": 21,
+ "tagnames": "tag-21-0 tag-21-1",
+ "text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
+ "title": "Test question title No.21",
+ "question": 21,
+ "revised_at": "2011-12-11 12:21:24",
+ "summary": "initial version",
+ "revision_type": 1,
+ "answer": null,
+ "revision": 1
+ }
+ },
+ {
+ "pk": 22,
+ "model": "askbot.postrevision",
+ "fields": {
+ "is_anonymous": false,
+ "author": 22,
+ "tagnames": "tag-22-0 tag-22-1",
+ "text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
+ "title": "Test question title No.22",
+ "question": 22,
+ "revised_at": "2011-12-11 12:21:25",
+ "summary": "initial version",
+ "revision_type": 1,
+ "answer": null,
+ "revision": 1
+ }
+ },
+ {
+ "pk": 23,
+ "model": "askbot.postrevision",
+ "fields": {
+ "is_anonymous": false,
+ "author": 23,
+ "tagnames": "tag-23-0 tag-23-1",
+ "text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
+ "title": "Test question title No.23",
+ "question": 23,
+ "revised_at": "2011-12-11 12:21:25",
+ "summary": "initial version",
+ "revision_type": 1,
+ "answer": null,
+ "revision": 1
+ }
+ },
+ {
+ "pk": 24,
+ "model": "askbot.postrevision",
+ "fields": {
+ "is_anonymous": false,
+ "author": 24,
+ "tagnames": "tag-24-0 tag-24-1",
+ "text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
+ "title": "Test question title No.24",
+ "question": 24,
+ "revised_at": "2011-12-11 12:21:26",
+ "summary": "initial version",
+ "revision_type": 1,
+ "answer": null,
+ "revision": 1
+ }
+ },
+ {
+ "pk": 25,
+ "model": "askbot.postrevision",
+ "fields": {
+ "is_anonymous": false,
+ "author": 25,
+ "tagnames": "tag-25-0 tag-25-1",
+ "text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
+ "title": "Test question title No.25",
+ "question": 25,
+ "revised_at": "2011-12-11 12:21:26",
+ "summary": "initial version",
+ "revision_type": 1,
+ "answer": null,
+ "revision": 1
+ }
+ },
+ {
+ "pk": 26,
+ "model": "askbot.postrevision",
+ "fields": {
+ "is_anonymous": false,
+ "author": 26,
+ "tagnames": "tag-26-0 tag-26-1",
+ "text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
+ "title": "Test question title No.26",
+ "question": 26,
+ "revised_at": "2011-12-11 12:21:27",
+ "summary": "initial version",
+ "revision_type": 1,
+ "answer": null,
+ "revision": 1
+ }
+ },
+ {
+ "pk": 27,
+ "model": "askbot.postrevision",
+ "fields": {
+ "is_anonymous": false,
+ "author": 27,
+ "tagnames": "tag-27-0 tag-27-1",
+ "text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
+ "title": "Test question title No.27",
+ "question": 27,
+ "revised_at": "2011-12-11 12:21:27",
+ "summary": "initial version",
+ "revision_type": 1,
+ "answer": null,
+ "revision": 1
+ }
+ },
+ {
+ "pk": 28,
+ "model": "askbot.postrevision",
+ "fields": {
+ "is_anonymous": false,
+ "author": 28,
+ "tagnames": "tag-28-0 tag-28-1",
+ "text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
+ "title": "Test question title No.28",
+ "question": 28,
+ "revised_at": "2011-12-11 12:21:28",
+ "summary": "initial version",
+ "revision_type": 1,
+ "answer": null,
+ "revision": 1
+ }
+ },
+ {
+ "pk": 29,
+ "model": "askbot.postrevision",
+ "fields": {
+ "is_anonymous": false,
+ "author": 29,
+ "tagnames": "tag-29-0 tag-29-1",
+ "text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
+ "title": "Test question title No.29",
+ "question": 29,
+ "revised_at": "2011-12-11 12:21:29",
+ "summary": "initial version",
+ "revision_type": 1,
+ "answer": null,
+ "revision": 1
+ }
+ },
+ {
+ "pk": 30,
+ "model": "askbot.postrevision",
+ "fields": {
+ "is_anonymous": false,
+ "author": 30,
+ "tagnames": "tag-30-0 tag-30-1",
+ "text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
+ "title": "Test question title No.30",
+ "question": 30,
+ "revised_at": "2011-12-11 12:21:29",
+ "summary": "initial version",
+ "revision_type": 1,
+ "answer": null,
+ "revision": 1
+ }
+ },
+ {
+ "pk": 31,
+ "model": "askbot.postrevision",
+ "fields": {
+ "is_anonymous": false,
+ "author": 31,
+ "tagnames": "tag-31-0 tag-31-1",
+ "text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
+ "title": "Test question title No.31",
+ "question": 31,
+ "revised_at": "2011-12-11 12:21:30",
+ "summary": "initial version",
+ "revision_type": 1,
+ "answer": null,
+ "revision": 1
+ }
+ },
+ {
+ "pk": 32,
+ "model": "askbot.postrevision",
+ "fields": {
+ "is_anonymous": false,
+ "author": 32,
+ "tagnames": "tag-32-0 tag-32-1",
+ "text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
+ "title": "Test question title No.32",
+ "question": 32,
+ "revised_at": "2011-12-11 12:21:30",
+ "summary": "initial version",
+ "revision_type": 1,
+ "answer": null,
+ "revision": 1
+ }
+ },
+ {
+ "pk": 33,
+ "model": "askbot.postrevision",
+ "fields": {
+ "is_anonymous": false,
+ "author": 33,
+ "tagnames": "tag-33-0 tag-33-1",
+ "text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
+ "title": "Test question title No.33",
+ "question": 33,
+ "revised_at": "2011-12-11 12:21:31",
+ "summary": "initial version",
+ "revision_type": 1,
+ "answer": null,
+ "revision": 1
+ }
+ },
+ {
+ "pk": 34,
+ "model": "askbot.postrevision",
+ "fields": {
+ "is_anonymous": false,
+ "author": 34,
+ "tagnames": "tag-34-0 tag-34-1",
+ "text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
+ "title": "Test question title No.34",
+ "question": 34,
+ "revised_at": "2011-12-11 12:21:31",
+ "summary": "initial version",
+ "revision_type": 1,
+ "answer": null,
+ "revision": 1
+ }
+ },
+ {
+ "pk": 35,
+ "model": "askbot.postrevision",
+ "fields": {
+ "is_anonymous": false,
+ "author": 35,
+ "tagnames": "tag-35-0 tag-35-1",
+ "text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
+ "title": "Test question title No.35",
+ "question": 35,
+ "revised_at": "2011-12-11 12:21:32",
+ "summary": "initial version",
+ "revision_type": 1,
+ "answer": null,
+ "revision": 1
+ }
+ },
+ {
+ "pk": 36,
+ "model": "askbot.postrevision",
+ "fields": {
+ "is_anonymous": false,
+ "author": 36,
+ "tagnames": "tag-36-0 tag-36-1",
+ "text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
+ "title": "Test question title No.36",
+ "question": 36,
+ "revised_at": "2011-12-11 12:21:32",
+ "summary": "initial version",
+ "revision_type": 1,
+ "answer": null,
+ "revision": 1
+ }
+ },
+ {
+ "pk": 37,
+ "model": "askbot.postrevision",
+ "fields": {
+ "is_anonymous": false,
+ "author": 37,
+ "tagnames": "tag-37-0 tag-37-1",
+ "text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
+ "title": "Test question title No.37",
+ "question": 37,
+ "revised_at": "2011-12-11 12:21:33",
+ "summary": "initial version",
+ "revision_type": 1,
+ "answer": null,
+ "revision": 1
+ }
+ },
+ {
+ "pk": 38,
+ "model": "askbot.postrevision",
+ "fields": {
+ "is_anonymous": false,
+ "author": 38,
+ "tagnames": "tag-38-0 tag-38-1",
+ "text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
+ "title": "Test question title No.38",
+ "question": 38,
+ "revised_at": "2011-12-11 12:21:33",
+ "summary": "initial version",
+ "revision_type": 1,
+ "answer": null,
+ "revision": 1
+ }
+ },
+ {
+ "pk": 39,
+ "model": "askbot.postrevision",
+ "fields": {
+ "is_anonymous": false,
+ "author": 39,
+ "tagnames": "tag-39-0 tag-39-1",
+ "text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
+ "title": "Test question title No.39",
+ "question": 39,
+ "revised_at": "2011-12-11 12:21:34",
+ "summary": "initial version",
+ "revision_type": 1,
+ "answer": null,
+ "revision": 1
+ }
+ },
+ {
+ "pk": 40,
+ "model": "askbot.postrevision",
+ "fields": {
+ "is_anonymous": false,
+ "author": 40,
+ "tagnames": "tag-40-0 tag-40-1",
+ "text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
+ "title": "Test question title No.40",
+ "question": 40,
+ "revised_at": "2011-12-11 12:21:34",
+ "summary": "initial version",
+ "revision_type": 1,
+ "answer": null,
+ "revision": 1
+ }
+ },
+ {
+ "pk": 41,
+ "model": "askbot.postrevision",
+ "fields": {
+ "is_anonymous": false,
+ "author": 1,
+ "tagnames": "",
+ "text": "Accelerator photo sharing business school drop out ramen\n hustle crush it revenue traction platforms.",
+ "title": "",
+ "question": null,
+ "revised_at": "2011-12-11 12:21:35",
+ "summary": "initial version",
+ "revision_type": 2,
+ "answer": 1,
+ "revision": 1
+ }
+ },
+ {
+ "pk": 42,
+ "model": "askbot.postrevision",
+ "fields": {
+ "is_anonymous": false,
+ "author": 2,
+ "tagnames": "",
+ "text": "Accelerator photo sharing business school drop out ramen\n hustle crush it revenue traction platforms.",
+ "title": "",
+ "question": null,
+ "revised_at": "2011-12-11 12:21:36",
+ "summary": "initial version",
+ "revision_type": 2,
+ "answer": 2,
+ "revision": 1
+ }
+ },
+ {
+ "pk": 43,
+ "model": "askbot.postrevision",
+ "fields": {
+ "is_anonymous": false,
+ "author": 3,
+ "tagnames": "",
+ "text": "Accelerator photo sharing business school drop out ramen\n hustle crush it revenue traction platforms.",
+ "title": "",
+ "question": null,
+ "revised_at": "2011-12-11 12:21:36",
+ "summary": "initial version",
+ "revision_type": 2,
+ "answer": 3,
+ "revision": 1
+ }
+ },
+ {
+ "pk": 44,
+ "model": "askbot.postrevision",
+ "fields": {
+ "is_anonymous": false,
+ "author": 4,
+ "tagnames": "",
+ "text": "Accelerator photo sharing business school drop out ramen\n hustle crush it revenue traction platforms.",
+ "title": "",
+ "question": null,
+ "revised_at": "2011-12-11 12:21:37",
+ "summary": "initial version",
+ "revision_type": 2,
+ "answer": 4,
+ "revision": 1
+ }
+ },
+ {
+ "pk": 45,
+ "model": "askbot.postrevision",
+ "fields": {
+ "is_anonymous": false,
+ "author": 5,
+ "tagnames": "",
+ "text": "Accelerator photo sharing business school drop out ramen\n hustle crush it revenue traction platforms.",
+ "title": "",
+ "question": null,
+ "revised_at": "2011-12-11 12:21:38",
+ "summary": "initial version",
+ "revision_type": 2,
+ "answer": 5,
+ "revision": 1
+ }
+ },
+ {
+ "pk": 46,
+ "model": "askbot.postrevision",
+ "fields": {
+ "is_anonymous": false,
+ "author": 6,
+ "tagnames": "",
+ "text": "Accelerator photo sharing business school drop out ramen\n hustle crush it revenue traction platforms.",
+ "title": "",
+ "question": null,
+ "revised_at": "2011-12-11 12:21:39",
+ "summary": "initial version",
+ "revision_type": 2,
+ "answer": 6,
+ "revision": 1
+ }
+ },
+ {
+ "pk": 47,
+ "model": "askbot.postrevision",
+ "fields": {
+ "is_anonymous": false,
+ "author": 7,
+ "tagnames": "",
+ "text": "Accelerator photo sharing business school drop out ramen\n hustle crush it revenue traction platforms.",
+ "title": "",
+ "question": null,
+ "revised_at": "2011-12-11 12:21:40",
+ "summary": "initial version",
+ "revision_type": 2,
+ "answer": 7,
+ "revision": 1
+ }
+ },
+ {
+ "pk": 48,
+ "model": "askbot.postrevision",
+ "fields": {
+ "is_anonymous": false,
+ "author": 8,
+ "tagnames": "",
+ "text": "Accelerator photo sharing business school drop out ramen\n hustle crush it revenue traction platforms.",
+ "title": "",
+ "question": null,
+ "revised_at": "2011-12-11 12:21:41",
+ "summary": "initial version",
+ "revision_type": 2,
+ "answer": 8,
+ "revision": 1
+ }
+ },
+ {
+ "pk": 49,
+ "model": "askbot.postrevision",
+ "fields": {
+ "is_anonymous": false,
+ "author": 9,
+ "tagnames": "",
+ "text": "Accelerator photo sharing business school drop out ramen\n hustle crush it revenue traction platforms.",
+ "title": "",
+ "question": null,
+ "revised_at": "2011-12-11 12:21:42",
+ "summary": "initial version",
+ "revision_type": 2,
+ "answer": 9,
+ "revision": 1
+ }
+ },
+ {
+ "pk": 50,
+ "model": "askbot.postrevision",
+ "fields": {
+ "is_anonymous": false,
+ "author": 10,
+ "tagnames": "",
+ "text": "Accelerator photo sharing business school drop out ramen\n hustle crush it revenue traction platforms.",
+ "title": "",
+ "question": null,
+ "revised_at": "2011-12-11 12:21:43",
+ "summary": "initial version",
+ "revision_type": 2,
+ "answer": 10,
+ "revision": 1
+ }
+ },
+ {
+ "pk": 51,
+ "model": "askbot.postrevision",
+ "fields": {
+ "is_anonymous": false,
+ "author": 11,
+ "tagnames": "",
+ "text": "Accelerator photo sharing business school drop out ramen\n hustle crush it revenue traction platforms.",
+ "title": "",
+ "question": null,
+ "revised_at": "2011-12-11 12:21:44",
+ "summary": "initial version",
+ "revision_type": 2,
+ "answer": 11,
+ "revision": 1
+ }
+ },
+ {
+ "pk": 52,
+ "model": "askbot.postrevision",
+ "fields": {
+ "is_anonymous": false,
+ "author": 12,
+ "tagnames": "",
+ "text": "Accelerator photo sharing business school drop out ramen\n hustle crush it revenue traction platforms.",
+ "title": "",
+ "question": null,
+ "revised_at": "2011-12-11 12:21:45",
+ "summary": "initial version",
+ "revision_type": 2,
+ "answer": 12,
+ "revision": 1
+ }
+ },
+ {
+ "pk": 53,
+ "model": "askbot.postrevision",
+ "fields": {
+ "is_anonymous": false,
+ "author": 13,
+ "tagnames": "",
+ "text": "Accelerator photo sharing business school drop out ramen\n hustle crush it revenue traction platforms.",
+ "title": "",
+ "question": null,
+ "revised_at": "2011-12-11 12:21:47",
+ "summary": "initial version",
+ "revision_type": 2,
+ "answer": 13,
+ "revision": 1
+ }
+ },
+ {
+ "pk": 54,
+ "model": "askbot.postrevision",
+ "fields": {
+ "is_anonymous": false,
+ "author": 14,
+ "tagnames": "",
+ "text": "Accelerator photo sharing business school drop out ramen\n hustle crush it revenue traction platforms.",
+ "title": "",
+ "question": null,
+ "revised_at": "2011-12-11 12:21:48",
+ "summary": "initial version",
+ "revision_type": 2,
+ "answer": 14,
+ "revision": 1
+ }
+ },
+ {
+ "pk": 55,
+ "model": "askbot.postrevision",
+ "fields": {
+ "is_anonymous": false,
+ "author": 15,
+ "tagnames": "",
+ "text": "Accelerator photo sharing business school drop out ramen\n hustle crush it revenue traction platforms.",
+ "title": "",
+ "question": null,
+ "revised_at": "2011-12-11 12:21:50",
+ "summary": "initial version",
+ "revision_type": 2,
+ "answer": 15,
+ "revision": 1
+ }
+ },
+ {
+ "pk": 56,
+ "model": "askbot.postrevision",
+ "fields": {
+ "is_anonymous": false,
+ "author": 16,
+ "tagnames": "",
+ "text": "Accelerator photo sharing business school drop out ramen\n hustle crush it revenue traction platforms.",
+ "title": "",
+ "question": null,
+ "revised_at": "2011-12-11 12:21:52",
+ "summary": "initial version",
+ "revision_type": 2,
+ "answer": 16,
+ "revision": 1
+ }
+ },
+ {
+ "pk": 57,
+ "model": "askbot.postrevision",
+ "fields": {
+ "is_anonymous": false,
+ "author": 17,
+ "tagnames": "",
+ "text": "Accelerator photo sharing business school drop out ramen\n hustle crush it revenue traction platforms.",
+ "title": "",
+ "question": null,
+ "revised_at": "2011-12-11 12:21:53",
+ "summary": "initial version",
+ "revision_type": 2,
+ "answer": 17,
+ "revision": 1
+ }
+ },
+ {
+ "pk": 58,
+ "model": "askbot.postrevision",
+ "fields": {
+ "is_anonymous": false,
+ "author": 18,
+ "tagnames": "",
+ "text": "Accelerator photo sharing business school drop out ramen\n hustle crush it revenue traction platforms.",
+ "title": "",
+ "question": null,
+ "revised_at": "2011-12-11 12:21:55",
+ "summary": "initial version",
+ "revision_type": 2,
+ "answer": 18,
+ "revision": 1
+ }
+ },
+ {
+ "pk": 59,
+ "model": "askbot.postrevision",
+ "fields": {
+ "is_anonymous": false,
+ "author": 19,
+ "tagnames": "",
+ "text": "Accelerator photo sharing business school drop out ramen\n hustle crush it revenue traction platforms.",
+ "title": "",
+ "question": null,
+ "revised_at": "2011-12-11 12:21:57",
+ "summary": "initial version",
+ "revision_type": 2,
+ "answer": 19,
+ "revision": 1
+ }
+ },
+ {
+ "pk": 60,
+ "model": "askbot.postrevision",
+ "fields": {
+ "is_anonymous": false,
+ "author": 20,
+ "tagnames": "",
+ "text": "Accelerator photo sharing business school drop out ramen\n hustle crush it revenue traction platforms.",
+ "title": "",
+ "question": null,
+ "revised_at": "2011-12-11 12:21:59",
+ "summary": "initial version",
+ "revision_type": 2,
+ "answer": 20,
+ "revision": 1
+ }
+ },
+ {
+ "pk": 1,
+ "model": "askbot.thread",
+ "fields": {
+ "last_activity_by": 1,
+ "view_count": 0,
+ "close_reason": null,
+ "last_activity_at": "2011-12-11 12:21:08",
+ "closed": false,
+ "title": "Test question title No.1",
+ "tagnames": "tag-1-0 tag-1-1",
+ "tags": [
+ 1,
+ 2
+ ],
+ "answer_count": 0,
+ "followed_by": [],
+ "accepted_answer": null,
+ "answer_accepted_at": null,
+ "favourite_count": 0,
+ "closed_at": null,
+ "closed_by": null
+ }
+ },
+ {
+ "pk": 2,
+ "model": "askbot.thread",
+ "fields": {
+ "last_activity_by": 2,
+ "view_count": 0,
+ "close_reason": null,
+ "last_activity_at": "2011-12-11 12:21:15",
+ "closed": false,
+ "title": "Test question title No.2",
+ "tagnames": "tag-2-0 tag-2-1",
+ "tags": [
+ 4,
+ 3
+ ],
+ "answer_count": 0,
+ "followed_by": [],
+ "accepted_answer": null,
+ "answer_accepted_at": null,
+ "favourite_count": 0,
+ "closed_at": null,
+ "closed_by": null
+ }
+ },
+ {
+ "pk": 3,
+ "model": "askbot.thread",
+ "fields": {
+ "last_activity_by": 3,
+ "view_count": 0,
+ "close_reason": null,
+ "last_activity_at": "2011-12-11 12:21:15",
+ "closed": false,
+ "title": "Test question title No.3",
+ "tagnames": "tag-3-0 tag-3-1",
+ "tags": [
+ 5,
+ 6
+ ],
+ "answer_count": 0,
+ "followed_by": [],
+ "accepted_answer": null,
+ "answer_accepted_at": null,
+ "favourite_count": 0,
+ "closed_at": null,
+ "closed_by": null
+ }
+ },
+ {
+ "pk": 4,
+ "model": "askbot.thread",
+ "fields": {
+ "last_activity_by": 4,
+ "view_count": 0,
+ "close_reason": null,
+ "last_activity_at": "2011-12-11 12:21:16",
+ "closed": false,
+ "title": "Test question title No.4",
+ "tagnames": "tag-4-0 tag-4-1",
+ "tags": [
+ 8,
+ 7
+ ],
+ "answer_count": 0,
+ "followed_by": [],
+ "accepted_answer": null,
+ "answer_accepted_at": null,
+ "favourite_count": 0,
+ "closed_at": null,
+ "closed_by": null
+ }
+ },
+ {
+ "pk": 5,
+ "model": "askbot.thread",
+ "fields": {
+ "last_activity_by": 5,
+ "view_count": 0,
+ "close_reason": null,
+ "last_activity_at": "2011-12-11 12:21:16",
+ "closed": false,
+ "title": "Test question title No.5",
+ "tagnames": "tag-5-0 tag-5-1",
+ "tags": [
+ 9,
+ 10
+ ],
+ "answer_count": 0,
+ "followed_by": [],
+ "accepted_answer": null,
+ "answer_accepted_at": null,
+ "favourite_count": 0,
+ "closed_at": null,
+ "closed_by": null
+ }
+ },
+ {
+ "pk": 6,
+ "model": "askbot.thread",
+ "fields": {
+ "last_activity_by": 6,
+ "view_count": 0,
+ "close_reason": null,
+ "last_activity_at": "2011-12-11 12:21:17",
+ "closed": false,
+ "title": "Test question title No.6",
+ "tagnames": "tag-6-0 tag-6-1",
+ "tags": [
+ 12,
+ 11
+ ],
+ "answer_count": 0,
+ "followed_by": [],
+ "accepted_answer": null,
+ "answer_accepted_at": null,
+ "favourite_count": 0,
+ "closed_at": null,
+ "closed_by": null
+ }
+ },
+ {
+ "pk": 7,
+ "model": "askbot.thread",
+ "fields": {
+ "last_activity_by": 7,
+ "view_count": 0,
+ "close_reason": null,
+ "last_activity_at": "2011-12-11 12:21:17",
+ "closed": false,
+ "title": "Test question title No.7",
+ "tagnames": "tag-7-0 tag-7-1",
+ "tags": [
+ 13,
+ 14
+ ],
+ "answer_count": 0,
+ "followed_by": [],
+ "accepted_answer": null,
+ "answer_accepted_at": null,
+ "favourite_count": 0,
+ "closed_at": null,
+ "closed_by": null
+ }
+ },
+ {
+ "pk": 8,
+ "model": "askbot.thread",
+ "fields": {
+ "last_activity_by": 8,
+ "view_count": 0,
+ "close_reason": null,
+ "last_activity_at": "2011-12-11 12:21:18",
+ "closed": false,
+ "title": "Test question title No.8",
+ "tagnames": "tag-8-0 tag-8-1",
+ "tags": [
+ 16,
+ 15
+ ],
+ "answer_count": 0,
+ "followed_by": [],
+ "accepted_answer": null,
+ "answer_accepted_at": null,
+ "favourite_count": 0,
+ "closed_at": null,
+ "closed_by": null
+ }
+ },
+ {
+ "pk": 9,
+ "model": "askbot.thread",
+ "fields": {
+ "last_activity_by": 9,
+ "view_count": 0,
+ "close_reason": null,
+ "last_activity_at": "2011-12-11 12:21:18",
+ "closed": false,
+ "title": "Test question title No.9",
+ "tagnames": "tag-9-0 tag-9-1",
+ "tags": [
+ 17,
+ 18
+ ],
+ "answer_count": 0,
+ "followed_by": [],
+ "accepted_answer": null,
+ "answer_accepted_at": null,
+ "favourite_count": 0,
+ "closed_at": null,
+ "closed_by": null
+ }
+ },
+ {
+ "pk": 10,
+ "model": "askbot.thread",
+ "fields": {
+ "last_activity_by": 10,
+ "view_count": 0,
+ "close_reason": null,
+ "last_activity_at": "2011-12-11 12:21:19",
+ "closed": false,
+ "title": "Test question title No.10",
+ "tagnames": "tag-10-0 tag-10-1",
+ "tags": [
+ 20,
+ 19
+ ],
+ "answer_count": 0,
+ "followed_by": [],
+ "accepted_answer": null,
+ "answer_accepted_at": null,
+ "favourite_count": 0,
+ "closed_at": null,
+ "closed_by": null
+ }
+ },
+ {
+ "pk": 11,
+ "model": "askbot.thread",
+ "fields": {
+ "last_activity_by": 11,
+ "view_count": 0,
+ "close_reason": null,
+ "last_activity_at": "2011-12-11 12:21:19",
+ "closed": false,
+ "title": "Test question title No.11",
+ "tagnames": "tag-11-0 tag-11-1",
+ "tags": [
+ 21,
+ 22
+ ],
+ "answer_count": 0,
+ "followed_by": [],
+ "accepted_answer": null,
+ "answer_accepted_at": null,
+ "favourite_count": 0,
+ "closed_at": null,
+ "closed_by": null
+ }
+ },
+ {
+ "pk": 12,
+ "model": "askbot.thread",
+ "fields": {
+ "last_activity_by": 12,
+ "view_count": 0,
+ "close_reason": null,
+ "last_activity_at": "2011-12-11 12:21:20",
+ "closed": false,
+ "title": "Test question title No.12",
+ "tagnames": "tag-12-0 tag-12-1",
+ "tags": [
+ 24,
+ 23
+ ],
+ "answer_count": 0,
+ "followed_by": [],
+ "accepted_answer": null,
+ "answer_accepted_at": null,
+ "favourite_count": 0,
+ "closed_at": null,
+ "closed_by": null
+ }
+ },
+ {
+ "pk": 13,
+ "model": "askbot.thread",
+ "fields": {
+ "last_activity_by": 13,
+ "view_count": 0,
+ "close_reason": null,
+ "last_activity_at": "2011-12-11 12:21:20",
+ "closed": false,
+ "title": "Test question title No.13",
+ "tagnames": "tag-13-0 tag-13-1",
+ "tags": [
+ 25,
+ 26
+ ],
+ "answer_count": 0,
+ "followed_by": [],
+ "accepted_answer": null,
+ "answer_accepted_at": null,
+ "favourite_count": 0,
+ "closed_at": null,
+ "closed_by": null
+ }
+ },
+ {
+ "pk": 14,
+ "model": "askbot.thread",
+ "fields": {
+ "last_activity_by": 14,
+ "view_count": 0,
+ "close_reason": null,
+ "last_activity_at": "2011-12-11 12:21:21",
+ "closed": false,
+ "title": "Test question title No.14",
+ "tagnames": "tag-14-0 tag-14-1",
+ "tags": [
+ 28,
+ 27
+ ],
+ "answer_count": 0,
+ "followed_by": [],
+ "accepted_answer": null,
+ "answer_accepted_at": null,
+ "favourite_count": 0,
+ "closed_at": null,
+ "closed_by": null
+ }
+ },
+ {
+ "pk": 15,
+ "model": "askbot.thread",
+ "fields": {
+ "last_activity_by": 15,
+ "view_count": 0,
+ "close_reason": null,
+ "last_activity_at": "2011-12-11 12:21:21",
+ "closed": false,
+ "title": "Test question title No.15",
+ "tagnames": "tag-15-0 tag-15-1",
+ "tags": [
+ 29,
+ 30
+ ],
+ "answer_count": 0,
+ "followed_by": [],
+ "accepted_answer": null,
+ "answer_accepted_at": null,
+ "favourite_count": 0,
+ "closed_at": null,
+ "closed_by": null
+ }
+ },
+ {
+ "pk": 16,
+ "model": "askbot.thread",
+ "fields": {
+ "last_activity_by": 16,
+ "view_count": 0,
+ "close_reason": null,
+ "last_activity_at": "2011-12-11 12:21:22",
+ "closed": false,
+ "title": "Test question title No.16",
+ "tagnames": "tag-16-0 tag-16-1",
+ "tags": [
+ 32,
+ 31
+ ],
+ "answer_count": 0,
+ "followed_by": [],
+ "accepted_answer": null,
+ "answer_accepted_at": null,
+ "favourite_count": 0,
+ "closed_at": null,
+ "closed_by": null
+ }
+ },
+ {
+ "pk": 17,
+ "model": "askbot.thread",
+ "fields": {
+ "last_activity_by": 17,
+ "view_count": 0,
+ "close_reason": null,
+ "last_activity_at": "2011-12-11 12:21:22",
+ "closed": false,
+ "title": "Test question title No.17",
+ "tagnames": "tag-17-0 tag-17-1",
+ "tags": [
+ 33,
+ 34
+ ],
+ "answer_count": 0,
+ "followed_by": [],
+ "accepted_answer": null,
+ "answer_accepted_at": null,
+ "favourite_count": 0,
+ "closed_at": null,
+ "closed_by": null
+ }
+ },
+ {
+ "pk": 18,
+ "model": "askbot.thread",
+ "fields": {
+ "last_activity_by": 18,
+ "view_count": 0,
+ "close_reason": null,
+ "last_activity_at": "2011-12-11 12:21:23",
+ "closed": false,
+ "title": "Test question title No.18",
+ "tagnames": "tag-18-0 tag-18-1",
+ "tags": [
+ 36,
+ 35
+ ],
+ "answer_count": 0,
+ "followed_by": [],
+ "accepted_answer": null,
+ "answer_accepted_at": null,
+ "favourite_count": 0,
+ "closed_at": null,
+ "closed_by": null
+ }
+ },
+ {
+ "pk": 19,
+ "model": "askbot.thread",
+ "fields": {
+ "last_activity_by": 19,
+ "view_count": 0,
+ "close_reason": null,
+ "last_activity_at": "2011-12-11 12:21:23",
+ "closed": false,
+ "title": "Test question title No.19",
+ "tagnames": "tag-19-0 tag-19-1",
+ "tags": [
+ 37,
+ 38
+ ],
+ "answer_count": 0,
+ "followed_by": [],
+ "accepted_answer": null,
+ "answer_accepted_at": null,
+ "favourite_count": 0,
+ "closed_at": null,
+ "closed_by": null
+ }
+ },
+ {
+ "pk": 20,
+ "model": "askbot.thread",
+ "fields": {
+ "last_activity_by": 20,
+ "view_count": 0,
+ "close_reason": null,
+ "last_activity_at": "2011-12-11 12:21:24",
+ "closed": false,
+ "title": "Test question title No.20",
+ "tagnames": "tag-20-0 tag-20-1",
+ "tags": [
+ 39,
+ 40
+ ],
+ "answer_count": 0,
+ "followed_by": [],
+ "accepted_answer": null,
+ "answer_accepted_at": null,
+ "favourite_count": 0,
+ "closed_at": null,
+ "closed_by": null
+ }
+ },
+ {
+ "pk": 21,
+ "model": "askbot.thread",
+ "fields": {
+ "last_activity_by": 21,
+ "view_count": 0,
+ "close_reason": null,
+ "last_activity_at": "2011-12-11 12:21:24",
+ "closed": false,
+ "title": "Test question title No.21",
+ "tagnames": "tag-21-0 tag-21-1",
+ "tags": [
+ 42,
+ 41
+ ],
+ "answer_count": 0,
+ "followed_by": [],
+ "accepted_answer": null,
+ "answer_accepted_at": null,
+ "favourite_count": 0,
+ "closed_at": null,
+ "closed_by": null
+ }
+ },
+ {
+ "pk": 22,
+ "model": "askbot.thread",
+ "fields": {
+ "last_activity_by": 22,
+ "view_count": 0,
+ "close_reason": null,
+ "last_activity_at": "2011-12-11 12:21:25",
+ "closed": false,
+ "title": "Test question title No.22",
+ "tagnames": "tag-22-0 tag-22-1",
+ "tags": [
+ 43,
+ 44
+ ],
+ "answer_count": 0,
+ "followed_by": [],
+ "accepted_answer": null,
+ "answer_accepted_at": null,
+ "favourite_count": 0,
+ "closed_at": null,
+ "closed_by": null
+ }
+ },
+ {
+ "pk": 23,
+ "model": "askbot.thread",
+ "fields": {
+ "last_activity_by": 23,
+ "view_count": 0,
+ "close_reason": null,
+ "last_activity_at": "2011-12-11 12:21:25",
+ "closed": false,
+ "title": "Test question title No.23",
+ "tagnames": "tag-23-0 tag-23-1",
+ "tags": [
+ 46,
+ 45
+ ],
+ "answer_count": 0,
+ "followed_by": [],
+ "accepted_answer": null,
+ "answer_accepted_at": null,
+ "favourite_count": 0,
+ "closed_at": null,
+ "closed_by": null
+ }
+ },
+ {
+ "pk": 24,
+ "model": "askbot.thread",
+ "fields": {
+ "last_activity_by": 24,
+ "view_count": 0,
+ "close_reason": null,
+ "last_activity_at": "2011-12-11 12:21:26",
+ "closed": false,
+ "title": "Test question title No.24",
+ "tagnames": "tag-24-0 tag-24-1",
+ "tags": [
+ 47,
+ 48
+ ],
+ "answer_count": 0,
+ "followed_by": [],
+ "accepted_answer": null,
+ "answer_accepted_at": null,
+ "favourite_count": 0,
+ "closed_at": null,
+ "closed_by": null
+ }
+ },
+ {
+ "pk": 25,
+ "model": "askbot.thread",
+ "fields": {
+ "last_activity_by": 25,
+ "view_count": 0,
+ "close_reason": null,
+ "last_activity_at": "2011-12-11 12:21:26",
+ "closed": false,
+ "title": "Test question title No.25",
+ "tagnames": "tag-25-0 tag-25-1",
+ "tags": [
+ 50,
+ 49
+ ],
+ "answer_count": 0,
+ "followed_by": [],
+ "accepted_answer": null,
+ "answer_accepted_at": null,
+ "favourite_count": 0,
+ "closed_at": null,
+ "closed_by": null
+ }
+ },
+ {
+ "pk": 26,
+ "model": "askbot.thread",
+ "fields": {
+ "last_activity_by": 26,
+ "view_count": 0,
+ "close_reason": null,
+ "last_activity_at": "2011-12-11 12:21:27",
+ "closed": false,
+ "title": "Test question title No.26",
+ "tagnames": "tag-26-0 tag-26-1",
+ "tags": [
+ 51,
+ 52
+ ],
+ "answer_count": 0,
+ "followed_by": [],
+ "accepted_answer": null,
+ "answer_accepted_at": null,
+ "favourite_count": 0,
+ "closed_at": null,
+ "closed_by": null
+ }
+ },
+ {
+ "pk": 27,
+ "model": "askbot.thread",
+ "fields": {
+ "last_activity_by": 27,
+ "view_count": 0,
+ "close_reason": null,
+ "last_activity_at": "2011-12-11 12:21:27",
+ "closed": false,
+ "title": "Test question title No.27",
+ "tagnames": "tag-27-0 tag-27-1",
+ "tags": [
+ 54,
+ 53
+ ],
+ "answer_count": 0,
+ "followed_by": [],
+ "accepted_answer": null,
+ "answer_accepted_at": null,
+ "favourite_count": 0,
+ "closed_at": null,
+ "closed_by": null
+ }
+ },
+ {
+ "pk": 28,
+ "model": "askbot.thread",
+ "fields": {
+ "last_activity_by": 28,
+ "view_count": 0,
+ "close_reason": null,
+ "last_activity_at": "2011-12-11 12:21:28",
+ "closed": false,
+ "title": "Test question title No.28",
+ "tagnames": "tag-28-0 tag-28-1",
+ "tags": [
+ 55,
+ 56
+ ],
+ "answer_count": 0,
+ "followed_by": [],
+ "accepted_answer": null,
+ "answer_accepted_at": null,
+ "favourite_count": 0,
+ "closed_at": null,
+ "closed_by": null
+ }
+ },
+ {
+ "pk": 29,
+ "model": "askbot.thread",
+ "fields": {
+ "last_activity_by": 29,
+ "view_count": 0,
+ "close_reason": null,
+ "last_activity_at": "2011-12-11 12:21:29",
+ "closed": false,
+ "title": "Test question title No.29",
+ "tagnames": "tag-29-0 tag-29-1",
+ "tags": [
+ 58,
+ 57
+ ],
+ "answer_count": 0,
+ "followed_by": [],
+ "accepted_answer": null,
+ "answer_accepted_at": null,
+ "favourite_count": 0,
+ "closed_at": null,
+ "closed_by": null
+ }
+ },
+ {
+ "pk": 30,
+ "model": "askbot.thread",
+ "fields": {
+ "last_activity_by": 30,
+ "view_count": 0,
+ "close_reason": null,
+ "last_activity_at": "2011-12-11 12:21:29",
+ "closed": false,
+ "title": "Test question title No.30",
+ "tagnames": "tag-30-0 tag-30-1",
+ "tags": [
+ 60,
+ 59
+ ],
+ "answer_count": 0,
+ "followed_by": [],
+ "accepted_answer": null,
+ "answer_accepted_at": null,
+ "favourite_count": 0,
+ "closed_at": null,
+ "closed_by": null
+ }
+ },
+ {
+ "pk": 31,
+ "model": "askbot.thread",
+ "fields": {
+ "last_activity_by": 31,
+ "view_count": 0,
+ "close_reason": null,
+ "last_activity_at": "2011-12-11 12:21:30",
+ "closed": false,
+ "title": "Test question title No.31",
+ "tagnames": "tag-31-0 tag-31-1",
+ "tags": [
+ 61,
+ 62
+ ],
+ "answer_count": 0,
+ "followed_by": [],
+ "accepted_answer": null,
+ "answer_accepted_at": null,
+ "favourite_count": 0,
+ "closed_at": null,
+ "closed_by": null
+ }
+ },
+ {
+ "pk": 32,
+ "model": "askbot.thread",
+ "fields": {
+ "last_activity_by": 32,
+ "view_count": 0,
+ "close_reason": null,
+ "last_activity_at": "2011-12-11 12:21:30",
+ "closed": false,
+ "title": "Test question title No.32",
+ "tagnames": "tag-32-0 tag-32-1",
+ "tags": [
+ 64,
+ 63
+ ],
+ "answer_count": 0,
+ "followed_by": [],
+ "accepted_answer": null,
+ "answer_accepted_at": null,
+ "favourite_count": 0,
+ "closed_at": null,
+ "closed_by": null
+ }
+ },
+ {
+ "pk": 33,
+ "model": "askbot.thread",
+ "fields": {
+ "last_activity_by": 33,
+ "view_count": 0,
+ "close_reason": null,
+ "last_activity_at": "2011-12-11 12:21:31",
+ "closed": false,
+ "title": "Test question title No.33",
+ "tagnames": "tag-33-0 tag-33-1",
+ "tags": [
+ 65,
+ 66
+ ],
+ "answer_count": 0,
+ "followed_by": [],
+ "accepted_answer": null,
+ "answer_accepted_at": null,
+ "favourite_count": 0,
+ "closed_at": null,
+ "closed_by": null
+ }
+ },
+ {
+ "pk": 34,
+ "model": "askbot.thread",
+ "fields": {
+ "last_activity_by": 34,
+ "view_count": 0,
+ "close_reason": null,
+ "last_activity_at": "2011-12-11 12:21:31",
+ "closed": false,
+ "title": "Test question title No.34",
+ "tagnames": "tag-34-0 tag-34-1",
+ "tags": [
+ 68,
+ 67
+ ],
+ "answer_count": 0,
+ "followed_by": [],
+ "accepted_answer": null,
+ "answer_accepted_at": null,
+ "favourite_count": 0,
+ "closed_at": null,
+ "closed_by": null
+ }
+ },
+ {
+ "pk": 35,
+ "model": "askbot.thread",
+ "fields": {
+ "last_activity_by": 35,
+ "view_count": 0,
+ "close_reason": null,
+ "last_activity_at": "2011-12-11 12:21:32",
+ "closed": false,
+ "title": "Test question title No.35",
+ "tagnames": "tag-35-0 tag-35-1",
+ "tags": [
+ 69,
+ 70
+ ],
+ "answer_count": 0,
+ "followed_by": [],
+ "accepted_answer": null,
+ "answer_accepted_at": null,
+ "favourite_count": 0,
+ "closed_at": null,
+ "closed_by": null
+ }
+ },
+ {
+ "pk": 36,
+ "model": "askbot.thread",
+ "fields": {
+ "last_activity_by": 36,
+ "view_count": 0,
+ "close_reason": null,
+ "last_activity_at": "2011-12-11 12:21:32",
+ "closed": false,
+ "title": "Test question title No.36",
+ "tagnames": "tag-36-0 tag-36-1",
+ "tags": [
+ 72,
+ 71
+ ],
+ "answer_count": 0,
+ "followed_by": [],
+ "accepted_answer": null,
+ "answer_accepted_at": null,
+ "favourite_count": 0,
+ "closed_at": null,
+ "closed_by": null
+ }
+ },
+ {
+ "pk": 37,
+ "model": "askbot.thread",
+ "fields": {
+ "last_activity_by": 37,
+ "view_count": 0,
+ "close_reason": null,
+ "last_activity_at": "2011-12-11 12:21:33",
+ "closed": false,
+ "title": "Test question title No.37",
+ "tagnames": "tag-37-0 tag-37-1",
+ "tags": [
+ 73,
+ 74
+ ],
+ "answer_count": 0,
+ "followed_by": [],
+ "accepted_answer": null,
+ "answer_accepted_at": null,
+ "favourite_count": 0,
+ "closed_at": null,
+ "closed_by": null
+ }
+ },
+ {
+ "pk": 38,
+ "model": "askbot.thread",
+ "fields": {
+ "last_activity_by": 38,
+ "view_count": 0,
+ "close_reason": null,
+ "last_activity_at": "2011-12-11 12:21:33",
+ "closed": false,
+ "title": "Test question title No.38",
+ "tagnames": "tag-38-0 tag-38-1",
+ "tags": [
+ 76,
+ 75
+ ],
+ "answer_count": 0,
+ "followed_by": [],
+ "accepted_answer": null,
+ "answer_accepted_at": null,
+ "favourite_count": 0,
+ "closed_at": null,
+ "closed_by": null
+ }
+ },
+ {
+ "pk": 39,
+ "model": "askbot.thread",
+ "fields": {
+ "last_activity_by": 39,
+ "view_count": 0,
+ "close_reason": null,
+ "last_activity_at": "2011-12-11 12:21:34",
+ "closed": false,
+ "title": "Test question title No.39",
+ "tagnames": "tag-39-0 tag-39-1",
+ "tags": [
+ 77,
+ 78
+ ],
+ "answer_count": 0,
+ "followed_by": [],
+ "accepted_answer": null,
+ "answer_accepted_at": null,
+ "favourite_count": 0,
+ "closed_at": null,
+ "closed_by": null
+ }
+ },
+ {
+ "pk": 40,
+ "model": "askbot.thread",
+ "fields": {
+ "last_activity_by": 20,
+ "view_count": 0,
+ "close_reason": null,
+ "last_activity_at": "2011-12-11 12:22:36",
+ "closed": false,
+ "title": "Test question title No.40",
+ "tagnames": "tag-40-0 tag-40-1",
+ "tags": [
+ 79,
+ 80
+ ],
+ "answer_count": 20,
+ "followed_by": [
+ 1,
+ 2,
+ 3,
+ 4,
+ 5,
+ 6,
+ 7,
+ 8,
+ 9,
+ 10,
+ 11,
+ 12,
+ 13,
+ 14,
+ 15,
+ 16,
+ 17,
+ 18,
+ 19,
+ 20
+ ],
+ "accepted_answer": 20,
+ "answer_accepted_at": "2011-12-11 12:22:41",
+ "favourite_count": 0,
+ "closed_at": null,
+ "closed_by": null
}
},
{
@@ -7012,39 +10943,23 @@
"vote_up_count": 1,
"text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
"offensive_flag_count": 0,
- "closed_at": null,
"deleted_at": null,
- "last_activity_by": 1,
- "view_count": 0,
"locked_at": null,
"score": 1,
"author": 1,
"comment_count": 0,
"html": "<p>Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n <strong>A/B</strong> testing <em>shrink</em> a market venture capital pitch.</p>\n",
"vote_down_count": 0,
- "closed": false,
- "answer_accepted": false,
"last_edited_by": null,
- "followed_by": [],
- "favourite_count": 0,
- "tags": [
- 1,
- 2
- ],
"deleted": false,
"summary": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User",
- "answer_count": 0,
- "last_activity_at": "2011-11-29 11:22:02",
- "closed_by": null,
- "close_reason": null,
"locked": false,
+ "thread": 1,
"is_anonymous": false,
- "tagnames": "tag-1-0 tag-1-1",
"locked_by": null,
- "added_at": "2011-11-29 11:22:02",
+ "added_at": "2011-12-11 12:21:08",
"deleted_by": null,
"wikified_at": null,
- "title": "Test question title No.1",
"last_edited_at": null
}
},
@@ -7056,39 +10971,23 @@
"vote_up_count": 0,
"text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
"offensive_flag_count": 0,
- "closed_at": null,
"deleted_at": null,
- "last_activity_by": 2,
- "view_count": 0,
"locked_at": null,
"score": -1,
"author": 2,
"comment_count": 0,
"html": "<p>Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n <strong>A/B</strong> testing <em>shrink</em> a market venture capital pitch.</p>\n",
"vote_down_count": 1,
- "closed": false,
- "answer_accepted": false,
"last_edited_by": null,
- "followed_by": [],
- "favourite_count": 0,
- "tags": [
- 4,
- 3
- ],
"deleted": false,
"summary": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User",
- "answer_count": 0,
- "last_activity_at": "2011-11-29 11:22:04",
- "closed_by": null,
- "close_reason": null,
"locked": false,
+ "thread": 2,
"is_anonymous": false,
- "tagnames": "tag-2-0 tag-2-1",
"locked_by": null,
- "added_at": "2011-11-29 11:22:04",
+ "added_at": "2011-12-11 12:21:15",
"deleted_by": null,
"wikified_at": null,
- "title": "Test question title No.2",
"last_edited_at": null
}
},
@@ -7100,39 +10999,23 @@
"vote_up_count": 1,
"text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
"offensive_flag_count": 0,
- "closed_at": null,
"deleted_at": null,
- "last_activity_by": 3,
- "view_count": 0,
"locked_at": null,
"score": 1,
"author": 3,
"comment_count": 0,
"html": "<p>Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n <strong>A/B</strong> testing <em>shrink</em> a market venture capital pitch.</p>\n",
"vote_down_count": 0,
- "closed": false,
- "answer_accepted": false,
"last_edited_by": null,
- "followed_by": [],
- "favourite_count": 0,
- "tags": [
- 5,
- 6
- ],
"deleted": false,
"summary": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User",
- "answer_count": 0,
- "last_activity_at": "2011-11-29 11:22:04",
- "closed_by": null,
- "close_reason": null,
"locked": false,
+ "thread": 3,
"is_anonymous": false,
- "tagnames": "tag-3-0 tag-3-1",
"locked_by": null,
- "added_at": "2011-11-29 11:22:04",
+ "added_at": "2011-12-11 12:21:15",
"deleted_by": null,
"wikified_at": null,
- "title": "Test question title No.3",
"last_edited_at": null
}
},
@@ -7144,39 +11027,23 @@
"vote_up_count": 0,
"text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
"offensive_flag_count": 0,
- "closed_at": null,
"deleted_at": null,
- "last_activity_by": 4,
- "view_count": 0,
"locked_at": null,
"score": -1,
"author": 4,
"comment_count": 0,
"html": "<p>Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n <strong>A/B</strong> testing <em>shrink</em> a market venture capital pitch.</p>\n",
"vote_down_count": 1,
- "closed": false,
- "answer_accepted": false,
"last_edited_by": null,
- "followed_by": [],
- "favourite_count": 0,
- "tags": [
- 8,
- 7
- ],
"deleted": false,
"summary": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User",
- "answer_count": 0,
- "last_activity_at": "2011-11-29 11:22:05",
- "closed_by": null,
- "close_reason": null,
"locked": false,
+ "thread": 4,
"is_anonymous": false,
- "tagnames": "tag-4-0 tag-4-1",
"locked_by": null,
- "added_at": "2011-11-29 11:22:05",
+ "added_at": "2011-12-11 12:21:16",
"deleted_by": null,
"wikified_at": null,
- "title": "Test question title No.4",
"last_edited_at": null
}
},
@@ -7188,39 +11055,23 @@
"vote_up_count": 1,
"text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
"offensive_flag_count": 0,
- "closed_at": null,
"deleted_at": null,
- "last_activity_by": 5,
- "view_count": 0,
"locked_at": null,
"score": 1,
"author": 5,
"comment_count": 0,
"html": "<p>Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n <strong>A/B</strong> testing <em>shrink</em> a market venture capital pitch.</p>\n",
"vote_down_count": 0,
- "closed": false,
- "answer_accepted": false,
"last_edited_by": null,
- "followed_by": [],
- "favourite_count": 0,
- "tags": [
- 9,
- 10
- ],
"deleted": false,
"summary": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User",
- "answer_count": 0,
- "last_activity_at": "2011-11-29 11:22:06",
- "closed_by": null,
- "close_reason": null,
"locked": false,
+ "thread": 5,
"is_anonymous": false,
- "tagnames": "tag-5-0 tag-5-1",
"locked_by": null,
- "added_at": "2011-11-29 11:22:06",
+ "added_at": "2011-12-11 12:21:16",
"deleted_by": null,
"wikified_at": null,
- "title": "Test question title No.5",
"last_edited_at": null
}
},
@@ -7232,39 +11083,23 @@
"vote_up_count": 0,
"text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
"offensive_flag_count": 0,
- "closed_at": null,
"deleted_at": null,
- "last_activity_by": 6,
- "view_count": 0,
"locked_at": null,
"score": -1,
"author": 6,
"comment_count": 0,
"html": "<p>Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n <strong>A/B</strong> testing <em>shrink</em> a market venture capital pitch.</p>\n",
"vote_down_count": 1,
- "closed": false,
- "answer_accepted": false,
"last_edited_by": null,
- "followed_by": [],
- "favourite_count": 0,
- "tags": [
- 12,
- 11
- ],
"deleted": false,
"summary": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User",
- "answer_count": 0,
- "last_activity_at": "2011-11-29 11:22:07",
- "closed_by": null,
- "close_reason": null,
"locked": false,
+ "thread": 6,
"is_anonymous": false,
- "tagnames": "tag-6-0 tag-6-1",
"locked_by": null,
- "added_at": "2011-11-29 11:22:07",
+ "added_at": "2011-12-11 12:21:17",
"deleted_by": null,
"wikified_at": null,
- "title": "Test question title No.6",
"last_edited_at": null
}
},
@@ -7276,39 +11111,23 @@
"vote_up_count": 1,
"text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
"offensive_flag_count": 0,
- "closed_at": null,
"deleted_at": null,
- "last_activity_by": 7,
- "view_count": 0,
"locked_at": null,
"score": 1,
"author": 7,
"comment_count": 0,
"html": "<p>Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n <strong>A/B</strong> testing <em>shrink</em> a market venture capital pitch.</p>\n",
"vote_down_count": 0,
- "closed": false,
- "answer_accepted": false,
"last_edited_by": null,
- "followed_by": [],
- "favourite_count": 0,
- "tags": [
- 13,
- 14
- ],
"deleted": false,
"summary": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User",
- "answer_count": 0,
- "last_activity_at": "2011-11-29 11:22:07",
- "closed_by": null,
- "close_reason": null,
"locked": false,
+ "thread": 7,
"is_anonymous": false,
- "tagnames": "tag-7-0 tag-7-1",
"locked_by": null,
- "added_at": "2011-11-29 11:22:07",
+ "added_at": "2011-12-11 12:21:17",
"deleted_by": null,
"wikified_at": null,
- "title": "Test question title No.7",
"last_edited_at": null
}
},
@@ -7320,39 +11139,23 @@
"vote_up_count": 0,
"text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
"offensive_flag_count": 0,
- "closed_at": null,
"deleted_at": null,
- "last_activity_by": 8,
- "view_count": 0,
"locked_at": null,
"score": -1,
"author": 8,
"comment_count": 0,
"html": "<p>Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n <strong>A/B</strong> testing <em>shrink</em> a market venture capital pitch.</p>\n",
"vote_down_count": 1,
- "closed": false,
- "answer_accepted": false,
"last_edited_by": null,
- "followed_by": [],
- "favourite_count": 0,
- "tags": [
- 16,
- 15
- ],
"deleted": false,
"summary": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User",
- "answer_count": 0,
- "last_activity_at": "2011-11-29 11:22:08",
- "closed_by": null,
- "close_reason": null,
"locked": false,
+ "thread": 8,
"is_anonymous": false,
- "tagnames": "tag-8-0 tag-8-1",
"locked_by": null,
- "added_at": "2011-11-29 11:22:08",
+ "added_at": "2011-12-11 12:21:18",
"deleted_by": null,
"wikified_at": null,
- "title": "Test question title No.8",
"last_edited_at": null
}
},
@@ -7364,39 +11167,23 @@
"vote_up_count": 1,
"text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
"offensive_flag_count": 0,
- "closed_at": null,
"deleted_at": null,
- "last_activity_by": 9,
- "view_count": 0,
"locked_at": null,
"score": 1,
"author": 9,
"comment_count": 0,
"html": "<p>Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n <strong>A/B</strong> testing <em>shrink</em> a market venture capital pitch.</p>\n",
"vote_down_count": 0,
- "closed": false,
- "answer_accepted": false,
"last_edited_by": null,
- "followed_by": [],
- "favourite_count": 0,
- "tags": [
- 17,
- 18
- ],
"deleted": false,
"summary": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User",
- "answer_count": 0,
- "last_activity_at": "2011-11-29 11:22:09",
- "closed_by": null,
- "close_reason": null,
"locked": false,
+ "thread": 9,
"is_anonymous": false,
- "tagnames": "tag-9-0 tag-9-1",
"locked_by": null,
- "added_at": "2011-11-29 11:22:09",
+ "added_at": "2011-12-11 12:21:18",
"deleted_by": null,
"wikified_at": null,
- "title": "Test question title No.9",
"last_edited_at": null
}
},
@@ -7408,39 +11195,23 @@
"vote_up_count": 0,
"text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
"offensive_flag_count": 0,
- "closed_at": null,
"deleted_at": null,
- "last_activity_by": 10,
- "view_count": 0,
"locked_at": null,
"score": -1,
"author": 10,
"comment_count": 0,
"html": "<p>Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n <strong>A/B</strong> testing <em>shrink</em> a market venture capital pitch.</p>\n",
"vote_down_count": 1,
- "closed": false,
- "answer_accepted": false,
"last_edited_by": null,
- "followed_by": [],
- "favourite_count": 0,
- "tags": [
- 20,
- 19
- ],
"deleted": false,
"summary": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User",
- "answer_count": 0,
- "last_activity_at": "2011-11-29 11:22:09",
- "closed_by": null,
- "close_reason": null,
"locked": false,
+ "thread": 10,
"is_anonymous": false,
- "tagnames": "tag-10-0 tag-10-1",
"locked_by": null,
- "added_at": "2011-11-29 11:22:09",
+ "added_at": "2011-12-11 12:21:19",
"deleted_by": null,
"wikified_at": null,
- "title": "Test question title No.10",
"last_edited_at": null
}
},
@@ -7452,39 +11223,23 @@
"vote_up_count": 1,
"text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
"offensive_flag_count": 0,
- "closed_at": null,
"deleted_at": null,
- "last_activity_by": 11,
- "view_count": 0,
"locked_at": null,
"score": 1,
"author": 11,
"comment_count": 0,
"html": "<p>Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n <strong>A/B</strong> testing <em>shrink</em> a market venture capital pitch.</p>\n",
"vote_down_count": 0,
- "closed": false,
- "answer_accepted": false,
"last_edited_by": null,
- "followed_by": [],
- "favourite_count": 0,
- "tags": [
- 21,
- 22
- ],
"deleted": false,
"summary": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User",
- "answer_count": 0,
- "last_activity_at": "2011-11-29 11:22:09",
- "closed_by": null,
- "close_reason": null,
"locked": false,
+ "thread": 11,
"is_anonymous": false,
- "tagnames": "tag-11-0 tag-11-1",
"locked_by": null,
- "added_at": "2011-11-29 11:22:09",
+ "added_at": "2011-12-11 12:21:19",
"deleted_by": null,
"wikified_at": null,
- "title": "Test question title No.11",
"last_edited_at": null
}
},
@@ -7496,39 +11251,23 @@
"vote_up_count": 0,
"text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
"offensive_flag_count": 0,
- "closed_at": null,
"deleted_at": null,
- "last_activity_by": 12,
- "view_count": 0,
"locked_at": null,
"score": -1,
"author": 12,
"comment_count": 0,
"html": "<p>Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n <strong>A/B</strong> testing <em>shrink</em> a market venture capital pitch.</p>\n",
"vote_down_count": 1,
- "closed": false,
- "answer_accepted": false,
"last_edited_by": null,
- "followed_by": [],
- "favourite_count": 0,
- "tags": [
- 24,
- 23
- ],
"deleted": false,
"summary": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User",
- "answer_count": 0,
- "last_activity_at": "2011-11-29 11:22:09",
- "closed_by": null,
- "close_reason": null,
"locked": false,
+ "thread": 12,
"is_anonymous": false,
- "tagnames": "tag-12-0 tag-12-1",
"locked_by": null,
- "added_at": "2011-11-29 11:22:09",
+ "added_at": "2011-12-11 12:21:20",
"deleted_by": null,
"wikified_at": null,
- "title": "Test question title No.12",
"last_edited_at": null
}
},
@@ -7540,39 +11279,23 @@
"vote_up_count": 1,
"text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
"offensive_flag_count": 0,
- "closed_at": null,
"deleted_at": null,
- "last_activity_by": 13,
- "view_count": 0,
"locked_at": null,
"score": 1,
"author": 13,
"comment_count": 0,
"html": "<p>Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n <strong>A/B</strong> testing <em>shrink</em> a market venture capital pitch.</p>\n",
"vote_down_count": 0,
- "closed": false,
- "answer_accepted": false,
"last_edited_by": null,
- "followed_by": [],
- "favourite_count": 0,
- "tags": [
- 25,
- 26
- ],
"deleted": false,
"summary": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User",
- "answer_count": 0,
- "last_activity_at": "2011-11-29 11:22:10",
- "closed_by": null,
- "close_reason": null,
"locked": false,
+ "thread": 13,
"is_anonymous": false,
- "tagnames": "tag-13-0 tag-13-1",
"locked_by": null,
- "added_at": "2011-11-29 11:22:10",
+ "added_at": "2011-12-11 12:21:20",
"deleted_by": null,
"wikified_at": null,
- "title": "Test question title No.13",
"last_edited_at": null
}
},
@@ -7584,39 +11307,23 @@
"vote_up_count": 0,
"text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
"offensive_flag_count": 0,
- "closed_at": null,
"deleted_at": null,
- "last_activity_by": 14,
- "view_count": 0,
"locked_at": null,
"score": -1,
"author": 14,
"comment_count": 0,
"html": "<p>Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n <strong>A/B</strong> testing <em>shrink</em> a market venture capital pitch.</p>\n",
"vote_down_count": 1,
- "closed": false,
- "answer_accepted": false,
"last_edited_by": null,
- "followed_by": [],
- "favourite_count": 0,
- "tags": [
- 28,
- 27
- ],
"deleted": false,
"summary": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User",
- "answer_count": 0,
- "last_activity_at": "2011-11-29 11:22:10",
- "closed_by": null,
- "close_reason": null,
"locked": false,
+ "thread": 14,
"is_anonymous": false,
- "tagnames": "tag-14-0 tag-14-1",
"locked_by": null,
- "added_at": "2011-11-29 11:22:10",
+ "added_at": "2011-12-11 12:21:21",
"deleted_by": null,
"wikified_at": null,
- "title": "Test question title No.14",
"last_edited_at": null
}
},
@@ -7628,39 +11335,23 @@
"vote_up_count": 1,
"text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
"offensive_flag_count": 0,
- "closed_at": null,
"deleted_at": null,
- "last_activity_by": 15,
- "view_count": 0,
"locked_at": null,
"score": 1,
"author": 15,
"comment_count": 0,
"html": "<p>Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n <strong>A/B</strong> testing <em>shrink</em> a market venture capital pitch.</p>\n",
"vote_down_count": 0,
- "closed": false,
- "answer_accepted": false,
"last_edited_by": null,
- "followed_by": [],
- "favourite_count": 0,
- "tags": [
- 29,
- 30
- ],
"deleted": false,
"summary": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User",
- "answer_count": 0,
- "last_activity_at": "2011-11-29 11:22:10",
- "closed_by": null,
- "close_reason": null,
"locked": false,
+ "thread": 15,
"is_anonymous": false,
- "tagnames": "tag-15-0 tag-15-1",
"locked_by": null,
- "added_at": "2011-11-29 11:22:10",
+ "added_at": "2011-12-11 12:21:21",
"deleted_by": null,
"wikified_at": null,
- "title": "Test question title No.15",
"last_edited_at": null
}
},
@@ -7672,39 +11363,23 @@
"vote_up_count": 0,
"text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
"offensive_flag_count": 0,
- "closed_at": null,
"deleted_at": null,
- "last_activity_by": 16,
- "view_count": 0,
"locked_at": null,
"score": -1,
"author": 16,
"comment_count": 0,
"html": "<p>Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n <strong>A/B</strong> testing <em>shrink</em> a market venture capital pitch.</p>\n",
"vote_down_count": 1,
- "closed": false,
- "answer_accepted": false,
"last_edited_by": null,
- "followed_by": [],
- "favourite_count": 0,
- "tags": [
- 32,
- 31
- ],
"deleted": false,
"summary": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User",
- "answer_count": 0,
- "last_activity_at": "2011-11-29 11:22:10",
- "closed_by": null,
- "close_reason": null,
"locked": false,
+ "thread": 16,
"is_anonymous": false,
- "tagnames": "tag-16-0 tag-16-1",
"locked_by": null,
- "added_at": "2011-11-29 11:22:10",
+ "added_at": "2011-12-11 12:21:22",
"deleted_by": null,
"wikified_at": null,
- "title": "Test question title No.16",
"last_edited_at": null
}
},
@@ -7716,39 +11391,23 @@
"vote_up_count": 1,
"text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
"offensive_flag_count": 0,
- "closed_at": null,
"deleted_at": null,
- "last_activity_by": 17,
- "view_count": 0,
"locked_at": null,
"score": 1,
"author": 17,
"comment_count": 0,
"html": "<p>Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n <strong>A/B</strong> testing <em>shrink</em> a market venture capital pitch.</p>\n",
"vote_down_count": 0,
- "closed": false,
- "answer_accepted": false,
"last_edited_by": null,
- "followed_by": [],
- "favourite_count": 0,
- "tags": [
- 33,
- 34
- ],
"deleted": false,
"summary": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User",
- "answer_count": 0,
- "last_activity_at": "2011-11-29 11:22:10",
- "closed_by": null,
- "close_reason": null,
"locked": false,
+ "thread": 17,
"is_anonymous": false,
- "tagnames": "tag-17-0 tag-17-1",
"locked_by": null,
- "added_at": "2011-11-29 11:22:10",
+ "added_at": "2011-12-11 12:21:22",
"deleted_by": null,
"wikified_at": null,
- "title": "Test question title No.17",
"last_edited_at": null
}
},
@@ -7760,39 +11419,23 @@
"vote_up_count": 0,
"text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
"offensive_flag_count": 0,
- "closed_at": null,
"deleted_at": null,
- "last_activity_by": 18,
- "view_count": 0,
"locked_at": null,
"score": -1,
"author": 18,
"comment_count": 0,
"html": "<p>Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n <strong>A/B</strong> testing <em>shrink</em> a market venture capital pitch.</p>\n",
"vote_down_count": 1,
- "closed": false,
- "answer_accepted": false,
"last_edited_by": null,
- "followed_by": [],
- "favourite_count": 0,
- "tags": [
- 36,
- 35
- ],
"deleted": false,
"summary": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User",
- "answer_count": 0,
- "last_activity_at": "2011-11-29 11:22:11",
- "closed_by": null,
- "close_reason": null,
"locked": false,
+ "thread": 18,
"is_anonymous": false,
- "tagnames": "tag-18-0 tag-18-1",
"locked_by": null,
- "added_at": "2011-11-29 11:22:11",
+ "added_at": "2011-12-11 12:21:23",
"deleted_by": null,
"wikified_at": null,
- "title": "Test question title No.18",
"last_edited_at": null
}
},
@@ -7804,39 +11447,23 @@
"vote_up_count": 1,
"text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
"offensive_flag_count": 0,
- "closed_at": null,
"deleted_at": null,
- "last_activity_by": 19,
- "view_count": 0,
"locked_at": null,
"score": 1,
"author": 19,
"comment_count": 0,
"html": "<p>Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n <strong>A/B</strong> testing <em>shrink</em> a market venture capital pitch.</p>\n",
"vote_down_count": 0,
- "closed": false,
- "answer_accepted": false,
"last_edited_by": null,
- "followed_by": [],
- "favourite_count": 0,
- "tags": [
- 37,
- 38
- ],
"deleted": false,
"summary": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User",
- "answer_count": 0,
- "last_activity_at": "2011-11-29 11:22:11",
- "closed_by": null,
- "close_reason": null,
"locked": false,
+ "thread": 19,
"is_anonymous": false,
- "tagnames": "tag-19-0 tag-19-1",
"locked_by": null,
- "added_at": "2011-11-29 11:22:11",
+ "added_at": "2011-12-11 12:21:23",
"deleted_by": null,
"wikified_at": null,
- "title": "Test question title No.19",
"last_edited_at": null
}
},
@@ -7848,39 +11475,23 @@
"vote_up_count": 0,
"text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
"offensive_flag_count": 0,
- "closed_at": null,
"deleted_at": null,
- "last_activity_by": 20,
- "view_count": 0,
"locked_at": null,
"score": -1,
"author": 20,
"comment_count": 0,
"html": "<p>Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n <strong>A/B</strong> testing <em>shrink</em> a market venture capital pitch.</p>\n",
"vote_down_count": 1,
- "closed": false,
- "answer_accepted": false,
"last_edited_by": null,
- "followed_by": [],
- "favourite_count": 0,
- "tags": [
- 39,
- 40
- ],
"deleted": false,
"summary": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User",
- "answer_count": 0,
- "last_activity_at": "2011-11-29 11:22:11",
- "closed_by": null,
- "close_reason": null,
"locked": false,
+ "thread": 20,
"is_anonymous": false,
- "tagnames": "tag-20-0 tag-20-1",
"locked_by": null,
- "added_at": "2011-11-29 11:22:11",
+ "added_at": "2011-12-11 12:21:24",
"deleted_by": null,
"wikified_at": null,
- "title": "Test question title No.20",
"last_edited_at": null
}
},
@@ -7892,39 +11503,23 @@
"vote_up_count": 1,
"text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
"offensive_flag_count": 0,
- "closed_at": null,
"deleted_at": null,
- "last_activity_by": 21,
- "view_count": 0,
"locked_at": null,
"score": 1,
"author": 21,
"comment_count": 0,
"html": "<p>Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n <strong>A/B</strong> testing <em>shrink</em> a market venture capital pitch.</p>\n",
"vote_down_count": 0,
- "closed": false,
- "answer_accepted": false,
"last_edited_by": null,
- "followed_by": [],
- "favourite_count": 0,
- "tags": [
- 42,
- 41
- ],
"deleted": false,
"summary": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User",
- "answer_count": 0,
- "last_activity_at": "2011-11-29 11:22:11",
- "closed_by": null,
- "close_reason": null,
"locked": false,
+ "thread": 21,
"is_anonymous": false,
- "tagnames": "tag-21-0 tag-21-1",
"locked_by": null,
- "added_at": "2011-11-29 11:22:11",
+ "added_at": "2011-12-11 12:21:24",
"deleted_by": null,
"wikified_at": null,
- "title": "Test question title No.21",
"last_edited_at": null
}
},
@@ -7936,39 +11531,23 @@
"vote_up_count": 0,
"text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
"offensive_flag_count": 0,
- "closed_at": null,
"deleted_at": null,
- "last_activity_by": 22,
- "view_count": 0,
"locked_at": null,
"score": -1,
"author": 22,
"comment_count": 0,
"html": "<p>Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n <strong>A/B</strong> testing <em>shrink</em> a market venture capital pitch.</p>\n",
"vote_down_count": 1,
- "closed": false,
- "answer_accepted": false,
"last_edited_by": null,
- "followed_by": [],
- "favourite_count": 0,
- "tags": [
- 43,
- 44
- ],
"deleted": false,
"summary": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User",
- "answer_count": 0,
- "last_activity_at": "2011-11-29 11:22:12",
- "closed_by": null,
- "close_reason": null,
"locked": false,
+ "thread": 22,
"is_anonymous": false,
- "tagnames": "tag-22-0 tag-22-1",
"locked_by": null,
- "added_at": "2011-11-29 11:22:12",
+ "added_at": "2011-12-11 12:21:25",
"deleted_by": null,
"wikified_at": null,
- "title": "Test question title No.22",
"last_edited_at": null
}
},
@@ -7980,39 +11559,23 @@
"vote_up_count": 1,
"text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
"offensive_flag_count": 0,
- "closed_at": null,
"deleted_at": null,
- "last_activity_by": 23,
- "view_count": 0,
"locked_at": null,
"score": 1,
"author": 23,
"comment_count": 0,
"html": "<p>Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n <strong>A/B</strong> testing <em>shrink</em> a market venture capital pitch.</p>\n",
"vote_down_count": 0,
- "closed": false,
- "answer_accepted": false,
"last_edited_by": null,
- "followed_by": [],
- "favourite_count": 0,
- "tags": [
- 46,
- 45
- ],
"deleted": false,
"summary": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User",
- "answer_count": 0,
- "last_activity_at": "2011-11-29 11:22:12",
- "closed_by": null,
- "close_reason": null,
"locked": false,
+ "thread": 23,
"is_anonymous": false,
- "tagnames": "tag-23-0 tag-23-1",
"locked_by": null,
- "added_at": "2011-11-29 11:22:12",
+ "added_at": "2011-12-11 12:21:25",
"deleted_by": null,
"wikified_at": null,
- "title": "Test question title No.23",
"last_edited_at": null
}
},
@@ -8024,39 +11587,23 @@
"vote_up_count": 0,
"text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
"offensive_flag_count": 0,
- "closed_at": null,
"deleted_at": null,
- "last_activity_by": 24,
- "view_count": 0,
"locked_at": null,
"score": -1,
"author": 24,
"comment_count": 0,
"html": "<p>Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n <strong>A/B</strong> testing <em>shrink</em> a market venture capital pitch.</p>\n",
"vote_down_count": 1,
- "closed": false,
- "answer_accepted": false,
"last_edited_by": null,
- "followed_by": [],
- "favourite_count": 0,
- "tags": [
- 47,
- 48
- ],
"deleted": false,
"summary": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User",
- "answer_count": 0,
- "last_activity_at": "2011-11-29 11:22:12",
- "closed_by": null,
- "close_reason": null,
"locked": false,
+ "thread": 24,
"is_anonymous": false,
- "tagnames": "tag-24-0 tag-24-1",
"locked_by": null,
- "added_at": "2011-11-29 11:22:12",
+ "added_at": "2011-12-11 12:21:26",
"deleted_by": null,
"wikified_at": null,
- "title": "Test question title No.24",
"last_edited_at": null
}
},
@@ -8068,39 +11615,23 @@
"vote_up_count": 1,
"text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
"offensive_flag_count": 0,
- "closed_at": null,
"deleted_at": null,
- "last_activity_by": 25,
- "view_count": 0,
"locked_at": null,
"score": 1,
"author": 25,
"comment_count": 0,
"html": "<p>Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n <strong>A/B</strong> testing <em>shrink</em> a market venture capital pitch.</p>\n",
"vote_down_count": 0,
- "closed": false,
- "answer_accepted": false,
"last_edited_by": null,
- "followed_by": [],
- "favourite_count": 0,
- "tags": [
- 50,
- 49
- ],
"deleted": false,
"summary": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User",
- "answer_count": 0,
- "last_activity_at": "2011-11-29 11:22:12",
- "closed_by": null,
- "close_reason": null,
"locked": false,
+ "thread": 25,
"is_anonymous": false,
- "tagnames": "tag-25-0 tag-25-1",
"locked_by": null,
- "added_at": "2011-11-29 11:22:12",
+ "added_at": "2011-12-11 12:21:26",
"deleted_by": null,
"wikified_at": null,
- "title": "Test question title No.25",
"last_edited_at": null
}
},
@@ -8112,39 +11643,23 @@
"vote_up_count": 0,
"text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
"offensive_flag_count": 0,
- "closed_at": null,
"deleted_at": null,
- "last_activity_by": 26,
- "view_count": 0,
"locked_at": null,
"score": -1,
"author": 26,
"comment_count": 0,
"html": "<p>Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n <strong>A/B</strong> testing <em>shrink</em> a market venture capital pitch.</p>\n",
"vote_down_count": 1,
- "closed": false,
- "answer_accepted": false,
"last_edited_by": null,
- "followed_by": [],
- "favourite_count": 0,
- "tags": [
- 51,
- 52
- ],
"deleted": false,
"summary": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User",
- "answer_count": 0,
- "last_activity_at": "2011-11-29 11:22:13",
- "closed_by": null,
- "close_reason": null,
"locked": false,
+ "thread": 26,
"is_anonymous": false,
- "tagnames": "tag-26-0 tag-26-1",
"locked_by": null,
- "added_at": "2011-11-29 11:22:13",
+ "added_at": "2011-12-11 12:21:27",
"deleted_by": null,
"wikified_at": null,
- "title": "Test question title No.26",
"last_edited_at": null
}
},
@@ -8156,39 +11671,23 @@
"vote_up_count": 1,
"text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
"offensive_flag_count": 0,
- "closed_at": null,
"deleted_at": null,
- "last_activity_by": 27,
- "view_count": 0,
"locked_at": null,
"score": 1,
"author": 27,
"comment_count": 0,
"html": "<p>Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n <strong>A/B</strong> testing <em>shrink</em> a market venture capital pitch.</p>\n",
"vote_down_count": 0,
- "closed": false,
- "answer_accepted": false,
"last_edited_by": null,
- "followed_by": [],
- "favourite_count": 0,
- "tags": [
- 54,
- 53
- ],
"deleted": false,
"summary": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User",
- "answer_count": 0,
- "last_activity_at": "2011-11-29 11:22:13",
- "closed_by": null,
- "close_reason": null,
"locked": false,
+ "thread": 27,
"is_anonymous": false,
- "tagnames": "tag-27-0 tag-27-1",
"locked_by": null,
- "added_at": "2011-11-29 11:22:13",
+ "added_at": "2011-12-11 12:21:27",
"deleted_by": null,
"wikified_at": null,
- "title": "Test question title No.27",
"last_edited_at": null
}
},
@@ -8200,39 +11699,23 @@
"vote_up_count": 0,
"text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
"offensive_flag_count": 0,
- "closed_at": null,
"deleted_at": null,
- "last_activity_by": 28,
- "view_count": 0,
"locked_at": null,
"score": -1,
"author": 28,
"comment_count": 0,
"html": "<p>Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n <strong>A/B</strong> testing <em>shrink</em> a market venture capital pitch.</p>\n",
"vote_down_count": 1,
- "closed": false,
- "answer_accepted": false,
"last_edited_by": null,
- "followed_by": [],
- "favourite_count": 0,
- "tags": [
- 55,
- 56
- ],
"deleted": false,
"summary": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User",
- "answer_count": 0,
- "last_activity_at": "2011-11-29 11:22:13",
- "closed_by": null,
- "close_reason": null,
"locked": false,
+ "thread": 28,
"is_anonymous": false,
- "tagnames": "tag-28-0 tag-28-1",
"locked_by": null,
- "added_at": "2011-11-29 11:22:13",
+ "added_at": "2011-12-11 12:21:28",
"deleted_by": null,
"wikified_at": null,
- "title": "Test question title No.28",
"last_edited_at": null
}
},
@@ -8244,39 +11727,23 @@
"vote_up_count": 1,
"text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
"offensive_flag_count": 0,
- "closed_at": null,
"deleted_at": null,
- "last_activity_by": 29,
- "view_count": 0,
"locked_at": null,
"score": 1,
"author": 29,
"comment_count": 0,
"html": "<p>Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n <strong>A/B</strong> testing <em>shrink</em> a market venture capital pitch.</p>\n",
"vote_down_count": 0,
- "closed": false,
- "answer_accepted": false,
"last_edited_by": null,
- "followed_by": [],
- "favourite_count": 0,
- "tags": [
- 58,
- 57
- ],
"deleted": false,
"summary": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User",
- "answer_count": 0,
- "last_activity_at": "2011-11-29 11:22:13",
- "closed_by": null,
- "close_reason": null,
"locked": false,
+ "thread": 29,
"is_anonymous": false,
- "tagnames": "tag-29-0 tag-29-1",
"locked_by": null,
- "added_at": "2011-11-29 11:22:13",
+ "added_at": "2011-12-11 12:21:29",
"deleted_by": null,
"wikified_at": null,
- "title": "Test question title No.29",
"last_edited_at": null
}
},
@@ -8288,39 +11755,23 @@
"vote_up_count": 0,
"text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
"offensive_flag_count": 0,
- "closed_at": null,
"deleted_at": null,
- "last_activity_by": 30,
- "view_count": 0,
"locked_at": null,
"score": -1,
"author": 30,
"comment_count": 0,
"html": "<p>Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n <strong>A/B</strong> testing <em>shrink</em> a market venture capital pitch.</p>\n",
"vote_down_count": 1,
- "closed": false,
- "answer_accepted": false,
"last_edited_by": null,
- "followed_by": [],
- "favourite_count": 0,
- "tags": [
- 60,
- 59
- ],
"deleted": false,
"summary": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User",
- "answer_count": 0,
- "last_activity_at": "2011-11-29 11:22:13",
- "closed_by": null,
- "close_reason": null,
"locked": false,
+ "thread": 30,
"is_anonymous": false,
- "tagnames": "tag-30-0 tag-30-1",
"locked_by": null,
- "added_at": "2011-11-29 11:22:13",
+ "added_at": "2011-12-11 12:21:29",
"deleted_by": null,
"wikified_at": null,
- "title": "Test question title No.30",
"last_edited_at": null
}
},
@@ -8332,39 +11783,23 @@
"vote_up_count": 1,
"text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
"offensive_flag_count": 0,
- "closed_at": null,
"deleted_at": null,
- "last_activity_by": 31,
- "view_count": 0,
"locked_at": null,
"score": 1,
"author": 31,
"comment_count": 0,
"html": "<p>Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n <strong>A/B</strong> testing <em>shrink</em> a market venture capital pitch.</p>\n",
"vote_down_count": 0,
- "closed": false,
- "answer_accepted": false,
"last_edited_by": null,
- "followed_by": [],
- "favourite_count": 0,
- "tags": [
- 61,
- 62
- ],
"deleted": false,
"summary": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User",
- "answer_count": 0,
- "last_activity_at": "2011-11-29 11:22:14",
- "closed_by": null,
- "close_reason": null,
"locked": false,
+ "thread": 31,
"is_anonymous": false,
- "tagnames": "tag-31-0 tag-31-1",
"locked_by": null,
- "added_at": "2011-11-29 11:22:14",
+ "added_at": "2011-12-11 12:21:30",
"deleted_by": null,
"wikified_at": null,
- "title": "Test question title No.31",
"last_edited_at": null
}
},
@@ -8376,39 +11811,23 @@
"vote_up_count": 0,
"text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
"offensive_flag_count": 0,
- "closed_at": null,
"deleted_at": null,
- "last_activity_by": 32,
- "view_count": 0,
"locked_at": null,
"score": -1,
"author": 32,
"comment_count": 0,
"html": "<p>Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n <strong>A/B</strong> testing <em>shrink</em> a market venture capital pitch.</p>\n",
"vote_down_count": 1,
- "closed": false,
- "answer_accepted": false,
"last_edited_by": null,
- "followed_by": [],
- "favourite_count": 0,
- "tags": [
- 64,
- 63
- ],
"deleted": false,
"summary": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User",
- "answer_count": 0,
- "last_activity_at": "2011-11-29 11:22:14",
- "closed_by": null,
- "close_reason": null,
"locked": false,
+ "thread": 32,
"is_anonymous": false,
- "tagnames": "tag-32-0 tag-32-1",
"locked_by": null,
- "added_at": "2011-11-29 11:22:14",
+ "added_at": "2011-12-11 12:21:30",
"deleted_by": null,
"wikified_at": null,
- "title": "Test question title No.32",
"last_edited_at": null
}
},
@@ -8420,39 +11839,23 @@
"vote_up_count": 1,
"text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
"offensive_flag_count": 0,
- "closed_at": null,
"deleted_at": null,
- "last_activity_by": 33,
- "view_count": 0,
"locked_at": null,
"score": 1,
"author": 33,
"comment_count": 0,
"html": "<p>Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n <strong>A/B</strong> testing <em>shrink</em> a market venture capital pitch.</p>\n",
"vote_down_count": 0,
- "closed": false,
- "answer_accepted": false,
"last_edited_by": null,
- "followed_by": [],
- "favourite_count": 0,
- "tags": [
- 65,
- 66
- ],
"deleted": false,
"summary": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User",
- "answer_count": 0,
- "last_activity_at": "2011-11-29 11:22:14",
- "closed_by": null,
- "close_reason": null,
"locked": false,
+ "thread": 33,
"is_anonymous": false,
- "tagnames": "tag-33-0 tag-33-1",
"locked_by": null,
- "added_at": "2011-11-29 11:22:14",
+ "added_at": "2011-12-11 12:21:31",
"deleted_by": null,
"wikified_at": null,
- "title": "Test question title No.33",
"last_edited_at": null
}
},
@@ -8464,39 +11867,23 @@
"vote_up_count": 0,
"text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
"offensive_flag_count": 0,
- "closed_at": null,
"deleted_at": null,
- "last_activity_by": 34,
- "view_count": 0,
"locked_at": null,
"score": -1,
"author": 34,
"comment_count": 0,
"html": "<p>Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n <strong>A/B</strong> testing <em>shrink</em> a market venture capital pitch.</p>\n",
"vote_down_count": 1,
- "closed": false,
- "answer_accepted": false,
"last_edited_by": null,
- "followed_by": [],
- "favourite_count": 0,
- "tags": [
- 68,
- 67
- ],
"deleted": false,
"summary": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User",
- "answer_count": 0,
- "last_activity_at": "2011-11-29 11:22:14",
- "closed_by": null,
- "close_reason": null,
"locked": false,
+ "thread": 34,
"is_anonymous": false,
- "tagnames": "tag-34-0 tag-34-1",
"locked_by": null,
- "added_at": "2011-11-29 11:22:14",
+ "added_at": "2011-12-11 12:21:31",
"deleted_by": null,
"wikified_at": null,
- "title": "Test question title No.34",
"last_edited_at": null
}
},
@@ -8508,39 +11895,23 @@
"vote_up_count": 1,
"text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
"offensive_flag_count": 0,
- "closed_at": null,
"deleted_at": null,
- "last_activity_by": 35,
- "view_count": 0,
"locked_at": null,
"score": 1,
"author": 35,
"comment_count": 0,
"html": "<p>Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n <strong>A/B</strong> testing <em>shrink</em> a market venture capital pitch.</p>\n",
"vote_down_count": 0,
- "closed": false,
- "answer_accepted": false,
"last_edited_by": null,
- "followed_by": [],
- "favourite_count": 0,
- "tags": [
- 69,
- 70
- ],
"deleted": false,
"summary": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User",
- "answer_count": 0,
- "last_activity_at": "2011-11-29 11:22:15",
- "closed_by": null,
- "close_reason": null,
"locked": false,
+ "thread": 35,
"is_anonymous": false,
- "tagnames": "tag-35-0 tag-35-1",
"locked_by": null,
- "added_at": "2011-11-29 11:22:15",
+ "added_at": "2011-12-11 12:21:32",
"deleted_by": null,
"wikified_at": null,
- "title": "Test question title No.35",
"last_edited_at": null
}
},
@@ -8552,39 +11923,23 @@
"vote_up_count": 0,
"text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
"offensive_flag_count": 0,
- "closed_at": null,
"deleted_at": null,
- "last_activity_by": 36,
- "view_count": 0,
"locked_at": null,
"score": -1,
"author": 36,
"comment_count": 0,
"html": "<p>Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n <strong>A/B</strong> testing <em>shrink</em> a market venture capital pitch.</p>\n",
"vote_down_count": 1,
- "closed": false,
- "answer_accepted": false,
"last_edited_by": null,
- "followed_by": [],
- "favourite_count": 0,
- "tags": [
- 72,
- 71
- ],
"deleted": false,
"summary": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User",
- "answer_count": 0,
- "last_activity_at": "2011-11-29 11:22:15",
- "closed_by": null,
- "close_reason": null,
"locked": false,
+ "thread": 36,
"is_anonymous": false,
- "tagnames": "tag-36-0 tag-36-1",
"locked_by": null,
- "added_at": "2011-11-29 11:22:15",
+ "added_at": "2011-12-11 12:21:32",
"deleted_by": null,
"wikified_at": null,
- "title": "Test question title No.36",
"last_edited_at": null
}
},
@@ -8596,39 +11951,23 @@
"vote_up_count": 1,
"text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
"offensive_flag_count": 0,
- "closed_at": null,
"deleted_at": null,
- "last_activity_by": 37,
- "view_count": 0,
"locked_at": null,
"score": 1,
"author": 37,
"comment_count": 0,
"html": "<p>Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n <strong>A/B</strong> testing <em>shrink</em> a market venture capital pitch.</p>\n",
"vote_down_count": 0,
- "closed": false,
- "answer_accepted": false,
"last_edited_by": null,
- "followed_by": [],
- "favourite_count": 0,
- "tags": [
- 73,
- 74
- ],
"deleted": false,
"summary": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User",
- "answer_count": 0,
- "last_activity_at": "2011-11-29 11:22:15",
- "closed_by": null,
- "close_reason": null,
"locked": false,
+ "thread": 37,
"is_anonymous": false,
- "tagnames": "tag-37-0 tag-37-1",
"locked_by": null,
- "added_at": "2011-11-29 11:22:15",
+ "added_at": "2011-12-11 12:21:33",
"deleted_by": null,
"wikified_at": null,
- "title": "Test question title No.37",
"last_edited_at": null
}
},
@@ -8640,39 +11979,23 @@
"vote_up_count": 0,
"text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
"offensive_flag_count": 0,
- "closed_at": null,
"deleted_at": null,
- "last_activity_by": 38,
- "view_count": 0,
"locked_at": null,
"score": -1,
"author": 38,
"comment_count": 0,
"html": "<p>Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n <strong>A/B</strong> testing <em>shrink</em> a market venture capital pitch.</p>\n",
"vote_down_count": 1,
- "closed": false,
- "answer_accepted": false,
"last_edited_by": null,
- "followed_by": [],
- "favourite_count": 0,
- "tags": [
- 76,
- 75
- ],
"deleted": false,
"summary": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User",
- "answer_count": 0,
- "last_activity_at": "2011-11-29 11:22:15",
- "closed_by": null,
- "close_reason": null,
"locked": false,
+ "thread": 38,
"is_anonymous": false,
- "tagnames": "tag-38-0 tag-38-1",
"locked_by": null,
- "added_at": "2011-11-29 11:22:15",
+ "added_at": "2011-12-11 12:21:33",
"deleted_by": null,
"wikified_at": null,
- "title": "Test question title No.38",
"last_edited_at": null
}
},
@@ -8684,39 +12007,23 @@
"vote_up_count": 1,
"text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
"offensive_flag_count": 0,
- "closed_at": null,
"deleted_at": null,
- "last_activity_by": 39,
- "view_count": 0,
"locked_at": null,
"score": 1,
"author": 39,
"comment_count": 0,
"html": "<p>Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n <strong>A/B</strong> testing <em>shrink</em> a market venture capital pitch.</p>\n",
"vote_down_count": 0,
- "closed": false,
- "answer_accepted": false,
"last_edited_by": null,
- "followed_by": [],
- "favourite_count": 0,
- "tags": [
- 77,
- 78
- ],
"deleted": false,
"summary": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User",
- "answer_count": 0,
- "last_activity_at": "2011-11-29 11:22:16",
- "closed_by": null,
- "close_reason": null,
"locked": false,
+ "thread": 39,
"is_anonymous": false,
- "tagnames": "tag-39-0 tag-39-1",
"locked_by": null,
- "added_at": "2011-11-29 11:22:16",
+ "added_at": "2011-12-11 12:21:34",
"deleted_by": null,
"wikified_at": null,
- "title": "Test question title No.39",
"last_edited_at": null
}
},
@@ -8728,61 +12035,24 @@
"vote_up_count": 20,
"text": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n **A/B** testing *shrink* a market venture capital pitch.",
"offensive_flag_count": 0,
- "closed_at": null,
"deleted_at": null,
- "last_activity_by": 20,
- "view_count": 0,
"locked_at": null,
"score": 20,
"author": 40,
"comment_count": 20,
"html": "<p>Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User engagement\n <strong>A/B</strong> testing <em>shrink</em> a market venture capital pitch.</p>\n",
"vote_down_count": 0,
- "closed": false,
- "answer_accepted": true,
"last_edited_by": 40,
- "followed_by": [
- 1,
- 2,
- 3,
- 4,
- 5,
- 6,
- 7,
- 8,
- 9,
- 10,
- 11,
- 12,
- 13,
- 14,
- 15,
- 16,
- 17,
- 18,
- 19,
- 20
- ],
- "favourite_count": 0,
- "tags": [
- 79,
- 80
- ],
"deleted": false,
"summary": "Lorem lean startup ipsum product market fit customer\n development acquihire technical cofounder. User",
- "answer_count": 20,
- "last_activity_at": "2011-11-29 11:22:45",
- "closed_by": null,
- "close_reason": null,
"locked": false,
+ "thread": 40,
"is_anonymous": false,
- "tagnames": "tag-40-0 tag-40-1",
"locked_by": null,
- "added_at": "2011-11-29 11:22:16",
+ "added_at": "2011-12-11 12:21:34",
"deleted_by": null,
"wikified_at": null,
- "title": "Test question title No.EDITED",
- "last_edited_at": "2011-11-29 11:22:44"
+ "last_edited_at": "2011-12-11 12:22:34"
}
},
{
@@ -8802,12 +12072,12 @@
"html": "<p>Accelerator photo sharing business school drop out ramen\n hustle crush it revenue traction platforms.</p>\n",
"vote_down_count": 0,
"last_edited_by": null,
- "accepted_at": null,
"deleted": false,
- "accepted": false,
+ "summary": "Accelerator photo sharing business school drop out ramen\n hustle crush it revenue traction platforms.",
"locked": false,
+ "is_anonymous": false,
"locked_by": null,
- "added_at": "2011-11-29 11:22:16",
+ "added_at": "2011-12-11 12:21:35",
"deleted_by": null,
"wikified_at": null,
"last_edited_at": null
@@ -8830,12 +12100,12 @@
"html": "<p>Accelerator photo sharing business school drop out ramen\n hustle crush it revenue traction platforms.</p>\n",
"vote_down_count": 1,
"last_edited_by": null,
- "accepted_at": null,
"deleted": false,
- "accepted": false,
+ "summary": "Accelerator photo sharing business school drop out ramen\n hustle crush it revenue traction platforms.",
"locked": false,
+ "is_anonymous": false,
"locked_by": null,
- "added_at": "2011-11-29 11:22:16",
+ "added_at": "2011-12-11 12:21:36",
"deleted_by": null,
"wikified_at": null,
"last_edited_at": null
@@ -8858,12 +12128,12 @@
"html": "<p>Accelerator photo sharing business school drop out ramen\n hustle crush it revenue traction platforms.</p>\n",
"vote_down_count": 0,
"last_edited_by": null,
- "accepted_at": null,
"deleted": false,
- "accepted": false,
+ "summary": "Accelerator photo sharing business school drop out ramen\n hustle crush it revenue traction platforms.",
"locked": false,
+ "is_anonymous": false,
"locked_by": null,
- "added_at": "2011-11-29 11:22:17",
+ "added_at": "2011-12-11 12:21:36",
"deleted_by": null,
"wikified_at": null,
"last_edited_at": null
@@ -8886,12 +12156,12 @@
"html": "<p>Accelerator photo sharing business school drop out ramen\n hustle crush it revenue traction platforms.</p>\n",
"vote_down_count": 1,
"last_edited_by": null,
- "accepted_at": null,
"deleted": false,
- "accepted": false,
+ "summary": "Accelerator photo sharing business school drop out ramen\n hustle crush it revenue traction platforms.",
"locked": false,
+ "is_anonymous": false,
"locked_by": null,
- "added_at": "2011-11-29 11:22:17",
+ "added_at": "2011-12-11 12:21:37",
"deleted_by": null,
"wikified_at": null,
"last_edited_at": null
@@ -8914,12 +12184,12 @@
"html": "<p>Accelerator photo sharing business school drop out ramen\n hustle crush it revenue traction platforms.</p>\n",
"vote_down_count": 0,
"last_edited_by": null,
- "accepted_at": null,
"deleted": false,
- "accepted": false,
+ "summary": "Accelerator photo sharing business school drop out ramen\n hustle crush it revenue traction platforms.",
"locked": false,
+ "is_anonymous": false,
"locked_by": null,
- "added_at": "2011-11-29 11:22:17",
+ "added_at": "2011-12-11 12:21:38",
"deleted_by": null,
"wikified_at": null,
"last_edited_at": null
@@ -8942,12 +12212,12 @@
"html": "<p>Accelerator photo sharing business school drop out ramen\n hustle crush it revenue traction platforms.</p>\n",
"vote_down_count": 1,
"last_edited_by": null,
- "accepted_at": null,
"deleted": false,
- "accepted": false,
+ "summary": "Accelerator photo sharing business school drop out ramen\n hustle crush it revenue traction platforms.",
"locked": false,
+ "is_anonymous": false,
"locked_by": null,
- "added_at": "2011-11-29 11:22:18",
+ "added_at": "2011-12-11 12:21:39",
"deleted_by": null,
"wikified_at": null,
"last_edited_at": null
@@ -8970,12 +12240,12 @@
"html": "<p>Accelerator photo sharing business school drop out ramen\n hustle crush it revenue traction platforms.</p>\n",
"vote_down_count": 0,
"last_edited_by": null,
- "accepted_at": null,
"deleted": false,
- "accepted": false,
+ "summary": "Accelerator photo sharing business school drop out ramen\n hustle crush it revenue traction platforms.",
"locked": false,
+ "is_anonymous": false,
"locked_by": null,
- "added_at": "2011-11-29 11:22:18",
+ "added_at": "2011-12-11 12:21:40",
"deleted_by": null,
"wikified_at": null,
"last_edited_at": null
@@ -8998,12 +12268,12 @@
"html": "<p>Accelerator photo sharing business school drop out ramen\n hustle crush it revenue traction platforms.</p>\n",
"vote_down_count": 1,
"last_edited_by": null,
- "accepted_at": null,
"deleted": false,
- "accepted": false,
+ "summary": "Accelerator photo sharing business school drop out ramen\n hustle crush it revenue traction platforms.",
"locked": false,
+ "is_anonymous": false,
"locked_by": null,
- "added_at": "2011-11-29 11:22:19",
+ "added_at": "2011-12-11 12:21:41",
"deleted_by": null,
"wikified_at": null,
"last_edited_at": null
@@ -9026,12 +12296,12 @@
"html": "<p>Accelerator photo sharing business school drop out ramen\n hustle crush it revenue traction platforms.</p>\n",
"vote_down_count": 0,
"last_edited_by": null,
- "accepted_at": null,
"deleted": false,
- "accepted": false,
+ "summary": "Accelerator photo sharing business school drop out ramen\n hustle crush it revenue traction platforms.",
"locked": false,
+ "is_anonymous": false,
"locked_by": null,
- "added_at": "2011-11-29 11:22:19",
+ "added_at": "2011-12-11 12:21:42",
"deleted_by": null,
"wikified_at": null,
"last_edited_at": null
@@ -9054,12 +12324,12 @@
"html": "<p>Accelerator photo sharing business school drop out ramen\n hustle crush it revenue traction platforms.</p>\n",
"vote_down_count": 1,
"last_edited_by": null,
- "accepted_at": null,
"deleted": false,
- "accepted": false,
+ "summary": "Accelerator photo sharing business school drop out ramen\n hustle crush it revenue traction platforms.",
"locked": false,
+ "is_anonymous": false,
"locked_by": null,
- "added_at": "2011-11-29 11:22:20",
+ "added_at": "2011-12-11 12:21:43",
"deleted_by": null,
"wikified_at": null,
"last_edited_at": null
@@ -9082,12 +12352,12 @@
"html": "<p>Accelerator photo sharing business school drop out ramen\n hustle crush it revenue traction platforms.</p>\n",
"vote_down_count": 0,
"last_edited_by": null,
- "accepted_at": null,
"deleted": false,
- "accepted": false,
+ "summary": "Accelerator photo sharing business school drop out ramen\n hustle crush it revenue traction platforms.",
"locked": false,
+ "is_anonymous": false,
"locked_by": null,
- "added_at": "2011-11-29 11:22:20",
+ "added_at": "2011-12-11 12:21:44",
"deleted_by": null,
"wikified_at": null,
"last_edited_at": null
@@ -9110,12 +12380,12 @@
"html": "<p>Accelerator photo sharing business school drop out ramen\n hustle crush it revenue traction platforms.</p>\n",
"vote_down_count": 1,
"last_edited_by": null,
- "accepted_at": null,
"deleted": false,
- "accepted": false,
+ "summary": "Accelerator photo sharing business school drop out ramen\n hustle crush it revenue traction platforms.",
"locked": false,
+ "is_anonymous": false,
"locked_by": null,
- "added_at": "2011-11-29 11:22:21",
+ "added_at": "2011-12-11 12:21:45",
"deleted_by": null,
"wikified_at": null,
"last_edited_at": null
@@ -9138,12 +12408,12 @@
"html": "<p>Accelerator photo sharing business school drop out ramen\n hustle crush it revenue traction platforms.</p>\n",
"vote_down_count": 0,
"last_edited_by": null,
- "accepted_at": null,
"deleted": false,
- "accepted": false,
+ "summary": "Accelerator photo sharing business school drop out ramen\n hustle crush it revenue traction platforms.",
"locked": false,
+ "is_anonymous": false,
"locked_by": null,
- "added_at": "2011-11-29 11:22:22",
+ "added_at": "2011-12-11 12:21:47",
"deleted_by": null,
"wikified_at": null,
"last_edited_at": null
@@ -9166,12 +12436,12 @@
"html": "<p>Accelerator photo sharing business school drop out ramen\n hustle crush it revenue traction platforms.</p>\n",
"vote_down_count": 1,
"last_edited_by": null,
- "accepted_at": null,
"deleted": false,
- "accepted": false,
+ "summary": "Accelerator photo sharing business school drop out ramen\n hustle crush it revenue traction platforms.",
"locked": false,
+ "is_anonymous": false,
"locked_by": null,
- "added_at": "2011-11-29 11:22:22",
+ "added_at": "2011-12-11 12:21:48",
"deleted_by": null,
"wikified_at": null,
"last_edited_at": null
@@ -9194,12 +12464,12 @@
"html": "<p>Accelerator photo sharing business school drop out ramen\n hustle crush it revenue traction platforms.</p>\n",
"vote_down_count": 0,
"last_edited_by": null,
- "accepted_at": null,
"deleted": false,
- "accepted": false,
+ "summary": "Accelerator photo sharing business school drop out ramen\n hustle crush it revenue traction platforms.",
"locked": false,
+ "is_anonymous": false,
"locked_by": null,
- "added_at": "2011-11-29 11:22:23",
+ "added_at": "2011-12-11 12:21:50",
"deleted_by": null,
"wikified_at": null,
"last_edited_at": null
@@ -9222,12 +12492,12 @@
"html": "<p>Accelerator photo sharing business school drop out ramen\n hustle crush it revenue traction platforms.</p>\n",
"vote_down_count": 1,
"last_edited_by": null,
- "accepted_at": null,
"deleted": false,
- "accepted": false,
+ "summary": "Accelerator photo sharing business school drop out ramen\n hustle crush it revenue traction platforms.",
"locked": false,
+ "is_anonymous": false,
"locked_by": null,
- "added_at": "2011-11-29 11:22:24",
+ "added_at": "2011-12-11 12:21:52",
"deleted_by": null,
"wikified_at": null,
"last_edited_at": null
@@ -9250,12 +12520,12 @@
"html": "<p>Accelerator photo sharing business school drop out ramen\n hustle crush it revenue traction platforms.</p>\n",
"vote_down_count": 0,
"last_edited_by": null,
- "accepted_at": null,
"deleted": false,
- "accepted": false,
+ "summary": "Accelerator photo sharing business school drop out ramen\n hustle crush it revenue traction platforms.",
"locked": false,
+ "is_anonymous": false,
"locked_by": null,
- "added_at": "2011-11-29 11:22:25",
+ "added_at": "2011-12-11 12:21:53",
"deleted_by": null,
"wikified_at": null,
"last_edited_at": null
@@ -9278,12 +12548,12 @@
"html": "<p>Accelerator photo sharing business school drop out ramen\n hustle crush it revenue traction platforms.</p>\n",
"vote_down_count": 1,
"last_edited_by": null,
- "accepted_at": null,
"deleted": false,
- "accepted": false,
+ "summary": "Accelerator photo sharing business school drop out ramen\n hustle crush it revenue traction platforms.",
"locked": false,
+ "is_anonymous": false,
"locked_by": null,
- "added_at": "2011-11-29 11:22:25",
+ "added_at": "2011-12-11 12:21:55",
"deleted_by": null,
"wikified_at": null,
"last_edited_at": null
@@ -9306,12 +12576,12 @@
"html": "<p>Accelerator photo sharing business school drop out ramen\n hustle crush it revenue traction platforms.</p>\n",
"vote_down_count": 0,
"last_edited_by": null,
- "accepted_at": null,
"deleted": false,
- "accepted": false,
+ "summary": "Accelerator photo sharing business school drop out ramen\n hustle crush it revenue traction platforms.",
"locked": false,
+ "is_anonymous": false,
"locked_by": null,
- "added_at": "2011-11-29 11:22:26",
+ "added_at": "2011-12-11 12:21:57",
"deleted_by": null,
"wikified_at": null,
"last_edited_at": null
@@ -9334,2931 +12604,35 @@
"html": "<p>Main differentiators business model micro economics\n marketplace equity augmented reality human computer</p>\n",
"vote_down_count": 0,
"last_edited_by": 20,
- "accepted_at": "2011-11-29 11:22:47",
"deleted": false,
- "accepted": true,
+ "summary": "Main differentiators business model micro economics\n marketplace equity augmented reality human compu",
"locked": false,
+ "is_anonymous": false,
"locked_by": null,
- "added_at": "2011-11-29 11:22:27",
+ "added_at": "2011-12-11 12:21:59",
"deleted_by": null,
"wikified_at": null,
- "last_edited_at": "2011-11-29 11:22:45"
- }
- },
- {
- "pk": 1,
- "model": "askbot.award",
- "fields": {
- "awarded_at": "2011-11-29 11:22:03",
- "notified": false,
- "object_id": 1,
- "user": 1,
- "content_type": 17,
- "badge": 1
- }
- },
- {
- "pk": 2,
- "model": "askbot.award",
- "fields": {
- "awarded_at": "2011-11-29 11:22:03",
- "notified": false,
- "object_id": 1,
- "user": 2,
- "content_type": 17,
- "badge": 2
- }
- },
- {
- "pk": 3,
- "model": "askbot.award",
- "fields": {
- "awarded_at": "2011-11-29 11:22:04",
- "notified": false,
- "object_id": 2,
- "user": 3,
- "content_type": 17,
- "badge": 3
- }
- },
- {
- "pk": 4,
- "model": "askbot.award",
- "fields": {
- "awarded_at": "2011-11-29 11:22:05",
- "notified": false,
- "object_id": 3,
- "user": 3,
- "content_type": 17,
- "badge": 1
- }
- },
- {
- "pk": 5,
- "model": "askbot.award",
- "fields": {
- "awarded_at": "2011-11-29 11:22:05",
- "notified": false,
- "object_id": 3,
- "user": 4,
- "content_type": 17,
- "badge": 2
- }
- },
- {
- "pk": 6,
- "model": "askbot.award",
- "fields": {
- "awarded_at": "2011-11-29 11:22:05",
- "notified": false,
- "object_id": 4,
- "user": 5,
- "content_type": 17,
- "badge": 3
- }
- },
- {
- "pk": 7,
- "model": "askbot.award",
- "fields": {
- "awarded_at": "2011-11-29 11:22:06",
- "notified": false,
- "object_id": 5,
- "user": 5,
- "content_type": 17,
- "badge": 1
- }
- },
- {
- "pk": 8,
- "model": "askbot.award",
- "fields": {
- "awarded_at": "2011-11-29 11:22:06",
- "notified": false,
- "object_id": 5,
- "user": 6,
- "content_type": 17,
- "badge": 2
- }
- },
- {
- "pk": 9,
- "model": "askbot.award",
- "fields": {
- "awarded_at": "2011-11-29 11:22:07",
- "notified": false,
- "object_id": 6,
- "user": 7,
- "content_type": 17,
- "badge": 3
- }
- },
- {
- "pk": 10,
- "model": "askbot.award",
- "fields": {
- "awarded_at": "2011-11-29 11:22:08",
- "notified": false,
- "object_id": 7,
- "user": 7,
- "content_type": 17,
- "badge": 1
- }
- },
- {
- "pk": 11,
- "model": "askbot.award",
- "fields": {
- "awarded_at": "2011-11-29 11:22:08",
- "notified": false,
- "object_id": 7,
- "user": 8,
- "content_type": 17,
- "badge": 2
- }
- },
- {
- "pk": 12,
- "model": "askbot.award",
- "fields": {
- "awarded_at": "2011-11-29 11:22:08",
- "notified": false,
- "object_id": 8,
- "user": 9,
- "content_type": 17,
- "badge": 3
- }
- },
- {
- "pk": 13,
- "model": "askbot.award",
- "fields": {
- "awarded_at": "2011-11-29 11:22:09",
- "notified": false,
- "object_id": 9,
- "user": 9,
- "content_type": 17,
- "badge": 1
- }
- },
- {
- "pk": 14,
- "model": "askbot.award",
- "fields": {
- "awarded_at": "2011-11-29 11:22:09",
- "notified": false,
- "object_id": 9,
- "user": 10,
- "content_type": 17,
- "badge": 2
- }
- },
- {
- "pk": 15,
- "model": "askbot.award",
- "fields": {
- "awarded_at": "2011-11-29 11:22:09",
- "notified": false,
- "object_id": 10,
- "user": 11,
- "content_type": 17,
- "badge": 3
- }
- },
- {
- "pk": 16,
- "model": "askbot.award",
- "fields": {
- "awarded_at": "2011-11-29 11:22:09",
- "notified": false,
- "object_id": 11,
- "user": 11,
- "content_type": 17,
- "badge": 1
- }
- },
- {
- "pk": 17,
- "model": "askbot.award",
- "fields": {
- "awarded_at": "2011-11-29 11:22:09",
- "notified": false,
- "object_id": 11,
- "user": 12,
- "content_type": 17,
- "badge": 2
- }
- },
- {
- "pk": 18,
- "model": "askbot.award",
- "fields": {
- "awarded_at": "2011-11-29 11:22:09",
- "notified": false,
- "object_id": 12,
- "user": 13,
- "content_type": 17,
- "badge": 3
- }
- },
- {
- "pk": 19,
- "model": "askbot.award",
- "fields": {
- "awarded_at": "2011-11-29 11:22:10",
- "notified": false,
- "object_id": 13,
- "user": 13,
- "content_type": 17,
- "badge": 1
- }
- },
- {
- "pk": 20,
- "model": "askbot.award",
- "fields": {
- "awarded_at": "2011-11-29 11:22:10",
- "notified": false,
- "object_id": 13,
- "user": 14,
- "content_type": 17,
- "badge": 2
- }
- },
- {
- "pk": 21,
- "model": "askbot.award",
- "fields": {
- "awarded_at": "2011-11-29 11:22:10",
- "notified": false,
- "object_id": 14,
- "user": 15,
- "content_type": 17,
- "badge": 3
- }
- },
- {
- "pk": 22,
- "model": "askbot.award",
- "fields": {
- "awarded_at": "2011-11-29 11:22:10",
- "notified": false,
- "object_id": 15,
- "user": 15,
- "content_type": 17,
- "badge": 1
- }
- },
- {
- "pk": 23,
- "model": "askbot.award",
- "fields": {
- "awarded_at": "2011-11-29 11:22:10",
- "notified": false,
- "object_id": 15,
- "user": 16,
- "content_type": 17,
- "badge": 2
- }
- },
- {
- "pk": 24,
- "model": "askbot.award",
- "fields": {
- "awarded_at": "2011-11-29 11:22:10",
- "notified": false,
- "object_id": 16,
- "user": 17,
- "content_type": 17,
- "badge": 3
- }
- },
- {
- "pk": 25,
- "model": "askbot.award",
- "fields": {
- "awarded_at": "2011-11-29 11:22:11",
- "notified": false,
- "object_id": 17,
- "user": 17,
- "content_type": 17,
- "badge": 1
- }
- },
- {
- "pk": 26,
- "model": "askbot.award",
- "fields": {
- "awarded_at": "2011-11-29 11:22:11",
- "notified": false,
- "object_id": 17,
- "user": 18,
- "content_type": 17,
- "badge": 2
- }
- },
- {
- "pk": 27,
- "model": "askbot.award",
- "fields": {
- "awarded_at": "2011-11-29 11:22:11",
- "notified": false,
- "object_id": 18,
- "user": 19,
- "content_type": 17,
- "badge": 3
- }
- },
- {
- "pk": 28,
- "model": "askbot.award",
- "fields": {
- "awarded_at": "2011-11-29 11:22:11",
- "notified": false,
- "object_id": 19,
- "user": 19,
- "content_type": 17,
- "badge": 1
- }
- },
- {
- "pk": 29,
- "model": "askbot.award",
- "fields": {
- "awarded_at": "2011-11-29 11:22:11",
- "notified": false,
- "object_id": 19,
- "user": 20,
- "content_type": 17,
- "badge": 2
- }
- },
- {
- "pk": 30,
- "model": "askbot.award",
- "fields": {
- "awarded_at": "2011-11-29 11:22:11",
- "notified": false,
- "object_id": 20,
- "user": 21,
- "content_type": 17,
- "badge": 3
- }
- },
- {
- "pk": 31,
- "model": "askbot.award",
- "fields": {
- "awarded_at": "2011-11-29 11:22:11",
- "notified": false,
- "object_id": 21,
- "user": 21,
- "content_type": 17,
- "badge": 1
- }
- },
- {
- "pk": 32,
- "model": "askbot.award",
- "fields": {
- "awarded_at": "2011-11-29 11:22:11",
- "notified": false,
- "object_id": 21,
- "user": 22,
- "content_type": 17,
- "badge": 2
- }
- },
- {
- "pk": 33,
- "model": "askbot.award",
- "fields": {
- "awarded_at": "2011-11-29 11:22:12",
- "notified": false,
- "object_id": 22,
- "user": 23,
- "content_type": 17,
- "badge": 3
- }
- },
- {
- "pk": 34,
- "model": "askbot.award",
- "fields": {
- "awarded_at": "2011-11-29 11:22:12",
- "notified": false,
- "object_id": 23,
- "user": 23,
- "content_type": 17,
- "badge": 1
- }
- },
- {
- "pk": 35,
- "model": "askbot.award",
- "fields": {
- "awarded_at": "2011-11-29 11:22:12",
- "notified": false,
- "object_id": 23,
- "user": 24,
- "content_type": 17,
- "badge": 2
- }
- },
- {
- "pk": 36,
- "model": "askbot.award",
- "fields": {
- "awarded_at": "2011-11-29 11:22:12",
- "notified": false,
- "object_id": 24,
- "user": 25,
- "content_type": 17,
- "badge": 3
- }
- },
- {
- "pk": 37,
- "model": "askbot.award",
- "fields": {
- "awarded_at": "2011-11-29 11:22:12",
- "notified": false,
- "object_id": 25,
- "user": 25,
- "content_type": 17,
- "badge": 1
- }
- },
- {
- "pk": 38,
- "model": "askbot.award",
- "fields": {
- "awarded_at": "2011-11-29 11:22:12",
- "notified": false,
- "object_id": 25,
- "user": 26,
- "content_type": 17,
- "badge": 2
- }
- },
- {
- "pk": 39,
- "model": "askbot.award",
- "fields": {
- "awarded_at": "2011-11-29 11:22:13",
- "notified": false,
- "object_id": 26,
- "user": 27,
- "content_type": 17,
- "badge": 3
- }
- },
- {
- "pk": 40,
- "model": "askbot.award",
- "fields": {
- "awarded_at": "2011-11-29 11:22:13",
- "notified": false,
- "object_id": 27,
- "user": 27,
- "content_type": 17,
- "badge": 1
- }
- },
- {
- "pk": 41,
- "model": "askbot.award",
- "fields": {
- "awarded_at": "2011-11-29 11:22:13",
- "notified": false,
- "object_id": 27,
- "user": 28,
- "content_type": 17,
- "badge": 2
- }
- },
- {
- "pk": 42,
- "model": "askbot.award",
- "fields": {
- "awarded_at": "2011-11-29 11:22:13",
- "notified": false,
- "object_id": 28,
- "user": 29,
- "content_type": 17,
- "badge": 3
- }
- },
- {
- "pk": 43,
- "model": "askbot.award",
- "fields": {
- "awarded_at": "2011-11-29 11:22:13",
- "notified": false,
- "object_id": 29,
- "user": 29,
- "content_type": 17,
- "badge": 1
- }
- },
- {
- "pk": 44,
- "model": "askbot.award",
- "fields": {
- "awarded_at": "2011-11-29 11:22:13",
- "notified": false,
- "object_id": 29,
- "user": 30,
- "content_type": 17,
- "badge": 2
- }
- },
- {
- "pk": 45,
- "model": "askbot.award",
- "fields": {
- "awarded_at": "2011-11-29 11:22:14",
- "notified": false,
- "object_id": 30,
- "user": 31,
- "content_type": 17,
- "badge": 3
- }
- },
- {
- "pk": 46,
- "model": "askbot.award",
- "fields": {
- "awarded_at": "2011-11-29 11:22:14",
- "notified": false,
- "object_id": 31,
- "user": 31,
- "content_type": 17,
- "badge": 1
- }
- },
- {
- "pk": 47,
- "model": "askbot.award",
- "fields": {
- "awarded_at": "2011-11-29 11:22:14",
- "notified": false,
- "object_id": 31,
- "user": 32,
- "content_type": 17,
- "badge": 2
- }
- },
- {
- "pk": 48,
- "model": "askbot.award",
- "fields": {
- "awarded_at": "2011-11-29 11:22:14",
- "notified": false,
- "object_id": 32,
- "user": 33,
- "content_type": 17,
- "badge": 3
- }
- },
- {
- "pk": 49,
- "model": "askbot.award",
- "fields": {
- "awarded_at": "2011-11-29 11:22:14",
- "notified": false,
- "object_id": 33,
- "user": 33,
- "content_type": 17,
- "badge": 1
- }
- },
- {
- "pk": 50,
- "model": "askbot.award",
- "fields": {
- "awarded_at": "2011-11-29 11:22:14",
- "notified": false,
- "object_id": 33,
- "user": 34,
- "content_type": 17,
- "badge": 2
- }
- },
- {
- "pk": 51,
- "model": "askbot.award",
- "fields": {
- "awarded_at": "2011-11-29 11:22:15",
- "notified": false,
- "object_id": 34,
- "user": 35,
- "content_type": 17,
- "badge": 3
- }
- },
- {
- "pk": 52,
- "model": "askbot.award",
- "fields": {
- "awarded_at": "2011-11-29 11:22:15",
- "notified": false,
- "object_id": 35,
- "user": 35,
- "content_type": 17,
- "badge": 1
- }
- },
- {
- "pk": 53,
- "model": "askbot.award",
- "fields": {
- "awarded_at": "2011-11-29 11:22:15",
- "notified": false,
- "object_id": 35,
- "user": 36,
- "content_type": 17,
- "badge": 2
- }
- },
- {
- "pk": 54,
- "model": "askbot.award",
- "fields": {
- "awarded_at": "2011-11-29 11:22:15",
- "notified": false,
- "object_id": 36,
- "user": 37,
- "content_type": 17,
- "badge": 3
- }
- },
- {
- "pk": 55,
- "model": "askbot.award",
- "fields": {
- "awarded_at": "2011-11-29 11:22:15",
- "notified": false,
- "object_id": 37,
- "user": 37,
- "content_type": 17,
- "badge": 1
- }
- },
- {
- "pk": 56,
- "model": "askbot.award",
- "fields": {
- "awarded_at": "2011-11-29 11:22:15",
- "notified": false,
- "object_id": 37,
- "user": 38,
- "content_type": 17,
- "badge": 2
- }
- },
- {
- "pk": 57,
- "model": "askbot.award",
- "fields": {
- "awarded_at": "2011-11-29 11:22:16",
- "notified": false,
- "object_id": 38,
- "user": 39,
- "content_type": 17,
- "badge": 3
- }
- },
- {
- "pk": 58,
- "model": "askbot.award",
- "fields": {
- "awarded_at": "2011-11-29 11:22:16",
- "notified": false,
- "object_id": 39,
- "user": 39,
- "content_type": 17,
- "badge": 1
- }
- },
- {
- "pk": 59,
- "model": "askbot.award",
- "fields": {
- "awarded_at": "2011-11-29 11:22:16",
- "notified": false,
- "object_id": 39,
- "user": 40,
- "content_type": 17,
- "badge": 2
- }
- },
- {
- "pk": 60,
- "model": "askbot.award",
- "fields": {
- "awarded_at": "2011-11-29 11:22:16",
- "notified": false,
- "object_id": 40,
- "user": 40,
- "content_type": 17,
- "badge": 1
- }
- },
- {
- "pk": 61,
- "model": "askbot.award",
- "fields": {
- "awarded_at": "2011-11-29 11:22:16",
- "notified": false,
- "object_id": 40,
- "user": 1,
- "content_type": 17,
- "badge": 2
- }
- },
- {
- "pk": 62,
- "model": "askbot.award",
- "fields": {
- "awarded_at": "2011-11-29 11:22:16",
- "notified": false,
- "object_id": 1,
- "user": 1,
- "content_type": 21,
- "badge": 4
- }
- },
- {
- "pk": 63,
- "model": "askbot.award",
- "fields": {
- "awarded_at": "2011-11-29 11:22:17",
- "notified": false,
- "object_id": 40,
- "user": 40,
- "content_type": 17,
- "badge": 5
- }
- },
- {
- "pk": 64,
- "model": "askbot.award",
- "fields": {
- "awarded_at": "2011-11-29 11:22:17",
- "notified": false,
- "object_id": 40,
- "user": 40,
- "content_type": 17,
- "badge": 6
- }
- },
- {
- "pk": 65,
- "model": "askbot.award",
- "fields": {
- "awarded_at": "2011-11-29 11:22:17",
- "notified": false,
- "object_id": 40,
- "user": 3,
- "content_type": 17,
- "badge": 2
- }
- },
- {
- "pk": 66,
- "model": "askbot.award",
- "fields": {
- "awarded_at": "2011-11-29 11:22:17",
- "notified": false,
- "object_id": 3,
- "user": 3,
- "content_type": 21,
- "badge": 4
- }
- },
- {
- "pk": 67,
- "model": "askbot.award",
- "fields": {
- "awarded_at": "2011-11-29 11:22:18",
- "notified": false,
- "object_id": 40,
- "user": 40,
- "content_type": 17,
- "badge": 7
- }
- },
- {
- "pk": 68,
- "model": "askbot.award",
- "fields": {
- "awarded_at": "2011-11-29 11:22:18",
- "notified": false,
- "object_id": 40,
- "user": 5,
- "content_type": 17,
- "badge": 2
- }
- },
- {
- "pk": 69,
- "model": "askbot.award",
- "fields": {
- "awarded_at": "2011-11-29 11:22:18",
- "notified": false,
- "object_id": 5,
- "user": 5,
- "content_type": 21,
- "badge": 4
- }
- },
- {
- "pk": 70,
- "model": "askbot.award",
- "fields": {
- "awarded_at": "2011-11-29 11:22:19",
- "notified": false,
- "object_id": 40,
- "user": 7,
- "content_type": 17,
- "badge": 2
- }
- },
- {
- "pk": 71,
- "model": "askbot.award",
- "fields": {
- "awarded_at": "2011-11-29 11:22:19",
- "notified": false,
- "object_id": 7,
- "user": 7,
- "content_type": 21,
- "badge": 4
- }
- },
- {
- "pk": 72,
- "model": "askbot.award",
- "fields": {
- "awarded_at": "2011-11-29 11:22:20",
- "notified": false,
- "object_id": 40,
- "user": 9,
- "content_type": 17,
- "badge": 2
- }
- },
- {
- "pk": 73,
- "model": "askbot.award",
- "fields": {
- "awarded_at": "2011-11-29 11:22:20",
- "notified": false,
- "object_id": 9,
- "user": 9,
- "content_type": 21,
- "badge": 4
- }
- },
- {
- "pk": 74,
- "model": "askbot.award",
- "fields": {
- "awarded_at": "2011-11-29 11:22:21",
- "notified": false,
- "object_id": 40,
- "user": 11,
- "content_type": 17,
- "badge": 2
- }
- },
- {
- "pk": 75,
- "model": "askbot.award",
- "fields": {
- "awarded_at": "2011-11-29 11:22:21",
- "notified": false,
- "object_id": 11,
- "user": 11,
- "content_type": 21,
- "badge": 4
- }
- },
- {
- "pk": 76,
- "model": "askbot.award",
- "fields": {
- "awarded_at": "2011-11-29 11:22:22",
- "notified": false,
- "object_id": 40,
- "user": 13,
- "content_type": 17,
- "badge": 2
- }
- },
- {
- "pk": 77,
- "model": "askbot.award",
- "fields": {
- "awarded_at": "2011-11-29 11:22:22",
- "notified": false,
- "object_id": 13,
- "user": 13,
- "content_type": 21,
- "badge": 4
- }
- },
- {
- "pk": 78,
- "model": "askbot.award",
- "fields": {
- "awarded_at": "2011-11-29 11:22:24",
- "notified": false,
- "object_id": 40,
- "user": 15,
- "content_type": 17,
- "badge": 2
- }
- },
- {
- "pk": 79,
- "model": "askbot.award",
- "fields": {
- "awarded_at": "2011-11-29 11:22:24",
- "notified": false,
- "object_id": 15,
- "user": 15,
- "content_type": 21,
- "badge": 4
- }
- },
- {
- "pk": 80,
- "model": "askbot.award",
- "fields": {
- "awarded_at": "2011-11-29 11:22:25",
- "notified": false,
- "object_id": 40,
- "user": 17,
- "content_type": 17,
- "badge": 2
- }
- },
- {
- "pk": 81,
- "model": "askbot.award",
- "fields": {
- "awarded_at": "2011-11-29 11:22:25",
- "notified": false,
- "object_id": 17,
- "user": 17,
- "content_type": 21,
- "badge": 4
- }
- },
- {
- "pk": 82,
- "model": "askbot.award",
- "fields": {
- "awarded_at": "2011-11-29 11:22:27",
- "notified": false,
- "object_id": 40,
- "user": 19,
- "content_type": 17,
- "badge": 2
- }
- },
- {
- "pk": 83,
- "model": "askbot.award",
- "fields": {
- "awarded_at": "2011-11-29 11:22:27",
- "notified": false,
- "object_id": 19,
- "user": 19,
- "content_type": 21,
- "badge": 4
- }
- },
- {
- "pk": 84,
- "model": "askbot.award",
- "fields": {
- "awarded_at": "2011-11-29 11:22:28",
- "notified": false,
- "object_id": 20,
- "user": 20,
- "content_type": 21,
- "badge": 4
- }
- },
- {
- "pk": 85,
- "model": "askbot.award",
- "fields": {
- "awarded_at": "2011-11-29 11:22:28",
- "notified": false,
- "object_id": 20,
- "user": 20,
- "content_type": 21,
- "badge": 8
- }
- },
- {
- "pk": 86,
- "model": "askbot.award",
- "fields": {
- "awarded_at": "2011-11-29 11:22:29",
- "notified": false,
- "object_id": 20,
- "user": 20,
- "content_type": 21,
- "badge": 9
- }
- },
- {
- "pk": 87,
- "model": "askbot.award",
- "fields": {
- "awarded_at": "2011-11-29 11:22:30",
- "notified": false,
- "object_id": 20,
- "user": 20,
- "content_type": 21,
- "badge": 10
- }
- },
- {
- "pk": 88,
- "model": "askbot.award",
- "fields": {
- "awarded_at": "2011-11-29 11:22:44",
- "notified": false,
- "object_id": 40,
- "user": 40,
- "content_type": 17,
- "badge": 11
- }
- },
- {
- "pk": 89,
- "model": "askbot.award",
- "fields": {
- "awarded_at": "2011-11-29 11:22:45",
- "notified": false,
- "object_id": 20,
- "user": 20,
- "content_type": 21,
- "badge": 11
- }
- },
- {
- "pk": 90,
- "model": "askbot.award",
- "fields": {
- "awarded_at": "2011-11-29 11:22:47",
- "notified": false,
- "object_id": 20,
- "user": 40,
- "content_type": 21,
- "badge": 12
- }
- },
- {
- "pk": 91,
- "model": "askbot.award",
- "fields": {
- "awarded_at": "2011-11-29 11:22:47",
- "notified": false,
- "object_id": 20,
- "user": 20,
- "content_type": 21,
- "badge": 13
- }
- },
- {
- "pk": 92,
- "model": "askbot.award",
- "fields": {
- "awarded_at": "2011-11-29 11:22:47",
- "notified": false,
- "object_id": 20,
- "user": 20,
- "content_type": 21,
- "badge": 14
+ "last_edited_at": "2011-12-11 12:22:36"
}
},
{
"pk": 1,
- "model": "askbot.repute",
- "fields": {
- "comment": null,
- "positive": 10,
- "question": 1,
- "negative": 0,
- "reputation_type": 1,
- "user": 1,
- "reputed_at": "2011-11-29 11:22:03",
- "reputation": 510
- }
- },
- {
- "pk": 2,
- "model": "askbot.repute",
- "fields": {
- "comment": null,
- "positive": 0,
- "question": 2,
- "negative": -2,
- "reputation_type": -3,
- "user": 2,
- "reputed_at": "2011-11-29 11:22:04",
- "reputation": 498
- }
- },
- {
- "pk": 3,
- "model": "askbot.repute",
- "fields": {
- "comment": null,
- "positive": 0,
- "question": 2,
- "negative": -1,
- "reputation_type": -5,
- "user": 3,
- "reputed_at": "2011-11-29 11:22:04",
- "reputation": 499
- }
- },
- {
- "pk": 4,
- "model": "askbot.repute",
- "fields": {
- "comment": null,
- "positive": 10,
- "question": 3,
- "negative": 0,
- "reputation_type": 1,
- "user": 3,
- "reputed_at": "2011-11-29 11:22:05",
- "reputation": 509
- }
- },
- {
- "pk": 5,
- "model": "askbot.repute",
- "fields": {
- "comment": null,
- "positive": 0,
- "question": 4,
- "negative": -2,
- "reputation_type": -3,
- "user": 4,
- "reputed_at": "2011-11-29 11:22:05",
- "reputation": 498
- }
- },
- {
- "pk": 6,
- "model": "askbot.repute",
- "fields": {
- "comment": null,
- "positive": 0,
- "question": 4,
- "negative": -1,
- "reputation_type": -5,
- "user": 5,
- "reputed_at": "2011-11-29 11:22:05",
- "reputation": 499
- }
- },
- {
- "pk": 7,
- "model": "askbot.repute",
- "fields": {
- "comment": null,
- "positive": 10,
- "question": 5,
- "negative": 0,
- "reputation_type": 1,
- "user": 5,
- "reputed_at": "2011-11-29 11:22:06",
- "reputation": 509
- }
- },
- {
- "pk": 8,
- "model": "askbot.repute",
- "fields": {
- "comment": null,
- "positive": 0,
- "question": 6,
- "negative": -2,
- "reputation_type": -3,
- "user": 6,
- "reputed_at": "2011-11-29 11:22:07",
- "reputation": 498
- }
- },
- {
- "pk": 9,
- "model": "askbot.repute",
- "fields": {
- "comment": null,
- "positive": 0,
- "question": 6,
- "negative": -1,
- "reputation_type": -5,
- "user": 7,
- "reputed_at": "2011-11-29 11:22:07",
- "reputation": 499
- }
- },
- {
- "pk": 10,
- "model": "askbot.repute",
- "fields": {
- "comment": null,
- "positive": 10,
- "question": 7,
- "negative": 0,
- "reputation_type": 1,
- "user": 7,
- "reputed_at": "2011-11-29 11:22:08",
- "reputation": 509
- }
- },
- {
- "pk": 11,
- "model": "askbot.repute",
- "fields": {
- "comment": null,
- "positive": 0,
- "question": 8,
- "negative": -2,
- "reputation_type": -3,
- "user": 8,
- "reputed_at": "2011-11-29 11:22:08",
- "reputation": 498
- }
- },
- {
- "pk": 12,
- "model": "askbot.repute",
- "fields": {
- "comment": null,
- "positive": 0,
- "question": 8,
- "negative": -1,
- "reputation_type": -5,
- "user": 9,
- "reputed_at": "2011-11-29 11:22:08",
- "reputation": 499
- }
- },
- {
- "pk": 13,
- "model": "askbot.repute",
- "fields": {
- "comment": null,
- "positive": 10,
- "question": 9,
- "negative": 0,
- "reputation_type": 1,
- "user": 9,
- "reputed_at": "2011-11-29 11:22:09",
- "reputation": 509
- }
- },
- {
- "pk": 14,
- "model": "askbot.repute",
- "fields": {
- "comment": null,
- "positive": 0,
- "question": 10,
- "negative": -2,
- "reputation_type": -3,
- "user": 10,
- "reputed_at": "2011-11-29 11:22:09",
- "reputation": 498
- }
- },
- {
- "pk": 15,
- "model": "askbot.repute",
- "fields": {
- "comment": null,
- "positive": 0,
- "question": 10,
- "negative": -1,
- "reputation_type": -5,
- "user": 11,
- "reputed_at": "2011-11-29 11:22:09",
- "reputation": 499
- }
- },
- {
- "pk": 16,
- "model": "askbot.repute",
- "fields": {
- "comment": null,
- "positive": 10,
- "question": 11,
- "negative": 0,
- "reputation_type": 1,
- "user": 11,
- "reputed_at": "2011-11-29 11:22:09",
- "reputation": 509
- }
- },
- {
- "pk": 17,
- "model": "askbot.repute",
- "fields": {
- "comment": null,
- "positive": 0,
- "question": 12,
- "negative": -2,
- "reputation_type": -3,
- "user": 12,
- "reputed_at": "2011-11-29 11:22:09",
- "reputation": 498
- }
- },
- {
- "pk": 18,
- "model": "askbot.repute",
- "fields": {
- "comment": null,
- "positive": 0,
- "question": 12,
- "negative": -1,
- "reputation_type": -5,
- "user": 13,
- "reputed_at": "2011-11-29 11:22:09",
- "reputation": 499
- }
- },
- {
- "pk": 19,
- "model": "askbot.repute",
- "fields": {
- "comment": null,
- "positive": 10,
- "question": 13,
- "negative": 0,
- "reputation_type": 1,
- "user": 13,
- "reputed_at": "2011-11-29 11:22:10",
- "reputation": 509
- }
- },
- {
- "pk": 20,
- "model": "askbot.repute",
- "fields": {
- "comment": null,
- "positive": 0,
- "question": 14,
- "negative": -2,
- "reputation_type": -3,
- "user": 14,
- "reputed_at": "2011-11-29 11:22:10",
- "reputation": 498
- }
- },
- {
- "pk": 21,
- "model": "askbot.repute",
- "fields": {
- "comment": null,
- "positive": 0,
- "question": 14,
- "negative": -1,
- "reputation_type": -5,
- "user": 15,
- "reputed_at": "2011-11-29 11:22:10",
- "reputation": 499
- }
- },
- {
- "pk": 22,
- "model": "askbot.repute",
- "fields": {
- "comment": null,
- "positive": 10,
- "question": 15,
- "negative": 0,
- "reputation_type": 1,
- "user": 15,
- "reputed_at": "2011-11-29 11:22:10",
- "reputation": 509
- }
- },
- {
- "pk": 23,
- "model": "askbot.repute",
- "fields": {
- "comment": null,
- "positive": 0,
- "question": 16,
- "negative": -2,
- "reputation_type": -3,
- "user": 16,
- "reputed_at": "2011-11-29 11:22:10",
- "reputation": 498
- }
- },
- {
- "pk": 24,
- "model": "askbot.repute",
- "fields": {
- "comment": null,
- "positive": 0,
- "question": 16,
- "negative": -1,
- "reputation_type": -5,
- "user": 17,
- "reputed_at": "2011-11-29 11:22:10",
- "reputation": 499
- }
- },
- {
- "pk": 25,
- "model": "askbot.repute",
- "fields": {
- "comment": null,
- "positive": 10,
- "question": 17,
- "negative": 0,
- "reputation_type": 1,
- "user": 17,
- "reputed_at": "2011-11-29 11:22:11",
- "reputation": 509
- }
- },
- {
- "pk": 26,
- "model": "askbot.repute",
- "fields": {
- "comment": null,
- "positive": 0,
- "question": 18,
- "negative": -2,
- "reputation_type": -3,
- "user": 18,
- "reputed_at": "2011-11-29 11:22:11",
- "reputation": 498
- }
- },
- {
- "pk": 27,
- "model": "askbot.repute",
- "fields": {
- "comment": null,
- "positive": 0,
- "question": 18,
- "negative": -1,
- "reputation_type": -5,
- "user": 19,
- "reputed_at": "2011-11-29 11:22:11",
- "reputation": 499
- }
- },
- {
- "pk": 28,
- "model": "askbot.repute",
- "fields": {
- "comment": null,
- "positive": 10,
- "question": 19,
- "negative": 0,
- "reputation_type": 1,
- "user": 19,
- "reputed_at": "2011-11-29 11:22:11",
- "reputation": 509
- }
- },
- {
- "pk": 29,
- "model": "askbot.repute",
- "fields": {
- "comment": null,
- "positive": 0,
- "question": 20,
- "negative": -2,
- "reputation_type": -3,
- "user": 20,
- "reputed_at": "2011-11-29 11:22:11",
- "reputation": 498
- }
- },
- {
- "pk": 30,
- "model": "askbot.repute",
- "fields": {
- "comment": null,
- "positive": 0,
- "question": 20,
- "negative": -1,
- "reputation_type": -5,
- "user": 21,
- "reputed_at": "2011-11-29 11:22:11",
- "reputation": 499
- }
- },
- {
- "pk": 31,
- "model": "askbot.repute",
- "fields": {
- "comment": null,
- "positive": 10,
- "question": 21,
- "negative": 0,
- "reputation_type": 1,
- "user": 21,
- "reputed_at": "2011-11-29 11:22:11",
- "reputation": 509
- }
- },
- {
- "pk": 32,
- "model": "askbot.repute",
- "fields": {
- "comment": null,
- "positive": 0,
- "question": 22,
- "negative": -2,
- "reputation_type": -3,
- "user": 22,
- "reputed_at": "2011-11-29 11:22:12",
- "reputation": 498
- }
- },
- {
- "pk": 33,
- "model": "askbot.repute",
- "fields": {
- "comment": null,
- "positive": 0,
- "question": 22,
- "negative": -1,
- "reputation_type": -5,
- "user": 23,
- "reputed_at": "2011-11-29 11:22:12",
- "reputation": 499
- }
- },
- {
- "pk": 34,
- "model": "askbot.repute",
- "fields": {
- "comment": null,
- "positive": 10,
- "question": 23,
- "negative": 0,
- "reputation_type": 1,
- "user": 23,
- "reputed_at": "2011-11-29 11:22:12",
- "reputation": 509
- }
- },
- {
- "pk": 35,
- "model": "askbot.repute",
- "fields": {
- "comment": null,
- "positive": 0,
- "question": 24,
- "negative": -2,
- "reputation_type": -3,
- "user": 24,
- "reputed_at": "2011-11-29 11:22:12",
- "reputation": 498
- }
- },
- {
- "pk": 36,
- "model": "askbot.repute",
- "fields": {
- "comment": null,
- "positive": 0,
- "question": 24,
- "negative": -1,
- "reputation_type": -5,
- "user": 25,
- "reputed_at": "2011-11-29 11:22:12",
- "reputation": 499
- }
- },
- {
- "pk": 37,
- "model": "askbot.repute",
- "fields": {
- "comment": null,
- "positive": 10,
- "question": 25,
- "negative": 0,
- "reputation_type": 1,
- "user": 25,
- "reputed_at": "2011-11-29 11:22:12",
- "reputation": 509
- }
- },
- {
- "pk": 38,
- "model": "askbot.repute",
- "fields": {
- "comment": null,
- "positive": 0,
- "question": 26,
- "negative": -2,
- "reputation_type": -3,
- "user": 26,
- "reputed_at": "2011-11-29 11:22:13",
- "reputation": 498
- }
- },
- {
- "pk": 39,
- "model": "askbot.repute",
- "fields": {
- "comment": null,
- "positive": 0,
- "question": 26,
- "negative": -1,
- "reputation_type": -5,
- "user": 27,
- "reputed_at": "2011-11-29 11:22:13",
- "reputation": 499
- }
- },
- {
- "pk": 40,
- "model": "askbot.repute",
- "fields": {
- "comment": null,
- "positive": 10,
- "question": 27,
- "negative": 0,
- "reputation_type": 1,
- "user": 27,
- "reputed_at": "2011-11-29 11:22:13",
- "reputation": 509
- }
- },
- {
- "pk": 41,
- "model": "askbot.repute",
- "fields": {
- "comment": null,
- "positive": 0,
- "question": 28,
- "negative": -2,
- "reputation_type": -3,
- "user": 28,
- "reputed_at": "2011-11-29 11:22:13",
- "reputation": 498
- }
- },
- {
- "pk": 42,
- "model": "askbot.repute",
- "fields": {
- "comment": null,
- "positive": 0,
- "question": 28,
- "negative": -1,
- "reputation_type": -5,
- "user": 29,
- "reputed_at": "2011-11-29 11:22:13",
- "reputation": 499
- }
- },
- {
- "pk": 43,
- "model": "askbot.repute",
- "fields": {
- "comment": null,
- "positive": 10,
- "question": 29,
- "negative": 0,
- "reputation_type": 1,
- "user": 29,
- "reputed_at": "2011-11-29 11:22:13",
- "reputation": 509
- }
- },
- {
- "pk": 44,
- "model": "askbot.repute",
- "fields": {
- "comment": null,
- "positive": 0,
- "question": 30,
- "negative": -2,
- "reputation_type": -3,
- "user": 30,
- "reputed_at": "2011-11-29 11:22:14",
- "reputation": 498
- }
- },
- {
- "pk": 45,
- "model": "askbot.repute",
- "fields": {
- "comment": null,
- "positive": 0,
- "question": 30,
- "negative": -1,
- "reputation_type": -5,
- "user": 31,
- "reputed_at": "2011-11-29 11:22:14",
- "reputation": 499
- }
- },
- {
- "pk": 46,
- "model": "askbot.repute",
- "fields": {
- "comment": null,
- "positive": 10,
- "question": 31,
- "negative": 0,
- "reputation_type": 1,
- "user": 31,
- "reputed_at": "2011-11-29 11:22:14",
- "reputation": 509
- }
- },
- {
- "pk": 47,
- "model": "askbot.repute",
- "fields": {
- "comment": null,
- "positive": 0,
- "question": 32,
- "negative": -2,
- "reputation_type": -3,
- "user": 32,
- "reputed_at": "2011-11-29 11:22:14",
- "reputation": 498
- }
- },
- {
- "pk": 48,
- "model": "askbot.repute",
- "fields": {
- "comment": null,
- "positive": 0,
- "question": 32,
- "negative": -1,
- "reputation_type": -5,
- "user": 33,
- "reputed_at": "2011-11-29 11:22:14",
- "reputation": 499
- }
- },
- {
- "pk": 49,
- "model": "askbot.repute",
- "fields": {
- "comment": null,
- "positive": 10,
- "question": 33,
- "negative": 0,
- "reputation_type": 1,
- "user": 33,
- "reputed_at": "2011-11-29 11:22:14",
- "reputation": 509
- }
- },
- {
- "pk": 50,
- "model": "askbot.repute",
- "fields": {
- "comment": null,
- "positive": 0,
- "question": 34,
- "negative": -2,
- "reputation_type": -3,
- "user": 34,
- "reputed_at": "2011-11-29 11:22:15",
- "reputation": 498
- }
- },
- {
- "pk": 51,
- "model": "askbot.repute",
- "fields": {
- "comment": null,
- "positive": 0,
- "question": 34,
- "negative": -1,
- "reputation_type": -5,
- "user": 35,
- "reputed_at": "2011-11-29 11:22:15",
- "reputation": 499
- }
- },
- {
- "pk": 52,
- "model": "askbot.repute",
- "fields": {
- "comment": null,
- "positive": 10,
- "question": 35,
- "negative": 0,
- "reputation_type": 1,
- "user": 35,
- "reputed_at": "2011-11-29 11:22:15",
- "reputation": 509
- }
- },
- {
- "pk": 53,
- "model": "askbot.repute",
- "fields": {
- "comment": null,
- "positive": 0,
- "question": 36,
- "negative": -2,
- "reputation_type": -3,
- "user": 36,
- "reputed_at": "2011-11-29 11:22:15",
- "reputation": 498
- }
- },
- {
- "pk": 54,
- "model": "askbot.repute",
- "fields": {
- "comment": null,
- "positive": 0,
- "question": 36,
- "negative": -1,
- "reputation_type": -5,
- "user": 37,
- "reputed_at": "2011-11-29 11:22:15",
- "reputation": 499
- }
- },
- {
- "pk": 55,
- "model": "askbot.repute",
- "fields": {
- "comment": null,
- "positive": 10,
- "question": 37,
- "negative": 0,
- "reputation_type": 1,
- "user": 37,
- "reputed_at": "2011-11-29 11:22:15",
- "reputation": 509
- }
- },
- {
- "pk": 56,
- "model": "askbot.repute",
- "fields": {
- "comment": null,
- "positive": 0,
- "question": 38,
- "negative": -2,
- "reputation_type": -3,
- "user": 38,
- "reputed_at": "2011-11-29 11:22:16",
- "reputation": 498
- }
- },
- {
- "pk": 57,
- "model": "askbot.repute",
- "fields": {
- "comment": null,
- "positive": 0,
- "question": 38,
- "negative": -1,
- "reputation_type": -5,
- "user": 39,
- "reputed_at": "2011-11-29 11:22:16",
- "reputation": 499
- }
- },
- {
- "pk": 58,
- "model": "askbot.repute",
- "fields": {
- "comment": null,
- "positive": 10,
- "question": 39,
- "negative": 0,
- "reputation_type": 1,
- "user": 39,
- "reputed_at": "2011-11-29 11:22:16",
- "reputation": 509
- }
- },
- {
- "pk": 59,
- "model": "askbot.repute",
- "fields": {
- "comment": null,
- "positive": 10,
- "question": 40,
- "negative": 0,
- "reputation_type": 1,
- "user": 40,
- "reputed_at": "2011-11-29 11:22:16",
- "reputation": 510
- }
- },
- {
- "pk": 60,
- "model": "askbot.repute",
- "fields": {
- "comment": null,
- "positive": 10,
- "question": 40,
- "negative": 0,
- "reputation_type": 1,
- "user": 1,
- "reputed_at": "2011-11-29 11:22:16",
- "reputation": 520
- }
- },
- {
- "pk": 61,
- "model": "askbot.repute",
- "fields": {
- "comment": null,
- "positive": 10,
- "question": 40,
- "negative": 0,
- "reputation_type": 1,
- "user": 40,
- "reputed_at": "2011-11-29 11:22:17",
- "reputation": 520
- }
- },
- {
- "pk": 62,
- "model": "askbot.repute",
- "fields": {
- "comment": null,
- "positive": 0,
- "question": 40,
- "negative": -2,
- "reputation_type": -3,
- "user": 2,
- "reputed_at": "2011-11-29 11:22:17",
- "reputation": 496
- }
- },
- {
- "pk": 63,
- "model": "askbot.repute",
- "fields": {
- "comment": null,
- "positive": 0,
- "question": 40,
- "negative": -1,
- "reputation_type": -5,
- "user": 3,
- "reputed_at": "2011-11-29 11:22:17",
- "reputation": 508
- }
- },
- {
- "pk": 64,
- "model": "askbot.repute",
- "fields": {
- "comment": null,
- "positive": 10,
- "question": 40,
- "negative": 0,
- "reputation_type": 1,
- "user": 40,
- "reputed_at": "2011-11-29 11:22:17",
- "reputation": 530
- }
- },
- {
- "pk": 65,
- "model": "askbot.repute",
- "fields": {
- "comment": null,
- "positive": 10,
- "question": 40,
- "negative": 0,
- "reputation_type": 1,
- "user": 3,
- "reputed_at": "2011-11-29 11:22:17",
- "reputation": 518
- }
- },
- {
- "pk": 66,
- "model": "askbot.repute",
- "fields": {
- "comment": null,
- "positive": 10,
- "question": 40,
- "negative": 0,
- "reputation_type": 1,
- "user": 40,
- "reputed_at": "2011-11-29 11:22:17",
- "reputation": 540
- }
- },
- {
- "pk": 67,
- "model": "askbot.repute",
- "fields": {
- "comment": null,
- "positive": 0,
- "question": 40,
- "negative": -2,
- "reputation_type": -3,
- "user": 4,
- "reputed_at": "2011-11-29 11:22:17",
- "reputation": 496
- }
- },
- {
- "pk": 68,
- "model": "askbot.repute",
- "fields": {
- "comment": null,
- "positive": 0,
- "question": 40,
- "negative": -1,
- "reputation_type": -5,
- "user": 5,
- "reputed_at": "2011-11-29 11:22:17",
- "reputation": 508
- }
- },
- {
- "pk": 69,
- "model": "askbot.repute",
- "fields": {
- "comment": null,
- "positive": 10,
- "question": 40,
- "negative": 0,
- "reputation_type": 1,
- "user": 40,
- "reputed_at": "2011-11-29 11:22:18",
- "reputation": 550
- }
- },
- {
- "pk": 70,
- "model": "askbot.repute",
- "fields": {
- "comment": null,
- "positive": 10,
- "question": 40,
- "negative": 0,
- "reputation_type": 1,
- "user": 5,
- "reputed_at": "2011-11-29 11:22:18",
- "reputation": 518
- }
- },
- {
- "pk": 71,
- "model": "askbot.repute",
- "fields": {
- "comment": null,
- "positive": 10,
- "question": 40,
- "negative": 0,
- "reputation_type": 1,
- "user": 40,
- "reputed_at": "2011-11-29 11:22:18",
- "reputation": 560
- }
- },
- {
- "pk": 72,
- "model": "askbot.repute",
- "fields": {
- "comment": null,
- "positive": 0,
- "question": 40,
- "negative": -2,
- "reputation_type": -3,
- "user": 6,
- "reputed_at": "2011-11-29 11:22:18",
- "reputation": 496
- }
- },
- {
- "pk": 73,
- "model": "askbot.repute",
- "fields": {
- "comment": null,
- "positive": 0,
- "question": 40,
- "negative": -1,
- "reputation_type": -5,
- "user": 7,
- "reputed_at": "2011-11-29 11:22:18",
- "reputation": 508
- }
- },
- {
- "pk": 74,
- "model": "askbot.repute",
- "fields": {
- "comment": null,
- "positive": 10,
- "question": 40,
- "negative": 0,
- "reputation_type": 1,
- "user": 40,
- "reputed_at": "2011-11-29 11:22:19",
- "reputation": 570
- }
- },
- {
- "pk": 75,
- "model": "askbot.repute",
- "fields": {
- "comment": null,
- "positive": 10,
- "question": 40,
- "negative": 0,
- "reputation_type": 1,
- "user": 7,
- "reputed_at": "2011-11-29 11:22:19",
- "reputation": 518
- }
- },
- {
- "pk": 76,
- "model": "askbot.repute",
- "fields": {
- "comment": null,
- "positive": 10,
- "question": 40,
- "negative": 0,
- "reputation_type": 1,
- "user": 40,
- "reputed_at": "2011-11-29 11:22:19",
- "reputation": 580
- }
- },
- {
- "pk": 77,
- "model": "askbot.repute",
- "fields": {
- "comment": null,
- "positive": 0,
- "question": 40,
- "negative": -2,
- "reputation_type": -3,
- "user": 8,
- "reputed_at": "2011-11-29 11:22:19",
- "reputation": 496
- }
- },
- {
- "pk": 78,
- "model": "askbot.repute",
- "fields": {
- "comment": null,
- "positive": 0,
- "question": 40,
- "negative": -1,
- "reputation_type": -5,
- "user": 9,
- "reputed_at": "2011-11-29 11:22:19",
- "reputation": 508
- }
- },
- {
- "pk": 79,
- "model": "askbot.repute",
- "fields": {
- "comment": null,
- "positive": 10,
- "question": 40,
- "negative": 0,
- "reputation_type": 1,
- "user": 40,
- "reputed_at": "2011-11-29 11:22:20",
- "reputation": 590
- }
- },
- {
- "pk": 80,
- "model": "askbot.repute",
- "fields": {
- "comment": null,
- "positive": 10,
- "question": 40,
- "negative": 0,
- "reputation_type": 1,
- "user": 9,
- "reputed_at": "2011-11-29 11:22:20",
- "reputation": 518
- }
- },
- {
- "pk": 81,
- "model": "askbot.repute",
- "fields": {
- "comment": null,
- "positive": 10,
- "question": 40,
- "negative": 0,
- "reputation_type": 1,
- "user": 40,
- "reputed_at": "2011-11-29 11:22:20",
- "reputation": 600
- }
- },
- {
- "pk": 82,
- "model": "askbot.repute",
- "fields": {
- "comment": null,
- "positive": 0,
- "question": 40,
- "negative": -2,
- "reputation_type": -3,
- "user": 10,
- "reputed_at": "2011-11-29 11:22:20",
- "reputation": 496
- }
- },
- {
- "pk": 83,
- "model": "askbot.repute",
- "fields": {
- "comment": null,
- "positive": 0,
- "question": 40,
- "negative": -1,
- "reputation_type": -5,
- "user": 11,
- "reputed_at": "2011-11-29 11:22:20",
- "reputation": 508
- }
- },
- {
- "pk": 84,
- "model": "askbot.repute",
- "fields": {
- "comment": null,
- "positive": 10,
- "question": 40,
- "negative": 0,
- "reputation_type": 1,
- "user": 40,
- "reputed_at": "2011-11-29 11:22:21",
- "reputation": 610
- }
- },
- {
- "pk": 85,
- "model": "askbot.repute",
- "fields": {
- "comment": null,
- "positive": 10,
- "question": 40,
- "negative": 0,
- "reputation_type": 1,
- "user": 11,
- "reputed_at": "2011-11-29 11:22:21",
- "reputation": 518
- }
- },
- {
- "pk": 86,
- "model": "askbot.repute",
- "fields": {
- "comment": null,
- "positive": 10,
- "question": 40,
- "negative": 0,
- "reputation_type": 1,
- "user": 40,
- "reputed_at": "2011-11-29 11:22:22",
- "reputation": 620
- }
- },
- {
- "pk": 87,
- "model": "askbot.repute",
- "fields": {
- "comment": null,
- "positive": 0,
- "question": 40,
- "negative": -2,
- "reputation_type": -3,
- "user": 12,
- "reputed_at": "2011-11-29 11:22:22",
- "reputation": 496
- }
- },
- {
- "pk": 88,
- "model": "askbot.repute",
- "fields": {
- "comment": null,
- "positive": 0,
- "question": 40,
- "negative": -1,
- "reputation_type": -5,
- "user": 13,
- "reputed_at": "2011-11-29 11:22:22",
- "reputation": 508
- }
- },
- {
- "pk": 89,
- "model": "askbot.repute",
- "fields": {
- "comment": null,
- "positive": 10,
- "question": 40,
- "negative": 0,
- "reputation_type": 1,
- "user": 40,
- "reputed_at": "2011-11-29 11:22:22",
- "reputation": 630
- }
- },
- {
- "pk": 90,
- "model": "askbot.repute",
- "fields": {
- "comment": null,
- "positive": 10,
- "question": 40,
- "negative": 0,
- "reputation_type": 1,
- "user": 13,
- "reputed_at": "2011-11-29 11:22:22",
- "reputation": 518
- }
- },
- {
- "pk": 91,
- "model": "askbot.repute",
- "fields": {
- "comment": null,
- "positive": 10,
- "question": 40,
- "negative": 0,
- "reputation_type": 1,
- "user": 40,
- "reputed_at": "2011-11-29 11:22:23",
- "reputation": 640
- }
- },
- {
- "pk": 92,
- "model": "askbot.repute",
- "fields": {
- "comment": null,
- "positive": 0,
- "question": 40,
- "negative": -2,
- "reputation_type": -3,
- "user": 14,
- "reputed_at": "2011-11-29 11:22:23",
- "reputation": 496
- }
- },
- {
- "pk": 93,
- "model": "askbot.repute",
- "fields": {
- "comment": null,
- "positive": 0,
- "question": 40,
- "negative": -1,
- "reputation_type": -5,
- "user": 15,
- "reputed_at": "2011-11-29 11:22:23",
- "reputation": 508
- }
- },
- {
- "pk": 94,
- "model": "askbot.repute",
- "fields": {
- "comment": null,
- "positive": 10,
- "question": 40,
- "negative": 0,
- "reputation_type": 1,
- "user": 40,
- "reputed_at": "2011-11-29 11:22:24",
- "reputation": 650
- }
- },
- {
- "pk": 95,
- "model": "askbot.repute",
- "fields": {
- "comment": null,
- "positive": 10,
- "question": 40,
- "negative": 0,
- "reputation_type": 1,
- "user": 15,
- "reputed_at": "2011-11-29 11:22:24",
- "reputation": 518
- }
- },
- {
- "pk": 96,
- "model": "askbot.repute",
- "fields": {
- "comment": null,
- "positive": 10,
- "question": 40,
- "negative": 0,
- "reputation_type": 1,
- "user": 40,
- "reputed_at": "2011-11-29 11:22:24",
- "reputation": 660
- }
- },
- {
- "pk": 97,
- "model": "askbot.repute",
- "fields": {
- "comment": null,
- "positive": 0,
- "question": 40,
- "negative": -2,
- "reputation_type": -3,
- "user": 16,
- "reputed_at": "2011-11-29 11:22:24",
- "reputation": 496
- }
- },
- {
- "pk": 98,
- "model": "askbot.repute",
- "fields": {
- "comment": null,
- "positive": 0,
- "question": 40,
- "negative": -1,
- "reputation_type": -5,
- "user": 17,
- "reputed_at": "2011-11-29 11:22:24",
- "reputation": 508
- }
- },
- {
- "pk": 99,
- "model": "askbot.repute",
- "fields": {
- "comment": null,
- "positive": 10,
- "question": 40,
- "negative": 0,
- "reputation_type": 1,
- "user": 40,
- "reputed_at": "2011-11-29 11:22:25",
- "reputation": 670
- }
- },
- {
- "pk": 100,
- "model": "askbot.repute",
- "fields": {
- "comment": null,
- "positive": 10,
- "question": 40,
- "negative": 0,
- "reputation_type": 1,
- "user": 17,
- "reputed_at": "2011-11-29 11:22:25",
- "reputation": 518
- }
- },
- {
- "pk": 101,
- "model": "askbot.repute",
- "fields": {
- "comment": null,
- "positive": 10,
- "question": 40,
- "negative": 0,
- "reputation_type": 1,
- "user": 40,
- "reputed_at": "2011-11-29 11:22:26",
- "reputation": 680
- }
- },
- {
- "pk": 102,
- "model": "askbot.repute",
- "fields": {
- "comment": null,
- "positive": 0,
- "question": 40,
- "negative": -2,
- "reputation_type": -3,
- "user": 18,
- "reputed_at": "2011-11-29 11:22:26",
- "reputation": 496
- }
- },
- {
- "pk": 103,
- "model": "askbot.repute",
- "fields": {
- "comment": null,
- "positive": 0,
- "question": 40,
- "negative": -1,
- "reputation_type": -5,
- "user": 19,
- "reputed_at": "2011-11-29 11:22:26",
- "reputation": 508
- }
- },
- {
- "pk": 104,
- "model": "askbot.repute",
- "fields": {
- "comment": null,
- "positive": 10,
- "question": 40,
- "negative": 0,
- "reputation_type": 1,
- "user": 40,
- "reputed_at": "2011-11-29 11:22:27",
- "reputation": 690
- }
- },
- {
- "pk": 105,
- "model": "askbot.repute",
- "fields": {
- "comment": null,
- "positive": 10,
- "question": 40,
- "negative": 0,
- "reputation_type": 1,
- "user": 19,
- "reputed_at": "2011-11-29 11:22:27",
- "reputation": 518
- }
- },
- {
- "pk": 106,
- "model": "askbot.repute",
- "fields": {
- "comment": null,
- "positive": 10,
- "question": 40,
- "negative": 0,
- "reputation_type": 1,
- "user": 40,
- "reputed_at": "2011-11-29 11:22:28",
- "reputation": 700
- }
- },
- {
- "pk": 107,
- "model": "askbot.repute",
- "fields": {
- "comment": null,
- "positive": 10,
- "question": 40,
- "negative": 0,
- "reputation_type": 1,
- "user": 20,
- "reputed_at": "2011-11-29 11:22:28",
- "reputation": 508
- }
- },
- {
- "pk": 108,
- "model": "askbot.repute",
- "fields": {
- "comment": null,
- "positive": 10,
- "question": 40,
- "negative": 0,
- "reputation_type": 1,
- "user": 20,
- "reputed_at": "2011-11-29 11:22:28",
- "reputation": 518
- }
- },
- {
- "pk": 109,
- "model": "askbot.repute",
- "fields": {
- "comment": null,
- "positive": 10,
- "question": 40,
- "negative": 0,
- "reputation_type": 1,
- "user": 20,
- "reputed_at": "2011-11-29 11:22:29",
- "reputation": 528
- }
- },
- {
- "pk": 110,
- "model": "askbot.repute",
- "fields": {
- "comment": null,
- "positive": 10,
- "question": 40,
- "negative": 0,
- "reputation_type": 1,
- "user": 20,
- "reputed_at": "2011-11-29 11:22:29",
- "reputation": 538
- }
- },
- {
- "pk": 111,
- "model": "askbot.repute",
- "fields": {
- "comment": null,
- "positive": 10,
- "question": 40,
- "negative": 0,
- "reputation_type": 1,
- "user": 20,
- "reputed_at": "2011-11-29 11:22:30",
- "reputation": 548
- }
- },
- {
- "pk": 112,
- "model": "askbot.repute",
- "fields": {
- "comment": null,
- "positive": 10,
- "question": 40,
- "negative": 0,
- "reputation_type": 1,
- "user": 20,
- "reputed_at": "2011-11-29 11:22:30",
- "reputation": 558
- }
- },
- {
- "pk": 113,
- "model": "askbot.repute",
- "fields": {
- "comment": null,
- "positive": 10,
- "question": 40,
- "negative": 0,
- "reputation_type": 1,
- "user": 20,
- "reputed_at": "2011-11-29 11:22:31",
- "reputation": 568
- }
- },
- {
- "pk": 114,
- "model": "askbot.repute",
- "fields": {
- "comment": null,
- "positive": 10,
- "question": 40,
- "negative": 0,
- "reputation_type": 1,
- "user": 20,
- "reputed_at": "2011-11-29 11:22:32",
- "reputation": 578
- }
- },
- {
- "pk": 115,
- "model": "askbot.repute",
- "fields": {
- "comment": null,
- "positive": 10,
- "question": 40,
- "negative": 0,
- "reputation_type": 1,
- "user": 20,
- "reputed_at": "2011-11-29 11:22:32",
- "reputation": 588
- }
- },
- {
- "pk": 116,
- "model": "askbot.repute",
- "fields": {
- "comment": null,
- "positive": 10,
- "question": 40,
- "negative": 0,
- "reputation_type": 1,
- "user": 20,
- "reputed_at": "2011-11-29 11:22:33",
- "reputation": 598
- }
- },
- {
- "pk": 117,
- "model": "askbot.repute",
- "fields": {
- "comment": null,
- "positive": 10,
- "question": 40,
- "negative": 0,
- "reputation_type": 1,
- "user": 20,
- "reputed_at": "2011-11-29 11:22:34",
- "reputation": 608
- }
- },
- {
- "pk": 118,
- "model": "askbot.repute",
- "fields": {
- "comment": null,
- "positive": 10,
- "question": 40,
- "negative": 0,
- "reputation_type": 1,
- "user": 20,
- "reputed_at": "2011-11-29 11:22:35",
- "reputation": 618
- }
- },
- {
- "pk": 119,
- "model": "askbot.repute",
- "fields": {
- "comment": null,
- "positive": 10,
- "question": 40,
- "negative": 0,
- "reputation_type": 1,
- "user": 20,
- "reputed_at": "2011-11-29 11:22:36",
- "reputation": 628
- }
- },
- {
- "pk": 120,
- "model": "askbot.repute",
- "fields": {
- "comment": null,
- "positive": 10,
- "question": 40,
- "negative": 0,
- "reputation_type": 1,
- "user": 20,
- "reputed_at": "2011-11-29 11:22:37",
- "reputation": 638
- }
- },
- {
- "pk": 121,
- "model": "askbot.repute",
- "fields": {
- "comment": null,
- "positive": 10,
- "question": 40,
- "negative": 0,
- "reputation_type": 1,
- "user": 20,
- "reputed_at": "2011-11-29 11:22:38",
- "reputation": 648
- }
- },
- {
- "pk": 122,
- "model": "askbot.repute",
- "fields": {
- "comment": null,
- "positive": 10,
- "question": 40,
- "negative": 0,
- "reputation_type": 1,
- "user": 20,
- "reputed_at": "2011-11-29 11:22:39",
- "reputation": 658
- }
- },
- {
- "pk": 123,
- "model": "askbot.repute",
- "fields": {
- "comment": null,
- "positive": 10,
- "question": 40,
- "negative": 0,
- "reputation_type": 1,
- "user": 20,
- "reputed_at": "2011-11-29 11:22:40",
- "reputation": 668
- }
- },
- {
- "pk": 124,
- "model": "askbot.repute",
- "fields": {
- "comment": null,
- "positive": 10,
- "question": 40,
- "negative": 0,
- "reputation_type": 1,
- "user": 20,
- "reputed_at": "2011-11-29 11:22:41",
- "reputation": 678
- }
- },
- {
- "pk": 125,
- "model": "askbot.repute",
- "fields": {
- "comment": null,
- "positive": 10,
- "question": 40,
- "negative": 0,
- "reputation_type": 1,
- "user": 20,
- "reputed_at": "2011-11-29 11:22:42",
- "reputation": 688
- }
- },
- {
- "pk": 126,
- "model": "askbot.repute",
- "fields": {
- "comment": null,
- "positive": 10,
- "question": 40,
- "negative": 0,
- "reputation_type": 1,
- "user": 20,
- "reputed_at": "2011-11-29 11:22:44",
- "reputation": 698
- }
- },
- {
- "pk": 127,
- "model": "askbot.repute",
- "fields": {
- "comment": null,
- "positive": 15,
- "question": 40,
- "negative": 0,
- "reputation_type": 2,
- "user": 20,
- "reputed_at": "2011-11-29 11:22:47",
- "reputation": 713
- }
- },
- {
- "pk": 128,
- "model": "askbot.repute",
- "fields": {
- "comment": null,
- "positive": 2,
- "question": 40,
- "negative": 0,
- "reputation_type": 3,
- "user": 40,
- "reputed_at": "2011-11-29 11:22:47",
- "reputation": 702
- }
- },
- {
- "pk": 2,
"model": "livesettings.setting",
"fields": {
- "value": "f28a19ac302bc15c53c184d4db56e814afb16285",
+ "value": "2",
"group": "GENERAL_SKIN_SETTINGS",
"site": 1,
- "key": "MEDIA_RESOURCE_REVISION_HASH"
+ "key": "MEDIA_RESOURCE_REVISION"
}
},
{
- "pk": 1,
+ "pk": 2,
"model": "livesettings.setting",
"fields": {
- "value": "2",
+ "value": "f9eb04f7ad91034926324e146f925dfcf4e8fa91",
"group": "GENERAL_SKIN_SETTINGS",
"site": 1,
- "key": "MEDIA_RESOURCE_REVISION"
+ "key": "MEDIA_RESOURCE_REVISION_HASH"
}
}
] \ No newline at end of file
diff --git a/askbot/tests/utils.py b/askbot/tests/utils.py
index be2551e4..218e9c4d 100644
--- a/askbot/tests/utils.py
+++ b/askbot/tests/utils.py
@@ -1,7 +1,7 @@
"""utility functions used by Askbot test cases
"""
from django.test import TestCase
-from django.utils.unittest.compatibility import wraps
+from functools import wraps
from askbot import models
def create_user(
@@ -112,6 +112,20 @@ class AskbotTestCase(TestCase):
return user_object
+ def assertRaisesRegexp(self, *args, **kwargs):
+ """a shim for python < 2.7"""
+ try:
+ #run assertRaisesRegex, if available
+ super(AskbotTestCase, self).assertRaisesRegexp(*args, **kwargs)
+ except AttributeError:
+ #in this case lose testing for the error text
+ #second argument is the regex that is supposed
+ #to match the error text
+ args_list = list(args)#conv tuple to list
+ args_list.pop(1)#so we can remove an item
+ self.assertRaises(*args_list, **kwargs)
+
+
def post_question(
self,
user = None,
diff --git a/askbot/urls.py b/askbot/urls.py
index 2c3d143d..708877b3 100644
--- a/askbot/urls.py
+++ b/askbot/urls.py
@@ -68,11 +68,217 @@ urlpatterns = patterns('',
kwargs = {'object_name': 'Answer'},
name='answer_revisions'
),
- url(#this url works both normally and through ajax
- r'^%s$' % _('questions/'),
+
+ # BEGIN Questions (main page) urls. All this urls work both normally and through ajax
+
+ url( # section/sort/query/search/tags/author
+ r'^%s/section:(?P<scope>\w+)/sort:(?P<sort>[\w\-]+)/query:(?P<query>[\w\d\-\+\#]+)/search:search/tags:(?P<tags>[\w\d\-\+\#]+)/author:(?P<author>\d+)/$' % _('questions'),
+ views.readers.questions,
+ name='questions'
+ ),
+ url( # section/sort/query/tags/author/page_size Note:issues with default start_over
+ r'^%s/section:(?P<scope>\w+)/sort:(?P<sort>[\w\-]+)/query:(?P<query>[\w\d\-\+\#]+)/tags:(?P<tags>[\w\d\-\+\#]+)/author:(?P<author>\d+)/page_size:(?P<page_size>\d+)/$' % _('questions'),
+ views.readers.questions,
+ name='questions'
+ ),
+ url( # section/sort/query/tags/author/page Note:issues with default start_over
+ r'^%s/section:(?P<scope>\w+)/sort:(?P<sort>[\w\-]+)/query:(?P<query>[\w\d\-\+\#]+)/tags:(?P<tags>[\w\d\-\+\#]+)/author:(?P<author>\d+)/page:(?P<page>\d+)/$' % _('questions'),
+ views.readers.questions,
+ name='questions'
+ ),
+ url( # section/sort/query/tags/author for use with ajax
+ r'^%s/section:(?P<scope>\w+)/sort:(?P<sort>[\w\-]+)/query:(?P<query>[\w\d\-\+\#]+)/tags:(?P<tags>[\w\d\-\+\#]+)/author:(?P<author>\d+)/$' % _('questions'),
+ views.readers.questions,
+ name='questions'
+ ),
+ url( # section/sort/query/author/page_size Note:issues with default start_over
+ r'^%s/section:(?P<scope>\w+)/sort:(?P<sort>[\w\-]+)/query:(?P<query>[\w\d\-\+\#]+)/author:(?P<author>\d+)/page_size:(?P<page_size>\d+)/$' % _('questions'),
+ views.readers.questions,
+ name='questions'
+ ),
+ url( # section/sort/query/author/page Note:issues with default start_over
+ r'^%s/section:(?P<scope>\w+)/sort:(?P<sort>[\w\-]+)/query:(?P<query>[\w\d\-\+\#]+)/author:(?P<author>\d+)/page:(?P<page>\d+)/$' % _('questions'),
+ views.readers.questions,
+ name='questions'
+ ),
+ url( # section/sort/query/author for use with ajax
+ r'^%s/section:(?P<scope>\w+)/sort:(?P<sort>[\w\-]+)/query:(?P<query>[\w\d\-\+\#]+)/author:(?P<author>\d+)/$' % _('questions'),
+ views.readers.questions,
+ name='questions'
+ ),
+ url( # section/sort/query/search/author
+ r'^%s/section:(?P<scope>\w+)/sort:(?P<sort>[\w\-]+)/query:(?P<query>[\w\d\-\+\#]+)/search:search/author:(?P<author>\d+)/$' % _('questions'),
+ views.readers.questions,
+ name='questions'
+ ),
+ url( # section/sort/query/tags/page_size Note:issues with default start_over
+ r'^%s/section:(?P<scope>\w+)/sort:(?P<sort>[\w\-]+)/query:(?P<query>[\w\d\-\+\#]+)/tags:(?P<tags>[\w\d\-\+\#]+)/page_size:(?P<page_size>\d+)/$' % _('questions'),
+ views.readers.questions,
+ name='questions'
+ ),
+ url( # section/sort/query/tags/page Note:issues with default start_over
+ r'^%s/section:(?P<scope>\w+)/sort:(?P<sort>[\w\-]+)/query:(?P<query>[\w\d\-\+\#]+)/tags:(?P<tags>[\w\d\-\+\#]+)/page:(?P<page>\d+)/$' % _('questions'),
+ views.readers.questions,
+ name='questions'
+ ),
+ url( # section/sort/query/search/tags
+ r'^%s/section:(?P<scope>\w+)/sort:(?P<sort>[\w\-]+)/query:(?P<query>[\w\d\-\+\#]+)/search:search/tags:(?P<tags>[\w\d\-\+\#]+)/$' % _('questions'),
+ views.readers.questions,
+ name='questions'
+ ),
+ url( # section/sort/query/tags for use with ajax
+ r'^%s/section:(?P<scope>\w+)/sort:(?P<sort>[\w\-]+)/query:(?P<query>[\w\d\-\+\#]+)/tags:(?P<tags>[\w\d\-\+\#]+)/$' % _('questions'),
+ views.readers.questions,
+ name='questions'
+ ),
+
+ url( # section/sort/query/search
+ r'^%s/section:(?P<scope>\w+)/sort:(?P<sort>[\w\-]+)/query:(?P<query>[\w\d\-\+\#]+)/search:search/$' % _('questions'),
+ views.readers.questions,
+ name='questions'
+ ),
+ url( # section/sort/query/page_size Note:issues with default start_over
+ r'^%s/section:(?P<scope>\w+)/sort:(?P<sort>[\w\-]+)/query:(?P<query>[\w\d\-\+\#]+)/page_size:(?P<page_size>\d+)/$' % _('questions'),
+ views.readers.questions,
+ name='questions'
+ ),
+ url( # section/sort/query/page Note:issues with default start_over
+ r'^%s/section:(?P<scope>\w+)/sort:(?P<sort>[\w\-]+)/query:(?P<query>[\w\d\-\+\#]+)/page:(?P<page>\d+)/$' % _('questions'),
+ views.readers.questions,
+ name='questions'
+ ),
+ url( # section/sort/query for use with ajax
+ r'^%s/section:(?P<scope>\w+)/sort:(?P<sort>[\w\-]+)/query:(?P<query>[\w\d\-\+\#]+)/$' % _('questions'),
+ views.readers.questions,
+ name='questions'
+ ),
+ url( # section/sort/tags/author/page_size Note:issues with default start_over
+ r'^%s/section:(?P<scope>\w+)/sort:(?P<sort>[\w\-]+)/tags:(?P<tags>[\w\d\-\+\#]+)/author:(?P<author>\d+)/page_size:(?P<page_size>\d+)/$' % _('questions'),
+ views.readers.questions,
+ name='questions'
+ ),
+ url( # section/sort/tags/author/page Note:issues with default start_over
+ r'^%s/section:(?P<scope>\w+)/sort:(?P<sort>[\w\-]+)/tags:(?P<tags>[\w\d\-\+\#]+)/author:(?P<author>\d+)/page:(?P<page>\d+)/$' % _('questions'),
+ views.readers.questions,
+ name='questions'
+ ),
+ url( # section/sort/tags/author for use with ajax
+ r'^%s/section:(?P<scope>\w+)/sort:(?P<sort>[\w\-]+)/tags:(?P<tags>[\w\d\-\+\#]+)/author:(?P<author>\d+)/$' % _('questions'),
+ views.readers.questions,
+ name='questions'
+ ),
+ url( # section/sort/author/page_size Note:issues with default start_over
+ r'^%s/section:(?P<scope>\w+)/sort:(?P<sort>[\w\-]+)/author:(?P<author>\d+)/page_size:(?P<page_size>\d+)/$' % _('questions'),
+ views.readers.questions,
+ name='questions'
+ ),
+ url( # section/sort/author/page Note:issues with default start_over
+ r'^%s/section:(?P<scope>\w+)/sort:(?P<sort>[\w\-]+)/author:(?P<author>\d+)/page:(?P<page>\d+)/$' % _('questions'),
+ views.readers.questions,
+ name='questions'
+ ),
+ url( # section/sort/author for use with ajax
+ r'^%s/section:(?P<scope>\w+)/sort:(?P<sort>[\w\-]+)/author:(?P<author>\d+)/$' % _('questions'),
views.readers.questions,
name='questions'
),
+ url( # section/sort/tags/page_size Note:issues with default start_over
+ r'^%s/section:(?P<scope>\w+)/sort:(?P<sort>[\w\-]+)/tags:(?P<tags>[\w\d\-\+\#]+)/page_size:(?P<page_size>\d+)/$' % _('questions'),
+ views.readers.questions,
+ name='questions'
+ ),
+ url( # section/sort/tags/page Note:issues with default start_over
+ r'^%s/section:(?P<scope>\w+)/sort:(?P<sort>[\w\-]+)/tags:(?P<tags>[\w\d\-\+\#]+)/page:(?P<page>\d+)/$' % _('questions'),
+ views.readers.questions,
+ name='questions'
+ ),
+ url( # include section/sort/tags
+ r'^%s/section:(?P<scope>\w+)/sort:(?P<sort>[\w\-]+)/tags:(?P<tags>[\w\d\-\+\#]+)/$' % _('questions'),
+ views.readers.questions,
+ name='questions'
+ ),
+ url( # tags/author/page_size Note:issues with default start_over
+ r'^%s/tags:(?P<tags>[\w\d\-\+\#]+)/author:(?P<author>\d+)/page_size:(?P<page_size>\d+)/$' % _('questions'),
+ views.readers.questions,
+ name='questions'
+ ),
+ url( # tags/author/page Note:issues with default start_over
+ r'^%s/tags:(?P<tags>[\w\d\-\+\#]+)/author:(?P<author>\d+)/page:(?P<page>\d+)/$' % _('questions'),
+ views.readers.questions,
+ name='questions'
+ ),
+ url( # include tags/author
+ r'^%s/tags:(?P<tags>[\w\d\-\+\#]+)/author:(?P<author>\d+)/$' % _('questions'),
+ views.readers.questions,
+ name='questions'
+ ),
+
+ url( # author/page_size Note:issues with default start_over
+ r'^%s/author:(?P<author>\d+)/page_size:(?P<page_size>\d+)/$' % _('questions'),
+ views.readers.questions,
+ name='questions'
+ ),
+ url( # author/page Note:issues with default start_over
+ r'^%s/author:(?P<author>\d+)/page:(?P<page>\d+)/$' % _('questions'),
+ views.readers.questions,
+ name='questions'
+ ),
+ url( # include author
+ r'^%s/author:(?P<author>\d+)/$' % _('questions'),
+ views.readers.questions,
+ name='questions'
+ ),
+
+ url( # tags/page_size Note:issues with default start_over
+ r'^%s/tags:(?P<tags>[\w\d\-\+\#]+)/page_size:(?P<page_size>\d+)/$' % _('questions'),
+ views.readers.questions,
+ name='questions'
+ ),
+ url( # tags/page Note:issues with default start_over
+ r'^%s/tags:(?P<tags>[\w\d\-\+\#]+)/page:(?P<page>\d+)/$' % _('questions'),
+ views.readers.questions,
+ name='questions'
+ ),
+ url( # include tags
+ r'^%s/tags:(?P<tags>[\w\d\-\+\#]+)/$' % _('questions'),
+ views.readers.questions,
+ name='questions'
+ ),
+ url( # include section/sort/page_size
+ r'^%s/section:(?P<scope>\w+)/sort:(?P<sort>[\w\-]+)/page_size:(?P<page_size>\d+)/$' % _('questions'),
+ views.readers.questions,
+ name='questions'
+ ),
+ url( # include section/sort/page
+ r'^%s/section:(?P<scope>\w+)/sort:(?P<sort>[\w\-]+)/page:(?P<page>\d+)/$' % _('questions'),
+ views.readers.questions,
+ name='questions'
+ ),
+ url( # include section/sort
+ r'^%s/section:(?P<scope>\w+)/sort:(?P<sort>[\w\-]+)/$' % _('questions'),
+ views.readers.questions,
+ name='questions'
+ ),
+ url( # removes tag, this is used only with ajax and this parameters is always used alone
+ r'^%s/remove_tag:(?P<remove_tag>[\w\d\-\#]+)/$' % _('questions'),
+ views.readers.questions,
+ {'start_over': (None)}, # this parameter is true by default, so we are making it false here
+ name='questions'
+ ),
+ url( # reset_query, for ajax use
+ r'^%s/reset_query:(?P<reset_query>\w+)/$' % _('questions'),
+ views.readers.questions,
+ {'start_over': (None)}, # this parameter is true by default, so we are making it false here
+ name='questions'
+ ),
+ url(
+ r'^%s$' % _('questions/'),
+ views.readers.questions,
+ name='questions'
+ ),
+
+ # END main page urls
+
url(
r'^api/get_questions/',
views.commands.api_get_questions,
diff --git a/askbot/views/readers.py b/askbot/views/readers.py
index b75eafe2..18fe24e2 100644
--- a/askbot/views/readers.py
+++ b/askbot/views/readers.py
@@ -65,18 +65,49 @@ def index(request):#generates front page - shows listing of questions sorted in
"""
return HttpResponseRedirect(reverse('questions'))
-def questions(request):
+def questions(request, scope=const.DEFAULT_POST_SCOPE, sort=const.DEFAULT_POST_SORT_METHOD, query=None, \
+ search=None, tags=None, author=None, page=None, reset_tags=None, \
+ reset_author=None, reset_query=None, start_over=True, \
+ remove_tag=None, page_size=None):
"""
List of Questions, Tagged questions, and Unanswered questions.
matching search query or user selection
"""
+ #make parameters dictionary
+ params_dict = {
+ 'scope': scope,
+ 'sort': sort,
+ }
+ if query:
+ params_dict['query'] = ' '.join(query.split('+'))
+ if search:
+ params_dict['search'] = search
+ if tags:
+ params_dict['tags'] = ' '.join(tags.split('+'))
+ if author:
+ params_dict['author'] = author
+ if page:
+ params_dict['page'] = page
+ if reset_tags:
+ params_dict['reset_tags'] = reset_tags
+ if reset_author:
+ params_dict['reset_author'] = reset_author
+ if reset_query:
+ params_dict['reset_query'] = reset_query
+ if start_over:
+ params_dict['start_over'] = start_over
+ if remove_tag:
+ params_dict['remove_tag'] = remove_tag.decode("utf8")
+ if page_size:
+ params_dict['page_size'] = page_size
+
#before = datetime.datetime.now()
#don't allow to post to this view
if request.method == 'POST':
raise Http404
-
#update search state
- form = AdvancedSearchForm(request.GET)
+ #form = AdvancedSearchForm(request.GET)
+ form = AdvancedSearchForm(params_dict)
if form.is_valid():
user_input = form.cleaned_data
else:
@@ -108,7 +139,7 @@ def questions(request):
paginator = Paginator(qs, search_state.page_size)
if paginator.num_pages < search_state.page:
- raise Http404
+ search_state.page = 1
page = paginator.page(search_state.page)
@@ -122,8 +153,9 @@ def questions(request):
'has_next': page.has_next(),
'previous': page.previous_page_number(),
'next': page.next_page_number(),
- 'base_url' : request.path + '?sort=%s&amp;' % search_state.sort,#todo in T sort=>sort_method
+ 'base_url' : search_state.query_string(),#todo in T sort=>sort_method
'page_size' : search_state.page_size,#todo in T pagesize -> page_size
+ 'parameters': search_state.make_parameters(),
}
# We need to pass the rss feed url based
@@ -144,6 +176,14 @@ def questions(request):
# Format the url with the QueryDict
context_feed_url = '/feeds/rss/?%s' % rss_query_dict.urlencode()
+ reset_method_count = 0
+ if search_state.query:
+ reset_method_count += 1
+ if search_state.tags:
+ reset_method_count += 1
+ if meta_data.get('author_name',None):
+ reset_method_count += 1
+
if request.is_ajax():
q_count = paginator.count
@@ -167,10 +207,11 @@ def questions(request):
if q_count > search_state.page_size:
paginator_tpl = get_template('main_page/paginator.html', request)
#todo: remove this patch on context after all templates are moved to jinja
- paginator_context['base_url'] = request.path + '?sort=%s&' % search_state.sort
+ #paginator_context['base_url'] = request.path + '?sort=%s&' % search_state.sort
data = {
'context': extra_tags.cnprog_paginator(paginator_context),
- 'questions_count': q_count
+ 'questions_count': q_count,
+ 'page_size' : search_state.page_size,
}
paginator_html = paginator_tpl.render(Context(data))
else:
@@ -192,6 +233,9 @@ def questions(request):
'related_tags': list(),
'faces': list(),
'feed_url': context_feed_url,
+ 'query_string': search_state.query_string(),
+ 'parameters': search_state.make_parameters(),
+ 'page_size' : search_state.page_size,
}
badge_levels = dict(const.BADGE_TYPE_CHOICES)
@@ -228,24 +272,18 @@ def questions(request):
'context': paginator_context,
'language_code': translation.get_language(),
'query': search_state.query,
+ 'reset_method_count': reset_method_count,
+ 'query_string': search_state.query_string(),
}
questions_html = questions_tpl.render(Context(data))
+ #import pdb; pdb.set_trace()
ajax_data['questions'] = questions_html.replace('\n','')
return HttpResponse(
simplejson.dumps(ajax_data),
mimetype = 'application/json'
)
- reset_method_count = 0
- if search_state.query:
- reset_method_count += 1
- if search_state.tags:
- reset_method_count += 1
- if meta_data.get('author_name',None):
- reset_method_count += 1
-
-
template_data = {
'active_tab': 'questions',
'author_name' : meta_data.get('author_name',None),
@@ -257,6 +295,7 @@ def questions(request):
'language_code': translation.get_language(),
'name_of_anonymous_user' : models.get_name_of_anonymous_user(),
'page_class': 'main-page',
+ 'page_size': search_state.page_size,
'query': search_state.query,
'questions' : page,
'questions_count' : paginator.count,
@@ -271,6 +310,8 @@ def questions(request):
'font_size' : font_size,
'tag_filter_strategy_choices': const.TAG_FILTER_STRATEGY_CHOICES,
'update_avatar_data': schedules.should_update_avatar_data(request),
+ 'query_string': search_state.query_string(),
+ 'parameters': search_state.make_parameters(),
'feed_url': context_feed_url,
}
diff --git a/askbot_requirements_dev.txt b/askbot_requirements_dev.txt
new file mode 100644
index 00000000..af83b691
--- /dev/null
+++ b/askbot_requirements_dev.txt
@@ -0,0 +1,20 @@
+akismet
+django>=1.1.2
+Jinja2
+Coffin>=0.3
+-e git+https://github.com/matthiask/south.git#egg=south
+oauth2
+markdown2
+html5lib
+django-keyedcache
+django-threaded-multihost
+django-robots
+unidecode
+django-countries==1.0.5
+django-celery==2.2.7
+django-kombu==0.9.2
+django-followit
+django-recaptcha-works
+python-openid
+pystache==0.3.1
+pylint