You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cassandra.apache.org by jb...@apache.org on 2009/04/30 22:26:51 UTC

svn commit: r770434 - in /incubator/cassandra/trunk: interface/cassandra.thrift test/system/__init__.py

Author: jbellis
Date: Thu Apr 30 20:26:51 2009
New Revision: 770434

URL: http://svn.apache.org/viewvc?rev=770434&view=rev
Log:
move py and php to `cassandra` namespace.  add csharp as Apache.Cassandra.  patch by jbellis for CASSANDRA-121

Modified:
    incubator/cassandra/trunk/interface/cassandra.thrift
    incubator/cassandra/trunk/test/system/__init__.py

Modified: incubator/cassandra/trunk/interface/cassandra.thrift
URL: http://svn.apache.org/viewvc/incubator/cassandra/trunk/interface/cassandra.thrift?rev=770434&r1=770433&r2=770434&view=diff
==============================================================================
--- incubator/cassandra/trunk/interface/cassandra.thrift (original)
+++ incubator/cassandra/trunk/interface/cassandra.thrift Thu Apr 30 20:26:51 2009
@@ -5,9 +5,10 @@
 #
 
 namespace java org.apache.cassandra.service
-namespace py org.apache.cassandra
 namespace cpp org.apache.cassandra
-namespace php org.apache.cassandra
+namespace csharp Apache.Cassandra
+namespace py cassandra
+namespace php cassandra
 
 
 #

Modified: incubator/cassandra/trunk/test/system/__init__.py
URL: http://svn.apache.org/viewvc/incubator/cassandra/trunk/test/system/__init__.py?rev=770434&r1=770433&r2=770434&view=diff
==============================================================================
--- incubator/cassandra/trunk/test/system/__init__.py (original)
+++ incubator/cassandra/trunk/test/system/__init__.py Thu Apr 30 20:26:51 2009
@@ -11,7 +11,7 @@
 L = os.path.abspath(__file__).split(os.path.sep)[:-3]
 root = os.path.sep.join(L)
 _ipath = os.path.join(root, 'interface', 'gen-py')
-sys.path.append(os.path.join(_ipath, 'org', 'apache', 'cassandra'))
+sys.path.append(os.path.join(_ipath, 'cassandra'))
 import Cassandra
 
 host, port = '127.0.0.1', 9160