diff options
author | jsdelfino <jsdelfino@13f79535-47bb-0310-9956-ffa450edef68> | 2010-02-28 19:40:06 +0000 |
---|---|---|
committer | jsdelfino <jsdelfino@13f79535-47bb-0310-9956-ffa450edef68> | 2010-02-28 19:40:06 +0000 |
commit | e982b4ef38fd043c15e89bdd60763b10434a087e (patch) | |
tree | 6b9d9c3fc9aff22edb0f137040164c1cbf2359af /sca-cpp/branches/cpp-contrib/README | |
parent | 64e2486555a0a14f7d9690c2fc62c30bde803a91 (diff) |
Moving old inactive code to a branch as it's confusing code assist, searches and indexing in trunk.
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@917273 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'sca-cpp/branches/cpp-contrib/README')
-rw-r--r-- | sca-cpp/branches/cpp-contrib/README | 79 |
1 files changed, 79 insertions, 0 deletions
diff --git a/sca-cpp/branches/cpp-contrib/README b/sca-cpp/branches/cpp-contrib/README new file mode 100644 index 0000000000..5a5b884efe --- /dev/null +++ b/sca-cpp/branches/cpp-contrib/README @@ -0,0 +1,79 @@ +Apache Tuscany SCA Runtime +========================== + +Getting the source code +======================= + +To checkout the source code with commit access, do this: +git svn init -s https://svn.apache.org/repos/asf/tuscany/sca-cpp tuscany-sca-cpp +cd tuscany-sca-cpp +wget -P .git http://git.apache.org/authors.txt +git config svn.authorsfile .git/authors.txt +git config user.email <you>@apache.org +git config svn.rmdir true +git svn fetch --log-window-size 10000 + +To checkout the source without commit access, do this: +git clone git://git.apache.org/tuscany-sca-cpp +or +svn checkout http://svn.apache.org/repos/asf/tuscany/sca-cpp tuscany-sca-cpp + + +Layout +====== + +Here's a rough guide to the Tuscany SCA source tree: + + / + |-- trunk Master development branch + | | + | |-- kernel SCA runtime kernel + | | + | |-- modules Modules that plug into the runtime + | | |-- atom AtomPub encoding support + | | |-- json JSON-RPC encoding support + | | |-- http HTTP protocol support + | | |-- java Support for Java components + | | |-- python Support for Python components + | | |-- scheme Support for Scheme components + | | |-- server Apache HTTPD server integration + | | + | |-- components Useful SCA components + | | |-- cache Key/value cache + | | |-- chat XMPP chat + | | |-- log Logger + | | |-- queue AMQP message queue + | | |-- store Persistent store + | | |-- webservice Web service gateway + | | + | |-- test Integration tests + | | + | |-- samples Sample Applications + | | + | |-- contrib Various contributions to the project + | + |-- branches Topic and release branches + | + |-- tags Release tags + + +Building +======== + +See the INSTALL file. + + +Contributing to the project +=========================== + +To contribute to the project or report issues see the Tuscany development +mailing list: +dev@tuscany.apache.org + +Archives: +http://www.mail-archive.com/dev@tuscany.apache.org +http://marc.info/?l=tuscany-dev + +To subscribe send an email to: +dev-subscribe@tuscany.apache.org + |