Commit a58b4dc8 authored by Sam Hocevar's avatar Sam Hocevar

* Fixed URLs here and there.

parent c04e92f6
......@@ -354,7 +354,7 @@ make
<heading>tremor</heading>
<p>
Tremor is an integer decoder for the vorbis audio codec. Download the
source through CVS at the <htmlurl url="http://www.xiph.org" name="xiph.org"> website.
source through CVS at the <htmlurl url="http://www.xiph.org/" name="xiph.org"> website.
</p>
<p>
Log into CVS using the password : <tt>anoncvs</tt>.
......
......@@ -27,7 +27,7 @@
<affiliation>
<jobtitle> <ulink url="mailto:christophe.massiot@idealx.com">
Developer </ulink> </jobtitle>
<orgname> <ulink url="http://www.idealx.com"> IDEALX
<orgname> <ulink url="http://www.idealx.com/"> IDEALX
S.A.S. </ulink> </orgname>
<orgdiv> Industrial Computing </orgdiv>
</affiliation>
......@@ -45,7 +45,7 @@
<affiliation>
<jobtitle> <ulink url="mailto:jean-francois.lecomte@idealx.com">
Developer </ulink> </jobtitle>
<orgname> <ulink url="http://www.idealx.com"> IDEALX
<orgname> <ulink url="http://www.idealx.com/"> IDEALX
S.A.S. </ulink> </orgname>
</affiliation>
</collab>
......@@ -57,7 +57,7 @@
<orgname> VideoLAN project </orgname>
</affiliation>
</collab>
<pubdate> $Id: manual.xml,v 1.5 2002/10/12 23:15:45 alexis Exp $ </pubdate>
<pubdate> $Id: manual.xml,v 1.6 2003/12/21 23:32:58 sam Exp $ </pubdate>
<copyright> <year> 2001 </year>
<holder> Christophe Massiot, for IDEALX S.A.S. </holder>
</copyright>
......
......@@ -27,7 +27,7 @@
</p>
<p>
You may want to look at the port section on our website :
<htmlurl url="http://www.videolan.org" name="http://www.videolan.org/">.
<htmlurl url="http://www.videolan.org/" name="http://www.videolan.org/">.
</p>
</sect1>
......@@ -36,7 +36,7 @@
<p>
VideoLAN is a complete software solution for video streaming, developed
by students at the <htmlurl url="http://www.ecp.fr" name="Ecole Centrale
by students at the <htmlurl url="http://www.ecp.fr/" name="Ecole Centrale
Paris"> and contributors from all over the world, under the <htmlurl
url="http://www.gnu.org/copyleft/gpl.html" name="General Public License
(GPL)">. It has been designed for streaming MPEG 1 and MPEG 2 videos on
......@@ -69,7 +69,7 @@
</verb>
More details about the project can be found on the
<htmlurl url="http://www.videolan.org" name="VideoLAN Web site">.
<htmlurl url="http://www.videolan.org/" name="VideoLAN Web site">.
</p>
</sect1>
......@@ -89,7 +89,7 @@ name="VideoLAN Server user guide">,
</itemize>
The up-to-date version of these documents can be found on the <htmlurl
url="http://www.videolan.org/doc" name="VideoLAN Web Site">.
url="http://www.videolan.org/doc/" name="VideoLAN Web Site">.
<sect1>
<heading>Translated versions of this document</heading>
......@@ -167,7 +167,7 @@ url="http://www.videolan.org/doc" name="VideoLAN Web Site">.
In this HOWTO, we consider you already have a little knowledge
about Linux, and you know how to use a DVD. If not, good howtos
can be found on the <htmlurl url="http://www.tldp.org" name="Linux
can be found on the <htmlurl url="http://www.tldp.org/" name="Linux
Documentation Projet">.
</p>
......@@ -1293,7 +1293,7 @@ url="http://www.videolan.org/doc" name="VideoLAN Web Site">.
</p>
<p>
There is a FAQ page on our website :
<htmlurl url="http://www.videolan.org/doc/index.html" name="http://www.videolan.org/doc/index.html">.
<htmlurl url="http://www.videolan.org/doc/" name="http://www.videolan.org/doc/">.
If you think one question should be in the FAQ, please contact
<htmlurl url="mailto:videolan@videolan.org" name="videolan@videolan.org">
</p>
......
......@@ -2,7 +2,7 @@
* http.c: HTTP access plug-in
*****************************************************************************
* Copyright (C) 2001, 2002 VideoLAN
* $Id: http.c,v 1.46 2003/09/10 21:03:56 fenrir Exp $
* $Id: http.c,v 1.47 2003/12/21 23:32:58 sam Exp $
*
* Authors: Christophe Massiot <massiot@via.ecp.fr>
*
......@@ -73,7 +73,7 @@ static ssize_t Read ( input_thread_t *, byte_t *, size_t );
#define PROXY_TEXT N_("Specify an HTTP proxy")
#define PROXY_LONGTEXT N_( \
"Specify an HTTP proxy to use. It must be in the form " \
"http://myproxy.mydomain:myport. If none is specified, the HTTP_PROXY " \
"http://myproxy.mydomain:myport/. If none is specified, the HTTP_PROXY " \
"environment variable will be tried." )
#define CACHING_TEXT N_("Caching value in ms")
......
......@@ -2,7 +2,7 @@
* http.c : http mini-server ;)
*****************************************************************************
* Copyright (C) 2001 VideoLAN
* $Id: http.c,v 1.40 2003/11/23 18:16:45 gbazin Exp $
* $Id: http.c,v 1.41 2003/12/21 23:32:58 sam Exp $
*
* Authors: Gildas Bazin <gbazin@netcourrier.com>
* Laurent Aimar <fenrir@via.ecp.fr>
......@@ -2270,7 +2270,7 @@ static int http_get( httpd_file_callback_args_t *p_args,
p += sprintf( p, "<body>\n" );
p += sprintf( p, "<h1><center>Error loading %s for %s</center></h1>\n", p_args->file, p_args->name );
p += sprintf( p, "<hr />\n" );
p += sprintf( p, "<a href=\"http://www.videolan.org\">VideoLAN</a>\n" );
p += sprintf( p, "<a href=\"http://www.videolan.org/\">VideoLAN</a>\n" );
p += sprintf( p, "</body>\n" );
p += sprintf( p, "</html>\n" );
......
......@@ -2,7 +2,7 @@
* intf.m: MacOS X interface plugin
*****************************************************************************
* Copyright (C) 2002-2003 VideoLAN
* $Id: intf.m,v 1.107 2003/12/15 19:25:56 bigben Exp $
* $Id: intf.m,v 1.108 2003/12/21 23:32:58 sam Exp $
*
* Authors: Jon Lech Johansen <jon-vl@nanocrew.net>
* Christophe Massiot <massiot@via.ecp.fr>
......@@ -1230,7 +1230,7 @@ unsigned int VLCModifiersToCocoa( unsigned int i_key )
- (IBAction)openWebsite:(id)sender
{
NSURL * o_url = [NSURL URLWithString: @"http://www.videolan.org"];
NSURL * o_url = [NSURL URLWithString: @"http://www.videolan.org/"];
[[NSWorkspace sharedWorkspace] openURL: o_url];
}
......
......@@ -2,7 +2,7 @@
* httpd.c
*****************************************************************************
* Copyright (C) 2001-2003 VideoLAN
* $Id: httpd.c,v 1.29 2003/10/08 11:24:59 zorglub Exp $
* $Id: httpd.c,v 1.30 2003/12/21 23:32:58 sam Exp $
*
* Authors: Laurent Aimar <fenrir@via.ecp.fr>
*
......@@ -1207,7 +1207,7 @@ static int httpd_page_400_get( httpd_file_callback_args_t *p_args,
p += sprintf( p, "<body>\n" );
p += sprintf( p, "<h1><center> 400 Bad Request</center></h1>\n" );
p += sprintf( p, "<hr />\n" );
p += sprintf( p, "<a href=\"http://www.videolan.org\">VideoLAN</a>\n" );
p += sprintf( p, "<a href=\"http://www.videolan.org/\">VideoLAN</a>\n" );
p += sprintf( p, "</body>\n" );
p += sprintf( p, "</html>\n" );
......@@ -1235,7 +1235,7 @@ static int httpd_page_401_get( httpd_file_callback_args_t *p_args,
p += sprintf( p, "<body>\n" );
p += sprintf( p, "<h1><center> 401 authentification needed</center></h1>\n" );
p += sprintf( p, "<hr />\n" );
p += sprintf( p, "<a href=\"http://www.videolan.org\">VideoLAN</a>\n" );
p += sprintf( p, "<a href=\"http://www.videolan.org/\">VideoLAN</a>\n" );
p += sprintf( p, "</body>\n" );
p += sprintf( p, "</html>\n" );
......@@ -1262,7 +1262,7 @@ static int httpd_page_404_get( httpd_file_callback_args_t *p_args,
p += sprintf( p, "<body>\n" );
p += sprintf( p, "<h1><center> 404 Ressource not found</center></h1>\n" );
p += sprintf( p, "<hr />\n" );
p += sprintf( p, "<a href=\"http://www.videolan.org\">VideoLAN</a>\n" );
p += sprintf( p, "<a href=\"http://www.videolan.org/\">VideoLAN</a>\n" );
p += sprintf( p, "</body>\n" );
p += sprintf( p, "</html>\n" );
......
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
......@@ -17,7 +17,7 @@ def ntpTime():
class SdpMessage:
"Build a SDP message"
uri = "http://www.videolan.org"
uri = "http://www.videolan.org/"
def __init__(self, sessionName, address, uri):
"Build the message"
......
......@@ -15,7 +15,7 @@
</head>
<body>
<h2>
<a href="http://www.videolan.org">VLC Media Player <vlc id="value" param1="version" /></a> (http interface)</h2>
<a href="http://www.videolan.org/">VLC Media Player <vlc id="value" param1="version" /></a> (http interface)</h2>
<div class="sectitle">Control VLC</div>
<div class="section">
<table class="add">
......
......@@ -3,7 +3,7 @@
<title>VLC Media Player - Informations</title>
</head>
<body>
<h2><center><a href="http://www.videolan.org">VLC Media Player <vlc id="value" param1="version" /></a></center></h2>
<h2><center><a href="http://www.videolan.org/">VLC Media Player <vlc id="value" param1="version" /></a></center></h2>
<hr/>
<vlc id="foreach" param1="cat" param2="informations" />
<p> <vlc id="value" param1="cat.name" />
......
......@@ -6,7 +6,7 @@
name="VideoLAN.VLC"
type="win32"
/>
<description>see http://www.videolan.org</description>
<description>see http://www.videolan.org/</description>
<dependency>
<dependentAssembly>
<assemblyIdentity
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment