~ubuntu-branches/ubuntu/oneiric/bugzilla/oneiric

« back to all changes in this revision

Viewing changes to template/en/default/welcome-admin.html.tmpl

  • Committer: Bazaar Package Importer
  • Author(s): Raphael Bossek
  • Date: 2008-06-27 22:34:34 UTC
  • mfrom: (1.1.7 upstream)
  • Revision ID: james.westby@ubuntu.com-20080627223434-0ib57vstn43bb4a3
Tags: 3.0.4.1-1
* Update of French, Russian and German translations. (closes: #488251)
* Added Bulgarian and Belarusian translations.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
[%# 1.0@bugzilla.org %]
2
 
[%# The contents of this file are subject to the Mozilla Public
3
 
  # License Version 1.1 (the "License"); you may not use this file
4
 
  # except in compliance with the License. You may obtain a copy of
5
 
  # the License at http://www.mozilla.org/MPL/
6
 
  #
7
 
  # Software distributed under the License is distributed on an "AS
8
 
  # IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
9
 
  # implied. See the License for the specific language governing
10
 
  # rights and limitations under the License.
11
 
  #
12
 
  # The Original Code is the Bugzilla Bug Tracking System.
13
 
  #
14
 
  # Contributor(s): Frédéric Buclin <LpSolit@gmail.com>
15
 
  #%]
16
 
 
17
 
[%# INTERFACE:
18
 
  # none
19
 
  #%]
20
 
 
21
 
[% PROCESS global/variables.none.tmpl %]
22
 
 
23
 
[% title = BLOCK %]Welcome to [% terms.Bugzilla %][% END %]
24
 
 
25
 
[% PROCESS global/header.html.tmpl
26
 
   title = title
27
 
   header_addl_info = "version $constants.BUGZILLA_VERSION"
28
 
   style_urls = [ 'skins/standard/index.css' ]
29
 
%]
30
 
 
31
 
<div id="welcome-admin">
32
 
  <p>Welcome, [% user.identity FILTER html %].</p>
33
 
 
34
 
  <p>You are seeing this page because some of the core parameters have not been set up yet.
35
 
  The goal of this page is to inform you about the last steps required to set up
36
 
  your installation correctly.</p>
37
 
 
38
 
  <p>As an administrator, several administrative links are available at the bottom of
39
 
  this page. These links will always be visible, on all pages. Among these links,
40
 
  you must visit at least the <a href="editparams.cgi">Parameters</a> one,
41
 
  which is the page from where you can set all important parameters for this installation.
42
 
  By clicking this link, you will be able to set among others:</p>
43
 
 
44
 
  <ul>
45
 
    <li><a href="editparams.cgi?section=core#maintainer">maintainer</a>, the person
46
 
    responsible for this installation if something is running wrong.</li>
47
 
 
48
 
    <li><a href="editparams.cgi?section=core#urlbase">urlbase</a>, which is the URL
49
 
    pointing to this installation and which will be used in emails (which is also the
50
 
    reason you see this page: as long as this parameter is not set, you will see this
51
 
    page again and again).</li>
52
 
 
53
 
    <li><a href="editparams.cgi?section=core#cookiepath">cookiepath</a> is important
54
 
    for your browser to manage your cookies correctly.</li>
55
 
 
56
 
    <li><a href="editparams.cgi?section=core#utf8">utf8</a> will let you encode all
57
 
    texts into UTF-8, if desired (it is strongly recommended to keep this parameter
58
 
    turned on).</li>
59
 
  </ul>
60
 
 
61
 
  <p>Also important are the following parameters:</p>
62
 
 
63
 
  <ul>
64
 
    <li><a href="editparams.cgi?section=auth#requirelogin">requirelogin</a>, if turned
65
 
    on, will protect your installation from users having no account on this installation.
66
 
    In other words, users who are not explicitly authenticated with a valid account
67
 
    cannot see any data. This is what you want if you want to keep your data private.</li>
68
 
 
69
 
    <li><a href="editparams.cgi?section=auth#createemailregexp">createemailregexp</a>
70
 
    defines which users are allowed to create an account on this installation. If set
71
 
    to ".*" (the default), everybody is free to create his own account. If set to
72
 
    "@mycompany.com$", only users having an account @mycompany.com will be allowed to
73
 
    create an account. If left blank, users will not be able to create accounts themselves;
74
 
    only an administrator will be able to create one for them. If you want a private
75
 
    installation, you must absolutely set this parameter to something different from
76
 
    the default.</li>
77
 
 
78
 
    <li><a href="editparams.cgi?section=mta#mail_delivery_method">mail_delivery_method</a>
79
 
    defines the method used to send emails, such as sendmail or SMTP. You have to set
80
 
    it correctly to send emails.</li>
81
 
  </ul>
82
 
 
83
 
  <p>
84
 
    After having set up all this, we recommend looking at [% terms.Bugzilla %]'s other
85
 
    parameters as well at some time so that you understand what they do and whether you
86
 
    want to modify their settings for your installation.
87
 
  </p>
88
 
</div>
89
 
 
90
 
[% PROCESS global/footer.html.tmpl %]