[Libreoffice-commits] .: Branch 'tdf-website' - 12 commits - contribution/index.php develop/index.php download/index.php index.php supporters/index.php template.php
Michael Meeks
mmeeks at kemper.freedesktop.org
Wed Dec 8 02:56:23 PST 2010
contribution/index.php | 14 +++++++++++++-
develop/index.php | 21 +++++++++------------
download/index.php | 28 +++++++++++++---------------
index.php | 8 ++++++++
supporters/index.php | 11 +++++++++++
template.php | 2 +-
6 files changed, 55 insertions(+), 29 deletions(-)
New commits:
commit ef0919481cdc4dea90f7fec7513fca15dfc6bd44
Merge: 71bfb9d... 1a80700...
Author: Michael Meeks <michael.meeks at novell.com>
Date: Wed Dec 8 10:56:16 2010 +0000
Merge remote branch 'origin/tdf-website' into tdf-website
Conflicts:
develop/index.php
diff --cc develop/index.php
index d4c87ec,5b84747..a63c71e
--- a/develop/index.php
+++ b/develop/index.php
@@@ -36,17 -36,16 +36,16 @@@ way to do this is something like this:<
<br>
<p>Then to download the full source and <b>build</b>:</p>
- <code>./autogen.sh --with-git --with-num-cpus=2</code><br>
+ <code>./autogen.sh --with-num-cpus=2</code><br>
-<code>make</code><br>
+<code>make fetch all</code><br>
- <code>bin/ooinstall -l <<i>/path/to/scratch/dir/</i>></code><br>
+ <code>make dev-install</code> to install into a folder 'install', <code>ooinstall -l <<i>/path/to/scratch/dir/</i>></code> for dev-installs somewhere else or <code>make install</code> to properly install rather than symlink it (by default into /usr/local).<br>
<br>
- <p>If you have problems with the build - don't be put off, get in touch
- with us on IRC, and/or read the wiki page <a
+ <p>Further information and more details can be found on our <a
href="http://wiki.documentfoundation.org/Development/How_to_build">How
- To Build</a>. To <b>run</b> it do:</p>
+ To Build</a> wiki page. To <b>run</b> it do:</p>
<code>cd <<i>/path/to/scratch/dir/</i>>/program</code><br>
<code>. ./ooenv</code><br>
- <code>gdb --args ./soffice.bin -writer</code><br>
+ <code>gdb --args ./soffice.bin -writer</code><br> (this starts LibO writer in a debugger session)
...<br>
<h3 id="contact">Finding Other Developers</h3>
commit 71bfb9dcfb717d3d080b0b0bcb18c6800515afee
Author: Michael Meeks <michael.meeks at novell.com>
Date: Wed Dec 8 10:51:32 2010 +0000
improve the build instructions
diff --git a/develop/index.php b/develop/index.php
index 2c0759b..d4c87ec 100644
--- a/develop/index.php
+++ b/develop/index.php
@@ -27,8 +27,7 @@ assign your copyright to anyone in order to get your code contributed
<h3 id="building">Building And Running It</h3>
<p>These instructions are primarily focused at a GNU/Linux user.
-They are somewhat raw; they will improve rather rapidly over the next
-few days. <b>Bootstrap</b> your system by installing all the packages
+<b>Bootstrap</b> your system by installing all the packages
required to build your distribution's openoffice package. The easiest
way to do this is something like this:</p>
<code>sudo apt-get build-dep openoffice.org # Debian & derivatives</code><br>
@@ -38,8 +37,7 @@ way to do this is something like this:</p>
<p>Then to download the full source and <b>build</b>:</p>
<code>./autogen.sh --with-git --with-num-cpus=2</code><br>
-<code>./download</code><br>
-<code>make</code><br>
+<code>make fetch all</code><br>
<code>bin/ooinstall -l <<i>/path/to/scratch/dir/</i>></code><br>
<br>
<p>If you have problems with the build - don't be put off, get in touch
commit 1a807005a75f2266f69d670a41e060098c62c9a0
Author: Website Admin <webmaster at documentfoundation.org>
Date: Tue Dec 7 12:57:58 2010 +0100
say what gdb does
diff --git a/develop/index.php b/develop/index.php
index cfc65e6..5b84747 100644
--- a/develop/index.php
+++ b/develop/index.php
@@ -45,7 +45,7 @@ href="http://wiki.documentfoundation.org/Development/How_to_build">How
To Build</a> wiki page. To <b>run</b> it do:</p>
<code>cd <<i>/path/to/scratch/dir/</i>>/program</code><br>
<code>. ./ooenv</code><br>
-<code>gdb --args ./soffice.bin -writer</code><br>
+<code>gdb --args ./soffice.bin -writer</code><br> (this starts LibO writer in a debugger session)
...<br>
<h3 id="contact">Finding Other Developers</h3>
commit fee9b0f63ac453e569259203a7453e84f6b5a4c1
Author: Website Admin <webmaster at documentfoundation.org>
Date: Tue Dec 7 12:56:13 2010 +0100
further refinement of build instructions
diff --git a/develop/index.php b/develop/index.php
index 1ef5f87..cfc65e6 100644
--- a/develop/index.php
+++ b/develop/index.php
@@ -38,7 +38,7 @@ way to do this is something like this:</p>
<code>./autogen.sh --with-num-cpus=2</code><br>
<code>make</code><br>
-<code>ooinstall -l <<i>/path/to/scratch/dir/</i>></code>or <code>make install</code> to properly install it (by default into /usr/local)<br>
+<code>make dev-install</code> to install into a folder 'install', <code>ooinstall -l <<i>/path/to/scratch/dir/</i>></code> for dev-installs somewhere else or <code>make install</code> to properly install rather than symlink it (by default into /usr/local).<br>
<br>
<p>Further information and more details can be found on our <a
href="http://wiki.documentfoundation.org/Development/How_to_build">How
commit 8138c2fbaee919893d607b7c062fd5791d9fd958
Author: Website Admin <webmaster at documentfoundation.org>
Date: Tue Dec 7 10:39:29 2010 +0100
Improve build instructions
diff --git a/develop/index.php b/develop/index.php
index 479f30b..1ef5f87 100644
--- a/develop/index.php
+++ b/develop/index.php
@@ -27,8 +27,7 @@ assign your copyright to anyone in order to get your code contributed
<h3 id="building">Building And Running It</h3>
<p>These instructions are primarily focused at a GNU/Linux user.
-They are somewhat raw; they will improve rather rapidly over the next
-few days. <b>Bootstrap</b> your system by installing all the packages
+<b>Bootstrap</b> your system by installing all the packages
required to build your distribution's openoffice package. The easiest
way to do this is something like this:</p>
<code>sudo apt-get build-dep openoffice.org # Debian & derivatives</code><br>
@@ -39,12 +38,11 @@ way to do this is something like this:</p>
<code>./autogen.sh --with-num-cpus=2</code><br>
<code>make</code><br>
-<code>bin/ooinstall -l <<i>/path/to/scratch/dir/</i>></code><br>
+<code>ooinstall -l <<i>/path/to/scratch/dir/</i>></code>or <code>make install</code> to properly install it (by default into /usr/local)<br>
<br>
-<p>If you have problems with the build - don't be put off, get in touch
-with us on IRC, and/or read the wiki page <a
+<p>Further information and more details can be found on our <a
href="http://wiki.documentfoundation.org/Development/How_to_build">How
-To Build</a>. To <b>run</b> it do:</p>
+To Build</a> wiki page. To <b>run</b> it do:</p>
<code>cd <<i>/path/to/scratch/dir/</i>>/program</code><br>
<code>. ./ooenv</code><br>
<code>gdb --args ./soffice.bin -writer</code><br>
commit a81cf5960fd3aa602c88dfa10b81d6ebd888a2fb
Author: Website Admin <webmaster at documentfoundation.org>
Date: Mon Dec 6 18:07:27 2010 +0100
added Brazil PR
diff --git a/index.php b/index.php
index e82c8a5..77d4c4f 100644
--- a/index.php
+++ b/index.php
@@ -25,6 +25,11 @@ $rightnavigation
<h3>News</h3>
+<p>2010-12-06 <b>LibreOffice development extends to Brazil</b><br>
+The Document Foundation welcomes the new BrOffice Centre of Excellence for Free Software,
+a software development project recently announced by BrOffice, Itaipu Binacional and the
+Itaipu Technological Park Foundation. <a href="http://www.documentfoundation.org/lists/announce/msg00020.html">Read the press release.</a></p>
+
<p>2010-12-05 <b>Release Candidate 1 available</b><br>
LibreOffice 3.3 Release Candidate 1 is available. Download it <a href="download/">from here</a>.</p>
commit 5f3fd6ff2e4422530801b23a0e5049c34d34fbca
Author: Website Admin <webmaster at documentfoundation.org>
Date: Mon Dec 6 18:05:36 2010 +0100
typo fixed
diff --git a/download/index.php b/download/index.php
index c3b3046..c26c524 100644
--- a/download/index.php
+++ b/download/index.php
@@ -19,7 +19,7 @@ office suites, and available on a variety of platforms. It is free software
and therefore free to download, use and distribute.
</p>
-<h3>Download LibreOffice Release Candiate 1</h3>
+<h3>Download LibreOffice Release Candidate 1</h3>
<p>
The following software packages are intended to give you a first impression of what LibreOffice
commit 6e6fe0fd09f6e0610a9621ba0aa5748d5383a19d
Author: Website Admin <webmaster at documentfoundation.org>
Date: Sun Dec 5 21:16:59 2010 +0100
RC1
diff --git a/index.php b/index.php
index 3881fb2..e82c8a5 100644
--- a/index.php
+++ b/index.php
@@ -25,6 +25,9 @@ $rightnavigation
<h3>News</h3>
+<p>2010-12-05 <b>Release Candidate 1 available</b><br>
+LibreOffice 3.3 Release Candidate 1 is available. Download it <a href="download/">from here</a>.</p>
+
<p>2010-11-17 <b>Official TDF blog opens</b><br>
The official Document Foundation blog is <a href="http://blog.documentfoundation.org">here</a>.</p>
commit 8898aa64dc6f3b5e1433a5919b4cb66e8db1ac52
Author: Website Admin <webmaster at documentfoundation.org>
Date: Sun Dec 5 21:15:15 2010 +0100
RC1
diff --git a/download/index.php b/download/index.php
index 40e74c0..c3b3046 100644
--- a/download/index.php
+++ b/download/index.php
@@ -19,7 +19,7 @@ office suites, and available on a variety of platforms. It is free software
and therefore free to download, use and distribute.
</p>
-<h3>Download LibreOffice Beta3</h3>
+<h3>Download LibreOffice Release Candiate 1</h3>
<p>
The following software packages are intended to give you a first impression of what LibreOffice
@@ -31,35 +31,33 @@ the incomplete language packaging situation.
</p>
<p>
-This beta release is not intended for production use!
+This release candidate is not intended for production use!
</p>
<div id="download-nav">
<ul id="dlnav">
- <li class="dlnav-win32"><a href="$urlbase/3.3.0-beta3/win/x86/LibO_3.3.0_Win_x86_install_multi.exe">Download and install this for the International version to be used on Microsoft Windows.</a></li>
- <li class="dlnav-linux32"><a href="$urlbase/3.3.0-beta3/rpm/x86/LibO_3.3.0_Linux_x86_install-rpm_en-US.tar.gz">Download and install this for the English version to be used on various GNU/Linux 32-bit distributions.</a></li>
- <li class="dlnav-linux64"><a href="$urlbase/3.3.0-beta3/rpm/x86_64/LibO_3.3.0_Linux_x86-64_install-rpm_en-US.tar.gz">Download and install this for the English version to be used on various GNU/Linux 64-bit distributions.</a></li>
- <li class="dlnav-mac"><a href="$urlbase/3.3.0-beta3/mac/x86/LibO_3.3.0_MacOS_x86_install_en-US.dmg">Download and install this for the English version to be used on Apple MacOS X.</a></li>
+ <li class="dlnav-win32"><a href="$urlbase/3.3.0-rc1/win/x86/LibO_3.3.0rc1_Win_x86_install_multi.exe">Download and install this for the International version to be used on Microsoft Windows.</a></li>
+ <li class="dlnav-linux32"><a href="$urlbase/3.3.0-rc1/rpm/x86/LibO_3.3.0rc1_Linux_x86_install-rpm_en-US.tar.gz">Download and install this for the English version to be used on various GNU/Linux 32-bit distributions.</a></li>
+ <li class="dlnav-linux64"><a href="$urlbase/3.3.0-rc1/rpm/x86_64/LibO_3.3.0rc1_Linux_x86-64_install-rpm_en-US.tar.gz">Download and install this for the English version to be used on various GNU/Linux 64-bit distributions.</a></li>
+ <li class="dlnav-mac"><a href="$urlbase/3.3.0-rc1/mac/x86/LibO_3.3.0rc1_MacOS_x86_install_en-US.dmg">Download and install this for the English version to be used on Apple MacOS X.</a></li>
<li class="dlnav-source"><a href="$download_source">Click here to download the tarball containing the source code.</a></li>
</ul>
<p>You can also <a href="http://tracker.documentfoundation.org:6969">download using BitTorrent</a>,
- or <a href="$urlbase/3.3.0-beta3">browse all the Beta3 installation packages</a> to get unofficial
- Debian packages (<a href="$urlbase/3.3.0-beta3/deb/x86/LibO_3.3.0_Linux_x86_install-deb_en-US.tar.gz">32-bit .debs</a>
- or <a href="$urlbase/3.3.0-beta3/deb/x86_64/LibO_3.3.0_Linux_x86-64_install-deb_en-US.tar.gz">64-bit .debs</a>), or language packs.</p>
+ or <a href="$urlbase/3.3.0-rc1">browse all the RC1 installation packages</a> to get unofficial
+ Debian packages (<a href="$urlbase/3.3.0-rc1/deb/x86/LibO_3.3.0rc1_Linux_x86_install-deb_en-US.tar.gz">32-bit .debs</a>
+ or <a href="$urlbase/3.3.0-rc1/deb/x86_64/LibO_3.3.0rc1_Linux_x86-64_install-deb_en-US.tar.gz">64-bit .debs</a>), or language packs.</p>
</div>
-<h3 id="release-notes">Beta Release Notes</h3>
-<p>This beta release is not intended for production use!</p>
+<h3 id="release-notes">Release Notes</h3>
+<p>This release candidate is not intended for production use!</p>
<p>There are a number of known issues being worked on:</p>
<ul class="list-libreoffice">
<li>The Windows build is an International build - you can choose the user interface language that
is suitable for you. The help content is not included. We are working on the online version.
- Alternatively, it will be possible to install it separately. Beware that beta3 <a href="https://bugs.freedesktop.org/show_bug.cgi?id=31494">crashes on
- exit</a>. It should not affect normal work, though. Additionally, we are working on smaller problems
- like <a href="https://bugs.freedesktop.org/show_bug.cgi?id=30797">wrong description of several languages</a>.</li>
+ Alternatively, it will be possible to install it separately.</li>
<li>The Linux and MacOSX builds are English builds with the possibility to install language packs.
- Please browse <a href="$urlbase/3.3.0-beta3">the archives</a> to get the language pack you need
+ Please browse <a href="$urlbase/3.3.0-rc1">the archives</a> to get the language pack you need
for your platform.</li>
<li>The LibreOffice branding and renaming is new and work in progress. You may still see old graphics,
icons or websites. So please bear with us. This also applies to
diff --git a/template.php b/template.php
index fb9eb70..eff489f 100644
--- a/template.php
+++ b/template.php
@@ -138,7 +138,7 @@ function print_page($title, $context, $heading, $content, $subtabs = array())
$freedesktop_name="libreoffice";
$freedesktop_cgit="http://cgit.freedesktop.org/$freedesktop_name";
$download_binaries="http://download.documentfoundation.org/libreoffice/testing";
-$download_source="http://download.documentfoundation.org/libreoffice/src/libreoffice-build-3.2.99.3.tar.gz";
+$download_source="http://download.documentfoundation.org/libreoffice/src/libreoffice-build-3.3.0.1.tar.gz";
$rightnavigation = <<<EOT
commit 708ad0ce3f9c5703acf788b5799ba9183237dad3
Author: Website Admin <webmaster at documentfoundation.org>
Date: Sat Dec 4 13:19:08 2010 +0100
added GMANE links
diff --git a/contribution/index.php b/contribution/index.php
index 961c653..0cb5288 100644
--- a/contribution/index.php
+++ b/contribution/index.php
@@ -114,6 +114,12 @@ Digest subscription: <a href="mailto:steering-discuss+subscribe-digest at documentf
Archives: <a href="http://www.documentfoundation.org/lists/steering-discuss/">http://www.documentfoundation.org/lists/steering-discuss/</a><br>
Mail-Archive.com: <a href="http://www.mail-archive.com/steering-discuss@documentfoundation.org/">http://www.mail-archive.com/steering-discuss@documentfoundation.org/</a><br>
GMANE: <a href="http://dir.gmane.org/gmane.comp.documentfoundation.steering-discuss">http://dir.gmane.org/gmane.comp.documentfoundation.steering-discuss</a></li>
+<li><b>moderators at documentfoundation.org:</b> Discussions for moderators of our mailing lists<br>
+Subscription: <a href="mailto:moderators+subscribe at documentfoundation.org">moderators+subscribe at documentfoundation.org</a><br>
+Digest subscription: <a href="mailto:moderators+subscribe-digest at documentfoundation.org">moderators+subscribe-digest at documentfoundation.org</a><br>
+Archives: <a href="http://www.documentfoundation.org/lists/moderators/">http://www.documentfoundation.org/lists/moderators/</a><br>
+Mail-Archive.com: <a href="http://www.mail-archive.com/moderators@documentfoundation.org/">http://www.mail-archive.com/moderators@documentfoundation.org/</a><br>
+GMANE: <a href="http://dir.gmane.org/gmane.comp.documentfoundation.moderators">http://dir.gmane.org/gmane.comp.documentfoundation.moderators</a></li>
<hr>
<li><b>l10n at libreoffice.org:</b> Mailing list for people in charge of LibreOffice localization<br>
Subscription: <a href="mailto:l10n+subscribe at libreoffice.org">l10n+subscribe at libreoffice.org</a><br>
@@ -151,6 +157,12 @@ Digest subscription: <a href="mailto:design+subscribe-digest at libreoffice.org">de
Archives: <a href="http://www.libreoffice.org/lists/design/">http://www.libreoffice.org/lists/design/</a><br>
Mail-Archive.com: <a href="http://www.mail-archive.com/design@libreoffice.org/">http://www.mail-archive.com/design@libreoffice.org/</a><br>
GMANE: <a href="http://dir.gmane.org/gmane.comp.documentfoundation.libreoffice.design">http://dir.gmane.org/gmane.comp.documentfoundation.libreoffice.design</a></li>
+<li><b>accessibility at libreoffice.org:</b> Accessibility discussions on LibreOffice<br>
+Subscription: <a href="mailto:accessibility+subscribe at libreoffice.org">accessibility+subscribe at libreoffice.org</a><br>
+Digest subscription: <a href="mailto:accessibility+subscribe-digest at libreoffice.org">accessibility+subscribe-digest at libreoffice.org</a><br>
+Archives: <a href="http://www.libreoffice.org/lists/accessibility/">http://www.libreoffice.org/lists/accessibility/</a><br>
+Mail-Archive.com: <a href="http://www.mail-archive.com/accessibility@libreoffice.org/">http://www.mail-archive.com/accessibility@libreoffice.org/</a><br>
+GMANE: <a href="http://dir.gmane.org/gmane.comp.documentfoundation.libreoffice.accessibility">http://dir.gmane.org/gmane.comp.documentfoundation.libreoffice.accessibility</a></li>
<hr>
<li>There is also a <a href="http://lists.freedesktop.org/mailman/listinfo/libreoffice">development mailing list</a> available for those interested
in code contributions. This list is hosted by FreeDesktop.org.</li>
diff --git a/supporters/index.php b/supporters/index.php
index ad516cb..2dc22df 100644
--- a/supporters/index.php
+++ b/supporters/index.php
@@ -182,6 +182,17 @@ Document Foundation and participate in the project</i>".
</tr>
<tr>
+ <td><b><a name="gurley">Gabriel Gurley</a></b></td>
+ <td>
+"<i>I am proud to support the founding of The Document Foundation and its
+development of LibreOffice for office productivity users. I recommend
+teachers, students, parents and school administators to evaluate
+LibreOffice as an instructional resource for successful learning.</i>"
+said <b>Gabriel Gurley</b>, Educator and Author, gabrielgurley.com.
+ </td>
+</tr>
+
+<tr>
<td><b><a name="istplanbar">IST planbar GmbH</a></b></td>
<td>
IST planbar GmbH is a subsidiary company of RE/init e.V., a German
commit 8e048f3964de536e14b12ad47fe32dfd9f739048
Author: Website Admin <webmaster at documentfoundation.org>
Date: Wed Dec 1 09:21:04 2010 +0100
adapte build instructions to the new bootstrap repo stuff
diff --git a/develop/index.php b/develop/index.php
index 2c0759b..479f30b 100644
--- a/develop/index.php
+++ b/develop/index.php
@@ -8,9 +8,9 @@ $content = <<<"EOT"
<br>
All our source code is hosted in git:
<br>
-<b>Clone:</b> <tt>\$ git clone git://anongit.freedesktop.org/git/libreoffice/build</tt>
+<b>Clone:</b> <tt>\$ git clone git://anongit.freedesktop.org/git/libreoffice/bootstrap</tt>
# <a href="$freedesktop_cgit">(browse)</a> <a
-href="http://anongit.freedesktop.org/git/libreoffice/build.git/">(http URL)</a>
+href="http://anongit.freedesktop.org/git/libreoffice/bootstrap.git/">(http URL)</a>
<br>
<b>Tarball:</b> <a href="$download_source">$download_source</a>.
<br>
@@ -37,8 +37,7 @@ way to do this is something like this:</p>
<br>
<p>Then to download the full source and <b>build</b>:</p>
-<code>./autogen.sh --with-git --with-num-cpus=2</code><br>
-<code>./download</code><br>
+<code>./autogen.sh --with-num-cpus=2</code><br>
<code>make</code><br>
<code>bin/ooinstall -l <<i>/path/to/scratch/dir/</i>></code><br>
<br>
commit 8ae2c8871a20bf2a4d40595847681b82d1354549
Author: Website Admin <webmaster at documentfoundation.org>
Date: Mon Nov 29 10:39:40 2010 +0100
GMANE for design@ added
diff --git a/contribution/index.php b/contribution/index.php
index 8788367..961c653 100644
--- a/contribution/index.php
+++ b/contribution/index.php
@@ -150,7 +150,7 @@ Subscription: <a href="mailto:design+subscribe at libreoffice.org">design+subscribe
Digest subscription: <a href="mailto:design+subscribe-digest at libreoffice.org">design+subscribe-digest at libreoffice.org</a><br>
Archives: <a href="http://www.libreoffice.org/lists/design/">http://www.libreoffice.org/lists/design/</a><br>
Mail-Archive.com: <a href="http://www.mail-archive.com/design@libreoffice.org/">http://www.mail-archive.com/design@libreoffice.org/</a><br>
-GMANE: pending</li>
+GMANE: <a href="http://dir.gmane.org/gmane.comp.documentfoundation.libreoffice.design">http://dir.gmane.org/gmane.comp.documentfoundation.libreoffice.design</a></li>
<hr>
<li>There is also a <a href="http://lists.freedesktop.org/mailman/listinfo/libreoffice">development mailing list</a> available for those interested
in code contributions. This list is hosted by FreeDesktop.org.</li>
More information about the Libreoffice-commits
mailing list