chiark / gitweb /
Update french version to latest version.
[developers-reference.git] / common.ent
index 341e8753e17d98a8923cdc777782defe35b20ac8..423bcd66f8c33aa06a02ea8a10b9fb067acd9cae 100644 (file)
 <!entity url-bts "http://&www-debian-org;/Bugs/">
 <!entity url-bts-devel "&url-bts;Developer">
 <!entity url-bts-control "&url-bts;server-control">
-<!entity url-debian-mirrors "http://&www-debian-org;/distrib/ftplist">
-<!entity url-debian-mirroring "http://&www-debian-org;/mirror/">
+<!entity url-debian-mirrors "http://&www-debian-org;/mirror/">
+<!entity url-debian-mirroring "&url-debian-mirrors;">
 <!entity url-debian-ports "http://&www-debian-org;/ports/">
+<!entity url-debian-port-lists "http://&lists-host;/ports.html">
 <!entity url-wnpp "http://&www-debian-org;/devel/wnpp/">
 <!entity url-devel-docs "http://&www-debian-org;/devel/">
 <!entity url-vote "http://&www-debian-org;/vote/">
 
 <!entity url-i18n-doc-check "&url-cvsweb;boot-floppies/documentation/doc-check?rev=HEAD&amp;content-type=text/vnd.viewcvs-markup">
 
+<!entity url-eg-desc-upstream-info "http://&packages-host;/unstable/text/docbook-dsssl.html">
 
 <!-- 
      URLs, non-debian
@@ -240,3 +242,16 @@ pool/non-free/n/
 pool/non-free/n/netscape/
      ...
 </example>">
+
+<!entity example-pathfind '<example>pathfind() {
+    OLDIFS="$IFS"
+    IFS=:
+    for p in $PATH; do
+        if [ -x "$p/$*" ]; then
+            IFS="$OLDIFS"
+            return 0
+        fi
+    done
+    IFS="$OLDIFS"
+    return 1
+}</example>'>