add a french (encrypted) test

Summary:
this handles Non-English European Language Install. Basically
it's a bunch of new screenshots for existing tag names, plus
a bit of configurability in _boot_to_anaconda and tweaking some
existing needles to do non-text matches. The weird 'half-the-
icon' needles are for cases where there may or may not be a
warning triangle but we want to click it either way (saves
duplicating the needle).

This also sets up a convention for tagging what languages a
needle is appropriate for. If it's specifically appropriate for
one or more languages, a tag ENV-LANGUAGE-(LANGUAGE) should be
applied for each language, where (LANGUAGE) is the install
language in upper-case ('LANGUAGE' variable, which should also
be the string that will be typed into the language selection
screen). If the needle ought to be used for *all* languages -
i.e. it's not a text match, or any text in the match is known
not to be translated - the tag ENV-INSTLANG-ALL should be
applied.

To back this, main.pm now unregisters all needles that are not
tagged with either ENV-LANGUAGE-ALL or the tag for the language
actually being used (if the LANGUAGE var is not set, we assume
english). The point of this is to check the install is actually
translated; if we allow all needles to match, the test would
pass even if no translations appeared at all.

Test Plan:
Run all tests and make sure you get the expected
results. You can schedule a run against 23 Beta TC1 to see the
French test fails 'correctly' when translations are missing.

Reviewers: jskladan, garretraziel

Reviewed By: garretraziel

Subscribers: tflink

Differential Revision: https://phab.qadevel.cloud.fedoraproject.org/D577
This commit is contained in:
Adam Williamson 2015-09-14 18:08:58 -07:00
parent 7017486d43
commit b3aa968575
128 changed files with 532 additions and 186 deletions

View File

@ -136,3 +136,17 @@ and `test_flags()` method, inheriting from one of the classes mentioned above.
file in openqa_fedora_tools repository.
9. Open differential request via phabricator, set openqa_fedora as a project and repository.
10. Mark your test in [phabricator page](https://phab.qadevel.cloud.fedoraproject.org/w/openqa/tests/) as done.
### Language handling
Tests can run in different languages. To set the language which will be used for a test, set the `LANGUAGE`
variable for the test suite. The results of this will be:
1. The value set will be typed into the language search box in anaconda.
2. Only needles with the tags `ENV-LANGUAGE-ALL` and `ENV-LANGUAGE-(LANGUAGE)` will be used for the test (where `(LANGUAGE)` is the value set, forced to upper-case).
3. As a consequence, the chosen language will be selected at the anaconda Welcome screen.
It is very important, therefore, that needles have the correct tags. Any needle which is expected to match for
tests run in *any* language must have the `ENV-LANGUAGE-ALL` tag. Other needles must have the appropriate tag(s)
for the languages they are expected to match. The safest option if you are unsure is to set `ENV-LANGUAGE-ALL`.
The only danger of this is that missing translations may not be caught.

19
main.pm
View File

@ -31,6 +31,19 @@ sub unregister_needle_tags($) {
for my $n (@a) { $n->unregister(); }
}
# Un-register all needles *except* those with specified tags (arg is a
# list of tags)
sub unregister_except_tags {
NEEDLE: for my $needle ( needle::all() ) {
for my $tag (@_) {
# If the needle has any of the tags, we skip to the next needle
next NEEDLE if ($needle->has_tag($tag));
}
# We only get here for a needle if we didn't match any of the tags
$needle->unregister();
}
}
sub cleanup_needles() {
if (!get_var('LIVE')) {
## Unregister live-only installer needles. The main issue is the
@ -41,6 +54,12 @@ sub cleanup_needles() {
## they don't match on it too soon.
unregister_needle_tags("ENV-INSTALLER-live");
}
# Unregister non-language-appropriate needles. Needles which are expected
# to match all languages have ENV-LANGUAGE-ALL tag.
my $lang = uc(get_var('LANGUAGE')) || 'ENGLISH';
$lang = 'ENV-LANGUAGE-'.$lang;
unregister_except_tags($lang, 'ENV-LANGUAGE-ALL');
}
$needle::cleanuphandler = \&cleanup_needles;

View File

@ -18,7 +18,7 @@
"tags": [
"ENV-DISTRI-fedora",
"ENV-FLAVOR-server",
"ENV-INSTLANG-en_US",
"ENV-LANGUAGE-ALL",
"anaconda_error"
],
"properties": []

View File

@ -11,7 +11,7 @@
"tags": [
"anaconda_install_destination_delete_all_btn",
"ENV-DISTRI-fedora",
"ENV-INSTLANG-en_US",
"ENV-LANGUAGE-ENGLISH",
"ENV-FLAVOR-server"
]
}

View File

@ -2,7 +2,7 @@
"tags": [
"anaconda_install_destination_encrypt_data",
"ENV-DISTRI-fedora",
"ENV-INSTLANG-en_US",
"ENV-LANGUAGE-ENGLISH",
"ENV-OFW-1",
"ENV-FLAVOR-server"
],

View File

@ -0,0 +1,18 @@
{
"area": [
{
"height": 21,
"type": "match",
"width": 152,
"xpos": 19,
"ypos": 623
}
],
"tags": [
"anaconda_install_destination_encrypt_data",
"ENV-DISTRI-fedora",
"ENV-LANGUAGE-FRENCH",
"ENV-OFW-1",
"ENV-FLAVOR-server"
]
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 106 KiB

View File

@ -2,7 +2,7 @@
"tags": [
"anaconda_install_destination_pony",
"ENV-DISTRI-fedora",
"ENV-INSTLANG-en_US",
"ENV-LANGUAGE-ALL",
"ENV-FLAVOR-server"
],
"area": [
@ -14,4 +14,4 @@
"type": "match"
}
]
}
}

