This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| module Tasks | |
| # Make sure that no control layer but ManualControl are running | |
| class MaintainManualControl < Roby::Task | |
| terminates | |
| poll do | |
| control_tasks = plan.find_tasks(Services::Control).not_finished | |
| ready = true | |
| control_tasks.each do |t| | |
| next if t.fullfills?(Compositions::ManualControl) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| - tools/roby: | |
| branch: roby3-async | |
| - tools/syskit: | |
| branch: syskit2-async | |
| - drivers/transformer: | |
| branch: roby3-async | |
| - tools/metaruby: | |
| branch: syskit2-async |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| - tools/roby: | |
| branch: roby3 | |
| - tools/syskit: | |
| branch: syskit2 | |
| - drivers/transformer: | |
| branch: roby3 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| - pkg_set:github:/orocos-toolchain/autoproj.git: | |
| branch: castxml | |
| - pkg_set:github:/rock-core/package_set.git: | |
| branch: castxml | |
| - typelib: | |
| branch: castxml |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #include <fstream> | |
| #include <vector> | |
| #include <stdexcept> | |
| #include <iostream> | |
| #include <boost/lexical_cast.hpp> | |
| using namespace std; | |
| using boost::lexical_cast; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| - tools/roby: | |
| branch: syskit_new_naming_scheme | |
| - tools/syskit: | |
| branch: syskit_new_naming_scheme | |
| - base/doc: | |
| branch: syskit_new_naming_scheme | |
| - bundles/rock: | |
| branch: syskit_new_naming_scheme |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| def on_state_change(&block) | |
| port('state').reader(:init => true, :pull => true, :type => buffer, :size => 100).on_data do |state| | |
| block.call(obj.state_symbols[state]) | |
| end | |
| end |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| overrides: | |
| orogen: | |
| branch: models_to_h | |
| tools/orocos.rb: | |
| branch: webapp | |
| typelib: | |
| branch: to_simple_value |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| overrides: | |
| - orogen: | |
| branch: orogen_loaders | |
| - tools/orocos.rb: | |
| branch: orogen_loaders | |
| - tools/syskit: | |
| branch: orogen_loaders | |
| - base/scripts: | |
| branch: orogen_loaders | |
| - gui/vizkit: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| PAGES_BRANCH=gh-pages | |
| DOC_DIR=doc/html | |
| set -e | |
| git reset -q HEAD | |
| # Create the tree object | |
| git add -f $DOC_DIR | |
| tree=$(git write-tree --prefix=$DOC_DIR) |