Re: [Ryu-devel] Ryu GUI

2013-07-30 Thread YAMADA Hideki
Hi, The GUI document is available at my github wiki. https://github.com/yamada-h/ryu/wiki/GUI (2013/07/31 12:55), Thomas Perniciaro wrote: > Has anyone got full instructions on how to install the GUI. I'm new to Ryu > and have installed the latest GUI patch from git and have included the path > f

[Ryu-devel] Ryu GUI

2013-07-30 Thread Thomas Perniciaro
Has anyone got full instructions on how to install the GUI. I'm new to Ryu and have installed the latest GUI patch from git and have included the path from the documentation. Any help is greatly appreciated, Thanks! -- Get

[Ryu-devel] [PATCH 2/3] packet lib: pydoc update/improvements after api change

2013-07-30 Thread YAMAMOTO Takashi
Signed-off-by: YAMAMOTO Takashi --- ryu/lib/packet/arp.py | 18 ++ ryu/lib/packet/ethernet.py | 15 --- ryu/lib/packet/ipv4.py | 27 +++ ryu/lib/packet/ipv6.py | 18 ++ 4 files changed, 43 insertions(+), 35 deletion

[Ryu-devel] [PATCH 1/3] packet lib api: update documentation

2013-07-30 Thread YAMAMOTO Takashi
Signed-off-by: YAMAMOTO Takashi --- doc/source/library_packet.rst | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/doc/source/library_packet.rst b/doc/source/library_packet.rst index 260f13b..70340f6 100644 --- a/doc/source/library_packet.rst +++ b/doc/source/library_pac

[Ryu-devel] [PATCH 0/3] documentation update after packet lib api changes

2013-07-30 Thread YAMAMOTO Takashi
this set is naturally after the packet lib api changes i posted to this ML while ago. YAMAMOTO Takashi (3): packet lib api: update documentation packet lib: pydoc update/improvements after api change note about network address representation doc/source/library_packet.rst | 13 ++---

[Ryu-devel] [PATCH 3/3] note about network address representation

2013-07-30 Thread YAMAMOTO Takashi
Signed-off-by: YAMAMOTO Takashi --- doc/source/library_packet.rst | 7 +++ 1 file changed, 7 insertions(+) diff --git a/doc/source/library_packet.rst b/doc/source/library_packet.rst index 70340f6..b4a5d91 100644 --- a/doc/source/library_packet.rst +++ b/doc/source/library_packet.rst @@ -10,

Re: [Ryu-devel] [PATCH 1/3] packet lib: change the api to use text addresses