View File

@ -2,7 +2,7 @@
"tags": [
"anaconda_install_destination_pony",
"ENV-DISTRI-fedora",
"ENV-INSTLANG-en_US",
"ENV-LANGUAGE-ALL",
"ENV-FLAVOR-develop"
],
"area": [
@ -15,4 +15,4 @@
}
],
"properties": []
}
}

View File

@ -2,7 +2,7 @@
"tags": [
"anaconda_install_destination_reclaim_space_btn",
"ENV-DISTRI-fedora",
"ENV-INSTLANG-en_US",
"ENV-LANGUAGE-ENGLISH",
"ENV-FLAVOR-server"
],
"area": [

View File

@ -2,7 +2,7 @@
"tags": [
"anaconda_install_destination_reclaim_space_delete_btn",
"ENV-DISTRI-fedora",
"ENV-INSTLANG-en_US",
"ENV-LANGUAGE-ENGLISH",
"ENV-OFW-1",
"ENV-FLAVOR-server"
],

View File

@ -11,8 +11,8 @@
"tags": [
"anaconda_install_destination_reclaim_space_first_partition",
"ENV-DISTRI-fedora",
"ENV-INSTLANG-en_US",
"ENV-LANGUAGE-ALL",
"ENV-OFW-1",
"ENV-FLAVOR-server"
]
}
}

View File

@ -11,8 +11,8 @@
"tags": [
"anaconda_install_destination_reclaim_space_first_partition",
"ENV-DISTRI-fedora",
"ENV-INSTLANG-en_US",
"ENV-LANGUAGE-ALL",
"ENV-FLAVOR-universal"
],
"properties": []
}
}

View File

@ -11,8 +11,8 @@
"tags": [
"anaconda_install_destination_reclaim_space_second_partition",
"ENV-DISTRI-fedora",
"ENV-INSTLANG-en_US",
"ENV-LANGUAGE-ALL",
"ENV-OFW-1",
"ENV-FLAVOR-server"
]
}
}

View File

@ -2,7 +2,7 @@
"tags": [
"anaconda_install_destination_reclaim_space_shrink_btn",
"ENV-DISTRI-fedora",
"ENV-INSTLANG-en_US",
"ENV-LANGUAGE-ENGLISH",
"ENV-FLAVOR-develop"
],
"area": [

View File

@ -2,7 +2,7 @@
"tags": [
"ENV-DISTRI-fedora",
"ENV-FLAVOR-develop",
"ENV-INSTLANG-en_US",
"ENV-LANGUAGE-ALL",
"anaconda_install_destination_reclaim_space_shrink_slider"
],
"area": [
@ -15,4 +15,4 @@
}
],
"properties": []
}
}

