11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
|
# File '../../src/include/smt/helps.rb', line 11
def initialize_smt_helps(include_target)
textdomain "smt"
@HELPS = {
"credentials" =>
_(
"<p><big><b>Customer Center Access</b></big><br>\nEnter the credentials for SUSE Updates (updates.suse.com) here.</p>\n"
) +
_(
"<p><b>User</b> and <b>Password</b> are needed for Customer Center authentication.\n" +
"To test the credentials you entered, click <b>Test</b>.\n" +
"SMT then connects to the Customer Center server for authentication and download of\n" +
"test data.</p>\n"
) +
_(
"<p>E-mail should be the one you used to register to the customer center.</p>"
),
"database" =>
_(
"<p><big><b>Database</b></big><br>\n" +
"For security reasons, SMT requires a separate user to connect to the database.\n" +
"With <b>Database Password</b>, set or change the database\n" +
"password for that user. The password should not be empty.</p>\n"
),
"reporting" =>
_(
"<p><big><b>Reporting</b></big><br>\nHere you can set up a list of e-mail addresses that SMT will send reports to.</p>\n"
),
"scheduled_downloads" =>
_(
"<p><big><b>Schedule SMT Jobs</b></big><br>\nHere you can edit periodical SMT jobs.</p>"
) +
_("<p>When adding a new job, first select a <b>Job to Run</b>.</p>") +
_(
"<p>When editing a current job or adding new one, the <b>Frequency</b> selection box\n" +
"switches dialog mode according to the currently selected value.\n" +
"Some fields are enabled or disabled accordingly, e.g., <b>Day of the Week</b>\n" +
"is disabled for <tt>Daily</tt> job frequency.</p>\n"
),
"repositories" =>
_(
"<p><big><b>Repositories</b></big><br>\nHere you can see all repositories available for mirroring.</p>"
) +
_(
"<p>To set mirroring on or off, select a repository in the table\nand click <b>Toggle Mirroring</b>.</p>"
) +
_(
"<p><b>Staging</b> offers you to create testing and production\n" +
"snapshots. To enable or disable this feature, select a repository\n" +
"in the table and click <b>Toggle Staging</b>.</p>"
),
"staging" =>
_(
"<p><big><b>Staging</b></big><br>\n" +
"Here you can create testing and production snapshots from the mirrored\n" +
"repositories that have <tt>staging</tt> enabled. Repositories that contain\n" +
"patches allow patch-filtering, otherwise you can create full snapshots only\n" +
"(without any fitler in use).</p>"
) +
_(
"<p>Choosing a <b>Repository Name</b> will switch the current\n" +
"repository. Choosing a <b>Patch Category</b> applies a listing filter\n" +
"on the current repository.</p>"
) +
_(
"<p>To enable or disable <tt>patches</tt> in the snapshot,\nselect a patch in the table and click <b>Toggle Patch Status</b>.</p>"
) +
_(
"<p>If you want to change more patches at once, you can also use\n<b>Change Status->All Listed Patches...->Enable/Disable</b></p>"
) +
_(
"<p>To exclude all patches of a selected type from the <tt>testing</tt>\n" +
"snapshot, use <b>Change Status->Exclude from Snapshot...</b>.\n" +
"Such patch cannot be enabled unless you remove the filter again.</p>"
) +
_(
"<p>To create <tt>testing</tt> or <tt>production</tt> snapshots\nclick <b>Create Snapshot...->From Full Mirror to Testing/From Testing to Production</b>.</p>"
) +
_(
"<p><b>Testing</b> snapshot is always created from the mirrored repository,\n<b>production</b> is always created as a copy of the <b>testing</b> one.</p>"
)
}
end
|