-
Notifications
You must be signed in to change notification settings - Fork 73
feat: add AutoYaST error reporting #1476
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
Merged
Merged
Changes from all commits
Commits
Show all changes
28 commits
Select commit
Hold shift + click to select a range
bdc3bbc
initial version of report patching
jreidinger fb76036
add readme for agama-yast with hint how to deploy modified gem
jreidinger ddd18bf
fix file loading
jreidinger d2a7391
make rubocop happy
jreidinger 747ee38
fix returning correct question and add tracing to see which kind of q…
jreidinger 4a7ece4
clarify format of questions and answers
jreidinger c5494e2
fix superclass
jreidinger f1dc311
fixes from testing
jreidinger d92deef
fix getting answer
jreidinger 4d8c0ce
use correct property names
jreidinger 7e550a7
fix questions list to list only unanswered ones
jreidinger 9deacdb
implement general Question with Dialog component
jreidinger 6262156
fix path for deleting question
jreidinger 78d997c
fix parsing of result
jreidinger 7879a7c
Apply suggestions from code review
jreidinger e4c74dc
Merge remote-tracking branch 'origin/master' into ay_errors
jreidinger b7e1a9e
do not require id for newly created question
jreidinger 85a7159
changes
jreidinger c44f3af
Apply suggestions from code review
jreidinger 2e9d7e7
introduce internal error
jreidinger 2d7fff4
remove duplicite popup now
jreidinger 20ea50a
fix formatting
jreidinger 097f14f
add test for question with password component
jreidinger 33f7c75
relax condition of products test to not fail when we change product
jreidinger 8bc9b1b
fix formatting
jreidinger ce03cfc
Merge remote-tracking branch 'origin/master' into ay_errors
jreidinger fc249f8
test(web): simplify QuestionWithPassword tests
imobachgs 5cd74da
Apply suggestions from code review
jreidinger File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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
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
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
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
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
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,21 @@ | ||
| # Agama YaST | ||
|
|
||
| According to [Agama's architecture](../doc/architecture.md) this project implements the following components: | ||
|
|
||
| * The *Agama YaST*, the layer build on top of YaST functionality. | ||
|
|
||
| ## Testing Changes | ||
|
|
||
| The easiest way to test changes done to Ruby code on Agama live media is to build | ||
| the gem with modified sources with `gem build agama-yast`. Then copy the resulting file | ||
| to Agama live image. Then run this sequence of commands: | ||
|
|
||
| ```sh | ||
| # ensure that only modified sources are installed | ||
| gem uninstall agama-yast | ||
| # install modified sources including proper binary names | ||
| gem install --no-doc --no-format-executable <path to gem> | ||
| ``` | ||
|
|
||
| If the changes modify the D-Bus part, then restart related D-Bus services. | ||
|
|
Empty file.
Empty file.
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
Empty file.
Empty file.
Empty file.
Oops, something went wrong.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
If we get rid of D-Bus in the future, we might consider using an uuid instead of dealing with an Option. But that's out of scope.