View File

@ -11,7 +11,7 @@
"tags": [
"anaconda_install_destination_save_passphrase",
"ENV-DISTRI-fedora",
"ENV-INSTLANG-en_US",
"ENV-LANGUAGE-ENGLISH",
"ENV-OFW-1",
"ENV-FLAVOR-server"
]

View File

@ -0,0 +1,18 @@
{
"area": [
{
"height": 37,
"type": "match",
"width": 190,
"xpos": 599,
"ypos": 526
}
],
"tags": [
"anaconda_install_destination_save_passphrase",
"ENV-DISTRI-fedora",
"ENV-LANGUAGE-FRENCH",
"ENV-OFW-1",
"ENV-FLAVOR-server"
]
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 127 KiB

View File

@ -12,7 +12,7 @@
"tags": [
"anaconda_install_destination_select_disk_1",
"ENV-DISTRI-fedora",
"ENV-INSTLANG-en_US",
"ENV-LANGUAGE-ALL",
"ENV-FLAVOR-server"
]
}
}

View File

@ -12,7 +12,7 @@
"tags": [
"anaconda_install_destination_select_disk_2",
"ENV-DISTRI-fedora",
"ENV-INSTLANG-en_US",
"ENV-LANGUAGE-ALL",
"ENV-FLAVOR-server"
]
}
}

View File

@ -19,6 +19,6 @@
"anaconda_install_done",
"ENV-DESKTOP-default",
"ENV-DISTRI-fedora",
"ENV-INSTLANG-en_US"
"ENV-LANGUAGE-ENGLISH"
]
}

View File

@ -0,0 +1,24 @@
{
"area": [
{
"height": 20,
"type": "match",
"width": 410,
"xpos": 609,
"ypos": 634
},
{
"height": 28,
"type": "match",
"width": 17,
"xpos": 1000,
"ypos": 680
}
],
"tags": [
"anaconda_install_done",
"ENV-DESKTOP-default",
"ENV-DISTRI-fedora",
"ENV-LANGUAGE-FRENCH"
]
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 88 KiB

View File

@ -3,8 +3,8 @@
{
"height": 63,
"type": "match",
"width": 192,
"xpos": 266,
"width": 72,
"xpos": 186,
"ypos": 154
}
],
@ -12,6 +12,6 @@
"anaconda_install_root_password",
"ENV-DESKTOP-default",
"ENV-DISTRI-fedora",
"ENV-INSTLANG-en_US"
"ENV-LANGUAGE-ALL"
]
}
}

View File

@ -18,7 +18,7 @@
"tags": [
"anaconda_install_root_password_screen",
"ENV-DISTRI-fedora",
"ENV-INSTLANG-en_US",
"ENV-LANGUAGE-ENGLISH",
"ENV-FLAVOR-server"
],
"properties": []

View File

@ -0,0 +1,18 @@
{
"area": [
{
"height": 16,
"type": "match",
"width": 181,
"xpos": 207,
"ypos": 130
}
],
"properties": [],
"tags": [
"anaconda_install_root_password_screen",
"ENV-DISTRI-fedora",
"ENV-LANGUAGE-FRENCH",
"ENV-FLAVOR-server"
]
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 59 KiB

View File

@ -2,7 +2,7 @@
"tags": [
"anaconda_install_source_check_repo_added",
"ENV-DISTRI-fedora",
"ENV-INSTLANG-en_US",
"ENV-LANGUAGE-ALL",
"ENV-OFW-1",
"ENV-FLAVOR-server"
],
@ -15,4 +15,4 @@
"width": 304
}
]
}
}

View File

@ -2,7 +2,7 @@
"tags": [
"anaconda_install_source_check_repo_added",
"ENV-DISTRI-fedora",
"ENV-INSTLANG-en_US",
"ENV-LANGUAGE-ALL",
"ENV-OFW-1",
"ENV-FLAVOR-server"
],
@ -15,4 +15,4 @@
"width": 304
}
]
}
}

