-
Notifications
You must be signed in to change notification settings - Fork 100
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
11 ➡️ 12 Forward port #627
Merged
Merged
Conversation
This file contains 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
gazebosim#575) Now PrintValues() and ToString() will not output the elements that were added by default during parsing. There's also the option to call them with a boolean flag that will allow the caller to decide weather they want defaults in the output or not. Signed-off-by: Marco A. Gutierrez <[email protected]> Co-authored-by: Addisu Z. Taddese <[email protected]>
Signed-off-by: Ian Chen <[email protected]>
* check for <experimental:params> & test Signed-off-by: Jenn Nguyen <[email protected]> * defined xml namespace Signed-off-by: Jenn Nguyen <[email protected]> * Param passing prototype: Retrieve specified element (gazebosim#427) * retrieve element by identifier under <experimental:params> Signed-off-by: Jenn Nguyen <[email protected]> * Moved updateParams before addNestedModel (gazebosim#464) * retrieve element for add action & added tests Signed-off-by: Jenn Nguyen <[email protected]> * replaced name with element_id Signed-off-by: Jenn Nguyen <[email protected]> * moved updateParams before addNestedModel Signed-off-by: Jenn Nguyen <[email protected]> * found chars using rfind Signed-off-by: Jenn Nguyen <[email protected]> * added error when element_id missing name after :: Signed-off-by: Jenn Nguyen <[email protected]> * updated find w/ startIdx Signed-off-by: Jenn Nguyen <[email protected]> Co-authored-by: Addisu Z. Taddese <[email protected]> * Param passing prototype: Add action (gazebosim#546) * tinyxml2 to string helper Signed-off-by: Jenn Nguyen <[email protected]> * add action Signed-off-by: Jenn Nguyen <[email protected]> * fixed codecheck errors Signed-off-by: Jenn Nguyen <[email protected]> * changed parser_private functions to nonstatic Signed-off-by: Jenn Nguyen <[email protected]> * removed specification check Signed-off-by: Jenn Nguyen <[email protected]> * add action requires 'name' attribute in spec Signed-off-by: Jenn Nguyen <[email protected]> * fixed nested include test Signed-off-by: Jenn Nguyen <[email protected]> * removed unused param Signed-off-by: Jenn Nguyen <[email protected]> * check name attr nonempty Signed-off-by: Jenn Nguyen <[email protected]> * storing attribute to variable Signed-off-by: Jenn Nguyen <[email protected]> * Param passing prototype: Remove action (gazebosim#563) * tinyxml2 to string helper Signed-off-by: Jenn Nguyen <[email protected]> * add action Signed-off-by: Jenn Nguyen <[email protected]> * fixed codecheck errors Signed-off-by: Jenn Nguyen <[email protected]> * changed parser_private functions to nonstatic Signed-off-by: Jenn Nguyen <[email protected]> * removed specification check Signed-off-by: Jenn Nguyen <[email protected]> * remove action Signed-off-by: Jenn Nguyen <[email protected]> * add action requires 'name' attribute in spec Signed-off-by: Jenn Nguyen <[email protected]> * fixed nested include test Signed-off-by: Jenn Nguyen <[email protected]> * removed unused param Signed-off-by: Jenn Nguyen <[email protected]> * check name attr nonempty Signed-off-by: Jenn Nguyen <[email protected]> * Param passing prototype: Replace action (gazebosim#566) * tinyxml2 to string helper Signed-off-by: Jenn Nguyen <[email protected]> * add action Signed-off-by: Jenn Nguyen <[email protected]> * fixed codecheck errors Signed-off-by: Jenn Nguyen <[email protected]> * changed parser_private functions to nonstatic Signed-off-by: Jenn Nguyen <[email protected]> * removed specification check Signed-off-by: Jenn Nguyen <[email protected]> * remove action Signed-off-by: Jenn Nguyen <[email protected]> * add action requires 'name' attribute in spec Signed-off-by: Jenn Nguyen <[email protected]> * fixed nested include test Signed-off-by: Jenn Nguyen <[email protected]> * removed unused param Signed-off-by: Jenn Nguyen <[email protected]> * check name attr nonempty Signed-off-by: Jenn Nguyen <[email protected]> * replace action Signed-off-by: Jenn Nguyen <[email protected]> * renamed init element description function Signed-off-by: Jenn Nguyen <[email protected]> * added ParamPassing namespace Signed-off-by: Jenn Nguyen <[email protected]> * updated add for plugins Signed-off-by: Jenn Nguyen <[email protected]> * Param passing prototype: Modify action (gazebosim#577) * tinyxml2 to string helper Signed-off-by: Jenn Nguyen <[email protected]> * add action Signed-off-by: Jenn Nguyen <[email protected]> * fixed codecheck errors Signed-off-by: Jenn Nguyen <[email protected]> * changed parser_private functions to nonstatic Signed-off-by: Jenn Nguyen <[email protected]> * removed specification check Signed-off-by: Jenn Nguyen <[email protected]> * remove action Signed-off-by: Jenn Nguyen <[email protected]> * add action requires 'name' attribute in spec Signed-off-by: Jenn Nguyen <[email protected]> * fixed nested include test Signed-off-by: Jenn Nguyen <[email protected]> * removed unused param Signed-off-by: Jenn Nguyen <[email protected]> * check name attr nonempty Signed-off-by: Jenn Nguyen <[email protected]> * replace action Signed-off-by: Jenn Nguyen <[email protected]> * modify action Signed-off-by: Jenn Nguyen <[email protected]> * code cleanup Signed-off-by: Jenn Nguyen <[email protected]> * added nested model test Signed-off-by: Jenn Nguyen <[email protected]> * readXml wrapper Signed-off-by: Jenn Nguyen <[email protected]> * SDFPtr to ElementPtr Signed-off-by: Jenn Nguyen <[email protected]> * updated test paths Signed-off-by: Jenn Nguyen <[email protected]> * removed nested links Signed-off-by: Jenn Nguyen <[email protected]> * fixed add & modify bugs Signed-off-by: Jenn Nguyen <[email protected]> Co-authored-by: Addisu Z. Taddese <[email protected]> Co-authored-by: Ian Chen <[email protected]>
This moves the recently added data member `explicitlySetInFile` to the end of the `ElementPrivate` class Signed-off-by: Addisu Z. Taddese <[email protected]>
Signed-off-by: Louise Poubel <[email protected]>
The graph data is private, so expose methods for checking that the graphs are valid. * Add tests showing graph errors Load an sdf::World or sdf::Model instead of an sdf::Root to see the graph errors. Signed-off-by: Steve Peters <[email protected]>
The graph data is private, so expose methods for checking that the graphs are valid. * Add tests showing graph errors Load an sdf::World or sdf::Model instead of an sdf::Root to see the graph errors. Signed-off-by: Steve Peters <[email protected]>
Merge 9 -> 10
Merge 9 -> 11
* Prepare for 11.2.2 Signed-off-by: Steven Peters <[email protected]> Co-authored-by: Steve Peters <[email protected]>
* Error: move << operator from .hh to .cc file Signed-off-by: Steven Peters <[email protected]> * Fix visibility Signed-off-by: Addisu Z. Taddese <[email protected]> Co-authored-by: Addisu Z. Taddese <[email protected]>
Signed-off-by: Jenn Nguyen <[email protected]>
Signed-off-by: Jenn Nguyen <[email protected]>
Signed-off-by: Jenn Nguyen <[email protected]>
chapulina
approved these changes
Jul 17, 2021
Codecov Report
@@ Coverage Diff @@
## main #627 +/- ##
==========================================
+ Coverage 87.57% 87.89% +0.31%
==========================================
Files 72 72
Lines 10497 10837 +340
==========================================
+ Hits 9193 9525 +332
- Misses 1304 1312 +8
Continue to review full report at Codecov.
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
11 ➡️ 12 Forward port
Port
sdf11
tomain
Branch comparison: main...sdf11
Note to maintainers: Remember to Merge with commit (not squash-merge or rebase)