[FFmpeg-devel] [PATCH] List all known FFmpeg repositories
Mans Rullgard
mans
Thu Jan 27 02:50:24 CET 2011
---
htdocs/default.css | 16 ++++++++++++++++
src/download | 48 +++++++++++++++++++++++++++++++++++++++---------
2 files changed, 55 insertions(+), 9 deletions(-)
diff --git a/htdocs/default.css b/htdocs/default.css
index 169b745..043ffc0 100644
--- a/htdocs/default.css
+++ b/htdocs/default.css
@@ -111,3 +111,19 @@ p {
#proj_desc {
font-size: 1.2em;
}
+
+#repos {
+ margin-left: 1em;
+ border-collapse: collapse;
+ border: solid 1px #6A996A;
+}
+
+#repos th {
+ background-color: #7BB37B;
+ border: solid 1px #6A996A;
+}
+
+#repos td {
+ padding: 0.2em;
+ border: solid 1px #6A996A;
+}
diff --git a/src/download b/src/download
index fb2eb20..84b8e00 100644
--- a/src/download
+++ b/src/download
@@ -19,18 +19,48 @@ releases!
<h2>FFmpeg Git</h2>
<p>
-In order to use the standard Git client to check out the source code:
+FFmpeg is developed with <a href="http://git-scm.com/">Git</a>.
+Given the decentralized nature of Git, multiple repositories from
+developers and groups of developers are available.
</p>
-<blockquote>
-<pre>
-git clone git://git.ffmpeg.org/ffmpeg.git
-</pre>
-</blockquote>
-
<p>
-Alternatively, you can
-<a href="http://git.ffmpeg.org/?p=ffmpeg.git">browse it online</a>.
+<table id="repos">
+<thead>
+<tr>
+ <th>Clone URL</th>
+ <th>Browse URL</th>
+ <th>Maintainer</th>
+ <th>Description</th>
+</tr>
+</thead>
+<tbody>
+<tr>
+ <td>git://git.ffmpeg.org/ffmpeg.git</td>
+ <td><a href="http://git.ffmpeg.org/?p=ffmpeg.git">http://git.ffmpeg.org/?p=ffmpeg.git</a></td>
+ <td>FFmpeg team</td>
+ <td>Main development</td>
+</tr>
+<tr>
+ <td>git://git.videolan.org/ffmpeg.git</td>
+ <td><a href="http://git.videolan.org/?p=ffmpeg.git">http://git.videolan.org/?p=ffmpeg.git</a></td>
+ <td>Michael Niedermayer</td>
+ <td>Direct commits by various developers</td>
+</tr>
+<tr>
+ <td>git://gitorious.org/~flameeyes/ffmpeg/flameeyes-ffmpeg.git</td>
+ <td><a href="http://gitorious.org/~flameeyes/ffmpeg/flameeyes-ffmpeg">http://gitorious.org/~flameeyes/ffmpeg/flameeyes-ffmpeg</a></td>
+ <td>Diego E. Petten?</td>
+ <td>Personal repository with works in progress</td>
+</tr>
+<tr>
+ <td>git://git.mansr.com/ffmpeg.git</td>
+ <td><a href="http://git.mansr.com/?p=ffmpeg">http://git.mansr.com/?p=ffmpeg</a></td>
+ <td>Mans Rullgard</td>
+ <td>Personal repository with works in progress</td>
+</tr>
+</tbody>
+</table>
</p>
<h2>FFmpeg SVN</h2>
--
1.7.3.5
More information about the ffmpeg-devel
mailing list