View File

@ -11,8 +11,8 @@
"tags": [
"anaconda_install_source_check_repo_added",
"ENV-DISTRI-fedora",
"ENV-INSTLANG-en_US",
"ENV-LANGUAGE-ALL",
"ENV-OFW-1",
"ENV-FLAVOR-server"
]
}
}

View File

@ -3,7 +3,7 @@
"tags": [
"anaconda_install_source_http_selected",
"ENV-DISTRI-fedora",
"ENV-INSTLANG-en_US",
"ENV-LANGUAGE-ALL",
"ENV-FLAVOR-server"
],
"area": [
@ -22,4 +22,4 @@
"ypos": 163
}
]
}
}

View File

@ -3,7 +3,7 @@
"tags": [
"anaconda_install_source_http_selected",
"ENV-DISTRI-fedora",
"ENV-INSTLANG-en_US",
"ENV-LANGUAGE-ALL",
"ENV-FLAVOR-server"
],
"area": [
@ -15,4 +15,4 @@
"ypos": 163
}
]
}
}

View File

@ -2,7 +2,7 @@
"tags": [
"anaconda_install_source_on_the_network",
"ENV-DISTRI-fedora",
"ENV-INSTLANG-en_US",
"ENV-LANGUAGE-ENGLISH",
"ENV-OFW-1",
"ENV-FLAVOR-server"
],

View File

@ -11,7 +11,7 @@
"tags": [
"anaconda_install_source_repo_select_mirrorlist",
"ENV-DISTRI-fedora",
"ENV-INSTLANG-en_US",
"ENV-LANGUAGE-ENGLISH",
"ENV-OFW-1",
"ENV-FLAVOR-server"
]

View File

@ -3,15 +3,15 @@
{
"height": 61,
"type": "match",
"width": 187,
"xpos": 691,
"width": 23,
"xpos": 626,
"ypos": 157
}
],
"tags": [
"ENV-DESKTOP-default",
"ENV-DISTRI-fedora",
"ENV-INSTLANG-en_US",
"ENV-LANGUAGE-ALL",
"anaconda_install_user_creation"
]
}
}

View File

@ -11,7 +11,7 @@
"tags": [
"ENV-DESKTOP-default",
"ENV-DISTRI-fedora",
"ENV-INSTLANG-en_US",
"ENV-LANGUAGE-ENGLISH",
"anaconda_install_user_creation_make_admin"
]
}

View File

@ -0,0 +1,17 @@
{
"area": [
{
"height": 21,
"type": "match",
"width": 264,
"xpos": 351,
"ypos": 217
}
],
"tags": [
"ENV-DESKTOP-default",
"ENV-DISTRI-fedora",
"ENV-LANGUAGE-FRENCH",
"anaconda_install_user_creation_make_admin"
]
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 68 KiB

View File

@ -3,7 +3,7 @@
"tags": [
"anaconda_install_user_creation_screen",
"ENV-DISTRI-fedora",
"ENV-INSTLANG-en_US",
"ENV-LANGUAGE-ENGLISH",
"ENV-FLAVOR-server"
],
"area": [

View File

@ -0,0 +1,25 @@
{
"area": [
{
"height": 17,
"type": "match",
"width": 107,
"xpos": 227,
"ypos": 156
},
{
"height": 17,
"type": "match",
"width": 84,
"xpos": 250,
"ypos": 289
}
],
"properties": [],
"tags": [
"anaconda_install_user_creation_screen",
"ENV-DISTRI-fedora",
"ENV-LANGUAGE-FRENCH",
"ENV-FLAVOR-server"
]
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 68 KiB

View File

@ -12,6 +12,6 @@
"anaconda_main_hub_begin_installation",
"ENV-DESKTOP-default",
"ENV-DISTRI-fedora",
"ENV-INSTLANG-en_US"
"ENV-LANGUAGE-ENGLISH"
]
}

View File

@ -0,0 +1,17 @@
{
"area": [
{
"height": 17,
"type": "match",
"width": 152,
"xpos": 847,
"ypos": 704
}
],
"tags": [
"anaconda_main_hub_begin_installation",
"ENV-DESKTOP-default",
"ENV-DISTRI-fedora",
"ENV-LANGUAGE-FRENCH"
]
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 116 KiB

View File

@ -12,6 +12,6 @@
"anaconda_main_hub_install_destination",
"ENV-DESKTOP-default",
"ENV-DISTRI-fedora",
"ENV-INSTLANG-en_US"
"ENV-LANGUAGE-ALL"
]
}
}

