You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@allura.apache.org by jo...@apache.org on 2013/05/23 18:05:55 UTC

[1/2] git commit: [#6208] Bumped Ming version for background reindexes

Updated Branches:
  refs/heads/master 65009beec -> 621931faa


[#6208] Bumped Ming version for background reindexes

Signed-off-by: Cory Johns <cj...@slashdotmedia.com>


Project: http://git-wip-us.apache.org/repos/asf/incubator-allura/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-allura/commit/621931fa
Tree: http://git-wip-us.apache.org/repos/asf/incubator-allura/tree/621931fa
Diff: http://git-wip-us.apache.org/repos/asf/incubator-allura/diff/621931fa

Branch: refs/heads/master
Commit: 621931faa2b7cecb576ebe543d33112876f66780
Parents: 338d69c
Author: Cory Johns <cj...@slashdotmedia.com>
Authored: Wed May 22 20:49:15 2013 +0000
Committer: Cory Johns <cj...@slashdotmedia.com>
Committed: Thu May 23 16:05:28 2013 +0000

----------------------------------------------------------------------
 requirements-common.txt |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-allura/blob/621931fa/requirements-common.txt
----------------------------------------------------------------------
diff --git a/requirements-common.txt b/requirements-common.txt
index 21ea929..2b5f8b5 100644
--- a/requirements-common.txt
+++ b/requirements-common.txt
@@ -22,7 +22,7 @@ iso8601==0.1.4
 Jinja2==2.6
 Markdown==2.2.0
 mercurial==1.4.3
-Ming==0.3.3dev-20130322
+Ming==0.3.5dev-20130522
 oauth2==1.5.170
 # tg2 dep PasteDeploy must specified before TurboGears2, to avoid a version/allow-hosts problem
 Paste==1.7.5.1


[2/2] git commit: [#6208] add unique index to wiki app_config_id+title

Posted by jo...@apache.org.
[#6208] add unique index to wiki app_config_id+title


Project: http://git-wip-us.apache.org/repos/asf/incubator-allura/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-allura/commit/338d69c9
Tree: http://git-wip-us.apache.org/repos/asf/incubator-allura/tree/338d69c9
Diff: http://git-wip-us.apache.org/repos/asf/incubator-allura/diff/338d69c9

Branch: refs/heads/master
Commit: 338d69c935490e7fd2ca4acb57e4489796509626
Parents: 65009be
Author: Dave Brondsema <db...@slashdotmedia.com>
Authored: Mon May 13 16:23:13 2013 +0000
Committer: Cory Johns <cj...@slashdotmedia.com>
Committed: Thu May 23 16:05:28 2013 +0000

----------------------------------------------------------------------
 ForgeWiki/forgewiki/model/wiki.py |    1 +
 1 files changed, 1 insertions(+), 0 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-allura/blob/338d69c9/ForgeWiki/forgewiki/model/wiki.py
----------------------------------------------------------------------
diff --git a/ForgeWiki/forgewiki/model/wiki.py b/ForgeWiki/forgewiki/model/wiki.py
index 6f054a1..0321240 100644
--- a/ForgeWiki/forgewiki/model/wiki.py
+++ b/ForgeWiki/forgewiki/model/wiki.py
@@ -87,6 +87,7 @@ class Page(VersionedArtifact, ActivityObject):
     class __mongometa__:
         name='page'
         history_class = PageHistory
+        unique_indexes = [('app_config_id', 'title')]
 
     title=FieldProperty(str)
     text=FieldProperty(schema.String, if_missing='')