You are viewing a plain text version of this content. The canonical link for it is here.
Posted to nuvem-commits@incubator.apache.org by js...@apache.org on 2011/06/13 07:49:12 UTC

svn commit: r1135043 - in /incubator/nuvem/trunk: .gitignore nuvem-parallel/nuvem/twsms.py

Author: jsdelfino
Date: Mon Jun 13 07:49:12 2011
New Revision: 1135043

URL: http://svn.apache.org/viewvc?rev=1135043&view=rev
Log:
Add SMS sender component implementation.

Added:
    incubator/nuvem/trunk/nuvem-parallel/nuvem/twsms.py
      - copied, changed from r1130656, incubator/nuvem/trunk/.gitignore
Modified:
    incubator/nuvem/trunk/.gitignore

Modified: incubator/nuvem/trunk/.gitignore
URL: http://svn.apache.org/viewvc/incubator/nuvem/trunk/.gitignore?rev=1135043&r1=1135042&r2=1135043&view=diff
==============================================================================
--- incubator/nuvem/trunk/.gitignore (original)
+++ incubator/nuvem/trunk/.gitignore Mon Jun 13 07:49:12 2011
@@ -27,4 +27,5 @@ dojo/
 classes/
 lib/
 *.pyc
+*.patch
 

Copied: incubator/nuvem/trunk/nuvem-parallel/nuvem/twsms.py (from r1130656, incubator/nuvem/trunk/.gitignore)
URL: http://svn.apache.org/viewvc/incubator/nuvem/trunk/nuvem-parallel/nuvem/twsms.py?p2=incubator/nuvem/trunk/nuvem-parallel/nuvem/twsms.py&p1=incubator/nuvem/trunk/.gitignore&r1=1130656&r2=1135043&rev=1135043&view=diff
==============================================================================
--- incubator/nuvem/trunk/.gitignore (original)
+++ incubator/nuvem/trunk/nuvem-parallel/nuvem/twsms.py Mon Jun 13 07:49:12 2011
@@ -14,17 +14,7 @@
 #  KIND, either express or implied.  See the License for the
 #  specific language governing permissions and limitations
 #  under the License.
-  
-# git-ls-files --others --exclude-from=.git/info/exclude
-# Lines that start with '#' are comments.
-# For a project mostly in C, the following would be a good set of
-# exclude patterns (uncomment them if you want to use them):
-# *.[oa]
-# *~
 
-target/
-dojo/
-classes/
-lib/
-*.pyc
+def get(r, sid, tok, fr, to, msg, s):
+    return s.get('app://twsms', ('c', 'send', ("'sid", sid.get(r)), ("'token", tok.get(r)), ("'from", fr.get(r)), ("'to", to.get(r)), ("'msg", msg.get(r))))