View File

@ -1,25 +1,18 @@
{
"tags": [
"anaconda_main_hub_install_destination",
"ENV-DISTRI-fedora",
"ENV-INSTLANG-en_US",
"ENV-OFW-1",
"ENV-FLAVOR-server"
],
"area": [
{
"xpos": 174,
"ypos": 458,
"width": 87,
"height": 79,
"type": "match"
},
{
"xpos": 267,
"ypos": 472,
"width": 247,
"height": 30,
"type": "match"
}
]
}
{
"area": [
{
"height": 79,
"type": "match",
"width": 87,
"xpos": 174,
"ypos": 458
}
],
"tags": [
"anaconda_main_hub_install_destination",
"ENV-DISTRI-fedora",
"ENV-LANGUAGE-ALL",
"ENV-OFW-1",
"ENV-FLAVOR-server"
]
}

View File

@ -2,7 +2,7 @@
"tags": [
"anaconda_main_hub_installation_source",
"ENV-DISTRI-fedora",
"ENV-INSTLANG-en_US",
"ENV-LANGUAGE-ENGLISH",
"ENV-OFW-1",
"ENV-FLAVOR-server"
],

View File

@ -2,7 +2,7 @@
"tags": [
"anaconda_main_hub",
"ENV-DISTRI-fedora",
"ENV-INSTLANG-en_US",
"ENV-LANGUAGE-ALL",
"ENV-INSTALLER-live"
],
"area": [

View File

@ -2,7 +2,7 @@
"tags": [
"anaconda_main_hub",
"ENV-DISTRI-fedora",
"ENV-INSTLANG-en_US",
"ENV-LANGUAGE-ALL",
"ENV-FLAVOR-server"
],
"area": [

View File

@ -1,18 +1,18 @@
{
"area": [
{
"xpos": 690,
"ypos": 354,
"width": 195,
"height": 27,
"type": "match"
}
],
"tags": [
"anaconda_main_hub_select_packages",
"ENV-DISTRI-fedora",
"ENV-INSTLANG-en_US",
"ENV-OFW-1",
"ENV-FLAVOR-server"
]
{
"area": [
{
"height": 58,
"type": "match",
"width": 23,
"xpos": 627,
"ypos": 356
}
],
"tags": [
"anaconda_main_hub_select_packages",
"ENV-DISTRI-fedora",
"ENV-LANGUAGE-ALL",
"ENV-OFW-1",
"ENV-FLAVOR-server"
]
}

View File

@ -3,7 +3,7 @@
"tags": [
"anaconda_manual_partitioning",
"ENV-DISTRI-fedora",
"ENV-INSTLANG-en_US",
"ENV-LANGUAGE-ENGLISH",
"ENV-FLAVOR-server"
],
"area": [

View File

@ -12,7 +12,7 @@
"tags": [
"anaconda_minimal_highlighted",
"ENV-DISTRI-fedora",
"ENV-INSTLANG-en_US",
"ENV-LANGUAGE-ENGLISH",
"ENV-FLAVOR-server"
]
}

View File

@ -0,0 +1,18 @@
{
"area": [
{
"height": 15,
"type": "match",
"width": 130,
"xpos": 50,
"ypos": 146
}
],
"properties": [],
"tags": [
"anaconda_minimal_highlighted",
"ENV-DISTRI-fedora",
"ENV-LANGUAGE-FRENCH",
"ENV-FLAVOR-server"
]
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 138 KiB

View File

@ -12,7 +12,7 @@
"tags": [
"anaconda_minimal_selected",
"ENV-DISTRI-fedora",
"ENV-INSTLANG-en_US",
"ENV-LANGUAGE-ENGLISH",
"ENV-FLAVOR-server"
]
}

View File

@ -0,0 +1,18 @@
{
"area": [
{
"height": 14,
"type": "match",
"width": 149,
"xpos": 30,
"ypos": 146
}
],
"properties": [],
"tags": [
"anaconda_minimal_selected",
"ENV-DISTRI-fedora",
"ENV-LANGUAGE-FRENCH",
"ENV-FLAVOR-server"
]
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 130 KiB

View File

@ -3,7 +3,7 @@
"tags": [
"anaconda_part_accept_changes",
"ENV-DISTRI-fedora",
"ENV-INSTLANG-en_US",
"ENV-LANGUAGE-ENGLISH",
"ENV-FLAVOR-server"
],
"area": [

View File

@ -12,7 +12,7 @@
"tags": [
"anaconda_part_add_mountpoint",
"ENV-DISTRI-fedora",
"ENV-INSTLANG-en_US",
"ENV-LANGUAGE-ENGLISH",
"ENV-FLAVOR-server"
]
}

View File

@ -11,7 +11,7 @@
"tags": [
"anaconda_part_automatic",
"ENV-DISTRI-fedora",
"ENV-INSTLANG-en_US",
"ENV-LANGUAGE-ENGLISH",
"ENV-FLAVOR-server"
]
}

View File

@ -11,7 +11,7 @@
"tags": [
"anaconda_part_delete",
"ENV-DISTRI-fedora",
"ENV-INSTLANG-en_US",
"ENV-LANGUAGE-ALL",
"ENV-FLAVOR-generic_boot"
]
}

View File

@ -11,7 +11,7 @@
"tags": [
"anaconda_part_desired_capacity",
"ENV-DISTRI-fedora",
"ENV-INSTLANG-en_US",
"ENV-LANGUAGE-ENGLISH",
"ENV-FLAVOR-server"
],
"properties": []

View File

@ -3,7 +3,7 @@
"tags": [
"anaconda_part_device_type",
"ENV-DISTRI-fedora",
"ENV-INSTLANG-en_US",
"ENV-LANGUAGE-ENGLISH",
"ENV-FLAVOR-server"
],
"area": [

View File

@ -12,7 +12,7 @@
"tags": [
"anaconda_part_device_type_raid",
"ENV-DISTRI-fedora",
"ENV-INSTLANG-en_US",
"ENV-LANGUAGE-ALL",
"ENV-FLAVOR-server"
]
}

View File

@ -11,7 +11,7 @@
"tags": [
"anaconda_part_fs_ext3",
"ENV-DISTRI-fedora",
"ENV-INSTLANG-en_US",
"ENV-LANGUAGE-ALL",
"ENV-FLAVOR-server"
]
}
}

