Module: bugzilla
Branch: master
Commit: 700d0086c5aecf36c15cb9e857a93ec10269416b
URL: http://source.winehq.org/git/bugzilla.git/?a=commit;h=700d0086c5aecf36c15cb…
Author: Austin English <austinenglish(a)gmail.com>
Date: Sat Nov 29 19:07:36 2008 -0600
bugzilla/index.html: update git link to point to wiki
--
-Austin
---
template/en/default/index.html.tmpl | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/template/en/default/index.html.tmpl b/template/en/default/index.html.tmpl
index cce37cf..e173227 100644
--- a/template/en/default/index.html.tmpl
+++ b/template/en/default/index.html.tmpl
@@ -144,7 +144,7 @@ function addSidebar() {
</li>
<li>
Make sure you are using the latest stable version or a build from
- <a href="http://www.winehq.org/site/git">Git</a>, if
+ <a href="http://wiki.winehq.org/GitWine">Git</a>, if
similar bugs have recently been fixed and committed.
</li>
<li>
Module: website
Branch: master
Commit: fe6e11fd114529fa06999da54f16b99407332d24
URL: http://source.winehq.org/git/website.git/?a=commit;h=fe6e11fd114529fa06999d…
Author: Austin English <austinenglish(a)gmail.com>
Date: Sun Nov 30 19:06:59 2008 -0600
website: remove old git page, change links to wiki
--
-Austin
>From 2a516552de968ce3dc51c3ebd19510d1aa59801a Mon Sep 17 00:00:00 2001
From: Austin English <austinenglish(a)gmail.com>
Date: Sun, 30 Nov 2008 19:05:54 -0600
Subject: [PATCH] website: remove old git page, change links to wiki
---
templates/en/download.template | 2 +-
templates/en/git.template | 119 ---------------------------------
templates/en/menu.xml | 2 +-
templates/en/sending_patches.template | 2 +-
templates/es/menu.xml | 2 +-
templates/es/sending_patches.template | 4 +-
6 files changed, 6 insertions(+), 125 deletions(-)
diff --git a/templates/en/download.template b/templates/en/download.template
index a03027a..b837888 100644
--- a/templates/en/download.template
+++ b/templates/en/download.template
@@ -182,7 +182,7 @@ for post-installation instructions.</b></p>
</tr>
<tr bgcolor="#ffffff">
- <td> <a href="{$root}/site/git">source.winehq.org/git</a> </td>
+ <td> <a href="http://wiki.winehq.org/GitWine">source.winehq.org/git</a> </td>
<td> For the latest development version. </td>
</tr>
diff --git a/templates/en/git.template b/templates/en/git.template
deleted file mode 100644
index f00d788..0000000
--- a/templates/en/git.template
+++ /dev/null
@@ -1,119 +0,0 @@
-<!--TITLE:[The Wine Git Tree]-->
-
-<h1>The Wine Git Tree</h1>
-
-<p>Wine uses an Open Source, open process development model.
-Anyone may get the code, post opinions on what should be done,
-and contribute patches. You will need to know C and/or perl, and something
-about <a href="{$root}/site/resources">Unix and Windows</a>.</p>
-
-<p><a href="http://git.or.cz/">Git</a> is a fast directory
-content manager, originally written for use with large repositories,
-such as the Linux Kernel source.</p>
-
-<p>You will need Git 1.3.1 or above.</p>
-
-<p>Read the sections below on how to use our Git tree or check the
-<a href="http://wiki.winehq.org/GitWine">GitWine</a> guide on the Wine Wiki.</p>
-
-<ol>
- <li><a href="#clone">Getting a local copy of Wine</a></li>
- <li><a href="#cleaning">Cleaning up your existing tree</a></li>
- <li><a href="#uptodate">Staying Up-To-Date</a></li>
- <li><a href="#sourcetree">Source Tree Browsing via the Web</a></li>
- <li><a href="#modules">Other modules available from WineHQ</a></li>
- <li><a href="#clonecvs">Getting a local copy of Wine with CVS</a></li>
-</ol>
-
-<hr />
-
-<h1 id="clone">Getting a local copy of Wine</h1>
-
-<p>To check out the entire Wine source tree, do:</p>
-
-<p><code>git clone git://source.winehq.org/git/wine.git wine</code></p>
-
-<hr />
-
-<h1 id="cleaning">Cleaning up your existing tree</h1>
-
-<p>A quick way to clean up your tree after you've been modifying
-it and want to remove changes you haven't checked in is this: </p>
-
-<p><code>cd wine
-git diff-index -p HEAD > total-<i>x.x.x</i>.diff
-patch -p1 -R < total-<i>x.x.x</i>.diff
-git reset
-</code></p>
-
-<p>Using the current x.x.x tags, you can keep a history of changes
-that were in your Wine tree.</p>
-
-<p>If you have made commits to the tree, and want to remove them all,
-you can use the following more dangerous command:</p>
-
-<p><code>git reset --hard origin</code></p>
-
-
-<p>This will wipe out any local changes you have made, so use it with caution.</p>
-
-<hr />
-
-<h1 id="uptodate">Staying Up-To-Date</h1>
-
-<p> First, make sure to clean your tree as described above, then
-run the following commands from the top level wine directory:</p>
-
-<p><code>git fetch
-git rebase origin
-</code></p>
-
-<hr />
-
-<h1 id="sourcetree">Source Tree Browsing via the Web</h1>
-
-<p>The source code of the entire Wine tree is (<a href="http://lxr.linux.no/">LXR</a>-based)
- cross-referenced and available for browsing, including a search engine.
- This cross-references source is based on the snapshot-releases and is made available at: </p>
-<ul>
- <li><a href="http://source.winehq.org/">source.winehq.org</a></li>
-</ul>
-
-<p> Direct access from the web to the complete Git tree is also possible, using
-<a href="http://www.kernel.org/pub/software/scm/gitweb/">gitweb</a> package:</p>
-<ul>
- <li><a href="http://source.winehq.org/git/wine.git">source.winehq.org/git/wine.git</a>,
- on the primary Git repository</li>
-</ul>
-
-<hr />
-
-<h1 id="modules">Other modules available from WineHQ</h1>
-
-<p>In addition to the main source tree, the WineHQ Git server also
-exports the following modules:</p>
-
-<ul>
- <li><a href="http://source.winehq.org/git/website.git">website.git</a> -- source for the WineHQ.org website</li>
- <li><a href="http://source.winehq.org/git/bugzilla.git">bugzilla.git</a> -- source for the bugzilla version used on the WineHQ site</li>
- <li><a href="http://source.winehq.org/git/appdb.git">appdb.git</a> -- source for the application database web site</li>
- <li><a href="http://source.winehq.org/git/docs.git">docs.git</a> -- source for the Wine documentation</li>
- <li><a href="http://source.winehq.org/git/tools.git">tools.git</a> -- tools used on the WineHQ site</li>
-</ul>
-
-<hr />
-
-<h1 id="clonecvs">Getting a local copy of Wine with CVS</h1>
-
-<p>If you cannot use Git for some reason, the main source tree is
- also available through CVS.</p>
-
-<p>To login to the CVS server, run in a terminal:</p>
-
-<p><code>cvs -d :pserver:cvs@cvs.winehq.org:/home/wine login</code></p>
-
-<p>Use "cvs" as the password (without the quotes).</p>
-
-<p>To check out the Wine source tree run:</p>
-
-<p><code>cvs -z 3 -d :pserver:cvs@cvs.winehq.org:/home/wine checkout wine</code></p>
diff --git a/templates/en/menu.xml b/templates/en/menu.xml
index 8ac450c..586aef9 100644
--- a/templates/en/menu.xml
+++ b/templates/en/menu.xml
@@ -35,7 +35,7 @@
<sect name="development" desc="Development" unfold="1" template="top">
<sect name="devel_guide" desc="Developers Guide" link="{$root}/site/docs/winedev-guide/index" />
<sect name="forums" desc="Mailing Lists" link="{$root}/site/forums" />
- <sect name="git" desc="GIT" link="{$root}/site/git" />
+ <sect name="git" desc="GIT" link="http://wiki.winehq.org/GitWine" />
<sect name="sending_patches" desc="Sending Patches" link="{$root}/site/sending_patches" />
<sect name="todo" desc="To Do Lists" link="http://wiki.winehq.org/TodoList" />
<sect name="fun_projects" desc="Fun Projects" link="{$root}/site/fun_projects" />
diff --git a/templates/en/sending_patches.template b/templates/en/sending_patches.template
index 4289ed3..f185117 100644
--- a/templates/en/sending_patches.template
+++ b/templates/en/sending_patches.template
@@ -77,7 +77,7 @@ or anywhere else to the Git tree.)
<p>It's best to send small patches against the current tree using Git.
First, make sure your tree is up to date, as described on the
-<a href="{$root}/site/git">Git</a> page.
+<a href="http://wiki.winehq.org/GitWine">Git</a> page.
<p>Check in your patches to your Git tree using
<a href="http://www.kernel.org/pub/software/scm/git/docs/git-commit.html">git commit</a>.</p>
diff --git a/templates/es/menu.xml b/templates/es/menu.xml
index 8ac450c..586aef9 100644
--- a/templates/es/menu.xml
+++ b/templates/es/menu.xml
@@ -35,7 +35,7 @@
<sect name="development" desc="Development" unfold="1" template="top">
<sect name="devel_guide" desc="Developers Guide" link="{$root}/site/docs/winedev-guide/index" />
<sect name="forums" desc="Mailing Lists" link="{$root}/site/forums" />
- <sect name="git" desc="GIT" link="{$root}/site/git" />
+ <sect name="git" desc="GIT" link="http://wiki.winehq.org/GitWine" />
<sect name="sending_patches" desc="Sending Patches" link="{$root}/site/sending_patches" />
<sect name="todo" desc="To Do Lists" link="http://wiki.winehq.org/TodoList" />
<sect name="fun_projects" desc="Fun Projects" link="{$root}/site/fun_projects" />
diff --git a/templates/es/sending_patches.template b/templates/es/sending_patches.template
index 501c0d3..3093828 100644
--- a/templates/es/sending_patches.template
+++ b/templates/es/sending_patches.template
@@ -1,4 +1,4 @@
-<!--TITLE:[Enviando parches]-->
+g<!--TITLE:[Enviando parches]-->
<h1>Generando y enviando parches</h1>
@@ -82,7 +82,7 @@ o en cualquier otro lugar que no sea el árbol Git)
<p> Es mejor enviar pequeños parches contra el actual árbol utilizando Git.
En primer lugar, asegúrese de que su árbol es hasta la fecha, tal y como
-se describe en la página <a href="{$root}/site/git">Git</a>.
+se describe en la página <a href="http://wiki.winehq.org/GitWine">Git</a>.
<p>Compruebe sus parches en su árbol Git utilizando
<a href="http://www.kernel.org/pub/software/scm/git/docs/git-commit.html">git commit</a>.</p>