Difference between revisions of "User:Regina"

From Apache OpenOffice Wiki
Jump to: navigation, search
(dashboard: (Zwischenspeicherung))
Line 74: Line 74:
 
::* Download source code in an archive format of your choice (note that tar.bz2 is typically smaller than tar.gz and zip)
 
::* Download source code in an archive format of your choice (note that tar.bz2 is typically smaller than tar.gz and zip)
 
::* Optional: Verify the archive
 
::* Optional: Verify the archive
::** Browse to http://www.openoffice.org/download/checksums/3.4.1_checksums.html
+
::** Browse to http://www.openoffice.org/download/checksums/3.4.1_checksums.html#checksums-sdk
 
::** Click on the "Source code" link or navigate manually to the "Source code" section.
 
::** Click on the "Source code" link or navigate manually to the "Source code" section.
 
::** Follow instructions for verifying your archive.
 
::** Follow instructions for verifying your archive.
::* Unpack source with cygwin in the terminal:<pre>cd /tmp&#10;tar -xjf <download-location>/aoo-3.4.1-incubating-src.tar.bz2&#10;cd aoo-3.4.1/main&#10;</pre>
+
::* Unpack source (in cygwin-terminal). Use the file name exactly as downloaded.<pre>cd /tmp&#10;tar -xjf <download-location>/aoo-3.4.1-incubating-src.tar.bz2&#10;cd aoo-3.4.1/main&#10;</pre>
  
::; Checkout from SVN using subversion :  
+
::; Checkout from SVN using subversion :
 +
::*Get subversion (only first time)<pre>apt-cyg install subversion</pre>
 
::*Start with creating a parent directory for the source code: <pre>mkdir /cygdrive/c/source&#10;cd /cygdrive/c/source</pre>
 
::*Start with creating a parent directory for the source code: <pre>mkdir /cygdrive/c/source&#10;cd /cygdrive/c/source</pre>
::*Check out source from Apache SVN repository<pre>apt-cyg install subversion&#10;svn co https://svn.apache.org/repos/asf/incubator/ooo/trunk aoo-trunk&#10;cd aoo-trunk/main</pre>
+
::*Check out source from Apache SVN repository<pre>svn co https://svn.apache.org/repos/asf/openoffice/trunk aoo-trunk&#10;cd aoo-trunk/main</pre>
  
 
::; Checkout from SVN using git-svn :
 
::; Checkout from SVN using git-svn :
 +
::*Get git and git-svn (only first time)<pre>apt-cyg install git git-svn</pre>
 
::*Get the actual revision number from http://svn.apache.org/viewvc/OpenOffice/trunk/, e.g. 1234567
 
::*Get the actual revision number from http://svn.apache.org/viewvc/OpenOffice/trunk/, e.g. 1234567
::*Create an empty folder, e.g. myAOO
+
::*Create an empty directory and change to it, e.g.<pre>mkdir /cygdrive/c/source&#10;cd /cygdrive/c/source</pre>
::*From inside terminal with cygwin change to this directory
+
::*Check out source from Apache SVN repository<pre>git svn clone --revision 1234567:HEAD https://svn.apache.org/repos/asf/openoffice/trunk&#10;cd trunk/main</pre>
::*Get the source<pre>git svn clone --revision 1234567:HEAD https://svn.apache.org/repos/asf/openoffice/trunk</del>
+
+
 
+
{| class="prettytable"
+
|-
+
! Source release
+
! SVN
+
|- valign="top"
+
| Build from source release if you want to build OpenOffice once but don't want to do any development.
+
| Build from SVN if you want to development work with OpenOffice.
+
|- valign="top"
+
|
+
* Browse to http://www.openoffice.org/download/other.html#tested-sdk and locate the table row that starts with "Source code"
+
* Download source code in an archive format of your choice (note that tar.bz2 is typically smaller than tar.gz and zip)
+
* Optional: Verify the archive
+
** Browse to http://www.openoffice.org/download/checksums/3.4.1_checksums.html
+
** Click on the "Source code" link or navigate manually to the "Source code" section.
+
** Follow instructions for verifying your archive.
+
* Unpack source:<pre>cd /tmp&#10;tar -xjf <download-location>/aoo-3.4.1-incubating-src.tar.bz2&#10;cd aoo-3.4.1/main&#10;</pre>
+
|
+
*Start with creating a parent directory for the source code:<pre>mkdir /cygdrive/c/source&#10;cd /cygdrive/c/source</pre>
+
*Check out source from Apache SVN repository<pre>apt-cyg install subversion&#10;svn co https://svn.apache.org/repos/asf/incubator/ooo/trunk aoo-trunk&#10;cd aoo-trunk/main</pre>
+
|}
+

Revision as of 17:34, 19 February 2013

native language
German
active in project
de, qa, sc, graphics, LibreOffice, Apache OpenOffice
user name
regina
special interest
www.ooowiki.de
email
rb.henschel@t-online.de

Anleitung

ToDo

Working on functions sides

Statistical functions

Functions listed alphabetically, Functions listed by category

ODFF and accuracy problems in statitistic functions

Treatment of new Excel 2010 functions

Planning Wiki-Pages

/MyDrafts new document on Precision and Accuracy

/MYDrafts2 new specification for print ranges

/MYDrafts3 TTEST

/MYDrafts4 Angle problems in ODF 1.2

/ComparisonWriterDrawPicture Comparison between Writer- and Draw-picture

/MYDrafts5 Custom Shapes

Development

Currently: Adapt smoothing with splines to ODF1.2 norm

Sandbox

math tests

[[1]]

Test Wiki-markup here

<math>\sum_{k=1}^N k^2</math>

<math>\scriptstyle \sqrt {n-1}</math>

<math>\sqrt {n-1}</math>

<math> s_{X_1 - X_2}</math>

<math>1-P( -|z| \le Z \le |z|)</math>

<math>\textstyle \sum_{k=1}^N k^2</math>

<math>\sum_{k=1}^N k^2</math>

<math>\int_{1}^{3}\frac{e^3/x}{x^2}\, dx</math>

<math>\sum_{k=1}^N k^2</math>

<math>\frac{1}{N} \sum_{k=2}^N k^2</math>

\frac{1} {n} \sum_{i} {(x_i - \bar x)(y_i - \bar y)}</math>

dashboard

  • Get AOO source code. You can use the source release or check out from SVN. Build from source release if you want to build OpenOffice once but don't want to contribute patches. If you will contribute patches, you need to generate them against an actual version of trunk. In this case check out from SVN to be able to rebase before generating patches. You can work with subversion or with git-svn.
Source release 
Checkout from SVN using subversion 
  • Get subversion (only first time)
    apt-cyg install subversion
  • Start with creating a parent directory for the source code:
    mkdir /cygdrive/c/source
    cd /cygdrive/c/source
  • Check out source from Apache SVN repository
    svn co https://svn.apache.org/repos/asf/openoffice/trunk aoo-trunk
    cd aoo-trunk/main
Checkout from SVN using git-svn 
  • Get git and git-svn (only first time)
    apt-cyg install git git-svn
  • Get the actual revision number from http://svn.apache.org/viewvc/OpenOffice/trunk/, e.g. 1234567
  • Create an empty directory and change to it, e.g.
    mkdir /cygdrive/c/source
    cd /cygdrive/c/source
  • Check out source from Apache SVN repository
    git svn clone --revision 1234567:HEAD https://svn.apache.org/repos/asf/openoffice/trunk
    cd trunk/main
Personal tools