View File

@ -11,7 +11,7 @@
"tags": [
"anaconda_part_fs",
"ENV-DISTRI-fedora",
"ENV-INSTLANG-en_US",
"ENV-LANGUAGE-ALL",
"ENV-FLAVOR-server"
]
}
}

View File

@ -11,7 +11,7 @@
"tags": [
"anaconda_part_fs",
"ENV-DISTRI-fedora",
"ENV-INSTLANG-en_US",
"ENV-LANGUAGE-ALL",
"ENV-FLAVOR-server"
]
}
}

View File

@ -2,7 +2,7 @@
"tags": [
"anaconda_part_list_box_boot",
"ENV-DISTRI-fedora",
"ENV-INSTLANG-en_US",
"ENV-LANGUAGE-ALL",
"ENV-FLAVOR-server"
],
"area": [
@ -15,4 +15,4 @@
}
],
"properties": []
}
}

View File

@ -3,7 +3,7 @@
"tags": [
"anaconda_part_list_box_button",
"ENV-DISTRI-fedora",
"ENV-INSTLANG-en_US",
"ENV-LANGUAGE-ALL",
"ENV-FLAVOR-server"
],
"area": [
@ -15,4 +15,4 @@
"type": "match"
}
]
}
}

View File

@ -3,7 +3,7 @@
"tags": [
"anaconda_part_list_box_root",
"ENV-DISTRI-fedora",
"ENV-INSTLANG-en_US",
"ENV-LANGUAGE-ALL",
"ENV-FLAVOR-server"
],
"area": [
@ -15,4 +15,4 @@
"type": "match"
}
]
}
}

