diff options
author | jsdelfino <jsdelfino@13f79535-47bb-0310-9956-ffa450edef68> | 2010-04-17 05:00:18 +0000 |
---|---|---|
committer | jsdelfino <jsdelfino@13f79535-47bb-0310-9956-ffa450edef68> | 2010-04-17 05:00:18 +0000 |
commit | 5e5a4c9daa1bc9da5ee0d6121e51e067d9017037 (patch) | |
tree | 97836c5a49ffee90f8f707cab8efbf55c0c45cd3 /sca-cpp/branches/gcc-4.4/README | |
parent | 45629fcf8a2f5d6048868e16292d28fe73808ebd (diff) |
Copy trunk into gcc-4.4 branch before porting to gcc-4.5.
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@935127 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'sca-cpp/branches/gcc-4.4/README')
-rw-r--r-- | sca-cpp/branches/gcc-4.4/README | 81 |
1 files changed, 81 insertions, 0 deletions
diff --git a/sca-cpp/branches/gcc-4.4/README b/sca-cpp/branches/gcc-4.4/README new file mode 100644 index 0000000000..720b785e47 --- /dev/null +++ b/sca-cpp/branches/gcc-4.4/README @@ -0,0 +1,81 @@ +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 + | | |-- json JSON-RPC encoding + | | |-- http HTTP protocol + | | |-- java Support for Java components + | | |-- python Support for Python components + | | |-- scheme Support for Scheme components + | | |-- server Apache HTTPD server integration + | | |-- wsgi Python WSGI server integration + | | + | |-- components Useful SCA components + | | |-- cache Key/value memory cache + | | |-- chat XMPP chat + | | |-- log Logger + | | |-- queue AMQP message queue + | | |-- sqldb SQL database + | | |-- store Key/value persistent store + | | |-- webservice Web service gateway + | | + | |-- test Integration tests + | | + | |-- samples Sample Applications + | | + | |-- ubuntu Automated install on Ubuntu 9.10 + | + |-- 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 + |