commit-gnuradio
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Commit-gnuradio] gnuradio.git at gnuradio.org branch, master, updated.


From: Git Repository
Subject: [Commit-gnuradio] gnuradio.git at gnuradio.org branch, master, updated. d80add605536891da950126b25b16ab89d8e7cae
Date: Fri, 4 Sep 2009 17:34:52 -0600 (MDT)

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 "gnuradio.git at gnuradio.org".

The branch, master has been updated
       via  d80add605536891da950126b25b16ab89d8e7cae (commit)
       via  6b47cc3dc64d86cb19eb28ab4843a0f278db6d0a (commit)
       via  490b1195935007031759ec815b1d4a3046a5907a (commit)
       via  56a58932701c981e55972ad994d397733edb8c75 (commit)
       via  30513fdc9afa3d8e9d4dce4214299d89aed3c409 (commit)
       via  20cf376ab01b02c34f16e242b36ae2a861ba24cb (commit)
       via  152fcbc219cd2e4f6df7b38843844bc85fdf2bc2 (commit)
       via  cc13a27310e4ab91ebf90ee2d9cd6e3c659e1bc0 (commit)
       via  2b65221a52a980b24e6e0c0e9f2db122c7c8225b (commit)
       via  576d3978c7fafe5d6727c77281e3aad6d92074d2 (commit)
       via  cb794a7c8703ea06a9bce110fc1041140f25e8e6 (commit)
       via  9ae19105d745ef2c7be8fbe3c2206a0a6ca6632b (commit)
       via  5f7bd3f80387ea699649f76bd22d0be5ba08732d (commit)
       via  cadc9548afb7b4a385cea51f48745f0a1c702607 (commit)
       via  36d1520f0ac73b64bd0541b422552a6d419c7ffd (commit)
       via  dc9e9db16047ec589a7b0488fac04c5bb682903c (commit)
       via  854bed10dfb61e9f9feab5259a75e809941089ab (commit)
       via  62abad680b43218bbacf03c19d35c068973de4b9 (commit)
       via  6d327a3ad5205a0cacb82578f32ae7ef00eeb111 (commit)
       via  af5701409859af4b20a03bfd6b2cebf3559b1b3d (commit)
       via  e6f9073f11e016fba2793c3a6d9c026399994e08 (commit)
       via  07d9b76e4bf8799d87775bd5546abf1f9ac5c995 (commit)
       via  b8df6584312f1f03d0bf86375945b8d743b6a6d7 (commit)
       via  2546d2edcd6c8c642bce6715939de716aa0546a1 (commit)
       via  bf232a6e6e73d156c9a46c26842480352c6794c0 (commit)
       via  63c928575c10741ac6a6c3c3c8be9c238e7b8432 (commit)
      from  20006003431d7260b04964eb684b1746ffb0a85f (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 d80add605536891da950126b25b16ab89d8e7cae
Merge: 20006003431d7260b04964eb684b1746ffb0a85f 
6b47cc3dc64d86cb19eb28ab4843a0f278db6d0a
Author: Johnathan Corgan <address@hidden>
Date:   Fri Sep 4 15:47:49 2009 -0700

    Merge branch 'grc' from http://gnuradio.org/git/jblum.git into master
    
      we dont use test() -> remove it
      Made the window for the pass band filters integers (take firdes.WIN_XXX).
      Evaluation fix in param.to_code().
      Removed the flagging api and usage from the base classes.
      added ref scale param to fft and waterfall
      Switched the python classes to inherit from the base and gui classes.
      port and param types from an overloaded method
      todo
      Replaced TYPES in Port and Param with types parameter.
      made is_virtual_xxx a block level function, used by port and param classes
      added stream id type and checking in evaluate
      avoid loops
      Recursive resolution of virtual sources.
      added virtual source and added stream ids, logic to clone in port
      added rewrite methods to element to separate from validation logic
      Added virtual sink and logic to clone port.
      removed repurposing of pads
      Work on command line options for generated code.
      renamed the colors dialog to types
      use pkgpythondir
      ...

commit 6b47cc3dc64d86cb19eb28ab4843a0f278db6d0a
Author: Josh Blum <address@hidden>
Date:   Thu Sep 3 15:46:07 2009 -0700

    we dont use test() -> remove it

commit 490b1195935007031759ec815b1d4a3046a5907a
Author: Josh Blum <address@hidden>
Date:   Thu Sep 3 11:37:27 2009 -0700

    Made the window for the pass band filters integers (take firdes.WIN_XXX).
    Now a window can be controlled by a variable such as a chooser.

commit 56a58932701c981e55972ad994d397733edb8c75
Author: Josh Blum <address@hidden>
Date:   Wed Sep 2 16:58:15 2009 -0700

    Evaluation fix in param.to_code().
    
    Dont force an evaluation in to code unless the type is string or list.
    Not doing so forces the variables to call evaluate before the namespace was 
bootstrapped.
    
    This fixes a bug that came up when the validate was replaced with rewrite 
in flowgraph.import_data().
    By replacing the validate, evaluate was only called once, and the namespace 
was not bootstrapped.

commit 30513fdc9afa3d8e9d4dce4214299d89aed3c409
Author: Josh Blum <address@hidden>
Date:   Wed Sep 2 13:16:47 2009 -0700

    Removed the flagging api and usage from the base classes.
    Far better to flag the namespace for renewing once in the flowgraph.py

commit 20cf376ab01b02c34f16e242b36ae2a861ba24cb
Author: Josh Blum <address@hidden>
Date:   Wed Sep 2 12:26:09 2009 -0700

    added ref scale param to fft and waterfall

commit 152fcbc219cd2e4f6df7b38843844bc85fdf2bc2
Author: Josh Blum <address@hidden>
Date:   Sun Aug 30 10:34:10 2009 -0700

    Switched the python classes to inherit from the base and gui classes.
    Use only **kwargs so all contructor parameters must be passed with keys.
    Moved gui input forms classes from base to gui param module.

commit cc13a27310e4ab91ebf90ee2d9cd6e3c659e1bc0
Author: Josh Blum <address@hidden>
Date:   Sun Aug 30 09:35:55 2009 -0700

    port and param types from an overloaded method

commit 2b65221a52a980b24e6e0c0e9f2db122c7c8225b
Author: Josh Blum <address@hidden>
Date:   Sat Aug 29 01:44:17 2009 -0700

    todo

commit 576d3978c7fafe5d6727c77281e3aad6d92074d2
Author: Josh Blum <address@hidden>
Date:   Sat Aug 29 01:04:58 2009 -0700

    Replaced TYPES in Port and Param with types parameter.
    Replaced odict in options for storing options with a list.
    Fix virtual port check in flow graph template.

commit cb794a7c8703ea06a9bce110fc1041140f25e8e6
Author: Josh Blum <address@hidden>
Date:   Fri Aug 28 21:06:19 2009 -0700

    made is_virtual_xxx a block level function, used by port and param classes

commit 9ae19105d745ef2c7be8fbe3c2206a0a6ca6632b
Author: Josh Blum <address@hidden>
Date:   Fri Aug 28 20:57:40 2009 -0700

    added stream id type and checking in evaluate

commit 5f7bd3f80387ea699649f76bd22d0be5ba08732d
Author: Josh Blum <address@hidden>
Date:   Fri Aug 28 20:39:35 2009 -0700

    avoid loops

commit cadc9548afb7b4a385cea51f48745f0a1c702607
Author: Josh Blum <address@hidden>
Date:   Fri Aug 28 18:15:49 2009 -0700

    Recursive resolution of virtual sources.
    Flow graph generation code working.
    
    Also, mod to fft window to use clean/nice Db/div.

commit 36d1520f0ac73b64bd0541b422552a6d419c7ffd
Author: Josh Blum <address@hidden>
Date:   Fri Aug 28 01:09:08 2009 -0700

    added virtual source and added stream ids, logic to clone in port

commit dc9e9db16047ec589a7b0488fac04c5bb682903c
Author: Josh Blum <address@hidden>
Date:   Wed Aug 26 13:29:28 2009 -0700

    added rewrite methods to element to separate from validation logic

commit 854bed10dfb61e9f9feab5259a75e809941089ab
Author: Josh Blum <address@hidden>
Date:   Wed Aug 26 11:23:23 2009 -0700

    Added virtual sink and logic to clone port.
    Tweaks to the base validation routines.
    Validate twice in the update until rewrite functions are implemented.

commit 62abad680b43218bbacf03c19d35c068973de4b9
Author: Josh Blum <address@hidden>
Date:   Tue Aug 25 23:42:18 2009 -0700

    removed repurposing of pads

commit 6d327a3ad5205a0cacb82578f32ae7ef00eeb111
Merge: af5701409859af4b20a03bfd6b2cebf3559b1b3d 
23fb5e602d48f6924e70b363bf9480fd41b928b0
Author: Josh Blum <address@hidden>
Date:   Tue Aug 25 16:51:45 2009 -0700

    Merge branch 'master' of http://gnuradio.org/git/gnuradio into grc

commit af5701409859af4b20a03bfd6b2cebf3559b1b3d
Author: Josh Blum <address@hidden>
Date:   Tue Aug 25 14:56:47 2009 -0700

    Work on command line options for generated code.
    Simplified eng_option eng_float to reuse str_to_num code.

commit e6f9073f11e016fba2793c3a6d9c026399994e08
Merge: 07d9b76e4bf8799d87775bd5546abf1f9ac5c995 
b6c19491d34357ab2d6332f91733afe7367da92a
Author: Josh Blum <address@hidden>
Date:   Mon Aug 24 21:35:46 2009 -0700

    Merge branch 'wxgui' of address@hidden:jblum into grc

commit 07d9b76e4bf8799d87775bd5546abf1f9ac5c995
Merge: b8df6584312f1f03d0bf86375945b8d743b6a6d7 
9f2ca841018fd24644be39b4400784806015aef2
Author: Josh Blum <address@hidden>
Date:   Mon Aug 24 21:34:25 2009 -0700

    Merge branch 'master' of http://gnuradio.org/git/gnuradio into grc

commit b8df6584312f1f03d0bf86375945b8d743b6a6d7
Author: Josh Blum <address@hidden>
Date:   Mon Aug 24 20:40:36 2009 -0700

    renamed the colors dialog to types

commit 2546d2edcd6c8c642bce6715939de716aa0546a1
Author: Josh Blum <address@hidden>
Date:   Sun Aug 23 21:00:03 2009 -0700

    use pkgpythondir

commit bf232a6e6e73d156c9a46c26842480352c6794c0
Author: Josh Blum <address@hidden>
Date:   Thu Aug 20 01:30:23 2009 -0700

    added continuation mode for pad source and sinks

commit 63c928575c10741ac6a6c3c3c8be9c238e7b8432
Author: Josh Blum <address@hidden>
Date:   Mon Aug 17 00:54:11 2009 -0700

    Removed Source and Sink classes as Port subclasses.
    A port can be a source or a sink based on the dir parameter.

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

Summary of changes:
 gnuradio-core/src/python/gnuradio/eng_option.py |   22 +----
 gr-wxgui/src/python/fft_window.py               |    6 +-
 grc/Makefile.inc                                |    4 +-
 grc/base/Block.py                               |   41 ++++----
 grc/base/Element.py                             |   23 +----
 grc/base/FlowGraph.py                           |   28 +++--
 grc/base/Param.py                               |  134 +++++------------------
 grc/base/Platform.py                            |    5 +-
 grc/base/Port.py                                |   32 +++---
 grc/blocks/Makefile.am                          |    2 +
 grc/blocks/band_pass_filter.xml                 |   19 ++--
 grc/blocks/band_reject_filter.xml               |   19 ++--
 grc/blocks/block_tree.xml                       |    2 +
 grc/blocks/gr_noise_source_x.xml                |    2 +-
 grc/blocks/gr_sig_source_x.xml                  |    2 +-
 grc/blocks/high_pass_filter.xml                 |   19 ++--
 grc/blocks/low_pass_filter.xml                  |   19 ++--
 grc/blocks/options.xml                          |    9 +-
 grc/blocks/pad_sink.xml                         |    3 -
 grc/blocks/pad_source.xml                       |    6 +-
 grc/blocks/parameter.xml                        |    9 ++-
 grc/blocks/{note.xml => virtual_sink.xml}       |   16 ++-
 grc/blocks/{note.xml => virtual_source.xml}     |   16 ++-
 grc/blocks/wxgui_fftsink2.xml                   |    7 +
 grc/blocks/wxgui_waterfallsink2.xml             |    7 +
 grc/gui/ActionHandler.py                        |   10 +-
 grc/gui/Actions.py                              |    4 +-
 grc/gui/Bars.py                                 |    2 +-
 grc/gui/Block.py                                |    8 +-
 grc/gui/Dialogs.py                              |    4 +-
 grc/gui/FlowGraph.py                            |    2 +
 grc/gui/Param.py                                |   77 +++++++++++++
 grc/gui/Platform.py                             |   32 +-----
 grc/gui/Port.py                                 |    2 +-
 grc/python/Block.py                             |   14 ++-
 grc/python/Connection.py                        |    9 +-
 grc/python/FlowGraph.py                         |   20 +++-
 grc/python/Param.py                             |   54 +++++++---
 grc/python/Platform.py                          |    9 +-
 grc/python/Port.py                              |   93 +++++++++++-----
 grc/python/flow_graph.tmpl                      |   44 +++++---
 grc/todo.txt                                    |    7 +-
 42 files changed, 460 insertions(+), 383 deletions(-)
 copy grc/blocks/{note.xml => virtual_sink.xml} (51%)
 copy grc/blocks/{note.xml => virtual_source.xml} (50%)


hooks/post-receive
-- 
gnuradio.git at gnuradio.org




reply via email to

[Prev in Thread] Current Thread [Next in Thread]