View File

@ -12,7 +12,7 @@
"tags": [
"anaconda_part_list_box_swap",
"ENV-DISTRI-fedora",
"ENV-INSTLANG-en_US",
"ENV-LANGUAGE-ALL",
"ENV-FLAVOR-server"
]
}
}

View File

@ -12,7 +12,7 @@
"tags": [
"anaconda_part_plus_button",
"ENV-DISTRI-fedora",
"ENV-INSTLANG-en_US",
"ENV-LANGUAGE-ALL",
"ENV-FLAVOR-server"
]
}
}

View File

@ -11,7 +11,7 @@
"tags": [
"anaconda_part_scheme",
"ENV-DISTRI-fedora",
"ENV-INSTLANG-en_US",
"ENV-LANGUAGE-ALL",
"ENV-FLAVOR-server"
]
}
}

View File

@ -11,7 +11,7 @@
"tags": [
"anaconda_part_scheme_btrfs",
"ENV-DISTRI-fedora",
"ENV-INSTLANG-en_US",
"ENV-LANGUAGE-ALL",
"ENV-FLAVOR-server"
]
}

View File

@ -11,7 +11,7 @@
"tags": [
"anaconda_part_scheme_lvm",
"ENV-DISTRI-fedora",
"ENV-INSTLANG-en_US",
"ENV-LANGUAGE-ALL",
"ENV-FLAVOR-server"
]
}
}

View File

@ -11,7 +11,7 @@
"tags": [
"anaconda_part_scheme_lvmthin",
"ENV-DISTRI-fedora",
"ENV-INSTLANG-en_US",
"ENV-LANGUAGE-ENGLISH",
"ENV-FLAVOR-server"
]
}

View File

@ -11,7 +11,7 @@
"tags": [
"anaconda_part_scheme_standard",
"ENV-DISTRI-fedora",
"ENV-INSTLANG-en_US",
"ENV-LANGUAGE-ENGLISH",
"ENV-FLAVOR-server"
]
}

View File

@ -11,7 +11,7 @@
"tags": [
"anaconda_part_select_root",
"ENV-DISTRI-fedora",
"ENV-INSTLANG-en_US",
"ENV-LANGUAGE-ALL",
"ENV-FLAVOR-server"
]
}
}

View File

@ -11,7 +11,7 @@
"tags": [
"anaconda_part_select_root",
"ENV-DISTRI-fedora",
"ENV-INSTLANG-en_US",
"ENV-LANGUAGE-ALL",
"ENV-FLAVOR-server"
]
}
}

View File

@ -12,7 +12,7 @@
"tags": [
"anaconda_part_select_swap",
"ENV-DISTRI-fedora",
"ENV-INSTLANG-en_US",
"ENV-LANGUAGE-ALL",
"ENV-FLAVOR-generic_boot"
]
}

View File

@ -12,7 +12,7 @@
"tags": [
"anaconda_part_update_settings",
"ENV-DISTRI-fedora",
"ENV-INSTLANG-en_US",
"ENV-LANGUAGE-ENGLISH",
"ENV-FLAVOR-server"
]
}

View File

