~ubuntu-branches/ubuntu/hardy/gdm/hardy-updates

« back to all changes in this revision

Viewing changes to docs/sv/gdm.xml

  • Committer: Bazaar Package Importer
  • Author(s): Sebastien Bacher
  • Date: 2008-03-11 22:31:15 UTC
  • mfrom: (1.4.24 upstream)
  • Revision ID: james.westby@ubuntu.com-20080311223115-px728qtz2e2sgs3o
Tags: 2.20.4-0ubuntu1
* New upstream version:
  - The Custom Widgetry code in gdmgreeter was broken, and would not create
    the /var/lib/$DISPLAY.GreeterInfo file properly.  Due to the move away
    from vicious-extensions and towards GKeyFile, the format of this file
    changed slightly to INI format with the [GreeterInfo] group.  The docs
    were modified to explain this change.
  - Now the default local and remote welcome strings ("Welcome" and
    "Welcome to %n") are translated.
  - If the user picks the default local welcome string to be used as the
    remote welcome string, or vice versa, then the strings will be
    translated also.
  - Get default locale from LC_MESSAGES rather than from g_get_language_names.
  - Honor GTK+ default password character rather than hardcoding to '*'.  The
    docs were modified to explain this change.  Fixes bug #477881.
  - Provide better tooltip for entry field in gdmgreeter.
  - Get the environment variable XDG_DATA_DIRS before clearing the 
    environment variables.  This way if the user sets XDG_DATA_DIRS before
    running GDM, this should now be honored.
  - Fix gdmsetup bug that was causing the Welcome (local and remote)
    message to not be saved properly when changed.
  - Fix the setting of the custom command NOTIFY key to avoid crashing when
    changing the label values of a custom command in gdmsetup.
  - Add include of "gdm-log.h" to daemon/verify-crypt.c and
    daemon/verify-shadow.c to fix compile issue on some platforms.
* debian/patches/11_powermanagement.patch:
  - new version update
* debian/patches/35_gdm.conf.patch:
  - new version update
* debian/patches/36_use_correct_locale.patch:
  - dropped, fixed in the new version
* debian/patches/70_mandatory-relibtoolize.patch:
  - new version update

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
<?xml version="1.0" encoding="utf-8"?>
2
2
<!DOCTYPE article PUBLIC "-//OASIS//DTD DocBook XML V4.1.2//EN" "http://www.oasis-open.org/docbook/xml/4.1.2/docbookx.dtd" [
3
3
<!ENTITY legal SYSTEM "legal.xml">
4
 
<!ENTITY version "2.20.0">
5
 
<!ENTITY date "09/17/2007">
 
4
<!ENTITY version "2.20.4">
 
5
<!ENTITY date "03/10/2008">
6
6
<!ENTITY mdash "&#8212;">
7
7
<!ENTITY percnt "&#x0025;">
8
8
]>
81
81
 
82
82
 
83
83
    <releaseinfo>
84
 
       This manual describes version 2.20.0 of the GNOME Display Manager.
85
 
       It was last updated on 09/17/2007.
 
84
       This manual describes version 2.20.4 of the GNOME Display Manager.
 
85
       It was last updated on 03/10/2008.
86
86
    </releaseinfo>  
87
87
  </articleinfo>
88
88
 
90
90
    <title>Terminologi och standarder använda i den här handboken</title>
91
91
 
92
92
    <para>
93
 
      This manual describes version 2.20.0 of the GNOME Display Manager.
94
 
      It was last updated on 09/17/2007.
 
93
      This manual describes version 2.20.4 of the GNOME Display Manager.
 
94
      It was last updated on 03/10/2008.
95
95
    </para>  
96
96
 
97
97
    <para>
3986
3986
          </varlistentry>
3987
3987
 
3988
3988
          <varlistentry>
3989
 
            <term>UseCirclesInEntry</term>
3990
 
            <listitem>
3991
 
              <synopsis>UseCirclesInEntry=false</synopsis>
3992
 
              <para>
3993
 
                Use circles instead of asterisks in the password entry.
3994
 
                This may not work with all fonts however.
3995
 
              </para>
3996
 
            </listitem>
3997
 
          </varlistentry>
3998
 
 
3999
 
          <varlistentry>
4000
3989
            <term>UseInvisibleInEntry</term>
4001
3990
            <listitem>
4002
3991
              <synopsis>UseInvisibleInEntry=false</synopsis>
7059
7048
        <para>
7060
7049
          For example suppose we are on display :0,
7061
7050
          <filename>ServAuthDir</filename> is
7062
 
          <filename>&lt;var&gt;/lib/gdm</filename> and we have the following in the
7063
 
          theme:
 
7051
          <filename>&lt;var&gt;/lib/gdm</filename> and we have the following in
 
7052
          the theme:
7064
7053
        </para>
7065
7054
 
7066
7055
<screen>
7067
7056
&lt;item type="list" id="custom-config"&gt;
7068
 
&lt;pos anchor="nw" x="1" y="1" height="200" width="100"&gt;
 
7057
&lt;pos anchor="nw" x="1" y="1" height="200" width="100"/&gt;
7069
7058
&lt;listitem id="foo"&gt;
7070
7059
&lt;text&gt;Foo&lt;/text&gt;
7071
7060
&lt;/listitem&gt;
7076
7065
</screen>
7077
7066
 
7078
7067
        <para>
7079
 
          Then if the user chooses 'Foo' then 
7080
 
          <filename>&lt;var&gt;/lib/gdm/:0.GreeterInfo</filename> will contain:
 
7068
          Using GDM 2.20, the file is created in INI format.  The group value
 
7069
          is "GreeterInfo", and the "custom-config" key
 
7070
          will specify the id of the chosen listitem.  For example, if the user
 
7071
          chooses "Foo" (which has an id value of "foo",
 
7072
          then <filename>&lt;var&gt;/lib/gdm/:0.GreeterInfo</filename> will
 
7073
          contain:
 
7074
<screen>
 
7075
[GreeterInfo]
 
7076
custom-config=foo
 
7077
</screen>
 
7078
        </para>
 
7079
        <para>
 
7080
          Using GDM 2.18 and earlier, the file is not saved in INI format, so
 
7081
          the "GreeterInfo" group will not be in the file.  In other
 
7082
          words, the file will contain only the following:
7081
7083
<screen>
7082
7084
custom-config=foo
7083
7085
</screen>