diff options
author | dol-sen <brian.dolbec@gmail.com> | 2011-08-16 16:52:32 -0700 |
---|---|---|
committer | dol-sen <brian.dolbec@gmail.com> | 2011-08-16 16:52:32 -0700 |
commit | 92b321170453d3ab2d02a860ea187ccf878c0a22 (patch) | |
tree | f8e38291848caa6185bb44c7c87ffcc73a315df4 | |
parent | fix broken *args for python 2.5 and 2.6+. (diff) | |
download | layman-1.4.x.tar.gz layman-1.4.x.tar.bz2 layman-1.4.x.zip |
commit man page corrections bug 3561651.4.x
-rw-r--r-- | doc/layman.8.txt | 29 |
1 files changed, 15 insertions, 14 deletions
diff --git a/doc/layman.8.txt b/doc/layman.8.txt index 94fa650..520a847 100644 --- a/doc/layman.8.txt +++ b/doc/layman.8.txt @@ -170,9 +170,10 @@ storage:: cache:: *layman* will store the downloaded global list of overlays here. - The default is '%(storage)s/cache.xml'. + The default is '%(storage)s/cache_XXX.xml'. The xxx is + determined by creating a hash of the filename or url. -overlays:: +local_list:: *layman* will store the list of installed overlays here. The default is '%(storage)s/overlays.xml'. @@ -347,18 +348,18 @@ Example 1. An example overlays.xml file <!DOCTYPE repositories SYSTEM "/dtd/repositories.dtd"> <repositories xmlns="" version="1.0"> <repo quality="experimental" status="official"> - <name>gnome</name> - <description>experimental gnome ebuilds</description> - <homepage>http://git.overlays.gentoo.org/gitweb/?p=proj/gnome.git;a=summary</homepage> - <owner type="project"> - <email>gnome@gentoo.org</email> - <name>GNOME herd</name> - </owner> - <source type="git">git://git.overlays.gentoo.org/proj/gnome.git</source> - <source type="git">http://git.overlays.gentoo.org/gitroot/proj/gnome.git</source> - <source type="git">git+ssh://git@git.overlays.gentoo.org/proj/gnome.git</source> - <feed>http://git.overlays.gentoo.org/gitweb/?p=proj/gnome.git;a=atom</feed> - <feed>http://git.overlays.gentoo.org/gitweb/?p=proj/gnome.git;a=rss</feed> + <name>gnome</name> + <description>experimental gnome ebuilds</description> + <homepage>http://git.overlays.gentoo.org/gitweb/?p=proj/gnome.git;a=summary</homepage> + <owner type="project"> + <email>gnome@gentoo.org</email> + <name>GNOME herd</name> + </owner> + <source type="git">git://git.overlays.gentoo.org/proj/gnome.git</source> + <source type="git">http://git.overlays.gentoo.org/gitroot/proj/gnome.git</source> + <source type="git">git+ssh://git@git.overlays.gentoo.org/proj/gnome.git</source> + <feed>http://git.overlays.gentoo.org/gitweb/?p=proj/gnome.git;a=atom</feed> + <feed>http://git.overlays.gentoo.org/gitweb/?p=proj/gnome.git;a=rss</feed> </repo> </repositories> ------------------------------------------- |