@ -2,7 +2,7 @@
"tags": [
"ENV-DISTRI-fedora",
"ENV-FLAVOR-server",
"ENV-INSTLANG-en_US",
"ENV-LANGUAGE-ENGLISH",
"anaconda_rawhide_accept_fate"
],
"area": [

View File

@ -0,0 +1,17 @@
{
"area": [
{
"height": 38,
"type": "match",
"width": 162,
"xpos": 613,
"ypos": 473
}
],
"tags": [
"ENV-DISTRI-fedora",
"ENV-FLAVOR-server",
"ENV-LANGUAGE-FRENCH",
"anaconda_rawhide_accept_fate"
]
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 102 KiB

View File

@ -11,7 +11,7 @@
"tags": [
"ENV-DISTRI-fedora",
"ENV-FLAVOR-server",
"ENV-INSTLANG-en_US",
"ENV-LANGUAGE-ALL",
"anaconda_report_btn"
],
"properties": []

View File

@ -11,7 +11,7 @@
"tags": [
"anaconda_select_install_lang",
"ENV-DISTRI-fedora",
"ENV-INSTLANG-en_US",
"ENV-LANGUAGE-ALL",
"ENV-FLAVOR-server"
]
}
}

View File

@ -12,6 +12,6 @@
"anaconda_select_install_lang_continue",
"ENV-DESKTOP-default",
"ENV-DISTRI-fedora",
"ENV-INSTLANG-en_US"
"ENV-LANGUAGE-ENGLISH"
]
}

View File

@ -0,0 +1,17 @@
{
"area": [
{
"height": 37,
"type": "match",
"width": 99,
"xpos": 919,
"ypos": 725
}
],
"tags": [
"anaconda_select_install_lang_continue",
"ENV-DESKTOP-default",
"ENV-DISTRI-fedora",
"ENV-LANGUAGE-FRENCH"
]
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 92 KiB

View File

@ -16,9 +16,9 @@
}
],
"tags": [
"anaconda_select_install_lang_english_filtered",
"anaconda_select_install_lang_filtered",
"ENV-DESKTOP-default",
"ENV-DISTRI-fedora",
"ENV-INSTLANG-en_US"
"ENV-LANGUAGE-ENGLISH"
]
}
}

View File

@ -9,10 +9,10 @@
}
],
"tags": [
"anaconda_select_install_lang_english_selected",
"anaconda_select_install_lang_english_filtered",
"anaconda_select_install_lang_selected",
"anaconda_select_install_lang_filtered",
"ENV-DISTRI-fedora",
"ENV-INSTLANG-en_US",
"ENV-LANGUAGE-ENGLISH",
"ENV-OFW-1",
"ENV-FLAVOR-server"
]

View File

@ -0,0 +1,24 @@
{
"area": [
{
"width": 103,
"xpos": 207,
"height": 45,
"type": "match",
"ypos": 196
},
{
"width": 79,
"height": 54,
"type": "match",
"xpos": 483,
"ypos": 195
}
],
"tags": [
"anaconda_select_install_lang_filtered",
"ENV-DESKTOP-default",
"ENV-DISTRI-fedora",
"ENV-LANGUAGE-FRENCH"
]
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 80 KiB

View File

@ -0,0 +1,19 @@
{
"area": [
{
"height": 20,
"type": "match",
"width": 124,
"xpos": 603,
"ypos": 205
}
],
"tags": [
"anaconda_select_install_lang_selected",
"anaconda_select_install_lang_filtered",
"ENV-DISTRI-fedora",
"ENV-LANGUAGE-FRENCH",
"ENV-OFW-1",
"ENV-FLAVOR-server"
]
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 92 KiB

View File

@ -12,7 +12,7 @@
"tags": [
"anaconda_select_install_lang_input",
"ENV-DISTRI-fedora",
"ENV-INSTLANG-en_US",
"ENV-LANGUAGE-ALL",
"ENV-FLAVOR-server"
]
}
}

View File

@ -12,6 +12,6 @@
"anaconda_spoke_done",
"ENV-DESKTOP-default",
"ENV-DISTRI-fedora",
"ENV-INSTLANG-en_US"
"ENV-LANGUAGE-ENGLISH"
]
}

View File

@ -0,0 +1,17 @@
{
"area": [
{
"height": 23,
"type": "match",
"width": 48,
"xpos": 22,
"ypos": 56
}
],
"tags": [
"anaconda_spoke_done",
"ENV-DESKTOP-default",
"ENV-DISTRI-fedora",
"ENV-LANGUAGE-FRENCH"
]
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 130 KiB

Some files were not shown because too many files have changed in this diff Show More