2013-07-30 Thread FUJITA Tomonori
On Wed, 31 Jul 2013 11:29:38 +0900 (JST) yamam...@valinux.co.jp (YAMAMOTO Takashi) wrote: >> Thanks, I'll merge this after 2.2 release. Needs to update the sample >> code in doc/librar_packet.rst? > > yes. i'll update it. thanks for pointing out. Would be great if you could improve the doc (e.

Re: [Ryu-devel] [PATCH 1/3] packet lib: change the api to use text addresses

2013-07-30 Thread YAMAMOTO Takashi
> On Tue, 30 Jul 2013 16:22:12 +0900 > YAMAMOTO Takashi wrote: > >> for example: >> >>> from ryu.lib.packet.ipv4 import ipv4 >> >>> o = ipv4(src='127.0.0.1') >> >>> o.src >> '127.0.0.1' >> >>> >> >> i left lldp TLVs as they seem to be treated opaque. >> >> for now, i don't c

Re: [Ryu-devel] [PATCH 1/3] packet lib: change the api to use text addresses

2013-07-30 Thread FUJITA Tomonori
On Tue, 30 Jul 2013 16:22:12 +0900 YAMAMOTO Takashi wrote: > for example: > >>> from ryu.lib.packet.ipv4 import ipv4 > >>> o = ipv4(src='127.0.0.1') > >>> o.src > '127.0.0.1' > >>> > > i left lldp TLVs as they seem to be treated opaque. > > for now, i don't change mac.DONTCA

Re: [Ryu-devel] [PATCH] The trick for installing argparse is deleted

2013-07-30 Thread FUJITA Tomonori
On Wed, 31 Jul 2013 10:36:53 +0900 Satoshi Kobayashi wrote: > This trick is contained in oslo.config. > > Signed-off-by: Satoshi Kobayashi > --- > ryu/utils.py |4 > 1 files changed, 0 insertions(+), 4 deletions(-) Applied, thanks. ---

[Ryu-devel] [PATCH] The trick for installing argparse on Python 2.6 and under is deleted

2013-07-30 Thread Satoshi Kobayashi
This trick is contained in oslo.config. argparse will be installed by it. Signed-off-by: Satoshi Kobayashi --- ryu/utils.py |4 1 files changed, 0 insertions(+), 4 deletions(-) diff --git a/ryu/utils.py b/ryu/utils.py index d0a443d..dd22084 100644 --- a/ryu/utils.py +++ b/ryu/utils.py

Re: [Ryu-devel] What is the version of Python which Ryu is supporting?

2013-07-30 Thread Satoshi Kobayashi
2013/7/30 FUJITA Tomonori > On Mon, 29 Jul 2013 10:19:49 +0900 > Satoshi Kobayashi wrote: > > > I see. I sent it. > > > > [PATCH] The trick which became unnecessary is deleted > > Hmm, I've not got it yet. > I re-sent because it had not arrived. I'm sorry if two or more they have arrived. [PAT

[Ryu-devel] [PATCH] The trick for installing argparse on Python 2.6 and under is deleted

2013-07-30 Thread Satoshi Kobayashi
This trick is contained in oslo.config. argparse will be installed by it. Signed-off-by: Satoshi Kobayashi --- ryu/utils.py |4 1 files changed, 0 insertions(+), 4 deletions(-) diff --git a/ryu/utils.py b/ryu/utils.py index d0a443d..dd22084 100644 --- a/ryu/utils.py +++ b/ryu/utils.py

[Ryu-devel] [PATCH] The trick for installing argparse is deleted

2013-07-30 Thread Satoshi Kobayashi
This trick is contained in oslo.config. Signed-off-by: Satoshi Kobayashi --- ryu/utils.py |4 1 files changed, 0 insertions(+), 4 deletions(-) diff --git a/ryu/utils.py b/ryu/utils.py index d0a443d..dd22084 100644 --- a/ryu/utils.py +++ b/ryu/utils.py @@ -90,10 +90,6 @@ def parse_requ

Re: [Ryu-devel] Why does Ryu include oslo.config in itself?

2013-07-30 Thread YAMAMOTO Takashi
> Hi YAMAMOTO-san, > > 2013/7/30 YAMAMOTO Takashi > >> > Hi, >> > >> > On Thu, 25 Jul 2013 18:07:03 +0900 >> > Satoshi Kobayashi wrote: >> > >> >> I noticed that oslo.config is included in Ryu itself. But oslo.config is >> >> distributed by PyPI. >> >> https://pypi.python.org/pypi/oslo.config >

Re: [Ryu-devel] [PATCH] update a comment

2013-07-30 Thread FUJITA Tomonori
On Wed, 31 Jul 2013 10:13:27 +0900 YAMAMOTO Takashi wrote: > > Signed-off-by: YAMAMOTO Takashi > --- > ryu/tests/packet_data_generator/rebar.config | 5 - > 1 file changed, 5 deletions(-) Applied. -- Get your SQL

[Ryu-devel] [PATCH] update a comment

2013-07-30 Thread YAMAMOTO Takashi
Signed-off-by: YAMAMOTO Takashi --- ryu/tests/packet_data_generator/rebar.config | 5 - 1 file changed, 5 deletions(-) diff --git a/ryu/tests/packet_data_generator/rebar.config b/ryu/tests/packet_data_generator/rebar.config index 0bcca6f..2938731 100644 --- a/ryu/tests/packet_data_generato

[Ryu-devel] Invitation to PyCon Asia Pacific 2013 in Japan

2013-07-30 Thread WAKABAYASHI, Tomonori
Dear Ryu Developer and Users, We would like to update that we have started registration for PyCon APAC 2013. We have a total of 500 seats for the conference, another 100 from last year’s, and we expect many audience participating from across and outside of APAC region. Please secure your seat from

Re: [Ryu-devel] Why does Ryu include oslo.config in itself?

2013-07-30 Thread Satoshi Kobayashi
Hi YAMAMOTO-san, 2013/7/30 YAMAMOTO Takashi > > Hi, > > > > On Thu, 25 Jul 2013 18:07:03 +0900 > > Satoshi Kobayashi wrote: > > > >> I noticed that oslo.config is included in Ryu itself. But oslo.config is > >> distributed by PyPI. > >> https://pypi.python.org/pypi/oslo.config > >> > >> What is

Re: [Ryu-devel] Failure of installation by permission

2013-07-30 Thread Satoshi Kobayashi
2013/7/30 FUJITA Tomonori > On Tue, 30 Jul 2013 17:41:04 +0900 > FUJITA Tomonori wrote: > > > On Fri, 26 Jul 2013 11:53:25 +0900 > > Satoshi Kobayashi wrote: > > > >> Hmm do not know for this to be a common way because I otherwise do > >> not know the library which requires super user permissio

Re: [Ryu-devel] [PATCH] test_addrconv: fix a copy and paste mistake

2013-07-30 Thread FUJITA Tomonori
On Tue, 30 Jul 2013 14:35:35 +0900 YAMAMOTO Takashi wrote: > > Signed-off-by: YAMAMOTO Takashi > --- > ryu/tests/unit/lib/test_addrconv.py | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) Applied. -- Get your

Re: [Ryu-devel] Failure of installation by permission

2013-07-30 Thread FUJITA Tomonori
On Tue, 30 Jul 2013 17:41:04 +0900 FUJITA Tomonori wrote: > On Fri, 26 Jul 2013 11:53:25 +0900 > Satoshi Kobayashi wrote: > >> Hmm do not know for this to be a common way because I otherwise do >> not know the library which requires super user permission. > > How about the following? > > = >>

Re: [Ryu-devel] Failure of installation by permission

2013-07-30 Thread FUJITA Tomonori
On Fri, 26 Jul 2013 11:53:25 +0900 Satoshi Kobayashi wrote: > Hmm do not know for this to be a common way because I otherwise do > not know the library which requires super user permission. How about the following? = >From baa059f4ef78796415600fa7121733a3554b7532 Mon Sep 17 00:00:00 2001 From:

Re: [Ryu-devel] What is the version of Python which Ryu is supporting?

2013-07-30 Thread FUJITA Tomonori
On Mon, 29 Jul 2013 10:19:49 +0900 Satoshi Kobayashi wrote: > I see. I sent it. > > [PATCH] The trick which became unnecessary is deleted Hmm, I've not got it yet. -- Get your SQL database under version control now! Ve

[Ryu-devel] [PATCH 1/3] packet lib: change the api to use text addresses

2013-07-30 Thread YAMAMOTO Takashi
for example: >>> from ryu.lib.packet.ipv4 import ipv4 >>> o = ipv4(src='127.0.0.1') >>> o.src '127.0.0.1' >>> i left lldp TLVs as they seem to be treated opaque. for now, i don't change mac.DONTCARE and mac.BROADCAST because they are used by the ofproto world as well. Signed-

[Ryu-devel] [PATCH 2/3] topology.switches: update after packet lib api changes

2013-07-30 Thread YAMAMOTO Takashi
Signed-off-by: YAMAMOTO Takashi --- ryu/topology/switches.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ryu/topology/switches.py b/ryu/topology/switches.py index 690a8fc..cf8fdea 100644 --- a/ryu/topology/switches.py +++ b/ryu/topology/switches.py @@ -26,7 +26,7 @@ f

[Ryu-devel] [PATCH 3/3] rest_router: update after packet lib api changes

2013-07-30 Thread YAMAMOTO Takashi
Signed-off-by: YAMAMOTO Takashi --- ryu/app/rest_router.py | 37 ++--- 1 file changed, 18 insertions(+), 19 deletions(-) diff --git a/ryu/app/rest_router.py b/ryu/app/rest_router.py index c2c5329..758c7ee 100644 --- a/ryu/app/rest_router.py +++ b/ryu/app/rest_rou