[prev in list] [next in list] [prev in thread] [next in thread] 

List:       openvswitch-git
Subject:    [ovs-git] Open vSwitch: ovsdb: Add ovsdb IDL compiler to build system. (db)
From:       dev () openvswitch ! org (dev at openvswitch ! org)
Date:       2009-11-24 0:08:06
Message-ID: E1NCiww-0008WP-9W () li27-103 ! members ! linode ! com
[Download RAW message or body]

This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "Open vSwitch".

The branch, db has been updated
       via  d879a707a38eff0335e1b5c12ae4c61f4aa0296b (commit)
       via  6bf4c631ae776f4e936b5f01efe4bfbe190f5d99 (commit)
       via  55213fd581a13f5f6af61db6002ab6e6cc284546 (commit)
      from  b966380b45d66ae058c31fbcab67ccfcb8751005 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit d879a707a38eff0335e1b5c12ae4c61f4aa0296b
Diffs: http://openvswitch.org/cgi-bin/gitweb.cgi?p=openvswitch;a=commitdiff;h=d879a707a38eff0335e1b5c12ae4c61f4aa0296b
                
Author: Ben Pfaff <blp at nicira.com>
		
ovsdb: Add ovsdb IDL compiler to build system.
		
This first stab at any interface definition language and compiler for OVSDB
will give other developers a chance to look at it and try to integrate it.
The IDL is not actually implemented yet; I am working on that.


commit 6bf4c631ae776f4e936b5f01efe4bfbe190f5d99
Diffs: http://openvswitch.org/cgi-bin/gitweb.cgi?p=openvswitch;a=commitdiff;h=6bf4c631ae776f4e936b5f01efe4bfbe190f5d99
                
Author: Ben Pfaff <blp at nicira.com>
		
ovsdb: Rename variable to better describe its purpose.
		
Apparently a cut-and-paste error gave this variable a deceptive name.


commit 55213fd581a13f5f6af61db6002ab6e6cc284546
Diffs: http://openvswitch.org/cgi-bin/gitweb.cgi?p=openvswitch;a=commitdiff;h=55213fd581a13f5f6af61db6002ab6e6cc284546
                
Author: Ben Pfaff <blp at nicira.com>
		
shash: Make it more convenient to store "const" objects in an shash.
		


-----------------------------------------------------------------------

Summary of changes:
 COPYING                                            |   24 +
 Makefile.am                                        |    2 +
 lib/shash.c                                        |    4 +-
 lib/shash.h                                        |    2 +-
 lib/vlog-modules.def                               |    1 +
 ovsdb/automake.mk                                  |   30 +
 ovsdb/column.c                                     |   16 +-
 ovsdb/ovsdb-idlc.1                                 |   74 +
 ovsdb/ovsdb-idlc.in                                |  286 +++
 ovsdb/simplejson/__init__.py                       |  318 +++
 ovsdb/simplejson/_speedups.c                       | 2329 ++++++++++++++++++++
 ovsdb/simplejson/decoder.py                        |  354 +++
 ovsdb/simplejson/encoder.py                        |  440 ++++
 ovsdb/simplejson/scanner.py                        |   65 +
 ovsdb/simplejson/tests/__init__.py                 |   23 +
 ovsdb/simplejson/tests/test_check_circular.py      |   30 +
 ovsdb/simplejson/tests/test_decode.py              |   22 +
 ovsdb/simplejson/tests/test_default.py             |    9 +
 ovsdb/simplejson/tests/test_dump.py                |   21 +
 .../tests/test_encode_basestring_ascii.py          |   38 +
 ovsdb/simplejson/tests/test_fail.py                |   76 +
 ovsdb/simplejson/tests/test_float.py               |   15 +
 ovsdb/simplejson/tests/test_indent.py              |   41 +
 ovsdb/simplejson/tests/test_pass1.py               |   76 +
 ovsdb/simplejson/tests/test_pass2.py               |   14 +
 ovsdb/simplejson/tests/test_pass3.py               |   20 +
 ovsdb/simplejson/tests/test_recursion.py           |   67 +
 ovsdb/simplejson/tests/test_scanstring.py          |  111 +
 ovsdb/simplejson/tests/test_separators.py          |   42 +
 ovsdb/simplejson/tests/test_unicode.py             |   64 +
 ovsdb/simplejson/tool.py                           |   37 +
 vswitchd/automake.mk                               |    9 +
 vswitchd/bridge.c                                  |    1 +
 vswitchd/vswitch.ovsidl                            |  173 ++
 vswitchd/vswitch.ovsschema                         |  165 --
 35 files changed, 4823 insertions(+), 176 deletions(-)
 create mode 100644 ovsdb/ovsdb-idlc.1
 create mode 100755 ovsdb/ovsdb-idlc.in
 create mode 100644 ovsdb/simplejson/__init__.py
 create mode 100644 ovsdb/simplejson/_speedups.c
 create mode 100644 ovsdb/simplejson/decoder.py
 create mode 100644 ovsdb/simplejson/encoder.py
 create mode 100644 ovsdb/simplejson/scanner.py
 create mode 100644 ovsdb/simplejson/tests/__init__.py
 create mode 100644 ovsdb/simplejson/tests/test_check_circular.py
 create mode 100644 ovsdb/simplejson/tests/test_decode.py
 create mode 100644 ovsdb/simplejson/tests/test_default.py
 create mode 100644 ovsdb/simplejson/tests/test_dump.py
 create mode 100644 ovsdb/simplejson/tests/test_encode_basestring_ascii.py
 create mode 100644 ovsdb/simplejson/tests/test_fail.py
 create mode 100644 ovsdb/simplejson/tests/test_float.py
 create mode 100644 ovsdb/simplejson/tests/test_indent.py
 create mode 100644 ovsdb/simplejson/tests/test_pass1.py
 create mode 100644 ovsdb/simplejson/tests/test_pass2.py
 create mode 100644 ovsdb/simplejson/tests/test_pass3.py
 create mode 100644 ovsdb/simplejson/tests/test_recursion.py
 create mode 100644 ovsdb/simplejson/tests/test_scanstring.py
 create mode 100644 ovsdb/simplejson/tests/test_separators.py
 create mode 100644 ovsdb/simplejson/tests/test_unicode.py
 create mode 100644 ovsdb/simplejson/tool.py
 create mode 100644 vswitchd/vswitch.ovsidl
 delete mode 100644 vswitchd/vswitch.ovsschema


hooks/post-receive
-- 
Open vSwitch


[prev in list] [next in list] [prev in thread] [next in thread] 

Configure | About | News | Add a list | Sponsored by KoreLogic