[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Commit-gnuradio] [gnuradio] branch next updated (d13de2f -> 2846421)
From: |
git |
Subject: |
[Commit-gnuradio] [gnuradio] branch next updated (d13de2f -> 2846421) |
Date: |
Sun, 24 Apr 2016 19:19:38 +0000 (UTC) |
This is an automated email from the git hooks/post-receive script.
jcorgan pushed a change to branch next
in repository gnuradio.
from d13de2f Merge branch 'master' into next
new 9f5ef34 grc-refactor: move grc.base to grc.python.base
new 36af320 grc-refactor: clean-up grc directory
new 0d5bd45 grc-refactor: Moved code from grc.model.base to grc.model
new 62aadb3 grc-refactor: Cleaning up code style to match PEP8.
new ed6e9a4 grc-refactor: fixes, type-testing-flags, FlowGraph.py,
(more)
new 412df3a grc-refactor: rename grc/model/ to grc/core/
new 9023d2a grc-refactor: cmake fixes and more reorganizing
new 01afb64 grc-refactor: Platform.py fixes, FlowGraphProxy
new d905f0d grc-refactor: move Messages to core
new 7453e24 grc-refactor: Platform.py
new 3201557 grc-refactor: move gui prefs to gui
new c285036 grc-refactor: remove (hopefully) all deps to GR in core/
and gui/
new 2708f33 grc-refactoring: move template arg to param
new 061af3f grc-refactor: fix fg load
new 036264e grc-refactoring: fix gui mode errors, no empty import on
fg init, some renames
new 8cfc8b3 Merge remote-tracking branch 'upstream/master' into
refactoring
new 1763162 grc-refactor: CMake fixes, start-up script cleaned up
new fe6abd5 grc: fix copy and paste for embedded python blocks
new 240fd75 grc: add more documentation for embedded python blocks
new 2a68b68 grc: avoid name clashes when importing epy block and
really fix epy block c&p
new a03a390 Merge branch 'maint_grcwg' into refactoring
new 2846421 Merge branch 'master' into next
The 22 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.
Summary of changes:
grc/CMakeLists.txt | 9 +-
grc/__main__.py | 20 +
grc/base/Block.py | 542 ------------
grc/base/CMakeLists.txt | 43 -
grc/base/Constants.py | 50 --
grc/base/FlowGraph.py | 484 -----------
grc/base/Param.py | 205 -----
grc/base/Platform.py | 271 ------
grc/base/Port.py | 136 ---
grc/base/__init__.py | 20 -
grc/blocks/epy_block.xml | 25 +-
grc/checks.py | 80 ++
grc/core/Block.py | 846 +++++++++++++++++++
grc/{examples => core}/CMakeLists.txt | 24 +-
grc/core/Config.py | 55 ++
grc/{base => core}/Connection.py | 83 +-
grc/{python => core}/Constants.py | 85 +-
grc/{base => core}/Element.py | 53 +-
grc/core/FlowGraph.py | 594 ++++++++++++++
grc/{gui => core}/Messages.py | 53 +-
grc/core/Param.py | 740 +++++++++++++++++
grc/{base => core}/ParseXML.py | 22 +-
grc/core/Platform.py | 319 ++++++++
grc/core/Port.py | 404 +++++++++
grc/{python => core}/__init__.py | 0
grc/{python => core}/block.dtd | 0
grc/{base => core}/block_tree.dtd | 0
grc/{python => core}/default_flow_graph.grc | 0
grc/{base => core}/domain.dtd | 0
grc/{base => core}/flow_graph.dtd | 0
grc/{scripts => core/generator}/CMakeLists.txt | 13 +-
grc/core/generator/FlowGraphProxy.py | 126 +++
grc/{python => core/generator}/Generator.py | 195 ++---
grc/core/generator/__init__.py | 18 +
grc/{python => core/generator}/flow_graph.tmpl | 0
.../__init__.py => grc/core/utils/CMakeLists.txt | 10 +-
grc/core/utils/__init__.py | 22 +
grc/core/utils/complexity.py | 49 ++
grc/{python => core/utils}/epy_block_io.py | 15 +-
grc/{python => core/utils}/expr_utils.py | 57 +-
grc/{python => core/utils}/extract_docs.py | 45 +-
grc/{base => core/utils}/odict.py | 18 +-
grc/cpp/README | 5 -
grc/examples/simple/variable_config.grc | 561 -------------
grc/examples/xmlrpc/readme.txt | 18 -
grc/examples/xmlrpc/xmlrpc_client.grc | 428 ----------
grc/examples/xmlrpc/xmlrpc_client_script.py | 23 -
grc/examples/xmlrpc/xmlrpc_server.grc | 908 ---------------------
grc/gui/ActionHandler.py | 102 +--
grc/gui/Block.py | 48 +-
grc/gui/BlockTreeWindow.py | 6 +-
grc/gui/CMakeLists.txt | 32 +-
grc/gui/Config.py | 74 ++
grc/gui/Connection.py | 18 +-
grc/gui/Constants.py | 53 +-
grc/gui/Dialogs.py | 33 +-
grc/gui/Element.py | 16 +-
grc/gui/Executor.py | 123 +++
grc/gui/FlowGraph.py | 90 +-
grc/gui/MainWindow.py | 30 +-
grc/gui/NotebookPage.py | 6 +-
grc/gui/Param.py | 15 +-
grc/gui/Platform.py | 53 +-
grc/gui/Port.py | 43 +-
grc/gui/Preferences.py | 2 +-
grc/main.py | 55 ++
grc/python/Block.py | 326 --------
grc/python/CMakeLists.txt | 44 -
grc/python/Connection.py | 45 -
grc/python/FlowGraph.py | 338 --------
grc/python/Param.py | 433 ----------
grc/python/Platform.py | 175 ----
grc/python/Port.py | 268 ------
grc/scripts/CMakeLists.txt | 2 +
grc/{ => scripts}/freedesktop/CMakeLists.txt | 0
grc/{ => scripts}/freedesktop/README | 0
grc/{ => scripts}/freedesktop/convert.sh | 0
grc/{ => scripts}/freedesktop/gnuradio-grc.desktop | 0
grc/{ => scripts}/freedesktop/gnuradio-grc.xml | 0
.../freedesktop/gnuradio_logo_icon-square.svg | 0
grc/{ => scripts}/freedesktop/grc-icon-128.png | Bin
grc/{ => scripts}/freedesktop/grc-icon-16.png | Bin
grc/{ => scripts}/freedesktop/grc-icon-24.png | Bin
grc/{ => scripts}/freedesktop/grc-icon-256.png | Bin
grc/{ => scripts}/freedesktop/grc-icon-32.png | Bin
grc/{ => scripts}/freedesktop/grc-icon-48.png | Bin
grc/{ => scripts}/freedesktop/grc-icon-64.png | Bin
.../freedesktop/grc_setup_freedesktop.in | 0
grc/scripts/gnuradio-companion | 124 +--
grc/todo.txt | 69 --
90 files changed, 4177 insertions(+), 6120 deletions(-)
create mode 100644 grc/__main__.py
delete mode 100644 grc/base/Block.py
delete mode 100644 grc/base/CMakeLists.txt
delete mode 100644 grc/base/Constants.py
delete mode 100644 grc/base/FlowGraph.py
delete mode 100644 grc/base/Param.py
delete mode 100644 grc/base/Platform.py
delete mode 100644 grc/base/Port.py
delete mode 100644 grc/base/__init__.py
create mode 100755 grc/checks.py
create mode 100644 grc/core/Block.py
rename grc/{examples => core}/CMakeLists.txt (73%)
create mode 100644 grc/core/Config.py
rename grc/{base => core}/Connection.py (61%)
rename grc/{python => core}/Constants.py (74%)
rename grc/{base => core}/Element.py (74%)
create mode 100644 grc/core/FlowGraph.py
rename grc/{gui => core}/Messages.py (68%)
create mode 100644 grc/core/Param.py
rename grc/{base => core}/ParseXML.py (89%)
create mode 100644 grc/core/Platform.py
create mode 100644 grc/core/Port.py
rename grc/{python => core}/__init__.py (100%)
rename grc/{python => core}/block.dtd (100%)
rename grc/{base => core}/block_tree.dtd (100%)
rename grc/{python => core}/default_flow_graph.grc (100%)
rename grc/{base => core}/domain.dtd (100%)
rename grc/{base => core}/flow_graph.dtd (100%)
copy grc/{scripts => core/generator}/CMakeLists.txt (78%)
create mode 100644 grc/core/generator/FlowGraphProxy.py
rename grc/{python => core/generator}/Generator.py (72%)
create mode 100644 grc/core/generator/__init__.py
rename grc/{python => core/generator}/flow_graph.tmpl (100%)
copy gr-fec/python/fec/LDPC/__init__.py => grc/core/utils/CMakeLists.txt (84%)
create mode 100644 grc/core/utils/__init__.py
create mode 100644 grc/core/utils/complexity.py
rename grc/{python => core/utils}/epy_block_io.py (89%)
rename grc/{python => core/utils}/expr_utils.py (79%)
rename grc/{python => core/utils}/extract_docs.py (89%)
rename grc/{base => core/utils}/odict.py (86%)
delete mode 100644 grc/cpp/README
delete mode 100644 grc/examples/simple/variable_config.grc
delete mode 100644 grc/examples/xmlrpc/readme.txt
delete mode 100644 grc/examples/xmlrpc/xmlrpc_client.grc
delete mode 100644 grc/examples/xmlrpc/xmlrpc_client_script.py
delete mode 100644 grc/examples/xmlrpc/xmlrpc_server.grc
create mode 100644 grc/gui/Config.py
create mode 100644 grc/gui/Executor.py
create mode 100755 grc/main.py
delete mode 100644 grc/python/Block.py
delete mode 100644 grc/python/CMakeLists.txt
delete mode 100644 grc/python/Connection.py
delete mode 100644 grc/python/FlowGraph.py
delete mode 100644 grc/python/Param.py
delete mode 100644 grc/python/Platform.py
delete mode 100644 grc/python/Port.py
rename grc/{ => scripts}/freedesktop/CMakeLists.txt (100%)
rename grc/{ => scripts}/freedesktop/README (100%)
rename grc/{ => scripts}/freedesktop/convert.sh (100%)
rename grc/{ => scripts}/freedesktop/gnuradio-grc.desktop (100%)
rename grc/{ => scripts}/freedesktop/gnuradio-grc.xml (100%)
rename grc/{ => scripts}/freedesktop/gnuradio_logo_icon-square.svg (100%)
rename grc/{ => scripts}/freedesktop/grc-icon-128.png (100%)
rename grc/{ => scripts}/freedesktop/grc-icon-16.png (100%)
rename grc/{ => scripts}/freedesktop/grc-icon-24.png (100%)
rename grc/{ => scripts}/freedesktop/grc-icon-256.png (100%)
rename grc/{ => scripts}/freedesktop/grc-icon-32.png (100%)
rename grc/{ => scripts}/freedesktop/grc-icon-48.png (100%)
rename grc/{ => scripts}/freedesktop/grc-icon-64.png (100%)
rename grc/{ => scripts}/freedesktop/grc_setup_freedesktop.in (100%)
delete mode 100644 grc/todo.txt
- [Commit-gnuradio] [gnuradio] branch next updated (d13de2f -> 2846421),
git <=