[openoffice-org] branch asf-staging updated: git-site-role commit from build_staging.sh

2020-11-01 Thread git-site-role
This is an automated email from the ASF dual-hosted git repository.

git-site-role pushed a commit to branch asf-staging
in repository https://gitbox.apache.org/repos/asf/openoffice-org.git


The following commit(s) were added to refs/heads/asf-staging by this push:
 new cc495b0  git-site-role commit from build_staging.sh
cc495b0 is described below

commit cc495b0f088e0fd0284b94abe889020211deafc7
Author: jenkins 
AuthorDate: Sun Nov 1 23:43:34 2020 +

git-site-role commit from build_staging.sh
---
 content/feed.xml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/content/feed.xml b/content/feed.xml
index 81a5c3e..5c4fa9c 100644
--- a/content/feed.xml
+++ b/content/feed.xml
@@ -6,8 +6,8 @@
 http://localhost:8820/feed.xml; rel="self" 
type="application/rss+xml" />
 OpenOffice.org Feed
 en-us
-Sun, 1 Nov 2020 15:25:52 -0800
-Sun, 1 Nov 2020 15:25:52 -0800
+Sun, 1 Nov 2020 23:43:20 +
+Sun, 1 Nov 2020 23:43:20 +
 
 




[openoffice-org] branch main updated: start writing a proper main README.md

2020-11-01 Thread wave
This is an automated email from the ASF dual-hosted git repository.

wave pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/openoffice-org.git


The following commit(s) were added to refs/heads/main by this push:
 new b3423d2  start writing a proper main README.md
b3423d2 is described below

commit b3423d2260e7853497551b378d3bf8fb953df2d0
Author: Dave Fisher 
AuthorDate: Sun Nov 1 15:40:06 2020 -0800

start writing a proper main README.md
---
 README.md | 157 +-
 1 file changed, 155 insertions(+), 2 deletions(-)

diff --git a/README.md b/README.md
index dd8ba43..1799b7a 100644
--- a/README.md
+++ b/README.md
@@ -1,3 +1,156 @@
-Initial file
+## Editing the Git Site
+
+1. Clone the Git Repository
+
+```
+cd ~/Development/openoffice
+rm -rf ooo-site.git
+git clone https://gitbox.apache.org/repos/asf/openoffice-org.git ooo-site.git
+git fetch
+git pull
+git checkout main
+```
+
+2. Modify Pages
+
+```
+cd ~/Development/openoffice/ooo-sit.git/content/
+```
+
+* Html pages are `*.html` and `*.htm`
+  - Full html pages are rewrapped.
+  - Html fragments are wrapped.
+* Markdown pages are `*.md`
+* Special purpose Markdown which also need to be delcared in 
`templates/ssi_paths.gsp`
+  - `brand.md` are specialised translations for the website header.
+  - `topnav.md` is the top navigator.
+  - `leftnav.md` is the left navigator.
+  - `rightnav.md` is the right naviagator
+
+3. Modify Assets
+
+```
+cd ~/Development/openoffice/ooo-sit.git/assets/
+```
+
+- These are copied to the site unmodified.
+
+## Migration Instructions
+
+1. Checkout Old SVN CMS version of site.
+
+```
+cd ~/Development/openoffice
+rm -rf ooo-site
+svn co https://svn.apache.org/repos/asf/openoffice/ooo-site/trunk ooo-site
+```
+
+1. Setup Environment variables.
+
+```
+# location of CMS content
+export SVNPATH="~/Development/openoffice/ooo-site/content"
+# location of Git repository checkout
+export GITPATH="~/Development/openoffice/ooo-site.git"
+```
+
+2. List of Folders.
+   It is likely that these won't be done in one session. Make the list and 
track what you've migrated.
+
+```
+cd ${SVNPATH}
+find . -type d -depth 1 -print | sed -e 's!./!!' | sort
+```
+
+You could compare with the git targets with:
+
+```
+cd ${GITPATH}/assets
+find . -type d -depth 1 -print | sed -e 's!./!!' | sort
+cd ${GITPATH}/content
+find . -type d -depth 1 -print | sed -e 's!./!!' | sort
+```
+
+3. Migration of a Folder.
+
+```
+cd ${SVNPATH}
+${GITPATH}/tools/migration2git.sh downloads
+```
+
+## Tool Scripts
+
+1. tools/commit2git.sh ${1} ${2} ${3}
+
+```
+# ${1} Category 'assets','content'
+# ${2} Path to commit
+# ${3} Description for commit message - 'assets','large asset','html 
content','Markdown pages','brand','navigator'
+cd ${GITPATH}
+git add ${1}/${2}
+git commit -m 'Migration of ${2} ${3}'
+```
+
+2. tools/convert2md.sh ${1} ${2}
+
+```
+# ${1} Template type 'brand','navigator','page'
+# ${2} Path of mdtext file to convert to md file
+echo 'type=${1}' > ${GITPATH}/content/${2}
+nawk -f ${GITPATH}/tools/convert2md.awk ${2} >> ${GITPATH}/content/${2}
+```
+
+3. tools/migration2git.sh ${1}
+
+```
+# ${1} Site folder to migrate
+cd ${SVNPATH}
+echo 'Migrating ${SVNPATH}/${1} to ${GITPATH}
+echo
+# 1 - Tree structure
+echo 'copy directory structure to assets and content trees'
+find ${1} -type d ! -empty -exec mkdir -p ${GITPATH}/assets/{} \; -exec mkdir 
-p ${GITPATH}/content/{} \;
+# git does not commit empty directories
+echo
+# 2 - Large Assets
+echo 'copy assets larger than 3M as separate commits'
+find ${1} -type f -size +3M -exec cp {} ${GITPATH}/assets/{} \; -exec 
${GITPATH}/tools/commit2git.sh assets {} 'large asset' \;
+echo
+# 3 - Assets
+echo 'copy assets not (html and mdtext) to assets tree'
+find ${1} -type f ! -name "*.html" ! -name "*.htm" ! -name "*.mdtext" ! -size 
+3M -exec cp -p {} ${GITPATH}/assets/{} \;
+# commit and push
+${GITPATH}/tools/commit2git.sh assets ${1} 'assets'
+echo
+# 4 - HTML
+echo 'copy html to content tree'
+find ${1}  -type f \( -name "*.html" -or -name "*.htm" \) ! -size +3M -exec cp 
-p {} ${GITPATH}/content/{} \;
+# commit and push
+${GITPATH}/tools/commit2git.sh content ${1} 'html content'
+echo
+# 5 - Brand
+echo 'Convert brand'
+find ${1} -name "brand.mdtext" -type f -exec ${GITPATH}/tools/convert2md.sh 
brand {} \; -exec ${GITPATH}/tools/commit2git.sh assets {} 'brand' \;
+echo
+# 6 - Navigators
+echo 'Convert navigators'
+find ${1} -name "*nav.mdtext" -type f -exec ${GITPATH}/tools/convert2md.sh 
navigator {} \; -exec ${GITPATH}/tools/commit2git.sh assets {} 'navigator' \;
+echo
+# 7 - Markdown
+echo 'Convert markdown pages'
+find ${1} -name "*.mdtext" ! -name "brand.mdtext" ! -name "*nav.mdtext" -type 
f -exec ${GITPATH}/tools/convert2md.sh page {} \;
+# commit and push
+${GITPATH}/tools/commit2git.sh content ${1} 'Markdown pages'
+echo
+# 8 - Push to git
+echo 'Push to Gitbox'

[openoffice-org] branch asf-staging updated: git-site-role commit from build_staging.sh

2020-11-01 Thread wave
This is an automated email from the ASF dual-hosted git repository.

wave pushed a commit to branch asf-staging
in repository https://gitbox.apache.org/repos/asf/openoffice-org.git


The following commit(s) were added to refs/heads/asf-staging by this push:
 new 6feaeaf  git-site-role commit from build_staging.sh
6feaeaf is described below

commit 6feaeafe65398395089a5795e717b3b6680c3b3c
Author: Dave Fisher 
AuthorDate: Sun Nov 1 15:26:28 2020 -0800

git-site-role commit from build_staging.sh
---
 .../conceptualguideOOo3_audiobook_0-1alpha.zip  | Bin 331987761 -> 0 bytes
 content/feed.xml|   4 ++--
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git 
a/content/documentation/conceptualguide/conceptualguideOOo3_audiobook_0-1alpha.zip
 
b/content/documentation/conceptualguide/conceptualguideOOo3_audiobook_0-1alpha.zip
deleted file mode 100644
index bd872b8..000
Binary files 
a/content/documentation/conceptualguide/conceptualguideOOo3_audiobook_0-1alpha.zip
 and /dev/null differ
diff --git a/content/feed.xml b/content/feed.xml
index d4ff8cb..81a5c3e 100644
--- a/content/feed.xml
+++ b/content/feed.xml
@@ -6,8 +6,8 @@
 http://localhost:8820/feed.xml; rel="self" 
type="application/rss+xml" />
 OpenOffice.org Feed
 en-us
-Sun, 1 Nov 2020 22:30:14 +
-Sun, 1 Nov 2020 22:30:14 +
+Sun, 1 Nov 2020 15:25:52 -0800
+Sun, 1 Nov 2020 15:25:52 -0800
 
 




OpenOffice-org Staging Site Published

2020-11-01 Thread Apache Jenkins Server
OpenOffice ยป OpenOffice-org-Staging-Site-Build - Build # 40 - Failure:

Check console output at 
https://ci-builds.apache.org/job/OpenOffice/job/OpenOffice-org-Staging-Site-Build/40/
 to view the results.Started by an SCM change
Started by an SCM change
Started by an SCM change
Started by an SCM change
Started by an SCM change
Running as SYSTEM
[EnvInject] - Loading node environment variables.
Building remotely on websites1 (git-websites svn-websites) in workspace 
/home/jenkins/712657a4/workspace/OpenOffice/OpenOffice-org-Staging-Site-Build
No credentials specified
Wiping out workspace first.
Cloning the remote Git repository
Cloning repository https://gitbox.apache.org/repos/asf/openoffice-org.git
 > git init 
 > /home/jenkins/712657a4/workspace/OpenOffice/OpenOffice-org-Staging-Site-Build
 >  # timeout=10
Fetching upstream changes from 
https://gitbox.apache.org/repos/asf/openoffice-org.git
 > git --version # timeout=10
 > git fetch --tags --progress -- 
 > https://gitbox.apache.org/repos/asf/openoffice-org.git 
 > +refs/heads/*:refs/remotes/origin/* # timeout=10
ERROR: Timeout after 10 minutes
ERROR: Error cloning remote repo 'origin'
hudson.plugins.git.GitException: Command "git fetch --tags --progress -- 
https://gitbox.apache.org/repos/asf/openoffice-org.git 
+refs/heads/*:refs/remotes/origin/*" returned status code 128:
stdout: 
stderr: remote: Counting objects: 12204, done.
remote: Compressing objects:   0% (1/8802)   
remote: Compressing objects:   1% (89/8802)   
remote: Compressing objects:   2% (177/8802)   
remote: Compressing objects:   3% (265/8802)   
remote: Compressing objects:   4% (353/8802)   
remote: Compressing objects:   5% (441/8802)   
remote: Compressing objects:   6% (529/8802)   
remote: Compressing objects:   7% (617/8802)   
remote: Compressing objects:   8% (705/8802)   
remote: Compressing objects:   9% (793/8802)   
remote: Compressing objects:  10% (881/8802)   
remote: Compressing objects:  11% (969/8802)   
remote: Compressing objects:  12% (1057/8802)   
remote: Compressing objects:  13% (1145/8802)   
remote: Compressing objects:  14% (1233/8802)   
remote: Compressing objects:  15% (1321/8802)   
remote: Compressing objects:  16% (1409/8802)   
remote: Compressing objects:  17% (1497/8802)   
remote: Compressing objects:  18% (1585/8802)   
remote: Compressing objects:  19% (1673/8802)   
remote: Compressing objects:  20% (1761/8802)   
remote: Compressing objects:  21% (1849/8802)   
remote: Compressing objects:  22% (1937/8802)   
remote: Compressing objects:  23% (2025/8802)   
remote: Compressing objects:  24% (2113/8802)   
remote: Compressing objects:  25% (2201/8802)   
remote: Compressing objects:  26% (2289/8802)   
remote: Compressing objects:  27% (2377/8802)   
remote: Compressing objects:  28% (2465/8802)   
remote: Compressing objects:  29% (2553/8802)   
remote: Compressing objects:  30% (2641/8802)   
remote: Compressing objects:  31% (2729/8802)   
remote: Compressing objects:  32% (2817/8802)   
remote: Compressing objects:  33% (2905/8802)   
remote: Compressing objects:  34% (2993/8802)   
remote: Compressing objects:  35% (3081/8802)   
remote: Compressing objects:  36% (3169/8802)   
remote: Compressing objects:  37% (3257/8802)   
remote: Compressing objects:  38% (3345/8802)   
remote: Compressing objects:  39% (3433/8802)   
remote: Compressing objects:  40% (3521/8802)   
remote: Compressing objects:  41% (3609/8802)   
remote: Compressing objects:  42% (3697/8802)   
remote: Compressing objects:  43% (3785/8802)   
remote: Compressing objects:  44% (3873/8802)   
remote: Compressing objects:  45% (3961/8802)   
remote: Compressing objects:  46% (4049/8802)   
remote: Compressing objects:  47% (4137/8802)   
remote: Compressing objects:  48% (4225/8802)   
remote: Compressing objects:  49% (4313/8802)   
remote: Compressing objects:  50% (4401/8802)   
remote: Compressing objects:  51% (4490/8802)   
remote: Compressing objects:  52% (4578/8802)   
remote: Compressing objects:  53% (4666/8802)   
remote: Compressing objects:  54% (4754/8802)   
remote: Compressing objects:  55% (4842/8802)   
remote: Compressing objects:  56% (4930/8802)   
remote: Compressing objects:  57% (5018/8802)   
remote: Compressing objects:  58% (5106/8802)   
remote: Compressing objects:  59% (5194/8802)   
remote: Compressing objects:  60% (5282/8802)   
remote: Compressing objects:  61% (5370/8802)   
remote: Compressing objects:  62% (5458/8802)   
remote: 

[openoffice-org] branch main updated: This file is too large for GitHub.

2020-11-01 Thread wave
This is an automated email from the ASF dual-hosted git repository.

wave pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/openoffice-org.git


The following commit(s) were added to refs/heads/main by this push:
 new 6fe79a0  This file is too large for GitHub.
6fe79a0 is described below

commit 6fe79a0ed175e9aa6ba4e1b0a9283600389f
Author: Dave Fisher 
AuthorDate: Sun Nov 1 14:33:39 2020 -0800

This file is too large for GitHub.

Revert "Migration of 
documentation/conceptualguide/conceptualguideOOo3_audiobook_0-1alpha.zip large 
asset"

This reverts commit 9ab45d8218e779cf7265830390533a3faa65255d.
---
 .../conceptualguideOOo3_audiobook_0-1alpha.zip  | Bin 331987761 -> 0 bytes
 1 file changed, 0 insertions(+), 0 deletions(-)

diff --git 
a/assets/documentation/conceptualguide/conceptualguideOOo3_audiobook_0-1alpha.zip
 
b/assets/documentation/conceptualguide/conceptualguideOOo3_audiobook_0-1alpha.zip
deleted file mode 100644
index bd872b8..000
Binary files 
a/assets/documentation/conceptualguide/conceptualguideOOo3_audiobook_0-1alpha.zip
 and /dev/null differ



[openoffice-org] 23/49: Migration of documentation/online_help/oldversions/1.x/sources/OOo-1.1_help_src33.zip large asset

2020-11-01 Thread wave
This is an automated email from the ASF dual-hosted git repository.

wave pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/openoffice-org.git

commit bb6af8eb970997013fd5c230a07985ccb37a07b3
Author: Dave Fisher 
AuthorDate: Sun Nov 1 14:17:49 2020 -0800

Migration of 
documentation/online_help/oldversions/1.x/sources/OOo-1.1_help_src33.zip large 
asset
---
 .../oldversions/1.x/sources/OOo-1.1_help_src33.zip   | Bin 0 -> 10628889 bytes
 1 file changed, 0 insertions(+), 0 deletions(-)

diff --git 
a/assets/documentation/online_help/oldversions/1.x/sources/OOo-1.1_help_src33.zip
 
b/assets/documentation/online_help/oldversions/1.x/sources/OOo-1.1_help_src33.zip
new file mode 100644
index 000..c4b4250
Binary files /dev/null and 
b/assets/documentation/online_help/oldversions/1.x/sources/OOo-1.1_help_src33.zip
 differ



[openoffice-org] 17/49: Migration of documentation/online_help/oldversions/1.x/sources/OOo-1.1_help_src_01.zip large asset

2020-11-01 Thread wave
This is an automated email from the ASF dual-hosted git repository.

wave pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/openoffice-org.git

commit 4a040b67970a2f570cacb0471445147fc212b75a
Author: Dave Fisher 
AuthorDate: Sun Nov 1 14:17:47 2020 -0800

Migration of 
documentation/online_help/oldversions/1.x/sources/OOo-1.1_help_src_01.zip large 
asset
---
 .../oldversions/1.x/sources/OOo-1.1_help_src_01.zip  | Bin 0 -> 10457336 bytes
 1 file changed, 0 insertions(+), 0 deletions(-)

diff --git 
a/assets/documentation/online_help/oldversions/1.x/sources/OOo-1.1_help_src_01.zip
 
b/assets/documentation/online_help/oldversions/1.x/sources/OOo-1.1_help_src_01.zip
new file mode 100644
index 000..8d0ef0b
Binary files /dev/null and 
b/assets/documentation/online_help/oldversions/1.x/sources/OOo-1.1_help_src_01.zip
 differ



[openoffice-org] 09/49: Migration of documentation/Samples_Templates/User/template_2_x/impress/Grapes.otp large asset

2020-11-01 Thread wave
This is an automated email from the ASF dual-hosted git repository.

wave pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/openoffice-org.git

commit df7ef42caab9b56bfdc25e7b34ff37a78eba2b29
Author: Dave Fisher 
AuthorDate: Sun Nov 1 14:17:46 2020 -0800

Migration of 
documentation/Samples_Templates/User/template_2_x/impress/Grapes.otp large asset
---
 .../User/template_2_x/impress/Grapes.otp  | Bin 0 -> 6574689 bytes
 1 file changed, 0 insertions(+), 0 deletions(-)

diff --git 
a/assets/documentation/Samples_Templates/User/template_2_x/impress/Grapes.otp 
b/assets/documentation/Samples_Templates/User/template_2_x/impress/Grapes.otp
new file mode 100644
index 000..7630d4c
Binary files /dev/null and 
b/assets/documentation/Samples_Templates/User/template_2_x/impress/Grapes.otp 
differ



[openoffice-org] 31/49: Migration of documentation/manuals/oooauthors/DrawGuide.sxw large asset

2020-11-01 Thread wave
This is an automated email from the ASF dual-hosted git repository.

wave pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/openoffice-org.git

commit d6d0aabd80d69ae231e3e82f4d09f67702ca18c5
Author: Dave Fisher 
AuthorDate: Sun Nov 1 14:17:50 2020 -0800

Migration of documentation/manuals/oooauthors/DrawGuide.sxw large asset
---
 assets/documentation/manuals/oooauthors/DrawGuide.sxw | Bin 0 -> 3787154 bytes
 1 file changed, 0 insertions(+), 0 deletions(-)

diff --git a/assets/documentation/manuals/oooauthors/DrawGuide.sxw 
b/assets/documentation/manuals/oooauthors/DrawGuide.sxw
new file mode 100644
index 000..47c3ed4
Binary files /dev/null and 
b/assets/documentation/manuals/oooauthors/DrawGuide.sxw differ



[openoffice-org] 35/49: Migration of documentation/conceptualguide/conceptual_guide_OOo_3_ebook.pdf large asset

2020-11-01 Thread wave
This is an automated email from the ASF dual-hosted git repository.

wave pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/openoffice-org.git

commit ab6d7476a7b1b10fbb5f3b13a9c683580301e37d
Author: Dave Fisher 
AuthorDate: Sun Nov 1 14:17:52 2020 -0800

Migration of documentation/conceptualguide/conceptual_guide_OOo_3_ebook.pdf 
large asset
---
 .../conceptualguide/conceptual_guide_OOo_3_ebook.pdf | Bin 0 -> 12691482 bytes
 1 file changed, 0 insertions(+), 0 deletions(-)

diff --git 
a/assets/documentation/conceptualguide/conceptual_guide_OOo_3_ebook.pdf 
b/assets/documentation/conceptualguide/conceptual_guide_OOo_3_ebook.pdf
new file mode 100644
index 000..08636f8
Binary files /dev/null and 
b/assets/documentation/conceptualguide/conceptual_guide_OOo_3_ebook.pdf differ



[openoffice-org] 41/49: Migration of documentation/contests/template_clipart_2006/judges/writer/writer_mbox.zip large asset

2020-11-01 Thread wave
This is an automated email from the ASF dual-hosted git repository.

wave pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/openoffice-org.git

commit 7ce2dd70b0f0135d12ef080ab4d94e2ac7791d9c
Author: Dave Fisher 
AuthorDate: Sun Nov 1 14:17:53 2020 -0800

Migration of 
documentation/contests/template_clipart_2006/judges/writer/writer_mbox.zip 
large asset
---
 .../judges/writer/writer_mbox.zip | Bin 0 -> 9046383 bytes
 1 file changed, 0 insertions(+), 0 deletions(-)

diff --git 
a/assets/documentation/contests/template_clipart_2006/judges/writer/writer_mbox.zip
 
b/assets/documentation/contests/template_clipart_2006/judges/writer/writer_mbox.zip
new file mode 100644
index 000..37ba4ad
Binary files /dev/null and 
b/assets/documentation/contests/template_clipart_2006/judges/writer/writer_mbox.zip
 differ



[openoffice-org] 08/49: Migration of documentation/Samples_Templates/User/template_2_x/impress/Czulow.otp large asset

2020-11-01 Thread wave
This is an automated email from the ASF dual-hosted git repository.

wave pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/openoffice-org.git

commit a3c6db13d1ad2d2aebd3e302fef71b7bb7a5b3f3
Author: Dave Fisher 
AuthorDate: Sun Nov 1 14:17:46 2020 -0800

Migration of 
documentation/Samples_Templates/User/template_2_x/impress/Czulow.otp large asset
---
 .../User/template_2_x/impress/Czulow.otp  | Bin 0 -> 3328495 bytes
 1 file changed, 0 insertions(+), 0 deletions(-)

diff --git 
a/assets/documentation/Samples_Templates/User/template_2_x/impress/Czulow.otp 
b/assets/documentation/Samples_Templates/User/template_2_x/impress/Czulow.otp
new file mode 100644
index 000..be00563
Binary files /dev/null and 
b/assets/documentation/Samples_Templates/User/template_2_x/impress/Czulow.otp 
differ



[openoffice-org] 47/49: Migration of documentation/contests/template_clipart_2006/judges/clipart/clipart.zip large asset

2020-11-01 Thread wave
This is an automated email from the ASF dual-hosted git repository.

wave pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/openoffice-org.git

commit 3a6639594f795907794edcd54ade00b933e4c2dc
Author: Dave Fisher 
AuthorDate: Sun Nov 1 14:17:55 2020 -0800

Migration of 
documentation/contests/template_clipart_2006/judges/clipart/clipart.zip large 
asset
---
 .../template_clipart_2006/judges/clipart/clipart.zip | Bin 0 -> 15249043 bytes
 1 file changed, 0 insertions(+), 0 deletions(-)

diff --git 
a/assets/documentation/contests/template_clipart_2006/judges/clipart/clipart.zip
 
b/assets/documentation/contests/template_clipart_2006/judges/clipart/clipart.zip
new file mode 100644
index 000..85a2b29
Binary files /dev/null and 
b/assets/documentation/contests/template_clipart_2006/judges/clipart/clipart.zip
 differ



[openoffice-org] 16/49: Migration of documentation/online_help/oldversions/1.x/sources/OOo-1.1_help_src49.zip large asset

2020-11-01 Thread wave
This is an automated email from the ASF dual-hosted git repository.

wave pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/openoffice-org.git

commit 186d5ddb310f2ecab061b0b6df2d9706e9499e9e
Author: Dave Fisher 
AuthorDate: Sun Nov 1 14:17:47 2020 -0800

Migration of 
documentation/online_help/oldversions/1.x/sources/OOo-1.1_help_src49.zip large 
asset
---
 .../oldversions/1.x/sources/OOo-1.1_help_src49.zip   | Bin 0 -> 11694402 bytes
 1 file changed, 0 insertions(+), 0 deletions(-)

diff --git 
a/assets/documentation/online_help/oldversions/1.x/sources/OOo-1.1_help_src49.zip
 
b/assets/documentation/online_help/oldversions/1.x/sources/OOo-1.1_help_src49.zip
new file mode 100644
index 000..d8ec2f5
Binary files /dev/null and 
b/assets/documentation/online_help/oldversions/1.x/sources/OOo-1.1_help_src49.zip
 differ



[openoffice-org] 01/49: Migration of documentation/setup_guide2/1.1.x/gr/SETUP_GUIDE.pdf large asset

2020-11-01 Thread wave
This is an automated email from the ASF dual-hosted git repository.

wave pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/openoffice-org.git

commit a4d97c1b5145551154a1b419a2abf21e2023d847
Author: Dave Fisher 
AuthorDate: Sun Nov 1 14:17:45 2020 -0800

Migration of documentation/setup_guide2/1.1.x/gr/SETUP_GUIDE.pdf large asset
---
 .../setup_guide2/1.1.x/gr/SETUP_GUIDE.pdf | Bin 0 -> 4284074 bytes
 1 file changed, 0 insertions(+), 0 deletions(-)

diff --git a/assets/documentation/setup_guide2/1.1.x/gr/SETUP_GUIDE.pdf 
b/assets/documentation/setup_guide2/1.1.x/gr/SETUP_GUIDE.pdf
new file mode 100644
index 000..9afe138
Binary files /dev/null and 
b/assets/documentation/setup_guide2/1.1.x/gr/SETUP_GUIDE.pdf differ



[openoffice-org] 06/49: Migration of documentation/Samples_Templates/User/template_2_x/writer/shadamata_Writer_Img_src.zip large asset

2020-11-01 Thread wave
This is an automated email from the ASF dual-hosted git repository.

wave pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/openoffice-org.git

commit b0e843cfb73eadcd9ec8ff1a4be9e5756960bc40
Author: Dave Fisher 
AuthorDate: Sun Nov 1 14:17:46 2020 -0800

Migration of 
documentation/Samples_Templates/User/template_2_x/writer/shadamata_Writer_Img_src.zip
 large asset
---
 .../template_2_x/writer/shadamata_Writer_Img_src.zip  | Bin 0 -> 3402684 bytes
 1 file changed, 0 insertions(+), 0 deletions(-)

diff --git 
a/assets/documentation/Samples_Templates/User/template_2_x/writer/shadamata_Writer_Img_src.zip
 
b/assets/documentation/Samples_Templates/User/template_2_x/writer/shadamata_Writer_Img_src.zip
new file mode 100644
index 000..29c7d02
Binary files /dev/null and 
b/assets/documentation/Samples_Templates/User/template_2_x/writer/shadamata_Writer_Img_src.zip
 differ



[openoffice-org] 24/49: Migration of documentation/online_help/oldversions/1.x/migration/ooohelpmigration.tar.gz large asset

2020-11-01 Thread wave
This is an automated email from the ASF dual-hosted git repository.

wave pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/openoffice-org.git

commit 6e6ea6afa711b32803fc339e8c90c2e463d358df
Author: Dave Fisher 
AuthorDate: Sun Nov 1 14:17:49 2020 -0800

Migration of 
documentation/online_help/oldversions/1.x/migration/ooohelpmigration.tar.gz 
large asset
---
 .../oldversions/1.x/migration/ooohelpmigration.tar.gz | Bin 0 -> 3676160 bytes
 1 file changed, 0 insertions(+), 0 deletions(-)

diff --git 
a/assets/documentation/online_help/oldversions/1.x/migration/ooohelpmigration.tar.gz
 
b/assets/documentation/online_help/oldversions/1.x/migration/ooohelpmigration.tar.gz
new file mode 100644
index 000..54ae820
Binary files /dev/null and 
b/assets/documentation/online_help/oldversions/1.x/migration/ooohelpmigration.tar.gz
 differ



[openoffice-org] 43/49: Migration of documentation/contests/template_clipart_2006/judges/impress/impress_mbox.zip large asset

2020-11-01 Thread wave
This is an automated email from the ASF dual-hosted git repository.

wave pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/openoffice-org.git

commit 5d5326aceeb9e5493d5626a38a674804e8d48ce4
Author: Dave Fisher 
AuthorDate: Sun Nov 1 14:17:54 2020 -0800

Migration of 
documentation/contests/template_clipart_2006/judges/impress/impress_mbox.zip 
large asset
---
 .../judges/impress/impress_mbox.zip  | Bin 0 -> 24666189 bytes
 1 file changed, 0 insertions(+), 0 deletions(-)

diff --git 
a/assets/documentation/contests/template_clipart_2006/judges/impress/impress_mbox.zip
 
b/assets/documentation/contests/template_clipart_2006/judges/impress/impress_mbox.zip
new file mode 100644
index 000..3110ef8
Binary files /dev/null and 
b/assets/documentation/contests/template_clipart_2006/judges/impress/impress_mbox.zip
 differ



[openoffice-org] 38/49: Migration of documentation/tutorials/dennisdaniels/3_times_X_exp_3.swf large asset

2020-11-01 Thread wave
This is an automated email from the ASF dual-hosted git repository.

wave pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/openoffice-org.git

commit 226ed1b7db341296751979fe359d8c6dce0fc7d6
Author: Dave Fisher 
AuthorDate: Sun Nov 1 14:17:53 2020 -0800

Migration of documentation/tutorials/dennisdaniels/3_times_X_exp_3.swf 
large asset
---
 .../tutorials/dennisdaniels/3_times_X_exp_3.swf   | Bin 0 -> 4513894 bytes
 1 file changed, 0 insertions(+), 0 deletions(-)

diff --git a/assets/documentation/tutorials/dennisdaniels/3_times_X_exp_3.swf 
b/assets/documentation/tutorials/dennisdaniels/3_times_X_exp_3.swf
new file mode 100644
index 000..385d14b
Binary files /dev/null and 
b/assets/documentation/tutorials/dennisdaniels/3_times_X_exp_3.swf differ



[openoffice-org] 20/49: Migration of documentation/online_help/oldversions/1.x/sources/OOo-1.1_help_src86.zip large asset

2020-11-01 Thread wave
This is an automated email from the ASF dual-hosted git repository.

wave pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/openoffice-org.git

commit de79fee08846acc640854eb999bb1bb260341e71
Author: Dave Fisher 
AuthorDate: Sun Nov 1 14:17:48 2020 -0800

Migration of 
documentation/online_help/oldversions/1.x/sources/OOo-1.1_help_src86.zip large 
asset
---
 .../oldversions/1.x/sources/OOo-1.1_help_src86.zip   | Bin 0 -> 10511700 bytes
 1 file changed, 0 insertions(+), 0 deletions(-)

diff --git 
a/assets/documentation/online_help/oldversions/1.x/sources/OOo-1.1_help_src86.zip
 
b/assets/documentation/online_help/oldversions/1.x/sources/OOo-1.1_help_src86.zip
new file mode 100644
index 000..49b851b
Binary files /dev/null and 
b/assets/documentation/online_help/oldversions/1.x/sources/OOo-1.1_help_src86.zip
 differ



[openoffice-org] 28/49: Migration of documentation/manuals/OOo1.x.x/user_guide.sxw large asset

2020-11-01 Thread wave
This is an automated email from the ASF dual-hosted git repository.

wave pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/openoffice-org.git

commit 72fcdcf2bd0bda144a8ea0be9e4cd5b2c031b7cc
Author: Dave Fisher 
AuthorDate: Sun Nov 1 14:17:49 2020 -0800

Migration of documentation/manuals/OOo1.x.x/user_guide.sxw large asset
---
 assets/documentation/manuals/OOo1.x.x/user_guide.sxw | Bin 0 -> 4984873 bytes
 1 file changed, 0 insertions(+), 0 deletions(-)

diff --git a/assets/documentation/manuals/OOo1.x.x/user_guide.sxw 
b/assets/documentation/manuals/OOo1.x.x/user_guide.sxw
new file mode 100644
index 000..f492623
Binary files /dev/null and 
b/assets/documentation/manuals/OOo1.x.x/user_guide.sxw differ



[openoffice-org] 42/49: Migration of documentation/contests/template_clipart_2006/judges/writer/writer.zip large asset

2020-11-01 Thread wave
This is an automated email from the ASF dual-hosted git repository.

wave pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/openoffice-org.git

commit 3f737bb4fb66188302038bd415b710731f9f0ccb
Author: Dave Fisher 
AuthorDate: Sun Nov 1 14:17:53 2020 -0800

Migration of 
documentation/contests/template_clipart_2006/judges/writer/writer.zip large 
asset
---
 .../template_clipart_2006/judges/writer/writer.zip| Bin 0 -> 6851672 bytes
 1 file changed, 0 insertions(+), 0 deletions(-)

diff --git 
a/assets/documentation/contests/template_clipart_2006/judges/writer/writer.zip 
b/assets/documentation/contests/template_clipart_2006/judges/writer/writer.zip
new file mode 100644
index 000..ea1728e
Binary files /dev/null and 
b/assets/documentation/contests/template_clipart_2006/judges/writer/writer.zip 
differ



[openoffice-org] 11/49: Migration of documentation/HOW_TO/drawing_graphics/documentationdraw_en.sxw large asset

2020-11-01 Thread wave
This is an automated email from the ASF dual-hosted git repository.

wave pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/openoffice-org.git

commit af1468c51ab1b7ec68bbdf349afc6b7c7e4fade2
Author: Dave Fisher 
AuthorDate: Sun Nov 1 14:17:46 2020 -0800

Migration of documentation/HOW_TO/drawing_graphics/documentationdraw_en.sxw 
large asset
---
 .../HOW_TO/drawing_graphics/documentationdraw_en.sxw  | Bin 0 -> 5259973 bytes
 1 file changed, 0 insertions(+), 0 deletions(-)

diff --git 
a/assets/documentation/HOW_TO/drawing_graphics/documentationdraw_en.sxw 
b/assets/documentation/HOW_TO/drawing_graphics/documentationdraw_en.sxw
new file mode 100644
index 000..03c38d6
Binary files /dev/null and 
b/assets/documentation/HOW_TO/drawing_graphics/documentationdraw_en.sxw differ



[openoffice-org] 40/49: Migration of documentation/contests/template_clipart_2006/judges/calc/calc_mbox.zip large asset

2020-11-01 Thread wave
This is an automated email from the ASF dual-hosted git repository.

wave pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/openoffice-org.git

commit b5676352986ec93c29365197da239a81a5c93256
Author: Dave Fisher 
AuthorDate: Sun Nov 1 14:17:53 2020 -0800

Migration of 
documentation/contests/template_clipart_2006/judges/calc/calc_mbox.zip large 
asset
---
 .../template_clipart_2006/judges/calc/calc_mbox.zip   | Bin 0 -> 3174038 bytes
 1 file changed, 0 insertions(+), 0 deletions(-)

diff --git 
a/assets/documentation/contests/template_clipart_2006/judges/calc/calc_mbox.zip 
b/assets/documentation/contests/template_clipart_2006/judges/calc/calc_mbox.zip
new file mode 100644
index 000..a269095
Binary files /dev/null and 
b/assets/documentation/contests/template_clipart_2006/judges/calc/calc_mbox.zip 
differ



[openoffice-org] 27/49: Migration of documentation/manuals/userguide3/0500IG3-ImpressGuideOOo3.pdf large asset

2020-11-01 Thread wave
This is an automated email from the ASF dual-hosted git repository.

wave pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/openoffice-org.git

commit 7bfc428fb0dff0f63e512630cd70f494984f07ba
Author: Dave Fisher 
AuthorDate: Sun Nov 1 14:17:49 2020 -0800

Migration of documentation/manuals/userguide3/0500IG3-ImpressGuideOOo3.pdf 
large asset
---
 .../manuals/userguide3/0500IG3-ImpressGuideOOo3.pdf   | Bin 0 -> 5518054 bytes
 1 file changed, 0 insertions(+), 0 deletions(-)

diff --git 
a/assets/documentation/manuals/userguide3/0500IG3-ImpressGuideOOo3.pdf 
b/assets/documentation/manuals/userguide3/0500IG3-ImpressGuideOOo3.pdf
new file mode 100644
index 000..49b34e1
Binary files /dev/null and 
b/assets/documentation/manuals/userguide3/0500IG3-ImpressGuideOOo3.pdf differ



[openoffice-org] 15/49: Migration of documentation/online_help/oldversions/1.x/sources/OOo-1.1_help_src88.zip large asset

2020-11-01 Thread wave
This is an automated email from the ASF dual-hosted git repository.

wave pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/openoffice-org.git

commit 7aacc5374a2aadc0418f4802245a814661b99230
Author: Dave Fisher 
AuthorDate: Sun Nov 1 14:17:47 2020 -0800

Migration of 
documentation/online_help/oldversions/1.x/sources/OOo-1.1_help_src88.zip large 
asset
---
 .../oldversions/1.x/sources/OOo-1.1_help_src88.zip   | Bin 0 -> 10751250 bytes
 1 file changed, 0 insertions(+), 0 deletions(-)

diff --git 
a/assets/documentation/online_help/oldversions/1.x/sources/OOo-1.1_help_src88.zip
 
b/assets/documentation/online_help/oldversions/1.x/sources/OOo-1.1_help_src88.zip
new file mode 100644
index 000..32b0d95
Binary files /dev/null and 
b/assets/documentation/online_help/oldversions/1.x/sources/OOo-1.1_help_src88.zip
 differ



[openoffice-org] 32/49: Migration of documentation/manuals/oooauthors/DrawGuide.pdf large asset

2020-11-01 Thread wave
This is an automated email from the ASF dual-hosted git repository.

wave pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/openoffice-org.git

commit c246445e1a7693aeaef35d2d04ba438d487a2374
Author: Dave Fisher 
AuthorDate: Sun Nov 1 14:17:50 2020 -0800

Migration of documentation/manuals/oooauthors/DrawGuide.pdf large asset
---
 assets/documentation/manuals/oooauthors/DrawGuide.pdf | Bin 0 -> 3979611 bytes
 1 file changed, 0 insertions(+), 0 deletions(-)

diff --git a/assets/documentation/manuals/oooauthors/DrawGuide.pdf 
b/assets/documentation/manuals/oooauthors/DrawGuide.pdf
new file mode 100644
index 000..a0a9080
Binary files /dev/null and 
b/assets/documentation/manuals/oooauthors/DrawGuide.pdf differ



[openoffice-org] 14/49: Migration of documentation/online_help/oldversions/1.x/sources/OOo-1.1_help_src39.zip large asset

2020-11-01 Thread wave
This is an automated email from the ASF dual-hosted git repository.

wave pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/openoffice-org.git

commit 2b280d0e62665e36d987795bd0a654ad47832bd7
Author: Dave Fisher 
AuthorDate: Sun Nov 1 14:17:47 2020 -0800

Migration of 
documentation/online_help/oldversions/1.x/sources/OOo-1.1_help_src39.zip large 
asset
---
 .../oldversions/1.x/sources/OOo-1.1_help_src39.zip   | Bin 0 -> 10663947 bytes
 1 file changed, 0 insertions(+), 0 deletions(-)

diff --git 
a/assets/documentation/online_help/oldversions/1.x/sources/OOo-1.1_help_src39.zip
 
b/assets/documentation/online_help/oldversions/1.x/sources/OOo-1.1_help_src39.zip
new file mode 100644
index 000..c7b5793
Binary files /dev/null and 
b/assets/documentation/online_help/oldversions/1.x/sources/OOo-1.1_help_src39.zip
 differ



[openoffice-org] 10/49: Migration of documentation/HOW_TO/drawing_graphics/documentationdraw_en.pdf large asset

2020-11-01 Thread wave
This is an automated email from the ASF dual-hosted git repository.

wave pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/openoffice-org.git

commit 7afd75d550363a0f6b084d54e8f5f1fffb77ac98
Author: Dave Fisher 
AuthorDate: Sun Nov 1 14:17:46 2020 -0800

Migration of documentation/HOW_TO/drawing_graphics/documentationdraw_en.pdf 
large asset
---
 .../HOW_TO/drawing_graphics/documentationdraw_en.pdf  | Bin 0 -> 4215923 bytes
 1 file changed, 0 insertions(+), 0 deletions(-)

diff --git 
a/assets/documentation/HOW_TO/drawing_graphics/documentationdraw_en.pdf 
b/assets/documentation/HOW_TO/drawing_graphics/documentationdraw_en.pdf
new file mode 100644
index 000..9378bfd
Binary files /dev/null and 
b/assets/documentation/HOW_TO/drawing_graphics/documentationdraw_en.pdf differ



[openoffice-org] 33/49: Migration of documentation/conceptualguide/OpenOfficeOrg3LessonFiles.zip large asset

2020-11-01 Thread wave
This is an automated email from the ASF dual-hosted git repository.

wave pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/openoffice-org.git

commit 429afdde151be9ffef812713eb202f47a847fb41
Author: Dave Fisher 
AuthorDate: Sun Nov 1 14:17:50 2020 -0800

Migration of documentation/conceptualguide/OpenOfficeOrg3LessonFiles.zip 
large asset
---
 .../conceptualguide/OpenOfficeOrg3LessonFiles.zip | Bin 0 -> 6673434 bytes
 1 file changed, 0 insertions(+), 0 deletions(-)

diff --git a/assets/documentation/conceptualguide/OpenOfficeOrg3LessonFiles.zip 
b/assets/documentation/conceptualguide/OpenOfficeOrg3LessonFiles.zip
new file mode 100644
index 000..28ddd24
Binary files /dev/null and 
b/assets/documentation/conceptualguide/OpenOfficeOrg3LessonFiles.zip differ



[openoffice-org] 44/49: Migration of documentation/contests/template_clipart_2006/judges/impress/impress.zip large asset

2020-11-01 Thread wave
This is an automated email from the ASF dual-hosted git repository.

wave pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/openoffice-org.git

commit 0ee63b8612c345a0d06c8fa8ff60887dedadcb3f
Author: Dave Fisher 
AuthorDate: Sun Nov 1 14:17:54 2020 -0800

Migration of 
documentation/contests/template_clipart_2006/judges/impress/impress.zip large 
asset
---
 .../template_clipart_2006/judges/impress/impress.zip | Bin 0 -> 22216766 bytes
 1 file changed, 0 insertions(+), 0 deletions(-)

diff --git 
a/assets/documentation/contests/template_clipart_2006/judges/impress/impress.zip
 
b/assets/documentation/contests/template_clipart_2006/judges/impress/impress.zip
new file mode 100644
index 000..dca14c2
Binary files /dev/null and 
b/assets/documentation/contests/template_clipart_2006/judges/impress/impress.zip
 differ



[openoffice-org] 05/49: Migration of documentation/Samples_Templates/User/template_2_x/All2xTemplates.zip large asset

2020-11-01 Thread wave
This is an automated email from the ASF dual-hosted git repository.

wave pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/openoffice-org.git

commit 5dfb32b456185e35350e380cb2ea6119d3c9d4cf
Author: Dave Fisher 
AuthorDate: Sun Nov 1 14:17:45 2020 -0800

Migration of 
documentation/Samples_Templates/User/template_2_x/All2xTemplates.zip large asset
---
 .../User/template_2_x/All2xTemplates.zip | Bin 0 -> 19956109 bytes
 1 file changed, 0 insertions(+), 0 deletions(-)

diff --git 
a/assets/documentation/Samples_Templates/User/template_2_x/All2xTemplates.zip 
b/assets/documentation/Samples_Templates/User/template_2_x/All2xTemplates.zip
new file mode 100644
index 000..e39c0c9
Binary files /dev/null and 
b/assets/documentation/Samples_Templates/User/template_2_x/All2xTemplates.zip 
differ



[openoffice-org] 07/49: Migration of documentation/Samples_Templates/User/template_2_x/impress/shadamata_Impress_Img_src.zip large asset

2020-11-01 Thread wave
This is an automated email from the ASF dual-hosted git repository.

wave pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/openoffice-org.git

commit 0bc32b296efe29852dfaac08f35f4e46b1d3561c
Author: Dave Fisher 
AuthorDate: Sun Nov 1 14:17:46 2020 -0800

Migration of 
documentation/Samples_Templates/User/template_2_x/impress/shadamata_Impress_Img_src.zip
 large asset
---
 .../impress/shadamata_Impress_Img_src.zip | Bin 0 -> 3587318 bytes
 1 file changed, 0 insertions(+), 0 deletions(-)

diff --git 
a/assets/documentation/Samples_Templates/User/template_2_x/impress/shadamata_Impress_Img_src.zip
 
b/assets/documentation/Samples_Templates/User/template_2_x/impress/shadamata_Impress_Img_src.zip
new file mode 100644
index 000..88fcbad
Binary files /dev/null and 
b/assets/documentation/Samples_Templates/User/template_2_x/impress/shadamata_Impress_Img_src.zip
 differ



[openoffice-org] 36/49: Migration of documentation/conceptualguide/OpenOfficeOrg3_Course_Package.iso large asset

2020-11-01 Thread wave
This is an automated email from the ASF dual-hosted git repository.

wave pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/openoffice-org.git

commit 0b3af3ec9060b6a2a544def8a5c5be7291c70263
Author: Dave Fisher 
AuthorDate: Sun Nov 1 14:17:52 2020 -0800

Migration of 
documentation/conceptualguide/OpenOfficeOrg3_Course_Package.iso large asset
---
 .../OpenOfficeOrg3_Course_Package.iso| Bin 0 -> 25909248 bytes
 1 file changed, 0 insertions(+), 0 deletions(-)

diff --git 
a/assets/documentation/conceptualguide/OpenOfficeOrg3_Course_Package.iso 
b/assets/documentation/conceptualguide/OpenOfficeOrg3_Course_Package.iso
new file mode 100644
index 000..1362d62
Binary files /dev/null and 
b/assets/documentation/conceptualguide/OpenOfficeOrg3_Course_Package.iso differ



[openoffice-org] 03/49: Migration of documentation/setup_guide2/2.x/en/SETUP_GUIDE.zip large asset

2020-11-01 Thread wave
This is an automated email from the ASF dual-hosted git repository.

wave pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/openoffice-org.git

commit d0f9a90e4189f44f937b9cacda67137a9db6c371
Author: Dave Fisher 
AuthorDate: Sun Nov 1 14:17:45 2020 -0800

Migration of documentation/setup_guide2/2.x/en/SETUP_GUIDE.zip large asset
---
 .../documentation/setup_guide2/2.x/en/SETUP_GUIDE.zip | Bin 0 -> 6785192 bytes
 1 file changed, 0 insertions(+), 0 deletions(-)

diff --git a/assets/documentation/setup_guide2/2.x/en/SETUP_GUIDE.zip 
b/assets/documentation/setup_guide2/2.x/en/SETUP_GUIDE.zip
new file mode 100644
index 000..5ab7c2a
Binary files /dev/null and 
b/assets/documentation/setup_guide2/2.x/en/SETUP_GUIDE.zip differ



[openoffice-org] 13/49: Migration of documentation/online_help/oldversions/1.x/sources/OOo-1.0_help_src_01.zip large asset

2020-11-01 Thread wave
This is an automated email from the ASF dual-hosted git repository.

wave pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/openoffice-org.git

commit 61c2ecf8fc9d2366adb1178afcf810dfb89ab68b
Author: Dave Fisher 
AuthorDate: Sun Nov 1 14:17:47 2020 -0800

Migration of 
documentation/online_help/oldversions/1.x/sources/OOo-1.0_help_src_01.zip large 
asset
---
 .../oldversions/1.x/sources/OOo-1.0_help_src_01.zip   | Bin 0 -> 9998015 bytes
 1 file changed, 0 insertions(+), 0 deletions(-)

diff --git 
a/assets/documentation/online_help/oldversions/1.x/sources/OOo-1.0_help_src_01.zip
 
b/assets/documentation/online_help/oldversions/1.x/sources/OOo-1.0_help_src_01.zip
new file mode 100644
index 000..df09461
Binary files /dev/null and 
b/assets/documentation/online_help/oldversions/1.x/sources/OOo-1.0_help_src_01.zip
 differ



[openoffice-org] 34/49: Migration of documentation/conceptualguide/conceptualguideOOo3_audiobook_0-1alpha.zip large asset

2020-11-01 Thread wave
This is an automated email from the ASF dual-hosted git repository.

wave pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/openoffice-org.git

commit 9ab45d8218e779cf7265830390533a3faa65255d
Author: Dave Fisher 
AuthorDate: Sun Nov 1 14:17:52 2020 -0800

Migration of 
documentation/conceptualguide/conceptualguideOOo3_audiobook_0-1alpha.zip large 
asset
---
 .../conceptualguideOOo3_audiobook_0-1alpha.zip  | Bin 0 -> 331987761 bytes
 1 file changed, 0 insertions(+), 0 deletions(-)

diff --git 
a/assets/documentation/conceptualguide/conceptualguideOOo3_audiobook_0-1alpha.zip
 
b/assets/documentation/conceptualguide/conceptualguideOOo3_audiobook_0-1alpha.zip
new file mode 100644
index 000..bd872b8
Binary files /dev/null and 
b/assets/documentation/conceptualguide/conceptualguideOOo3_audiobook_0-1alpha.zip
 differ



[openoffice-org] 29/49: Migration of documentation/manuals/OOo1.x.x/user_guide.pdf large asset

2020-11-01 Thread wave
This is an automated email from the ASF dual-hosted git repository.

wave pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/openoffice-org.git

commit c8f5e51c1402459f8816204a0bef76aa3afae16d
Author: Dave Fisher 
AuthorDate: Sun Nov 1 14:17:50 2020 -0800

Migration of documentation/manuals/OOo1.x.x/user_guide.pdf large asset
---
 assets/documentation/manuals/OOo1.x.x/user_guide.pdf | Bin 0 -> 6138078 bytes
 1 file changed, 0 insertions(+), 0 deletions(-)

diff --git a/assets/documentation/manuals/OOo1.x.x/user_guide.pdf 
b/assets/documentation/manuals/OOo1.x.x/user_guide.pdf
new file mode 100644
index 000..baa30ba
Binary files /dev/null and 
b/assets/documentation/manuals/OOo1.x.x/user_guide.pdf differ



[openoffice-org] 19/49: Migration of documentation/online_help/oldversions/1.x/sources/OOo-1.1_help_src82.zip large asset

2020-11-01 Thread wave
This is an automated email from the ASF dual-hosted git repository.

wave pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/openoffice-org.git

commit e61d1f41ccd2c5999e124c8dbc787448d9204f32
Author: Dave Fisher 
AuthorDate: Sun Nov 1 14:17:48 2020 -0800

Migration of 
documentation/online_help/oldversions/1.x/sources/OOo-1.1_help_src82.zip large 
asset
---
 .../oldversions/1.x/sources/OOo-1.1_help_src82.zip   | Bin 0 -> 10704966 bytes
 1 file changed, 0 insertions(+), 0 deletions(-)

diff --git 
a/assets/documentation/online_help/oldversions/1.x/sources/OOo-1.1_help_src82.zip
 
b/assets/documentation/online_help/oldversions/1.x/sources/OOo-1.1_help_src82.zip
new file mode 100644
index 000..b3c35c9
Binary files /dev/null and 
b/assets/documentation/online_help/oldversions/1.x/sources/OOo-1.1_help_src82.zip
 differ



[openoffice-org] 21/49: Migration of documentation/online_help/oldversions/1.x/sources/OOo-1.1_help_src46.zip large asset

2020-11-01 Thread wave
This is an automated email from the ASF dual-hosted git repository.

wave pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/openoffice-org.git

commit eafb2324850d81f6ef710784850677b95beeacff
Author: Dave Fisher 
AuthorDate: Sun Nov 1 14:17:48 2020 -0800

Migration of 
documentation/online_help/oldversions/1.x/sources/OOo-1.1_help_src46.zip large 
asset
---
 .../oldversions/1.x/sources/OOo-1.1_help_src46.zip   | Bin 0 -> 10437395 bytes
 1 file changed, 0 insertions(+), 0 deletions(-)

diff --git 
a/assets/documentation/online_help/oldversions/1.x/sources/OOo-1.1_help_src46.zip
 
b/assets/documentation/online_help/oldversions/1.x/sources/OOo-1.1_help_src46.zip
new file mode 100644
index 000..6236e5d
Binary files /dev/null and 
b/assets/documentation/online_help/oldversions/1.x/sources/OOo-1.1_help_src46.zip
 differ



[openoffice-org] 26/49: Migration of documentation/manuals/userguide3/0100GS3-GettingStartedOOo3.pdf large asset

2020-11-01 Thread wave
This is an automated email from the ASF dual-hosted git repository.

wave pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/openoffice-org.git

commit 7d81f3b8f6b6c876cd9e8f747d1ed4884a51c1e6
Author: Dave Fisher 
AuthorDate: Sun Nov 1 14:17:49 2020 -0800

Migration of 
documentation/manuals/userguide3/0100GS3-GettingStartedOOo3.pdf large asset
---
 .../manuals/userguide3/0100GS3-GettingStartedOOo3.pdf | Bin 0 -> 6284742 bytes
 1 file changed, 0 insertions(+), 0 deletions(-)

diff --git 
a/assets/documentation/manuals/userguide3/0100GS3-GettingStartedOOo3.pdf 
b/assets/documentation/manuals/userguide3/0100GS3-GettingStartedOOo3.pdf
new file mode 100644
index 000..92df483
Binary files /dev/null and 
b/assets/documentation/manuals/userguide3/0100GS3-GettingStartedOOo3.pdf differ



[openoffice-org] 22/49: Migration of documentation/online_help/oldversions/1.x/sources/OOo-1.1_help_src34.zip large asset

2020-11-01 Thread wave
This is an automated email from the ASF dual-hosted git repository.

wave pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/openoffice-org.git

commit 30b25269f3f6ddb6340e2fb68a7acff086dd7c94
Author: Dave Fisher 
AuthorDate: Sun Nov 1 14:17:48 2020 -0800

Migration of 
documentation/online_help/oldversions/1.x/sources/OOo-1.1_help_src34.zip large 
asset
---
 .../oldversions/1.x/sources/OOo-1.1_help_src34.zip   | Bin 0 -> 10731811 bytes
 1 file changed, 0 insertions(+), 0 deletions(-)

diff --git 
a/assets/documentation/online_help/oldversions/1.x/sources/OOo-1.1_help_src34.zip
 
b/assets/documentation/online_help/oldversions/1.x/sources/OOo-1.1_help_src34.zip
new file mode 100644
index 000..6678a6a
Binary files /dev/null and 
b/assets/documentation/online_help/oldversions/1.x/sources/OOo-1.1_help_src34.zip
 differ



[openoffice-org] 37/49: Migration of documentation/tutorials/dennisdaniels/OO_xml_forms_needs_better_docs_and_examples.swf large asset

2020-11-01 Thread wave
This is an automated email from the ASF dual-hosted git repository.

wave pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/openoffice-org.git

commit baf28a56e91d98e20301afdd3009f6b580030f28
Author: Dave Fisher 
AuthorDate: Sun Nov 1 14:17:53 2020 -0800

Migration of 
documentation/tutorials/dennisdaniels/OO_xml_forms_needs_better_docs_and_examples.swf
 large asset
---
 .../OO_xml_forms_needs_better_docs_and_examples.swf   | Bin 0 -> 5651495 bytes
 1 file changed, 0 insertions(+), 0 deletions(-)

diff --git 
a/assets/documentation/tutorials/dennisdaniels/OO_xml_forms_needs_better_docs_and_examples.swf
 
b/assets/documentation/tutorials/dennisdaniels/OO_xml_forms_needs_better_docs_and_examples.swf
new file mode 100644
index 000..31c3321
Binary files /dev/null and 
b/assets/documentation/tutorials/dennisdaniels/OO_xml_forms_needs_better_docs_and_examples.swf
 differ



[openoffice-org] 46/49: Migration of documentation/contests/template_clipart_2006/judges/clipart/draw_mbox.zip large asset

2020-11-01 Thread wave
This is an automated email from the ASF dual-hosted git repository.

wave pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/openoffice-org.git

commit c0780acad60b99f1974edf35331bd09c801ec13e
Author: Dave Fisher 
AuthorDate: Sun Nov 1 14:17:54 2020 -0800

Migration of 
documentation/contests/template_clipart_2006/judges/clipart/draw_mbox.zip large 
asset
---
 .../judges/clipart/draw_mbox.zip  | Bin 0 -> 3281480 bytes
 1 file changed, 0 insertions(+), 0 deletions(-)

diff --git 
a/assets/documentation/contests/template_clipart_2006/judges/clipart/draw_mbox.zip
 
b/assets/documentation/contests/template_clipart_2006/judges/clipart/draw_mbox.zip
new file mode 100644
index 000..74cc861
Binary files /dev/null and 
b/assets/documentation/contests/template_clipart_2006/judges/clipart/draw_mbox.zip
 differ



[openoffice-org] 02/49: Migration of documentation/setup_guide2/2.x/id/SETUP_GUIDE_ID.zip large asset

2020-11-01 Thread wave
This is an automated email from the ASF dual-hosted git repository.

wave pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/openoffice-org.git

commit b2efb3972fe0a238cf9bbf3f232431e0a1eb49b2
Author: Dave Fisher 
AuthorDate: Sun Nov 1 14:17:45 2020 -0800

Migration of documentation/setup_guide2/2.x/id/SETUP_GUIDE_ID.zip large 
asset
---
 .../setup_guide2/2.x/id/SETUP_GUIDE_ID.zip| Bin 0 -> 4614335 bytes
 1 file changed, 0 insertions(+), 0 deletions(-)

diff --git a/assets/documentation/setup_guide2/2.x/id/SETUP_GUIDE_ID.zip 
b/assets/documentation/setup_guide2/2.x/id/SETUP_GUIDE_ID.zip
new file mode 100644
index 000..65e2e29
Binary files /dev/null and 
b/assets/documentation/setup_guide2/2.x/id/SETUP_GUIDE_ID.zip differ



[openoffice-org] 30/49: Migration of documentation/manuals/OOo2.x/user_guide2_draft.pdf large asset

2020-11-01 Thread wave
This is an automated email from the ASF dual-hosted git repository.

wave pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/openoffice-org.git

commit 9a221310a3dfe538da51b6c998afbc2a2e0116b0
Author: Dave Fisher 
AuthorDate: Sun Nov 1 14:17:50 2020 -0800

Migration of documentation/manuals/OOo2.x/user_guide2_draft.pdf large asset
---
 .../manuals/OOo2.x/user_guide2_draft.pdf  | Bin 0 -> 8003221 bytes
 1 file changed, 0 insertions(+), 0 deletions(-)

diff --git a/assets/documentation/manuals/OOo2.x/user_guide2_draft.pdf 
b/assets/documentation/manuals/OOo2.x/user_guide2_draft.pdf
new file mode 100644
index 000..2d152a1
Binary files /dev/null and 
b/assets/documentation/manuals/OOo2.x/user_guide2_draft.pdf differ



[openoffice-org] 45/49: Migration of documentation/contests/template_clipart_2006/judges/clipart/clipart_mbox.zip large asset

2020-11-01 Thread wave
This is an automated email from the ASF dual-hosted git repository.

wave pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/openoffice-org.git

commit 618acfa406c3b8c82afbc1e563c7c824c31c65b4
Author: Dave Fisher 
AuthorDate: Sun Nov 1 14:17:54 2020 -0800

Migration of 
documentation/contests/template_clipart_2006/judges/clipart/clipart_mbox.zip 
large asset
---
 .../judges/clipart/clipart_mbox.zip  | Bin 0 -> 16169723 bytes
 1 file changed, 0 insertions(+), 0 deletions(-)

diff --git 
a/assets/documentation/contests/template_clipart_2006/judges/clipart/clipart_mbox.zip
 
b/assets/documentation/contests/template_clipart_2006/judges/clipart/clipart_mbox.zip
new file mode 100644
index 000..dc523c6
Binary files /dev/null and 
b/assets/documentation/contests/template_clipart_2006/judges/clipart/clipart_mbox.zip
 differ



[openoffice-org] 25/49: Migration of documentation/manuals/userguide3/0200WG3-WriterGuide.pdf large asset

2020-11-01 Thread wave
This is an automated email from the ASF dual-hosted git repository.

wave pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/openoffice-org.git

commit 2f116b0f055701cdd94d92c5b2eccf5371669354
Author: Dave Fisher 
AuthorDate: Sun Nov 1 14:17:49 2020 -0800

Migration of documentation/manuals/userguide3/0200WG3-WriterGuide.pdf large 
asset
---
 .../manuals/userguide3/0200WG3-WriterGuide.pdf| Bin 0 -> 9990426 bytes
 1 file changed, 0 insertions(+), 0 deletions(-)

diff --git a/assets/documentation/manuals/userguide3/0200WG3-WriterGuide.pdf 
b/assets/documentation/manuals/userguide3/0200WG3-WriterGuide.pdf
new file mode 100644
index 000..157b9ea
Binary files /dev/null and 
b/assets/documentation/manuals/userguide3/0200WG3-WriterGuide.pdf differ



[openoffice-org] 04/49: Migration of documentation/Samples_Templates/User/gallery/clipart_th.zip large asset

2020-11-01 Thread wave
This is an automated email from the ASF dual-hosted git repository.

wave pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/openoffice-org.git

commit 580e14e615c97c942858d30421f29773c88cb5f1
Author: Dave Fisher 
AuthorDate: Sun Nov 1 14:17:45 2020 -0800

Migration of documentation/Samples_Templates/User/gallery/clipart_th.zip 
large asset
---
 .../Samples_Templates/User/gallery/clipart_th.zip | Bin 0 -> 3310245 bytes
 1 file changed, 0 insertions(+), 0 deletions(-)

diff --git a/assets/documentation/Samples_Templates/User/gallery/clipart_th.zip 
b/assets/documentation/Samples_Templates/User/gallery/clipart_th.zip
new file mode 100644
index 000..0627073
Binary files /dev/null and 
b/assets/documentation/Samples_Templates/User/gallery/clipart_th.zip differ



[openoffice-org] 18/49: Migration of documentation/online_help/oldversions/1.x/sources/OOo-1.1_help_src81.zip large asset

2020-11-01 Thread wave
This is an automated email from the ASF dual-hosted git repository.

wave pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/openoffice-org.git

commit 4765315c130e35bf5927ed76929d5ff30c6a898c
Author: Dave Fisher 
AuthorDate: Sun Nov 1 14:17:48 2020 -0800

Migration of 
documentation/online_help/oldversions/1.x/sources/OOo-1.1_help_src81.zip large 
asset
---
 .../oldversions/1.x/sources/OOo-1.1_help_src81.zip   | Bin 0 -> 10939075 bytes
 1 file changed, 0 insertions(+), 0 deletions(-)

diff --git 
a/assets/documentation/online_help/oldversions/1.x/sources/OOo-1.1_help_src81.zip
 
b/assets/documentation/online_help/oldversions/1.x/sources/OOo-1.1_help_src81.zip
new file mode 100644
index 000..cbffe12
Binary files /dev/null and 
b/assets/documentation/online_help/oldversions/1.x/sources/OOo-1.1_help_src81.zip
 differ



[openoffice-org] 12/49: Migration of documentation/online_help/oldversions/1.x/sources/OOo-1.1_help_src01.zip large asset

2020-11-01 Thread wave
This is an automated email from the ASF dual-hosted git repository.

wave pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/openoffice-org.git

commit 5f9fbd9629689a35948dfaaf05e505a8a2906d1d
Author: Dave Fisher 
AuthorDate: Sun Nov 1 14:17:46 2020 -0800

Migration of 
documentation/online_help/oldversions/1.x/sources/OOo-1.1_help_src01.zip large 
asset
---
 .../oldversions/1.x/sources/OOo-1.1_help_src01.zip   | Bin 0 -> 10462634 bytes
 1 file changed, 0 insertions(+), 0 deletions(-)

diff --git 
a/assets/documentation/online_help/oldversions/1.x/sources/OOo-1.1_help_src01.zip
 
b/assets/documentation/online_help/oldversions/1.x/sources/OOo-1.1_help_src01.zip
new file mode 100644
index 000..1af5d3e
Binary files /dev/null and 
b/assets/documentation/online_help/oldversions/1.x/sources/OOo-1.1_help_src01.zip
 differ



[openoffice-org] 39/49: Migration of documentation/id/Contrib/berkasberkaspanduanwriter.zip large asset

2020-11-01 Thread wave
This is an automated email from the ASF dual-hosted git repository.

wave pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/openoffice-org.git

commit 093a5ba280c6b1d435ae46aebaeed9dad20ec612
Author: Dave Fisher 
AuthorDate: Sun Nov 1 14:17:53 2020 -0800

Migration of documentation/id/Contrib/berkasberkaspanduanwriter.zip large 
asset
---
 .../id/Contrib/berkasberkaspanduanwriter.zip | Bin 0 -> 13244824 bytes
 1 file changed, 0 insertions(+), 0 deletions(-)

diff --git a/assets/documentation/id/Contrib/berkasberkaspanduanwriter.zip 
b/assets/documentation/id/Contrib/berkasberkaspanduanwriter.zip
new file mode 100644
index 000..ee847bd
Binary files /dev/null and 
b/assets/documentation/id/Contrib/berkasberkaspanduanwriter.zip differ



[openoffice-org] branch asf-staging updated: git-site-role commit from build_staging.sh

2020-11-01 Thread git-site-role
This is an automated email from the ASF dual-hosted git repository.

git-site-role pushed a commit to branch asf-staging
in repository https://gitbox.apache.org/repos/asf/openoffice-org.git


The following commit(s) were added to refs/heads/asf-staging by this push:
 new cffac8c  git-site-role commit from build_staging.sh
cffac8c is described below

commit cffac8c574a4e1ec7a4fc496280485530cd81889
Author: jenkins 
AuthorDate: Sun Nov 1 22:18:57 2020 +

git-site-role commit from build_staging.sh
---
 content/feed.xml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/content/feed.xml b/content/feed.xml
index 6af8438..a1eac9b 100644
--- a/content/feed.xml
+++ b/content/feed.xml
@@ -6,8 +6,8 @@
 http://localhost:8820/feed.xml; rel="self" 
type="application/rss+xml" />
 OpenOffice.org Feed
 en-us
-Sun, 1 Nov 2020 22:18:10 +
-Sun, 1 Nov 2020 22:18:10 +
+Sun, 1 Nov 2020 22:18:53 +
+Sun, 1 Nov 2020 22:18:53 +
 
 




[openoffice-org] 02/02: Migration of why Markdown pages

2020-11-01 Thread wave
This is an automated email from the ASF dual-hosted git repository.

wave pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/openoffice-org.git

commit 631fb474c79abf9007cb6da41a64f56510c30832
Author: Dave Fisher 
AuthorDate: Sun Nov 1 14:16:54 2020 -0800

Migration of why Markdown pages
---
 content/why/index.md  | 30 +
 content/why/leftnav.md| 25 +++
 content/why/why_compliance.md | 70 +++
 content/why/why_easy.md   | 20 +
 content/why/why_edu.md| 21 ++
 content/why/why_foss.md   | 21 ++
 content/why/why_free.md   | 19 +
 content/why/why_gov.md| 21 ++
 content/why/why_great.md  | 19 +
 content/why/why_new_computers.md  | 15 +++
 content/why/why_nfp.md| 21 ++
 content/why/why_odf.md| 39 +
 content/why/why_oem.md| 21 ++
 content/why/why_office2003-end-of-life.md | 19 +
 content/why/why_other.md  | 27 
 content/why/why_sme.md| 21 ++
 content/why/why_volunteers.md | 30 +
 17 files changed, 439 insertions(+)

diff --git a/content/why/index.md b/content/why/index.md
new file mode 100644
index 000..ce7a6a4
--- /dev/null
+++ b/content/why/index.md
@@ -0,0 +1,30 @@
+type=page
+title=Why Apache OpenOffice
+notice=https://www.apache.org/licenses/LICENSE-2.0
+~~
+## Why should I use Apache OpenOffice?
+
+![Why Apache OpenOffice](/images/AOO_logos/orb.jpg) # {.rfloatimg}
+
+Apache OpenOffice is the leading **open-source** **office software suite** for 
**word processing**, **spreadsheets**, **presentations**, **graphics**, 
**databases** and more. It is available in **many languages** and works on all 
**common computers**. It stores all your data in an **international open 
standard format** and can also read and write files from other common office 
software packages. It can be downloaded and used completely **free of charge** 
for **any purpose**.
+
+  - [Great software](why_great.html)
+
+Apache OpenOffice is the result of over twenty years' software 
engineering. Designed from the start as a single piece of software, it has a 
consistency other products cannot match. A completely open development process 
means that anyone can report bugs, request new features, or enhance the 
software. The result: Apache OpenOffice does everything you want your office 
software to do, the way you want it to.
+
+  - [Easy to use](why_easy.html)
+
+Apache OpenOffice is easy to learn, and if you're already using another 
office software package, you'll take to OpenOffice straight away. Our 
world-wide native-language community means that OpenOffice is probably 
available and supported in your own language. And if you already have files 
from another office package - OpenOffice will probably read them with no 
difficulty.
+
+  - [and it's free](why_free.html)
+ 
+Best of all, Apache OpenOffice can be downloaded and used entirely 
**free** of any license fees. Like all Apache Software Foundation software, 
Apache OpenOffice is [free to use](http://www.apache.org/free/). Apache 
OpenOffice is released under the [Apache 2.0 
License](http://www.apache.org/licenses/LICENSE-2.0.html). This means you may 
use it for any purpose - domestic, commercial, educational, public 
administration. You may install it on as many computers as you like. You may 
make c [...]
+
+## Where is Apache OpenOffice currently used?
+
+  - [Governments](why_gov.html "Why Apache OpenOffice for Public 
Administration")
+  - [Education](why_edu.html "Why Apache OpenOffice for Education")
+  - [Businesses](why_sme.html "Why Apache OpenOffice for Businesses")
+  - [Not for profits](why_nfp.html "Why Apache OpenOffice for Not For Profits")
+  - [IT Businesses](why_oem.html "Why Apache OpenOffice for IT businesses")
+  - [F/OSS advocates](why_foss.html "Why Apache OpenOffice for 
Free/Open-Source Systems advocates")
diff --git a/content/why/leftnav.md b/content/why/leftnav.md
new file mode 100644
index 000..85114ed
--- /dev/null
+++ b/content/why/leftnav.md
@@ -0,0 +1,25 @@
+type=navigator
+divid=leftnav
+~~
+# Why
+
+  - [Great software](/why/why_great.html)
+  - [Easy to use](/why/why_easy.html)
+  - [Free software](/why/why_free.html)
+
+# Where
+
+  - [Governments](/why/why_gov.html)
+  - [Education](/why/why_edu.html)
+  - [Businesses](/why/why_sme.html)
+  - [Not for profits](/why/why_nfp.html)
+  - [IT Businesses](/why/why_oem.html)
+  - [F/OSS advocates](/why/why_foss.html)
+
+# More reasons
+
+  - [ODF](/why/why_odf.html)
+  - [Volunteers](/why/why_volunteers.html)
+  - [New Computers](/why/why_new_computers.html)
+  - [Compliance](/why/why_compliance.html)
+  - 

[openoffice-org] 01/02: Migration of why assets

2020-11-01 Thread wave
This is an automated email from the ASF dual-hosted git repository.

wave pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/openoffice-org.git

commit 1977ddc00ae513924f1f5cf50c37a74e3b91ca03
Author: Dave Fisher 
AuthorDate: Sun Nov 1 14:16:54 2020 -0800

Migration of why assets
---
 assets/why/images/shell.png | Bin 0 -> 14853 bytes
 assets/why/images/why_easy.png  | Bin 0 -> 38570 bytes
 assets/why/images/why_edu.png   | Bin 0 -> 147874 bytes
 assets/why/images/why_foss.png  | Bin 0 -> 129527 bytes
 assets/why/images/why_free.png  | Bin 0 -> 59366 bytes
 assets/why/images/why_gov.png   | Bin 0 -> 108007 bytes
 assets/why/images/why_great.png | Bin 0 -> 110065 bytes
 assets/why/images/why_nfp.png   | Bin 0 -> 72267 bytes
 assets/why/images/why_oem.png   | Bin 0 -> 66593 bytes
 assets/why/images/why_sme.png   | Bin 0 -> 81320 bytes
 10 files changed, 0 insertions(+), 0 deletions(-)

diff --git a/assets/why/images/shell.png b/assets/why/images/shell.png
new file mode 100644
index 000..fcafd3f
Binary files /dev/null and b/assets/why/images/shell.png differ
diff --git a/assets/why/images/why_easy.png b/assets/why/images/why_easy.png
new file mode 100644
index 000..0b1db33
Binary files /dev/null and b/assets/why/images/why_easy.png differ
diff --git a/assets/why/images/why_edu.png b/assets/why/images/why_edu.png
new file mode 100644
index 000..4535084
Binary files /dev/null and b/assets/why/images/why_edu.png differ
diff --git a/assets/why/images/why_foss.png b/assets/why/images/why_foss.png
new file mode 100644
index 000..e3cf04e
Binary files /dev/null and b/assets/why/images/why_foss.png differ
diff --git a/assets/why/images/why_free.png b/assets/why/images/why_free.png
new file mode 100644
index 000..a7345ff
Binary files /dev/null and b/assets/why/images/why_free.png differ
diff --git a/assets/why/images/why_gov.png b/assets/why/images/why_gov.png
new file mode 100644
index 000..e1a4be8
Binary files /dev/null and b/assets/why/images/why_gov.png differ
diff --git a/assets/why/images/why_great.png b/assets/why/images/why_great.png
new file mode 100644
index 000..c8dbe59
Binary files /dev/null and b/assets/why/images/why_great.png differ
diff --git a/assets/why/images/why_nfp.png b/assets/why/images/why_nfp.png
new file mode 100644
index 000..84a3172
Binary files /dev/null and b/assets/why/images/why_nfp.png differ
diff --git a/assets/why/images/why_oem.png b/assets/why/images/why_oem.png
new file mode 100644
index 000..2328ee1
Binary files /dev/null and b/assets/why/images/why_oem.png differ
diff --git a/assets/why/images/why_sme.png b/assets/why/images/why_sme.png
new file mode 100644
index 000..007f85b
Binary files /dev/null and b/assets/why/images/why_sme.png differ



[openoffice-org] branch main updated (a44b02c -> e4fdea0)

2020-11-01 Thread wave
This is an automated email from the ASF dual-hosted git repository.

wave pushed a change to branch main
in repository https://gitbox.apache.org/repos/asf/openoffice-org.git.


from a44b02c  Migration of awards html content
 new 976c5ca  Migration of white_papers assets
 new e4fdea0  Migration of white_papers html content

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .../tech_overview/staroffice_layers.gif|  Bin 0 -> 11932 bytes
 .../white_papers/tech_overview/tech_overview.pdf   |  Bin 0 -> 110527 bytes
 .../white_papers/tech_overview/tech_overview.sdw   |  Bin 0 -> 251392 bytes
 content/white_papers/OOo_project/OOo_project.html  |   52 +
 .../white_papers/OOo_project/contributions.html|   51 +
 content/white_papers/OOo_project/introduction.html |  114 ++
 .../OOo_project/openofficefoundation.html  |   38 +
 content/white_papers/OOo_project/preface.html  |   42 +
 content/white_papers/OOo_project/strategy.html |  137 ++
 content/white_papers/index.html|   30 +
 .../white_papers/tech_overview/tech_overview.html  | 1661 
 11 files changed, 2125 insertions(+)
 create mode 100644 assets/white_papers/tech_overview/staroffice_layers.gif
 create mode 100644 assets/white_papers/tech_overview/tech_overview.pdf
 create mode 100644 assets/white_papers/tech_overview/tech_overview.sdw
 create mode 100644 content/white_papers/OOo_project/OOo_project.html
 create mode 100644 content/white_papers/OOo_project/contributions.html
 create mode 100644 content/white_papers/OOo_project/introduction.html
 create mode 100644 content/white_papers/OOo_project/openofficefoundation.html
 create mode 100644 content/white_papers/OOo_project/preface.html
 create mode 100644 content/white_papers/OOo_project/strategy.html
 create mode 100755 content/white_papers/index.html
 create mode 100644 content/white_papers/tech_overview/tech_overview.html



[openoffice-org] branch main updated (e4fdea0 -> 631fb47)

2020-11-01 Thread wave
This is an automated email from the ASF dual-hosted git repository.

wave pushed a change to branch main
in repository https://gitbox.apache.org/repos/asf/openoffice-org.git.


from e4fdea0  Migration of white_papers html content
 new 1977ddc  Migration of why assets
 new 631fb47  Migration of why Markdown pages

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 assets/why/images/shell.png   | Bin 0 -> 14853 bytes
 assets/why/images/why_easy.png| Bin 0 -> 38570 bytes
 assets/why/images/why_edu.png | Bin 0 -> 147874 bytes
 assets/why/images/why_foss.png| Bin 0 -> 129527 bytes
 assets/why/images/why_free.png| Bin 0 -> 59366 bytes
 assets/why/images/why_gov.png | Bin 0 -> 108007 bytes
 assets/why/images/why_great.png   | Bin 0 -> 110065 bytes
 assets/why/images/why_nfp.png | Bin 0 -> 72267 bytes
 assets/why/images/why_oem.png | Bin 0 -> 66593 bytes
 assets/why/images/why_sme.png | Bin 0 -> 81320 bytes
 content/why/index.md  |  30 +
 content/why/leftnav.md|  25 +++
 content/why/why_compliance.md |  70 ++
 content/why/why_easy.md   |  20 +
 content/why/why_edu.md|  21 +
 content/why/why_foss.md   |  21 +
 content/why/why_free.md   |  19 
 content/why/why_gov.md|  21 +
 content/why/why_great.md  |  19 
 content/why/why_new_computers.md  |  15 +++
 content/why/why_nfp.md|  21 +
 content/why/why_odf.md|  39 +
 content/why/why_oem.md|  21 +
 content/why/why_office2003-end-of-life.md |  19 
 content/why/why_other.md  |  27 
 content/why/why_sme.md|  21 +
 content/why/why_volunteers.md |  30 +
 27 files changed, 439 insertions(+)
 create mode 100644 assets/why/images/shell.png
 create mode 100644 assets/why/images/why_easy.png
 create mode 100644 assets/why/images/why_edu.png
 create mode 100644 assets/why/images/why_foss.png
 create mode 100644 assets/why/images/why_free.png
 create mode 100644 assets/why/images/why_gov.png
 create mode 100644 assets/why/images/why_great.png
 create mode 100644 assets/why/images/why_nfp.png
 create mode 100644 assets/why/images/why_oem.png
 create mode 100644 assets/why/images/why_sme.png
 create mode 100644 content/why/index.md
 create mode 100644 content/why/leftnav.md
 create mode 100644 content/why/why_compliance.md
 create mode 100644 content/why/why_easy.md
 create mode 100644 content/why/why_edu.md
 create mode 100644 content/why/why_foss.md
 create mode 100644 content/why/why_free.md
 create mode 100644 content/why/why_gov.md
 create mode 100644 content/why/why_great.md
 create mode 100644 content/why/why_new_computers.md
 create mode 100644 content/why/why_nfp.md
 create mode 100644 content/why/why_odf.md
 create mode 100644 content/why/why_oem.md
 create mode 100644 content/why/why_office2003-end-of-life.md
 create mode 100644 content/why/why_other.md
 create mode 100644 content/why/why_sme.md
 create mode 100644 content/why/why_volunteers.md



[openoffice-org] 02/02: Migration of awards html content

2020-11-01 Thread wave
This is an automated email from the ASF dual-hosted git repository.

wave pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/openoffice-org.git

commit a44b02cda518ba49db8880ce00baad16a58cc465
Author: Dave Fisher 
AuthorDate: Sun Nov 1 14:16:01 2020 -0800

Migration of awards html content
---
 content/awards/awardpic.html |  30 +++
 content/awards/index.html| 430 +++
 2 files changed, 460 insertions(+)

diff --git a/content/awards/awardpic.html b/content/awards/awardpic.html
new file mode 100644
index 000..22cd520
--- /dev/null
+++ b/content/awards/awardpic.html
@@ -0,0 +1,30 @@
+
+
+Untitled Document
+
+
+
+
+Community News
+
+  
+
+   
+OpenOffice.org is very 
proud 
+  to be honored with the German Linux community's award for being 
the 
+  most innovative commercially used Open Source software of 
2000. 
+  
+Awarded to Sun 
Microsystems 
+  at the Systems 2000 fair in Munich, Germany.
+We thank everyone who made 
+  it possible.
+Danke.
+
+
+  
+
+  
+
+
+
+
diff --git a/content/awards/index.html b/content/awards/index.html
new file mode 100644
index 000..8690047
--- /dev/null
+++ b/content/awards/index.html
@@ -0,0 +1,430 @@
+http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd;>
+http://www.w3.org/1999/xhtml; />
+http://www.w3.org/2005/10/profile;>
+  
+  OpenOffice Awards
+
+
+
+  OpenOffice Awards
+
+  Welcome to the OpenOffice Awards page.
+
+  
+
+  If you know of a publication, magazine, institution, organisation or 
other body which has given OpenOffice
+  an award recently, and you would like to let more people know about it, 
send us an email with all the details to:
+  mailto:market...@openoffice.apache.org;>market...@openoffice.apache.org.
+
+  
+
+  Award from GIGA.de
+
+  
+   http://www.giga.de/;>
+ 
+   
+GIGA.de and their users rated OpenOffice as #25 in Germany with >20 
Mio. visits per month.
+  
+  
+
+  CHIP Top-Downloads of the Year - January 2014
+   
+  
+
+CHIP Online reported their Top 100 downloads from 2013, including 
proprietary and open source downloads. We were
+http://www.chip.de/bildergalerie/Top-100-Downloads-des-Jahres-Galerie_53514176.html?show=91;>
+#9 overall with over 4.3 million downloads from their website..
+  
+
+  InfoWorld's Bossie (Best Of Open Source) 
+  Awards - September 2013
+   
+We won in the category of http://podcasts.infoworld.com/slideshow/119867/bossie-awards-2013-the-best-open-source-desktop-and-mobile-software-226979#slide8;>Best
 Open Source Desktop and Mobile Software .
+The citation said, "OpenOffice 4.0 proved to be a solid step forward from its 
predecessors -- and a good sign that the Apache Foundation's stewardship was 
all for the better"
+   
+   
+ About.com Readers' Choice Award - April 2013
+
+
+ We won in the category of http://office.about.com/od/ReaderResponse/ss/Readers-Choice-2013-Award-Winners-In-Office-Software_3.htm;>Favorite
 Business Office Software.
+  
+
+  InfoWorld's Bossie (Best Of Open Source) 
+  Awards - September 2012
+
+
+  CHIP Online Top Download Award - December 2012
+
+ A http://www.chip.de/bildergalerie/Top-100-Downloads-des-Jahres-Galerie_53514176.html?show=91;>
 
+  Top-10 performance for OpenOffice, made more impressive by the fact that 
this
+  was looking at downloads of both open source and proprietary software 
packages.
+
+  InfoWorld's Bossie (Best Of Open Source) 
+  Awards - September 2012
+
+  We received two Bossie Awards in 2012, both in the Desktop 
+  category. 
+The first award was for the http://www.infoworld.com/slideshow/64914/bossie-awards-2012-the-best-open-source-desktop-applications-202288#slide4;>Apache
 OpenOffice 
+  application and the second was for the http://www.infoworld.com/slideshow/64914/bossie-awards-2012-the-best-open-source-desktop-applications-202288#slide5;>OpenOffice
 Templates repository.
+
+  UpdateStar Editor's Choice 2012 Award - July 
+2012
+
+  The http://openoffice-org.updatestar.com/;> 
+  UpdateStar Editor's Choice Award is given only to a small group of top 
+  software products leading in their field.
+
+  PC fรถr Alla, Number 4 on Top 20 List - July 
2012
+
+  PC fรถr Alla, Sweden's largest computer magazine, awarded us a 
medal for
+ being on their http://pcforalla.idg.se/2.1054/1.456823;>Top20 List for free 
downloads.
+   
+   
+  Linux Journal 2011 Readers' Choice Award for
+  Best Single Office Program
+
+  Award given to OOWriter - see the http://www.linuxjournal.com/slideshow/readers-choice-2011;>full 
article.
+   
+ Linux Journal 2010 Readers' Choice Award for
+  Best Office Suite as well as Best Single Office Program
+
+   Two awards:  OpenOffice.org as Best Office Suite and Writer as 
Best Single Office Program. - see the 

[openoffice-org] 01/02: Migration of white_papers assets

2020-11-01 Thread wave
This is an automated email from the ASF dual-hosted git repository.

wave pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/openoffice-org.git

commit 976c5cacd9634b02d7da57c03626d43b656c6157
Author: Dave Fisher 
AuthorDate: Sun Nov 1 14:16:41 2020 -0800

Migration of white_papers assets
---
 .../white_papers/tech_overview/staroffice_layers.gif   | Bin 0 -> 11932 bytes
 assets/white_papers/tech_overview/tech_overview.pdf| Bin 0 -> 110527 bytes
 assets/white_papers/tech_overview/tech_overview.sdw| Bin 0 -> 251392 bytes
 3 files changed, 0 insertions(+), 0 deletions(-)

diff --git a/assets/white_papers/tech_overview/staroffice_layers.gif 
b/assets/white_papers/tech_overview/staroffice_layers.gif
new file mode 100644
index 000..df818fa
Binary files /dev/null and 
b/assets/white_papers/tech_overview/staroffice_layers.gif differ
diff --git a/assets/white_papers/tech_overview/tech_overview.pdf 
b/assets/white_papers/tech_overview/tech_overview.pdf
new file mode 100644
index 000..4b18ad9
Binary files /dev/null and 
b/assets/white_papers/tech_overview/tech_overview.pdf differ
diff --git a/assets/white_papers/tech_overview/tech_overview.sdw 
b/assets/white_papers/tech_overview/tech_overview.sdw
new file mode 100644
index 000..33069d4
Binary files /dev/null and 
b/assets/white_papers/tech_overview/tech_overview.sdw differ



[openoffice-org] branch main updated (2c792aa -> a44b02c)

2020-11-01 Thread wave
This is an automated email from the ASF dual-hosted git repository.

wave pushed a change to branch main
in repository https://gitbox.apache.org/repos/asf/openoffice-org.git.


from 2c792aa  Migration of external html content
 new 0acce57  Migration of awards assets
 new a44b02c  Migration of awards html content

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .../awards/images_awards/2003osdirwinnerbadge.gif  | Bin 0 -> 3550 bytes
 .../images_awards/CHIP-Top-Downloads-2013.png  | Bin 0 -> 5277 bytes
 ...oice Awards 2013 Winner for Office Software.png | Bin 0 -> 67152 bytes
 .../images_awards/ReadersChoice2008_logo.png   | Bin 0 -> 5157 bytes
 assets/awards/images_awards/ReadersChoice2011.png  | Bin 0 -> 31152 bytes
 assets/awards/images_awards/bossie-2012.png| Bin 0 -> 78284 bytes
 assets/awards/images_awards/chip.png   | Bin 0 -> 13078 bytes
 assets/awards/images_awards/chip2012.png   | Bin 0 -> 3528 bytes
 .../awards/images_awards/computerbild_top250.jpg   | Bin 0 -> 13078 bytes
 assets/awards/images_awards/cybia-award02.jpg  | Bin 0 -> 3138 bytes
 assets/awards/images_awards/duke.gif   | Bin 0 -> 6442 bytes
 assets/awards/images_awards/dyplomooo-small.jpg| Bin 0 -> 4340 bytes
 assets/awards/images_awards/dyplomooo.jpg  | Bin 0 -> 11898 bytes
 assets/awards/images_awards/ec2012.png | Bin 0 -> 3244 bytes
 .../giga_award_2015_1176254_software.png   | Bin 0 -> 6613 bytes
 assets/awards/images_awards/itr.jpg| Bin 0 -> 10888 bytes
 assets/awards/images_awards/linuxJournal_rc_5.pdf  | Bin 0 -> 719606 bytes
 assets/awards/images_awards/linuxformat2001.jpg| Bin 0 -> 29028 bytes
 assets/awards/images_awards/linuxjournal.png   | Bin 0 -> 13113 bytes
 .../awards/images_awards/linuxjournal_shield.png   | Bin 0 -> 6012 bytes
 .../awards/images_awards/linuxnewmedia2000-de.jpg  | Bin 0 -> 44068 bytes
 assets/awards/images_awards/ljreaders-2003.jpg | Bin 0 -> 25781 bytes
 assets/awards/images_awards/openchoice2003.png | Bin 0 -> 5646 bytes
 assets/awards/images_awards/pcforalla2012.png  | Bin 0 -> 52171 bytes
 .../images_awards/pcpro_6stars.gif}| Bin
 assets/awards/images_awards/pcpro_alist.gif| Bin 0 -> 1788 bytes
 .../images_awards/readerschoice2009_102x180.jpg| Bin 0 -> 8913 bytes
 assets/awards/images_awards/xml.png| Bin 0 -> 17006 bytes
 content/awards/awardpic.html   |  30 ++
 content/awards/index.html  | 430 +
 30 files changed, 460 insertions(+)
 create mode 100644 assets/awards/images_awards/2003osdirwinnerbadge.gif
 create mode 100644 assets/awards/images_awards/CHIP-Top-Downloads-2013.png
 create mode 100644 assets/awards/images_awards/Readers Choice Awards 2013 
Winner for Office Software.png
 create mode 100644 assets/awards/images_awards/ReadersChoice2008_logo.png
 create mode 100644 assets/awards/images_awards/ReadersChoice2011.png
 create mode 100644 assets/awards/images_awards/bossie-2012.png
 create mode 100644 assets/awards/images_awards/chip.png
 create mode 100644 assets/awards/images_awards/chip2012.png
 create mode 100644 assets/awards/images_awards/computerbild_top250.jpg
 create mode 100644 assets/awards/images_awards/cybia-award02.jpg
 create mode 100644 assets/awards/images_awards/duke.gif
 create mode 100644 assets/awards/images_awards/dyplomooo-small.jpg
 create mode 100644 assets/awards/images_awards/dyplomooo.jpg
 create mode 100644 assets/awards/images_awards/ec2012.png
 create mode 100644 
assets/awards/images_awards/giga_award_2015_1176254_software.png
 create mode 100644 assets/awards/images_awards/itr.jpg
 create mode 100644 assets/awards/images_awards/linuxJournal_rc_5.pdf
 create mode 100644 assets/awards/images_awards/linuxformat2001.jpg
 create mode 100644 assets/awards/images_awards/linuxjournal.png
 create mode 100644 assets/awards/images_awards/linuxjournal_shield.png
 create mode 100644 assets/awards/images_awards/linuxnewmedia2000-de.jpg
 create mode 100644 assets/awards/images_awards/ljreaders-2003.jpg
 create mode 100644 assets/awards/images_awards/openchoice2003.png
 create mode 100644 assets/awards/images_awards/pcforalla2012.png
 copy assets/{product/pix/6stars.gif => awards/images_awards/pcpro_6stars.gif} 
(100%)
 create mode 100644 assets/awards/images_awards/pcpro_alist.gif
 create mode 100644 assets/awards/images_awards/readerschoice2009_102x180.jpg
 create mode 100644 assets/awards/images_awards/xml.png
 create mode 100644 content/awards/awardpic.html
 create mode 100644 content/awards/index.html



[openoffice-org] 02/02: Migration of white_papers html content

2020-11-01 Thread wave
This is an automated email from the ASF dual-hosted git repository.

wave pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/openoffice-org.git

commit e4fdea0fda112017f823d76136e782f120556b8e
Author: Dave Fisher 
AuthorDate: Sun Nov 1 14:16:41 2020 -0800

Migration of white_papers html content
---
 content/white_papers/OOo_project/OOo_project.html  |   52 +
 .../white_papers/OOo_project/contributions.html|   51 +
 content/white_papers/OOo_project/introduction.html |  114 ++
 .../OOo_project/openofficefoundation.html  |   38 +
 content/white_papers/OOo_project/preface.html  |   42 +
 content/white_papers/OOo_project/strategy.html |  137 ++
 content/white_papers/index.html|   30 +
 .../white_papers/tech_overview/tech_overview.html  | 1661 
 8 files changed, 2125 insertions(+)

diff --git a/content/white_papers/OOo_project/OOo_project.html 
b/content/white_papers/OOo_project/OOo_project.html
new file mode 100644
index 000..6ebd639
--- /dev/null
+++ b/content/white_papers/OOo_project/OOo_project.html
@@ -0,0 +1,52 @@
+
+
+
+
+
+The OpenOffice.org Project 
+
+Foundations of Office Productivity in a Networked Age
+
+
+  Preface
+  History 
+  
+  
+  Introduction
+  What 
+  is OpenOffice.org?
+  Why 
is 
+  Sun Microsystems doing this?
+  Strategic 
+  Background
+  Office 
+  Productivity for a Networked Age
+  Future 
+  StarOffice Productivity Suite for Sun Microsystems 
+  
+  Licensing Strategy
+  The 
+  Dual-License Strategy
+  Specifics 
+  of the OpenOffice.org License Strategy
+  Dual 
+  Licensing and Standards Compatibility
+  Specification 
+  of Standard Versions
+  StarOffice 
+  Brand Usage 
+  
+  Making Contributions to the 
OpenOffice.org 
+  Project
+  1. Dual-License 
+  Usage
+  2. Copyright 
+  Assignment 
+  
+  The OpenOffice.org 
Foundation
+  OpenOffice.org 
+  Standards Process 
+
+
+
+
diff --git a/content/white_papers/OOo_project/contributions.html 
b/content/white_papers/OOo_project/contributions.html
new file mode 100644
index 000..42f01cb
--- /dev/null
+++ b/content/white_papers/OOo_project/contributions.html
@@ -0,0 +1,51 @@
+
+
+Making Contributions to the OpenOffice.org Project
+
+
+
+The OpenOffice.org Project
+
+
+Making Contributions to the OpenOffice.org Project
+
+
+The use of the dual-license scheme is both open and beneficial for the 
development,
+access, distribution, and compatibility of OpenOffice.org technologies and
+standards. For contributions of technology from the open communities, it is
+necessary to use the identical mechanisms and terms already in use by the
+OpenOffice.org project. Specifically, the following two requirements regarding
+the terms under which such contributions are made must be met in order to 
allow a
+contribution to be accepted into the OpenOffice.org Project technology base.
+
+1. Dual-License Usage
+
+The contributing individual or organization should issue their contributions 
for
+inclusion within the OpenOffice.org project technology base using the 
dual-license
+mechanism of GPL/LGPL + OpenOffice.org SISSL, without modification to the
+license terms and conditions. Contributions that cannot be made available 
under this
+dual-licensing mechanism will be incompatible with the required open access to 
the
+OpenOffice.org technology, and thus cannot be incorporated into the 
OpenOffice.org
+technology base.
+Such dual-licensing practices are now common within the open source 
communities.
+Examples include technology projects such as Perl (Artistic + GPL) 
Mozilla (MPL + NPL), and various others.
+
+
+2. Copyright Assignment
+
+To enable Sun Microsystems to effectively provide license management, enforce
+legal compliance, and issue technology adequately to commercial licensees,
+all contributions being made for inclusion in the OpenOffice.org technology 
base
+must make a copyright assignment of the source code to Sun Microsystems, Inc.
+This follows the same principals as recommended by the Free Software
+Foundation regarding copyright assignment for contributions to the GNU Project.
+Copyright assignment is a common requirement within open source projects for
+legal indemnification management and for flexibility of second licensing.
+
+
+backnext
+
+
+
+
+
diff --git a/content/white_papers/OOo_project/introduction.html 
b/content/white_papers/OOo_project/introduction.html
new file mode 100644
index 000..37430dd
--- /dev/null
+++ b/content/white_papers/OOo_project/introduction.html
@@ -0,0 +1,114 @@
+
+
+
+The OpenOffice.org Project
+
+
+
+
+
+The OpenOffice.org Project
+ 
+  
+Introduction
+
+
+The OpenOffice.org project is an historic development for the open systems 
world
+and the open source movement. In a networked age, the rules by which software 
is
+created, defined, and distributed are being redefined. Software, in essence a
+powerful form of expressing human knowledge and logic, is entering the realm of
+other free 

[openoffice-org] 01/02: Migration of awards assets

2020-11-01 Thread wave
This is an automated email from the ASF dual-hosted git repository.

wave pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/openoffice-org.git

commit 0acce5704b695aa312e4bda4ba4b7243b16bef73
Author: Dave Fisher 
AuthorDate: Sun Nov 1 14:16:01 2020 -0800

Migration of awards assets
---
 assets/awards/images_awards/2003osdirwinnerbadge.gif   | Bin 0 -> 3550 bytes
 .../awards/images_awards/CHIP-Top-Downloads-2013.png   | Bin 0 -> 5277 bytes
 ...s Choice Awards 2013 Winner for Office Software.png | Bin 0 -> 67152 bytes
 assets/awards/images_awards/ReadersChoice2008_logo.png | Bin 0 -> 5157 bytes
 assets/awards/images_awards/ReadersChoice2011.png  | Bin 0 -> 31152 bytes
 assets/awards/images_awards/bossie-2012.png| Bin 0 -> 78284 bytes
 assets/awards/images_awards/chip.png   | Bin 0 -> 13078 bytes
 assets/awards/images_awards/chip2012.png   | Bin 0 -> 3528 bytes
 assets/awards/images_awards/computerbild_top250.jpg| Bin 0 -> 13078 bytes
 assets/awards/images_awards/cybia-award02.jpg  | Bin 0 -> 3138 bytes
 assets/awards/images_awards/duke.gif   | Bin 0 -> 6442 bytes
 assets/awards/images_awards/dyplomooo-small.jpg| Bin 0 -> 4340 bytes
 assets/awards/images_awards/dyplomooo.jpg  | Bin 0 -> 11898 bytes
 assets/awards/images_awards/ec2012.png | Bin 0 -> 3244 bytes
 .../images_awards/giga_award_2015_1176254_software.png | Bin 0 -> 6613 bytes
 assets/awards/images_awards/itr.jpg| Bin 0 -> 10888 bytes
 assets/awards/images_awards/linuxJournal_rc_5.pdf  | Bin 0 -> 719606 bytes
 assets/awards/images_awards/linuxformat2001.jpg| Bin 0 -> 29028 bytes
 assets/awards/images_awards/linuxjournal.png   | Bin 0 -> 13113 bytes
 assets/awards/images_awards/linuxjournal_shield.png| Bin 0 -> 6012 bytes
 assets/awards/images_awards/linuxnewmedia2000-de.jpg   | Bin 0 -> 44068 bytes
 assets/awards/images_awards/ljreaders-2003.jpg | Bin 0 -> 25781 bytes
 assets/awards/images_awards/openchoice2003.png | Bin 0 -> 5646 bytes
 assets/awards/images_awards/pcforalla2012.png  | Bin 0 -> 52171 bytes
 assets/awards/images_awards/pcpro_6stars.gif   | Bin 0 -> 296 bytes
 assets/awards/images_awards/pcpro_alist.gif| Bin 0 -> 1788 bytes
 .../awards/images_awards/readerschoice2009_102x180.jpg | Bin 0 -> 8913 bytes
 assets/awards/images_awards/xml.png| Bin 0 -> 17006 bytes
 28 files changed, 0 insertions(+), 0 deletions(-)

diff --git a/assets/awards/images_awards/2003osdirwinnerbadge.gif 
b/assets/awards/images_awards/2003osdirwinnerbadge.gif
new file mode 100644
index 000..6fe23b6
Binary files /dev/null and 
b/assets/awards/images_awards/2003osdirwinnerbadge.gif differ
diff --git a/assets/awards/images_awards/CHIP-Top-Downloads-2013.png 
b/assets/awards/images_awards/CHIP-Top-Downloads-2013.png
new file mode 100644
index 000..b08d3ee
Binary files /dev/null and 
b/assets/awards/images_awards/CHIP-Top-Downloads-2013.png differ
diff --git a/assets/awards/images_awards/Readers Choice Awards 2013 Winner for 
Office Software.png b/assets/awards/images_awards/Readers Choice Awards 2013 
Winner for Office Software.png
new file mode 100644
index 000..ef04350
Binary files /dev/null and b/assets/awards/images_awards/Readers Choice Awards 
2013 Winner for Office Software.png differ
diff --git a/assets/awards/images_awards/ReadersChoice2008_logo.png 
b/assets/awards/images_awards/ReadersChoice2008_logo.png
new file mode 100644
index 000..1d3ef91
Binary files /dev/null and 
b/assets/awards/images_awards/ReadersChoice2008_logo.png differ
diff --git a/assets/awards/images_awards/ReadersChoice2011.png 
b/assets/awards/images_awards/ReadersChoice2011.png
new file mode 100644
index 000..108e43e
Binary files /dev/null and b/assets/awards/images_awards/ReadersChoice2011.png 
differ
diff --git a/assets/awards/images_awards/bossie-2012.png 
b/assets/awards/images_awards/bossie-2012.png
new file mode 100644
index 000..195e493
Binary files /dev/null and b/assets/awards/images_awards/bossie-2012.png differ
diff --git a/assets/awards/images_awards/chip.png 
b/assets/awards/images_awards/chip.png
new file mode 100644
index 000..f8765dc
Binary files /dev/null and b/assets/awards/images_awards/chip.png differ
diff --git a/assets/awards/images_awards/chip2012.png 
b/assets/awards/images_awards/chip2012.png
new file mode 100644
index 000..8989efc
Binary files /dev/null and b/assets/awards/images_awards/chip2012.png differ
diff --git a/assets/awards/images_awards/computerbild_top250.jpg 
b/assets/awards/images_awards/computerbild_top250.jpg
new file mode 100644
index 000..2776dd2
Binary files /dev/null and 
b/assets/awards/images_awards/computerbild_top250.jpg differ
diff --git a/assets/awards/images_awards/cybia-award02.jpg 
b/assets/awards/images_awards/cybia-award02.jpg
new file mode 100644

[openoffice-org] 01/02: Migration of external assets

2020-11-01 Thread wave
This is an automated email from the ASF dual-hosted git repository.

wave pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/openoffice-org.git

commit 0d818a38d5154c33fa0cea99e70ec3da40a0d030
Author: Dave Fisher 
AuthorDate: Sun Nov 1 14:15:09 2020 -0800

Migration of external assets
---
 assets/external/robots.txt | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/assets/external/robots.txt b/assets/external/robots.txt
new file mode 100644
index 000..c6742d8
--- /dev/null
+++ b/assets/external/robots.txt
@@ -0,0 +1,2 @@
+User-Agent: *
+Disallow: /



[openoffice-org] branch main updated (9291613 -> 2c792aa)

2020-11-01 Thread wave
This is an automated email from the ASF dual-hosted git repository.

wave pushed a change to branch main
in repository https://gitbox.apache.org/repos/asf/openoffice-org.git.


from 9291613  Migration of bizdev html content
 new 0d818a3  Migration of external assets
 new 2c792aa  Migration of external html content

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 assets/external/robots.txt|2 +
 content/external/3.0/THIRDPARTYLICENSEREADME.html | 6361 +
 content/external/ext_dmake.html   |   23 +
 content/external/forms/aspell.html|  126 +
 content/external/forms/beanshell.html |  148 +
 content/external/forms/bitstream_vera_fonts.html  |  142 +
 content/external/forms/crimson.html   |  159 +
 content/external/forms/crystal.html   |  153 +
 content/external/forms/dict_afrikaans.html|  103 +
 content/external/forms/dict_dutch.html|  136 +
 content/external/forms/dict_estonian.html |  149 +
 content/external/forms/dict_italian.html  |  234 +
 content/external/forms/dict_slovak.html   |  144 +
 content/external/forms/dict_slovenian.html|  127 +
 content/external/forms/dlcompat.html  |  151 +
 content/external/forms/fondu.html |  245 +
 content/external/forms/freetype.html  |  143 +
 content/external/forms/hyph_slovenian.html|  146 +
 content/external/forms/icu.html   |  143 +
 content/external/forms/index.html |  157 +
 content/external/forms/jaxp.html  |  156 +
 content/external/forms/libcurl.html   |  158 +
 content/external/forms/libegg.html|  150 +
 content/external/forms/libmspack.html |  157 +
 content/external/forms/libtextcat.html|  128 +
 content/external/forms/libwpd.html|  148 +
 content/external/forms/libwps.html|  141 +
 content/external/forms/libxml2.html   |  153 +
 content/external/forms/libxslt.html   |  142 +
 content/external/forms/lpsolve.html   |  147 +
 content/external/forms/mathMLDTD.html |  127 +
 content/external/forms/mdbtools.html  |  148 +
 content/external/forms/neolight.html  |  127 +
 content/external/forms/netbeans.html  |  145 +
 content/external/forms/pspell.html|  128 +
 content/external/forms/rhino.html |  137 +
 content/external/forms/sablot.html|  127 +
 content/external/forms/stlport.html   |  127 +
 content/external/forms/thes_italian.html  |  117 +
 content/external/forms/thes_russian.html  |  138 +
 content/external/forms/thes_slovak.html   |  153 +
 content/external/forms/unixODBC.html  |  149 +
 content/external/forms/wordnet.html   |  148 +
 content/external/forms/xalan.html |  159 +
 content/external/forms/xml-apis.html  |  161 +
 content/external/forms/xrender.html   |  153 +
 content/external/forms/xt.html|  151 +
 content/external/index-new.html   |  440 ++
 content/external/index.html   |  431 ++
 49 files changed, 13738 insertions(+)
 create mode 100644 assets/external/robots.txt
 create mode 100644 content/external/3.0/THIRDPARTYLICENSEREADME.html
 create mode 100644 content/external/ext_dmake.html
 create mode 100644 content/external/forms/aspell.html
 create mode 100644 content/external/forms/beanshell.html
 create mode 100644 content/external/forms/bitstream_vera_fonts.html
 create mode 100644 content/external/forms/crimson.html
 create mode 100644 content/external/forms/crystal.html
 create mode 100644 content/external/forms/dict_afrikaans.html
 create mode 100644 content/external/forms/dict_dutch.html
 create mode 100644 content/external/forms/dict_estonian.html
 create mode 100644 content/external/forms/dict_italian.html
 create mode 100644 content/external/forms/dict_slovak.html
 create mode 100644 content/external/forms/dict_slovenian.html
 create mode 100644 content/external/forms/dlcompat.html
 create mode 100644 content/external/forms/fondu.html
 create mode 100644 content/external/forms/freetype.html
 create mode 100644 content/external/forms/hyph_slovenian.html
 create mode 100644 content/external/forms/icu.html
 create mode 100644 content/external/forms/index.html
 create mode 100644 content/external/forms/jaxp.html
 create mode 100644 content/external/forms/libcurl.html
 create mode 100644 content/external/forms/libegg.html
 create mode 100644 content/external/forms/libmspack.html
 create mode 100644 

[openoffice-org] 01/02: Migration of bizdev assets

2020-11-01 Thread wave
This is an automated email from the ASF dual-hosted git repository.

wave pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/openoffice-org.git

commit 8e79c4af88eff6e3b3af3f306d8ce9de31ef62bb
Author: Dave Fisher 
AuthorDate: Sun Nov 1 14:14:40 2020 -0800

Migration of bizdev assets
---
 assets/bizdev/consultants/README.instructions |  15 ++
 assets/bizdev/consultants/consultants.xml | 284 ++
 assets/bizdev/consultants/consultants.xsd |  59 ++
 assets/bizdev/consultants/strings_de.xml  |  23 +++
 assets/bizdev/consultants/strings_en.xml  |  25 +++
 assets/bizdev/consultants/strings_es.xml  |  18 ++
 assets/bizdev/consultants/strings_it.xml  |  20 ++
 assets/bizdev/consultants/to-html.xsl | 103 ++
 assets/bizdev/robots.txt  |   7 +
 9 files changed, 554 insertions(+)

diff --git a/assets/bizdev/consultants/README.instructions 
b/assets/bizdev/consultants/README.instructions
new file mode 100644
index 000..6aacf25
--- /dev/null
+++ b/assets/bizdev/consultants/README.instructions
@@ -0,0 +1,15 @@
+This is the working directory for adding new consultants.
+
+Instructions:
+
+* Add new consultant listing to consultants.xml
+
+* Then, command: xsltproc -o consultants.html --stringparam locale en 
to-html.xsl consultants.xml
+
+(change locale for different languages.)
+
+* Move consultants.html up one level to /content/bizdev.
+* Commit working consultants.xml from this directory, and consultants.html 
from bizdev.
+
+Notes:
+Not sure how consultants.xsd is currently used.
diff --git a/assets/bizdev/consultants/consultants.xml 
b/assets/bizdev/consultants/consultants.xml
new file mode 100644
index 000..ede9bb5
--- /dev/null
+++ b/assets/bizdev/consultants/consultants.xml
@@ -0,0 +1,284 @@
+
+
+
+
+Adfinis SyGroup AG
+CH
+Development
+Support
+Other
+
+Adfinis SyGroup AG has been active in the open source environment
+for more than a decade. We provide services such as development,
+maintenance and operation based on open source technologies,
+including OpenOffice. With offices in Basel and Bern, we support
+customers throughout Switzerland and neighbouring countries.
+
+
https://adfinis-sygroup.ch/openoffice_support_and_development
+david.v...@adfinis-sygroup.ch
++41 31 550 31 11
+
+
+
+ร–zgรผr Yazฤฑlฤฑm A.ลž.
+TR
+Training
+Support
+Deployment
+
+At Ozgur Yazilim AS we can help you deploy and migrate to 
OpenOffice.
+We specialize in training and providing day-to-day support for your
+personnel. Based in Istanbul and Ankara, we're capable of offering
+nationwide services in Turkey.
+
+
http://ozguryazilim.com.tr/libreoffice-openoffice-ofis-yazilimi
+i...@ozguryazilim.com.tr
++90-212-2799150, +90-312-4240133
+
+ 
+
+Uwe Altmann Unternehmensberatung
+DE
+Deployment
+Support
+Development
+Documentation
+
+Helping small business customers since many years in using and
+optimizing IT solutions. This is done by careful requirements
+analysis, migration support, professional project management and
+continuous user support based on individual agreements.
+
+http://www.altsys.de
+uwe.altm...@altsys.de
++49 681 96 02 13 39
+
+
+
+World Label Inc
+Global
+Other
+
+WorldLabel specializes in developing templates for pre-press
+printing applications with an emphasis on labeling for address,
+shipping, CD and media, barcoding and mailmerge We create custom
+templates for all applications along with implementation and
+instructions for their use.
+
+
http://www.worldlabel.com/Pages/openoffice-template.htm
+cont...@worldlabel.com
+1-914 930 1346
+
+
+
+Jรถrg Schmidt, IT- und Unternehmensberatung
+DE
+Deployment
+Support
+Development
+Other
+
+Consulting, migration (planning, implementation, project-care),
+programming (extensions, macros), trainings (for managers and end
+users), support (end users, installation, install customization)
+
+http://www.jm-schmidt.de
+i...@jm-schmidt.de
+ 
+
+
+
+Ability Software Consultants Ltd
+UK
+Training
+
+Ability Software Consultants offer a complete range of
+instructor-led training courses for all Apache OpenOffice
+applications. Our training courses can be provided on your own site
+

[openoffice-org] branch main updated (1a3a226 -> 9291613)

2020-11-01 Thread wave
This is an automated email from the ASF dual-hosted git repository.

wave pushed a change to branch main
in repository https://gitbox.apache.org/repos/asf/openoffice-org.git.


from 1a3a226  Migration of cachedimages assets
 new 8e79c4a  Migration of bizdev assets
 new 9291613  Migration of bizdev html content

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 assets/bizdev/consultants/README.instructions |  15 ++
 assets/bizdev/consultants/consultants.xml | 284 ++
 assets/bizdev/consultants/consultants.xsd |  59 ++
 assets/bizdev/consultants/strings_de.xml  |  23 +++
 assets/bizdev/consultants/strings_en.xml  |  25 +++
 assets/bizdev/consultants/strings_es.xml  |  18 ++
 assets/bizdev/consultants/strings_it.xml  |  20 ++
 assets/bizdev/consultants/to-html.xsl | 103 ++
 assets/{support/tryout => bizdev}/robots.txt  |   0
 content/bizdev/consultant-submission.html |  74 +++
 content/bizdev/consultants.html   | 281 +
 content/bizdev/index.html |  27 +++
 content/bizdev/project_tools.html |  31 +++
 13 files changed, 960 insertions(+)
 create mode 100644 assets/bizdev/consultants/README.instructions
 create mode 100644 assets/bizdev/consultants/consultants.xml
 create mode 100644 assets/bizdev/consultants/consultants.xsd
 create mode 100644 assets/bizdev/consultants/strings_de.xml
 create mode 100644 assets/bizdev/consultants/strings_en.xml
 create mode 100644 assets/bizdev/consultants/strings_es.xml
 create mode 100644 assets/bizdev/consultants/strings_it.xml
 create mode 100644 assets/bizdev/consultants/to-html.xsl
 copy assets/{support/tryout => bizdev}/robots.txt (100%)
 create mode 100644 content/bizdev/consultant-submission.html
 create mode 100644 content/bizdev/consultants.html
 create mode 100644 content/bizdev/index.html
 create mode 100644 content/bizdev/project_tools.html



[openoffice-org] 02/02: Migration of bizdev html content

2020-11-01 Thread wave
This is an automated email from the ASF dual-hosted git repository.

wave pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/openoffice-org.git

commit 929161319430a256df103c28f700a98937b19724
Author: Dave Fisher 
AuthorDate: Sun Nov 1 14:14:40 2020 -0800

Migration of bizdev html content
---
 content/bizdev/consultant-submission.html |  74 
 content/bizdev/consultants.html   | 281 ++
 content/bizdev/index.html |  27 +++
 content/bizdev/project_tools.html |  31 
 4 files changed, 413 insertions(+)

diff --git a/content/bizdev/consultant-submission.html 
b/content/bizdev/consultant-submission.html
new file mode 100644
index 000..a9caa5b
--- /dev/null
+++ b/content/bizdev/consultant-submission.html
@@ -0,0 +1,74 @@
+
+
+How to submit your professional services listing
+
+
+How to submit your professional services listing
+The Apache OpenOffice project offers a list of relevant practioners of 
interest to Apache OpenOffice users.  No endorsement is implied by these 
listings.
+If you would like to have your listing added to this page, please follow these 
instructions:
+
+
+
+Listings must be factual and specifically relevant to OpenOffice.  
Generic IT services companies without a specific offering on their website 
directly relevant to OpenOffice 
+would probably not be a good fit for these listings.  In other words, 
if your website is not mentioning OpenOffice, why should our website mention 
you?
+You should review the current consultants 
directory to see the expected contents and format.
+Further useful information for preparing your submission can be found 
in the Submission Details section below.
+Listings and the websites and email addresses referenced must http://www.apache.org/foundation/marks/;>respect ASF trademarks.  
Note: Our official name is now 
+Apache OpenOffice.
+Listings must not imply approval, endorsement or affiliation with the 
Apache OpenOffice project or the ASF.
+Listings with invalid links, 404 errors, etc., may be removed.  Please 
keep your listing up-to-date.
+Listings must be submitted to the http://openoffice.apache.org/mailing-lists.html#development-mailing-list;>dev
 mailing list for review by the 
+Project Management Committee.
+ Although we are happy to receive text submissions (See the Example Submission below, submissions made as 
patches to our XML file are 
+ easier for us to integrate and are greatly appreciated.  See the XML Submissions section for more information.
+All listings appear soley at the discretion of the Apache OpenOffice 
PMC.  If you have any questions on the above, please ask on 
+the http://openoffice.apache.org/mailing-lists.html#development-mailing-list;>dev
 mailing list.
+
+
+Submission Details
+
+
+
+"name" is either your personal name or the name of your company or 
organization. We will sort on this field in our listings and link it to your 
website.  This field is required.
+"country" contains an http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2;>ISO-3166-1 alpha-2 
two-letter country code.  It indicates a country in which you do business.  
+If you do business in multiple countries you may have multiple 
"country" entries.  As a short-cut, if you do business globally you may use the 
value "global".  
+The "country" field is required.
+"practice" indicates an area of practice in which you offer 
services.  At least one "practice" entry is required.  The areas are 
pre-defined and limited to:
+
+Deployment  services related to installation of 
OpenOffice.  This might include planning, migration, install customization, 
etc.
+Support  services related to supporting users and 
deployments, including help support.
+Development  programming, including core OpenOffice 
development, macros, scripts and extensions.
+   Training  in person or remote, live, 
multimedia, or printed.
+Certification  services related to certification of 
user skills, developers skills, etc.
+Others
+
+"description" further describes the services you offer. Keep it 
brief and factual.  This field is required and is limited to 512 characters, 
with no embedded markup or images.
+"website" is the URL for your website.  The "name" field is linked 
to this URL.  If you have a page specifically covering your OpenOffice-related 
services, this
+is preferred over a generic page that is not as relevant to 
OpenOffice users.  This element is required.
+"email" is an email address where users can get more information.  
This entry is optional. If included it must be a valid email address.
+"phone" is an phone number where users can get more information.  
This entry is optional.
+

[openoffice-org] branch main updated: Migration of cachedimages assets

2020-11-01 Thread wave
This is an automated email from the ASF dual-hosted git repository.

wave pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/openoffice-org.git


The following commit(s) were added to refs/heads/main by this push:
 new 1a3a226  Migration of cachedimages assets
1a3a226 is described below

commit 1a3a226cff6c96535269266ed6a44d29a2479356
Author: Dave Fisher 
AuthorDate: Sun Nov 1 14:13:56 2020 -0800

Migration of cachedimages assets
---
 assets/cachedimages/action-download.png| Bin 0 -> 4118 bytes
 assets/cachedimages/action-extend.png  | Bin 0 -> 2537 bytes
 assets/cachedimages/action-help.png| Bin 0 -> 4326 bytes
 assets/cachedimages/action-info.png| Bin 0 -> 5295 bytes
 assets/cachedimages/action-participate.png | Bin 0 -> 4195 bytes
 assets/cachedimages/action.png | Bin 0 -> 2050 bytes
 assets/cachedimages/exclamation-icon.png   | Bin 0 -> 622 bytes
 7 files changed, 0 insertions(+), 0 deletions(-)

diff --git a/assets/cachedimages/action-download.png 
b/assets/cachedimages/action-download.png
new file mode 100755
index 000..d00c1f1
Binary files /dev/null and b/assets/cachedimages/action-download.png differ
diff --git a/assets/cachedimages/action-extend.png 
b/assets/cachedimages/action-extend.png
new file mode 100755
index 000..62708fc
Binary files /dev/null and b/assets/cachedimages/action-extend.png differ
diff --git a/assets/cachedimages/action-help.png 
b/assets/cachedimages/action-help.png
new file mode 100755
index 000..1c9475d
Binary files /dev/null and b/assets/cachedimages/action-help.png differ
diff --git a/assets/cachedimages/action-info.png 
b/assets/cachedimages/action-info.png
new file mode 100755
index 000..876b86c
Binary files /dev/null and b/assets/cachedimages/action-info.png differ
diff --git a/assets/cachedimages/action-participate.png 
b/assets/cachedimages/action-participate.png
new file mode 100755
index 000..37304cc
Binary files /dev/null and b/assets/cachedimages/action-participate.png differ
diff --git a/assets/cachedimages/action.png b/assets/cachedimages/action.png
new file mode 100755
index 000..7e56c47
Binary files /dev/null and b/assets/cachedimages/action.png differ
diff --git a/assets/cachedimages/exclamation-icon.png 
b/assets/cachedimages/exclamation-icon.png
new file mode 100644
index 000..056f680
Binary files /dev/null and b/assets/cachedimages/exclamation-icon.png differ



[openoffice-org] branch asf-staging updated: git-site-role commit from build_staging.sh

2020-11-01 Thread git-site-role
This is an automated email from the ASF dual-hosted git repository.

git-site-role pushed a commit to branch asf-staging
in repository https://gitbox.apache.org/repos/asf/openoffice-org.git


The following commit(s) were added to refs/heads/asf-staging by this push:
 new 1475cc8  git-site-role commit from build_staging.sh
1475cc8 is described below

commit 1475cc815c99f5c3d211ababa7448a5a8f4100f5
Author: jenkins 
AuthorDate: Sun Nov 1 21:13:39 2020 +

git-site-role commit from build_staging.sh
---
 content/feed.xml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/content/feed.xml b/content/feed.xml
index d3b93b2..15e5172 100644
--- a/content/feed.xml
+++ b/content/feed.xml
@@ -6,8 +6,8 @@
 http://localhost:8820/feed.xml; rel="self" 
type="application/rss+xml" />
 OpenOffice.org Feed
 en-us
-Sun, 1 Nov 2020 21:11:50 +
-Sun, 1 Nov 2020 21:11:50 +
+Sun, 1 Nov 2020 21:13:35 +
+Sun, 1 Nov 2020 21:13:35 +
 
 




[openoffice-org] 02/03: Migration of lingucomponent assets

2020-11-01 Thread wave
This is an automated email from the ASF dual-hosted git repository.

wave pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/openoffice-org.git

commit 96898a5efafdea8020af10815bf5d1ae1cdb30fa
Author: Dave Fisher 
AuthorDate: Sun Nov 1 13:10:48 2020 -0800

Migration of lingucomponent assets
---
 assets/lingucomponent/MySpell-3.zip| Bin 0 -> 318821 bytes
 assets/lingucomponent/affix.readme | 141 
 assets/lingucomponent/altlinux_Hyph.zip| Bin 0 -> 71765 bytes
 assets/lingucomponent/dicooo/ArchitectureNotes.txt |  75 
 assets/lingucomponent/dicooo/DicOOo-offline.txt|  25 +++
 assets/lingucomponent/dicooo/DicOOo.sxw| Bin 0 -> 93503 bytes
 assets/lingucomponent/dicooo/Tut_es/Dialogo1.png   | Bin 0 -> 11798 bytes
 assets/lingucomponent/dicooo/Tut_es/Dialogo2.png   | Bin 0 -> 8435 bytes
 assets/lingucomponent/dicooo/Tut_es/Dialogo3.png   | Bin 0 -> 8459 bytes
 assets/lingucomponent/dicooo/Tut_es/Dialogo4.png   | Bin 0 -> 7949 bytes
 assets/lingucomponent/dicooo/Tut_es/DicOOo_es.png  | Bin 0 -> 30202 bytes
 assets/lingucomponent/dicooo/Tut_es/Primera.png| Bin 0 -> 4621 bytes
 assets/lingucomponent/dicooo/Tut_es/Segunda.png| Bin 0 -> 8823 bytes
 assets/lingucomponent/dicooo/version.txt   |   3 +
 assets/lingucomponent/en_US.aff| 188 +
 assets/lingucomponent/english.aff  | 176 +++
 assets/lingucomponent/favicon.ico  | Bin 0 -> 10134 bytes
 assets/lingucomponent/robots.txt   |   7 +
 18 files changed, 615 insertions(+)

diff --git a/assets/lingucomponent/MySpell-3.zip 
b/assets/lingucomponent/MySpell-3.zip
new file mode 100644
index 000..7051bbc
Binary files /dev/null and b/assets/lingucomponent/MySpell-3.zip differ
diff --git a/assets/lingucomponent/affix.readme 
b/assets/lingucomponent/affix.readme
new file mode 100644
index 000..4175c05
--- /dev/null
+++ b/assets/lingucomponent/affix.readme
@@ -0,0 +1,141 @@
+Converting Affix Files:  Understanding the Affix File Format
+
+
+An affix is either a  prefix or a suffix attached to root words to make 
+other words.  For example supply -> supplied by dropping the "y" and
+adding an "ied" (the suffix). 
+
+Here is an example of how to define one specific suffix borrowed 
+from the en_US.aff file used by the OpenOffice org spellchecker
+
+SFX D Y 4
+SFX D   0 d  e
+SFX D   y ied[^aeiou]y
+SFX D   0 ed [^ey]
+SFX D   0 ed [aeiou]y
+
+This file is space delimited and case sensitive.
+So this information can be interpreted as follows:
+
+The first line has 4 fields:
+
+Field
+-
+1 SFX - indicates this is a suffix
+2 D   - is the name of the character which represents this suffix
+3 Y   - indicates it can be combined with prefixes (cross product)
+4 4   - indicates that sequence of 4 affix entries are needed to
+   properly store the affix information
+
+The remaining lines describe the unique information for the 4 affix
+entries that make up this affix.  Each line can be interpreted
+as follows: (note fields 1 and 2 are used as a check against line 1 info)
+
+Field
+-
+1 SFX - indicates this is a suffix
+2 D   - is the name of the character which represents this affix
+3 y   - the string of chars to strip off before adding affix
+ (a 0 here indicates the NULL string)
+4 ied - the string of affix characters to add
+ (a 0 here indicates the NULL string)
+5 [^aeiou]y   - the conditions which must be met before the affix
+can be applied
+
+Field 5 is interesting.  Since this is a suffix, field 5 tells us that
+there are 2 conditions that must be met.  The first condition is that 
+the next to the last character in the word must *NOT* be any of the 
+following "a", "e", "i", "o" or "u".  The second condition is that
+the last character of the word must end in "y".
+
+Now for comparison purposes, here is the same information from the 
+Ispell english.aff compression file which was used as the basis
+for the OOo one.
+
+flag *D:
+E  >   D   # As in create > created
+[^AEIOU]Y  >   -Y,IED  # As in imply > implied
+[^EY]  >   ED  # As in cross > crossed
+[AEIOU]Y   >   ED  # As in convey > conveyed
+
+The Ispell information has exactly the same information but in a 
+slightly different (case-insensitive) format:
+
+Here are the ways to see the mapping from Ispell .aff format to our
+OOo format.
+
+1. The ispell english.aff has flag D under the "suffix" section so 
+you know it is a suffix.
+
+2.  The D is the character assigned to this suffix
+
+3. * indicates that it can be combined with prefixes

[openoffice-org] 01/03: Migration of lingucomponent/MyThes-1.zip large asset

2020-11-01 Thread wave
This is an automated email from the ASF dual-hosted git repository.

wave pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/openoffice-org.git

commit f3a3dbda1c303113bc05b69a14723d3a5edd1c7f
Author: Dave Fisher 
AuthorDate: Sun Nov 1 13:10:48 2020 -0800

Migration of lingucomponent/MyThes-1.zip large asset
---
 assets/lingucomponent/MyThes-1.zip | Bin 0 -> 4585789 bytes
 1 file changed, 0 insertions(+), 0 deletions(-)

diff --git a/assets/lingucomponent/MyThes-1.zip 
b/assets/lingucomponent/MyThes-1.zip
new file mode 100644
index 000..09faf70
Binary files /dev/null and b/assets/lingucomponent/MyThes-1.zip differ



[openoffice-org] branch main updated (a099afe -> 0db9bd1)

2020-11-01 Thread wave
This is an automated email from the ASF dual-hosted git repository.

wave pushed a change to branch main
in repository https://gitbox.apache.org/repos/asf/openoffice-org.git.


from a099afe  Migration of installation Markdown pages
 new f3a3dbd  Migration of lingucomponent/MyThes-1.zip large asset
 new 96898a5  Migration of lingucomponent assets
 new 0db9bd1  Migration of lingucomponent html content

The 3 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 assets/lingucomponent/MySpell-3.zip| Bin 0 -> 318821 bytes
 assets/lingucomponent/MyThes-1.zip | Bin 0 -> 4585789 bytes
 assets/lingucomponent/affix.readme | 141 
 assets/lingucomponent/altlinux_Hyph.zip| Bin 0 -> 71765 bytes
 assets/lingucomponent/dicooo/ArchitectureNotes.txt |  75 ++
 assets/lingucomponent/dicooo/DicOOo-offline.txt|  25 +
 assets/lingucomponent/dicooo/DicOOo.sxw| Bin 0 -> 93503 bytes
 assets/lingucomponent/dicooo/Tut_es/Dialogo1.png   | Bin 0 -> 11798 bytes
 assets/lingucomponent/dicooo/Tut_es/Dialogo2.png   | Bin 0 -> 8435 bytes
 assets/lingucomponent/dicooo/Tut_es/Dialogo3.png   | Bin 0 -> 8459 bytes
 assets/lingucomponent/dicooo/Tut_es/Dialogo4.png   | Bin 0 -> 7949 bytes
 assets/lingucomponent/dicooo/Tut_es/DicOOo_es.png  | Bin 0 -> 30202 bytes
 assets/lingucomponent/dicooo/Tut_es/Primera.png| Bin 0 -> 4621 bytes
 assets/lingucomponent/dicooo/Tut_es/Segunda.png| Bin 0 -> 8823 bytes
 assets/lingucomponent/dicooo/version.txt   |   3 +
 assets/lingucomponent/en_US.aff| 188 +
 assets/lingucomponent/english.aff  | 176 
 assets/{porting => lingucomponent}/favicon.ico | Bin
 .../{support/tryout => lingucomponent}/robots.txt  |   0
 content/lingucomponent/auto_instal.html|  87 ++
 .../dicooo/Tut_es/Tutorial_DicOOo_es.html  | 286 +++
 content/lingucomponent/dictionary.html |  75 ++
 content/lingucomponent/dictpack.html   |  10 +
 content/lingucomponent/download_dictionary.html|  29 +
 content/lingucomponent/grammar.html|  60 ++
 content/lingucomponent/hyph_dic.html   |  10 +
 content/lingucomponent/hyphenator.html |  37 +
 content/lingucomponent/index.html  | 120 +++
 content/lingucomponent/index_template.html |  76 ++
 content/lingucomponent/instal_difs.html|  53 ++
 content/lingucomponent/instal_fonts.html   |  43 +
 content/lingucomponent/instal_reinstal.html| 145 
 content/lingucomponent/manual_instal.html  | 129 +++
 content/lingucomponent/spell_dic.html  |  10 +
 content/lingucomponent/style_guide.html| 926 +
 content/lingucomponent/thes_dic.html   |  10 +
 content/lingucomponent/thesaurus.html  |  50 ++
 37 files changed, 2764 insertions(+)
 create mode 100644 assets/lingucomponent/MySpell-3.zip
 create mode 100644 assets/lingucomponent/MyThes-1.zip
 create mode 100644 assets/lingucomponent/affix.readme
 create mode 100644 assets/lingucomponent/altlinux_Hyph.zip
 create mode 100755 assets/lingucomponent/dicooo/ArchitectureNotes.txt
 create mode 100755 assets/lingucomponent/dicooo/DicOOo-offline.txt
 create mode 100755 assets/lingucomponent/dicooo/DicOOo.sxw
 create mode 100755 assets/lingucomponent/dicooo/Tut_es/Dialogo1.png
 create mode 100755 assets/lingucomponent/dicooo/Tut_es/Dialogo2.png
 create mode 100755 assets/lingucomponent/dicooo/Tut_es/Dialogo3.png
 create mode 100755 assets/lingucomponent/dicooo/Tut_es/Dialogo4.png
 create mode 100755 assets/lingucomponent/dicooo/Tut_es/DicOOo_es.png
 create mode 100755 assets/lingucomponent/dicooo/Tut_es/Primera.png
 create mode 100755 assets/lingucomponent/dicooo/Tut_es/Segunda.png
 create mode 100644 assets/lingucomponent/dicooo/version.txt
 create mode 100644 assets/lingucomponent/en_US.aff
 create mode 100644 assets/lingucomponent/english.aff
 copy assets/{porting => lingucomponent}/favicon.ico (100%)
 copy assets/{support/tryout => lingucomponent}/robots.txt (100%)
 create mode 100644 content/lingucomponent/auto_instal.html
 create mode 100755 content/lingucomponent/dicooo/Tut_es/Tutorial_DicOOo_es.html
 create mode 100755 content/lingucomponent/dictionary.html
 create mode 100644 content/lingucomponent/dictpack.html
 create mode 100644 content/lingucomponent/download_dictionary.html
 create mode 100755 content/lingucomponent/grammar.html
 create mode 100644 content/lingucomponent/hyph_dic.html
 create mode 100644 content/lingucomponent/hyphenator.html
 create mode 100644 content/lingucomponent/index.html
 create mode 100755 content/lingucomponent/index_template.html
 create mode 100644 

[openoffice-org] 03/03: Migration of lingucomponent html content

2020-11-01 Thread wave
This is an automated email from the ASF dual-hosted git repository.

wave pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/openoffice-org.git

commit 0db9bd165c439bcaaed458b08118a44b76fb3608
Author: Dave Fisher 
AuthorDate: Sun Nov 1 13:10:48 2020 -0800

Migration of lingucomponent html content
---
 content/lingucomponent/auto_instal.html|  87 ++
 .../dicooo/Tut_es/Tutorial_DicOOo_es.html  | 286 +++
 content/lingucomponent/dictionary.html |  75 ++
 content/lingucomponent/dictpack.html   |  10 +
 content/lingucomponent/download_dictionary.html|  29 +
 content/lingucomponent/grammar.html|  60 ++
 content/lingucomponent/hyph_dic.html   |  10 +
 content/lingucomponent/hyphenator.html |  37 +
 content/lingucomponent/index.html  | 120 +++
 content/lingucomponent/index_template.html |  76 ++
 content/lingucomponent/instal_difs.html|  53 ++
 content/lingucomponent/instal_fonts.html   |  43 +
 content/lingucomponent/instal_reinstal.html| 145 
 content/lingucomponent/manual_instal.html  | 129 +++
 content/lingucomponent/spell_dic.html  |  10 +
 content/lingucomponent/style_guide.html| 926 +
 content/lingucomponent/thes_dic.html   |  10 +
 content/lingucomponent/thesaurus.html  |  50 ++
 18 files changed, 2156 insertions(+)

diff --git a/content/lingucomponent/auto_instal.html 
b/content/lingucomponent/auto_instal.html
new file mode 100644
index 000..a201cfb
--- /dev/null
+++ b/content/lingucomponent/auto_instal.html
@@ -0,0 +1,87 @@
+
+ Auto-Install
+ 
+  
+  
+   return to Table of 
Contents
+   
+
+  
+
+  Automated Dictionary Installers:
+  ===DicOOo 
Macro: multi-platform
+   === DictInstall: Windows
+   === OOoDI: Unix, Linux
+   
+   
+  *** DicOOo Macro:
+  Multi-Platform, Multi-Language, On/Off-Line Dictionary Installer
+  The macro in  DicOOo.sxw,
+  created by Laurent Godard, is a multi-platform solution for 
installing dictionaries:
+  
+on any platform executing OpenOffice.org and with DicOOo.sxw 
available;
+On-Line: install dictionaries from the Internet while 
connected; or
+Off-Line: use Dictionary Packs for 
installation from a local network, hard disk or Community CD.
+  
+  
+  We hope that Community distributors will find DicOOo and 
dictionary packs a useful addition on their CDs.
+  
+Some notes on building or modifying Off-Line Dictionary Packs for 
your requirements:
+This feature is especially dedicated to distributing dictionaries 
with CDs. An Off-Line Dictionary Pack contains 3 text files and the
+included dictionary zip files. The 3 text files describe what the 
off-line pack contains for each dictionary type:
+
+  spell.txt: for the included spellchecker zip files. Uses 
same structure as the http://lingucomponent.openoffice.org/available.lst 
file.
+  hyph.txt: for the included hyphenation zip files. Uses same 
structure as the http://lingucomponent.openoffice.org/hyphavail.lst 
file.
+  thes.txt: for the included thesaurus zip files. Uses same 
structure as the http://lingucomponent.openoffice.org/thesavail.lst 
file.
+
+Moreover, DicOOo code has been designed to limit the needed 
modification to the code, to let it start in off-line mode by default.
+Users who want to adapt it, have only to focus on two global 
constants in the LangPack module:
+  StartOffLine=0 ; 0/1 to deactivate/activate 
off-line mode by default
+  NomPackLang="" ; Name of the off-line pack zip file. 
Relative URLs to DicOOo location are allowed
+  
+  
+  Tech Notes:
+  
+  When finished installing dictionaries, exit OpenOffice.org and exit 
the QuickStarter if it's running.
+  Restart OpenOffice.org and navigate to ToolsOptionsLanguage 
SettingsWriting Aids.
+  Select your new dictionaries.  :-))
+  
+  DicOOo Tutorials Available:
+  
+  http://de.openoffice.org/spellcheck/about-spellcheck-dicooo.html;>Deutsch,
 html  ::
+  http://www.linuxplusvalue.be/download/tutoriel_dicooo-en.pdf;>English, 
pdf 
+  http://www.linuxplusvalue.be/download/tutoriel_dicooo-en.sxw;> 
sxw ::
+  Espaรฑol, 
html ::
+  

[openoffice-org] 03/03: Migration of installation Markdown pages

2020-11-01 Thread wave
This is an automated email from the ASF dual-hosted git repository.

wave pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/openoffice-org.git

commit a099afef5faea670d866dde57d0aaa6ecb77efe9
Author: Dave Fisher 
AuthorDate: Sun Nov 1 13:10:06 2020 -0800

Migration of installation Markdown pages
---
 content/installation/description/index.md | 7 +++
 1 file changed, 7 insertions(+)

diff --git a/content/installation/description/index.md 
b/content/installation/description/index.md
new file mode 100644
index 000..9b0367e
--- /dev/null
+++ b/content/installation/description/index.md
@@ -0,0 +1,7 @@
+type=page
+title=Apache OpenOffice Update Feed
+notice=https://www.apache.org/licenses/LICENSE-2.0
+~~
+This is the XML namespace URI for the Update Feed entries for Apache
+OpenOffice. You can find all details about the expected syntax at
+the [Update Service wiki 
page](https://wiki.openoffice.org/wiki/Update_Service).



[openoffice-org] branch main updated (92123a3 -> a099afe)

2020-11-01 Thread wave
This is an automated email from the ASF dual-hosted git repository.

wave pushed a change to branch main
in repository https://gitbox.apache.org/repos/asf/openoffice-org.git.


from 92123a3  Migration of distribution html content
 new 5023d43  Migration of installation assets
 new a126527  Migration of installation html content
 new a099afe  Migration of installation Markdown pages

The 3 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 assets/installation/01RESPONSE_SO52_final_rev2.pdf | 9240 
 assets/installation/Java_GUI_Installer.odt |  Bin 0 -> 2693818 bytes
 .../Java_GUI_Installer_Quick_Guide.odt |  Bin 0 -> 13426 bytes
 assets/installation/epm-3.7.patch  |  150 +
 .../pics/how_to_create_native_installer.gif|  Bin 0 -> 7050 bytes
 assets/installation/proposals/ui/flowchart.sxd |  Bin 0 -> 18165 bytes
 assets/installation/proposals/ui/setupui.sxw   |  Bin 0 -> 257089 bytes
 assets/{support/tryout => installation}/robots.txt |0
 content/installation/How_to_scp_in_ooo.html|   69 +
 content/installation/description/index.md  |7 +
 .../how_to_create_native_installer.html|  208 +
 content/installation/how_to_repackage_oo.html  |  165 +
 content/installation/how_to_repackage_so.html  |  214 +
 content/installation/how_to_scp_oo.html|  576 ++
 content/installation/index.html|  475 +
 .../installation/pics/automatical_assignments.html |   56 +
 content/installation/pics/scpitem_directory.html   |   81 +
 content/installation/pics/scpitem_file.html|  156 +
 content/installation/pics/scpitem_folder.html  |   38 +
 content/installation/pics/scpitem_folderitem.html  |   43 +
 .../installation/pics/scpitem_installation.html|   39 +
 content/installation/pics/scpitem_mergemodule.html |   54 +
 content/installation/pics/scpitem_module.html  |  124 +
 content/installation/pics/scpitem_profile.html |   40 +
 content/installation/pics/scpitem_profileitem.html |   43 +
 .../installation/pics/scpitem_registryitem.html|   44 +
 content/installation/pics/scpitem_scpaction.html   |   55 +
 content/installation/pics/scpitem_shortcut.html|   53 +
 .../installation/pics/scpitem_templatemodule.html  |  146 +
 content/installation/pics/scpitem_unixlink.html|   46 +
 .../pics/scpitem_windowscustomaction.html  |   49 +
 content/installation/pics/undefining_gids.html |   58 +
 .../pics/understanding_the_lng_files.html  |  162 +
 .../pics/understanding_the_patch_flag.html |  113 +
 .../pics/understanding_the_scipt_elements.html |  125 +
 .../pics/understanding_the_scipt_language.html |  106 +
 .../pics/understanding_the_scp_project.html|  118 +
 content/installation/proposals/netinstall.html |  177 +
 .../setup_feature/setup_features60_proposal.html   |0
 content/installation/red.html  |  140 +
 40 files changed, 13170 insertions(+)
 create mode 100644 assets/installation/01RESPONSE_SO52_final_rev2.pdf
 create mode 100755 assets/installation/Java_GUI_Installer.odt
 create mode 100755 assets/installation/Java_GUI_Installer_Quick_Guide.odt
 create mode 100644 assets/installation/epm-3.7.patch
 create mode 100644 assets/installation/pics/how_to_create_native_installer.gif
 create mode 100644 assets/installation/proposals/ui/flowchart.sxd
 create mode 100644 assets/installation/proposals/ui/setupui.sxw
 copy assets/{support/tryout => installation}/robots.txt (100%)
 create mode 100644 content/installation/How_to_scp_in_ooo.html
 create mode 100644 content/installation/description/index.md
 create mode 100644 content/installation/how_to_create_native_installer.html
 create mode 100644 content/installation/how_to_repackage_oo.html
 create mode 100644 content/installation/how_to_repackage_so.html
 create mode 100644 content/installation/how_to_scp_oo.html
 create mode 100644 content/installation/index.html
 create mode 100644 content/installation/pics/automatical_assignments.html
 create mode 100644 content/installation/pics/scpitem_directory.html
 create mode 100644 content/installation/pics/scpitem_file.html
 create mode 100644 content/installation/pics/scpitem_folder.html
 create mode 100644 content/installation/pics/scpitem_folderitem.html
 create mode 100644 content/installation/pics/scpitem_installation.html
 create mode 100755 content/installation/pics/scpitem_mergemodule.html
 create mode 100644 content/installation/pics/scpitem_module.html
 create mode 100644 content/installation/pics/scpitem_profile.html
 create mode 100644 content/installation/pics/scpitem_profileitem.html
 create mode 100644 content/installation/pics/scpitem_registryitem.html
 create mode 100644 

[openoffice-org] branch main updated (d67501d -> 92123a3)

2020-11-01 Thread wave
This is an automated email from the ASF dual-hosted git repository.

wave pushed a change to branch main
in repository https://gitbox.apache.org/repos/asf/openoffice-org.git.


from d67501d  Migration of promotions html content
 new b162b70  Migration of distribution assets
 new 92123a3  Migration of distribution html content

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 assets/distribution/cdrom/DomainHome.css   |   77 +
 assets/distribution/cdrom/img/Setup_TOC_head.gif   |  Bin 0 -> 2682 bytes
 .../cdrom}/img/achtung.png |  Bin
 assets/distribution/cdrom/img/bt_button.png|  Bin 0 -> 3713 bytes
 assets/distribution/cdrom/img/buy_round.png|  Bin 0 -> 41356 bytes
 assets/distribution/cdrom/img/buy_round_old.png|  Bin 0 -> 5258 bytes
 assets/distribution/cdrom/img/distribute.png   |  Bin 0 -> 3013 bytes
 assets/distribution/cdrom/img/folder_grey.png  |  Bin 0 -> 1610 bytes
 .../cdrom}/img/hinweis.png |  Bin
 .../cdrom}/img/linux.png   |  Bin
 assets/distribution/cdrom/img/ooo_gulls.png|  Bin 0 -> 759 bytes
 assets/distribution/cdrom/img/ooo_logo.png |  Bin 0 -> 15996 bytes
 .../cdrom/img/osi-certified-400x333.png|  Bin 0 -> 2233 bytes
 assets/distribution/cdrom/img/purchase.png |  Bin 0 -> 2385 bytes
 assets/distribution/cdrom/img/sell_round.png   |  Bin 0 -> 42439 bytes
 assets/distribution/cdrom/img/sell_round_old.png   |  Bin 0 -> 5924 bytes
 .../cdrom}/img/setup_copystart.png |  Bin
 .../cdrom}/img/setup_directory.png |  Bin
 .../cdrom}/img/setup_filetypes.png |  Bin
 .../cdrom}/img/setup_finished.png  |  Bin
 .../cdrom}/img/setup_important.png |  Bin
 .../cdrom}/img/setup_javalist.png  |  Bin
 .../cdrom}/img/setup_license.png   |  Bin
 .../cdrom}/img/setup_modify.png|  Bin
 .../cdrom}/img/setup_modules.png   |  Bin
 .../cdrom}/img/setup_progress.png  |  Bin
 .../cdrom}/img/setup_type.png  |  Bin
 .../cdrom}/img/setup_userdata.png  |  Bin
 .../cdrom}/img/setup_welcome.png   |  Bin
 .../cdrom}/img/setup_workstation.png   |  Bin
 .../cdrom/img/setup_workstationdir.png}|  Bin
 .../cdrom}/img/setup_workstationdirectory.png  |  Bin
 .../cdrom}/img/solaris.png |  Bin
 .../setup_guide => distribution/cdrom}/img/tip.png |  Bin
 .../cdrom}/img/unix.png|  Bin
 .../setup_guide => distribution/cdrom}/img/win.png |  Bin
 assets/distribution/cdrom/tableDecorate.js |   48 +
 .../cdrom/templates/CD Labels/CVS/Entries  |1 +
 .../cdrom/templates/CD Labels/CVS/Repository   |1 +
 .../cdrom/templates/CD Labels/CVS/Root |1 +
 .../cdrom/templates/CD Labels/CVS/Template |   42 +
 .../data/mirrors/repository/README.txt |   36 +
 .../data/mirrors/repository/experiment/README.txt  |   49 +
 .../experiment/convert_sites_xml_into_Calc.xml |  190 ++
 .../experiment/convert_sites_xml_into_csv.xml  |  122 +
 .../experiment/convert_sites_xml_into_mirmon.xml   |  116 +
 .../data/mirrors/repository/experiment/sites.xml   |  745 ++
 .../data/mirrors/repository/production/README.txt  |   36 +
 .../mirrors/repository/production/data/sites.xml   |  952 +++
 .../repository/production/tools/Calc/README.txt|   36 +
 .../tools/Calc/convert_sites_xml_into_Calc.xml |  190 ++
 .../repository/production/tools/cvs/README.txt |   23 +
 .../tools/cvs/convert_sites_xml_into_csv.xml   |  122 +
 .../production/tools/html/sites2table.xml  |  158 ++
 .../repository/production/tools/mirmon/README.txt  |   40 +
 .../tools/mirmon/convert_sites_xml_into_mirmon.xml |  116 +
 .../tools/mirmon/download_sites_xml_for_mirmon.sh  |   62 +
 .../data/mirrors/repository/staging/README.txt |   36 +
 .../data/mirrors/repository/staging/data/sites.xml |  952 +++
 .../repository/staging/tools/Calc/README.txt   |   36 +
 .../tools/Calc/convert_sites_xml_into_Calc.xml |  190 ++
 .../repository/staging/tools/cvs/README.txt|   23 +
 .../tools/cvs/convert_sites_xml_into_csv.xml   |  122 +
 .../repository/staging/tools/html/sites2table.xml  |  158 ++
 .../repository/staging/tools/mirmon/README.txt |   40 +
 .../tools/mirmon/convert_sites_xml_into_mirmon.xml |  116 +
 .../tools/mirmon/download_sites_xml_for_mirmon.sh  |   62 +
 .../sites/Argentina/openoffice.patan.com.ar.xml|   13 +
 .../data/mirrors/sites/Australia/AussieHQ.xml  |   13 +
 

[openoffice-org] branch main updated: Migration of promotions html content

2020-11-01 Thread wave
This is an automated email from the ASF dual-hosted git repository.

wave pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/openoffice-org.git


The following commit(s) were added to refs/heads/main by this push:
 new d67501d  Migration of promotions html content
d67501d is described below

commit d67501d303f80f3984aa95dc458cb3e72b658cc1
Author: Dave Fisher 
AuthorDate: Sun Nov 1 13:08:53 2020 -0800

Migration of promotions html content
---
 content/promotions/dfd.html | 39 +++
 1 file changed, 39 insertions(+)

diff --git a/content/promotions/dfd.html b/content/promotions/dfd.html
new file mode 100644
index 000..56fb409
--- /dev/null
+++ b/content/promotions/dfd.html
@@ -0,0 +1,39 @@
+http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd;>
+http://www.w3.org/1999/xhtml; />
+http://schema.org/Article;>
+  
+  
+  
+  http://www.openoffice.org/download/images/aoo-logo-100x100.png;>
+   
+
+  http://www.openoffice.org/download/images/aoo-logo-100x100.png; />
+  Document Freedom Day
+
+  
+function shareFacebook() {
+  _gaq.push(['_trackEvent','social', 'dfd', 'facebook']); 
+  
window.open('https://www.facebook.com/sharer/sharer.php?u=http%3A%2F%2Fwww.openoffice.org%2Fdownload%2F','_blank','toolbar=0,status=0,width=580,height=325');

+}
+function shareTwitter(){
+  _gaq.push(['_trackEvent','social', 'dfd', 'twitter']); 
+  
window.open('https://twitter.com/intent/tweet?url=http%3A%2F%2Fwww.openoffice.org%2Fdownload%2F&text=Join+the+OpenOffice+revolution%2C+the+free+office+productivity+suite+with+over+100+million+trusted+downloads.','_blank','toolbar=0,status=0,width=580,height=325');
+}
+function shareGooglePlus(){
+  _gaq.push(['_trackEvent','social', 'dfd', 'google+']); 
+  
window.open('https://plus.google.com/share?url=http%3A%2F%2Fwww.openoffice.org%2Fdownload%2F','_blank','toolbar=0,status=0,width=580,height=325');
+}
+  
+
+
+
+   
+
+Please tell your friends about Document Freedom Day
+
+
+
+
+
+
+



[openoffice-org] branch asf-staging updated: git-site-role commit from build_staging.sh

2020-11-01 Thread git-site-role
This is an automated email from the ASF dual-hosted git repository.

git-site-role pushed a commit to branch asf-staging
in repository https://gitbox.apache.org/repos/asf/openoffice-org.git


The following commit(s) were added to refs/heads/asf-staging by this push:
 new 9aea1ef  git-site-role commit from build_staging.sh
9aea1ef is described below

commit 9aea1ef9e34bee5dacfc4ceac35603465baab14f
Author: jenkins 
AuthorDate: Sun Nov 1 21:08:35 2020 +

git-site-role commit from build_staging.sh
---
 content/contributing/art.html  |  65 +
 content/contributing/help.html |  67 +
 content/contributing/index.html|  82 +++
 content/contributing/marketing.html|  67 +
 content/contributing/native-lang.html  |  67 +
 content/contributing/programming.html  | 196 +++
 content/contributing/qa.html   |  58 +
 content/contributing/robots.txt|   7 +
 content/contributing/tryouts/pgm_build.html|  91 +++
 content/contributing/tryouts/programming.html  |  96 
 content/contributing/writing.html  |  91 +++
 content/feed.xml   |   4 +-
 content/licenses/BSD.pdf   | Bin 0 -> 28736 bytes
 content/licenses/PDL.html  | 318 
 content/licenses/PDL.rtf   | 241 ++
 content/licenses/jca.pdf   | Bin 0 -> 38325 bytes
 content/licenses/lgpl_license.html |  31 +++
 content/licenses/oca.pdf   | Bin 0 -> 7740 bytes
 content/licenses/pdl.pdf   | Bin 0 -> 114102 bytes
 content/licenses/sca.pdf   | Bin 0 -> 67619 bytes
 content/licenses/sissl_license.html| 327 +
 content/licenses/sissl_license_1-1.pdf | Bin 0 -> 18206 bytes
 content/writerfirststeps/writerfirststeps.html |  64 +
 content/writerfirststeps/writerfirststeps.mov  | Bin 0 -> 168447 bytes
 content/writerfirststeps/writerfirststeps.swf  | Bin 0 -> 168255 bytes
 25 files changed, 1870 insertions(+), 2 deletions(-)

diff --git a/content/contributing/art.html b/content/contributing/art.html
new file mode 100644
index 000..d720355
--- /dev/null
+++ b/content/contributing/art.html
@@ -0,0 +1,65 @@
+
+
+
+  
+
+
+ Participate in OpenOffice.org
+ 
+ 
+
+
+
+ 
+
+  
+  
+
+
+  
+  homecontributing
+
+
+  
+  
+
+  
+  
+  Participate in OpenOffice.org
+  
+  
+
+
+ Graphics and Art
+
+   
+
+Have any art skills? Then you can help us create icons, logos, banners, 
labels, and more! These will be seen every day and used throughout the project 
and its products.
+If you are interested, consider joining our new http://marketing.openoffice.org/art/;> Art Project.  The Art Project 
is working closely with other open source projects, and is the center of art 
activity for the OpenOffice.org world.
+
+  
+
+ Read the provisions of the Art Project for donating images there. You 
might also find it useful to visit our Guidelines for Participate in 
OpenOffice.org page, which outlines the way in which your work can be 
channeled into this project.
+  
+
+  
+  
+ 
+  
+
+
+  
+
diff --git a/content/contributing/help.html b/content/contributing/help.html
new file mode 100644
index 000..0da9bad
--- /dev/null
+++ b/content/contributing/help.html
@@ -0,0 +1,67 @@
+
+
+
+  
+
+
+ Participate in OpenOffice.org
+ 
+ 
+
+
+
+ 
+
+  
+  
+
+
+  
+  homecontributing
+
+
+  
+  
+
+  
+  
+  Participate in OpenOffice.org
+  
+  
+
+
+ Helping Users
+
+   
+
+  A simple way to help out is by answering user questions. In doing this 
you will, indirectly, also help developers. Answering user questions takes 
time. Every question you answer clearly is a question a developer doesn't have 
to answer. The time taken to answer that question can be used to write code for 
OpenOffice.org. Furthermore, helping other users is an excellent way to learn a 
lot about OpenOffice.org yourself. There are two ways you can help other 
users:
+  
+  
+Users mailing list
+  The users mailing list is the primary avenue for OpenOffice.org tech 
support. Information about joining can be found at the Mailing lists page.
+  
+  
+Forums
+  Another popular support option is the http://user.services.openoffice.org;>OpenOffice.org Community 
Forum.
+  
+
+  
+ 
+  
+
+
+  
+
diff --git a/content/contributing/index.html b/content/contributing/index.html
new file mode 100644
index 000..0cc4f6e
--- /dev/null
+++ b/content/contributing/index.html
@@ -0,0 +1,82 @@
+
+
+
+  
+
+
+Participate in OpenOffice.org
+
+
+
+
+
+ 
+
+  
+  
+
+
+  
+  

[openoffice-org] branch main updated (c1a0973 -> ceec2c4)

2020-11-01 Thread wave
This is an automated email from the ASF dual-hosted git repository.

wave pushed a change to branch main
in repository https://gitbox.apache.org/repos/asf/openoffice-org.git.


from c1a0973  Migration of contributing html content
 new 4e0c5c3  Migration of docs assets
 new ceec2c4  Migration of docs html content

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 assets/docs/CVSCheckout.html.en|   97 ++
 assets/docs/CVSCheckout.html.ja|   98 ++
 assets/docs/CVSCheckout.html.ko|   97 ++
 assets/docs/DomAdminActions.html.en| 1226 
 assets/docs/DomAdminActions.html.ja| 1025 
 assets/docs/DomAdminActions.html.ko| 1209 +++
 assets/docs/DomAdminAddUsers.html.en   |  142 +++
 assets/docs/DomAdminAddUsers.html.ja   |  135 +++
 assets/docs/DomAdminAddUsers.html.ko   |  142 +++
 assets/docs/DomAdminLicenseAdmin.html.en   |  114 ++
 assets/docs/DomAdminLicenseAdmin.html.ja   |  117 ++
 assets/docs/DomAdminLicenseAdmin.html.ko   |  114 ++
 assets/docs/DomAdminOverview.html.en   |  128 ++
 assets/docs/DomAdminOverview.html.ja   |  123 ++
 assets/docs/DomAdminOverview.html.ko   |  128 ++
 assets/docs/DomAdminProjectApproval.html.en|  114 ++
 assets/docs/DomAdminProjectApproval.html.ja|  111 ++
 assets/docs/DomAdminProjectApproval.html.ko|  114 ++
 assets/docs/DomAdminProjectGroups.html.en  |  244 
 assets/docs/DomAdminProjectGroups.html.ja  |  232 
 assets/docs/DomAdminProjectGroups.html.ko  |  244 
 assets/docs/DomAdminRoles.html.en  |  207 
 assets/docs/DomAdminRoles.html.ja  |  203 
 assets/docs/DomAdminRoles.html.ko  |  205 
 assets/docs/DomAdminUserGroups.html.en |  120 ++
 assets/docs/DomAdminUserGroups.html.ja |  127 ++
 assets/docs/DomAdminUserGroups.html.ko |  120 ++
 assets/docs/DomAdminUtils.html.en  |  152 +++
 assets/docs/DomAdminUtils.html.ja  |   85 ++
 assets/docs/DomAdminUtils.html.ko  |  152 +++
 assets/docs/DomainCommunity.html.en|   84 ++
 assets/docs/DomainCommunity.html.ja|   91 ++
 assets/docs/DomainCommunity.html.ko|   84 ++
 assets/docs/DomainCopyright.html.en|   46 +
 assets/docs/DomainCopyright.html.ja|   49 +
 assets/docs/DomainCopyright.html.ko|   46 +
 assets/docs/DomainFAQ.html.en  |  171 +++
 assets/docs/DomainFAQ.html.ja  |  152 +++
 assets/docs/DomainFAQ.html.ko  |  171 +++
 assets/docs/DomainFeedback.html.en |   54 +
 assets/docs/DomainFeedback.html.ja |   56 +
 assets/docs/DomainFeedback.html.ko |   54 +
 assets/docs/DomainPrivacyPolicy.html.en|   86 ++
 assets/docs/DomainPrivacyPolicy.html.ja|  110 ++
 assets/docs/DomainPrivacyPolicy.html.ko|   86 ++
 assets/docs/DomainProjectDatabase.html.en  |   78 ++
 assets/docs/DomainProjectDatabase.html.ja  |   76 ++
 assets/docs/DomainProjectDatabase.html.ko  |   78 ++
 assets/docs/DomainTermsOfUse.html.en   |   40 +
 assets/docs/DomainTermsOfUse.html.ja   |   49 +
 assets/docs/DomainTermsOfUse.html.ko   |   40 +
 assets/docs/HostAdminUtils.html.en |  171 +++
 assets/docs/HostAdminUtils.html.ja |  100 ++
 assets/docs/HostAdminUtils.html.ko |  171 +++
 assets/docs/Joining.html.en|   42 +
 assets/docs/Joining.html.ja|   43 +
 assets/docs/Joining.html.ko|   42 +
 assets/docs/Learning.html.en   |   60 +
 assets/docs/Learning.html.ja   |   61 +
 assets/docs/Learning.html.ko   |   60 +
 assets/docs/NavigatingWebspace.html.en |   62 +
 assets/docs/NavigatingWebspace.html.ja |   62 +
 assets/docs/NavigatingWebspace.html.ko |   62 +
 assets/docs/NewsItemViewTasks.html.en  |   11 +
 assets/docs/NewsItemViewTasks.html.ja  |   11 +
 assets/docs/NewsItemViewTasks.html.ko  |   11 +
 assets/docs/ProjectAdd.html.en |   94 ++
 assets/docs/ProjectAdd.html.ja |   94 ++
 assets/docs/ProjectAdd.html.ko |   94 ++
 assets/docs/ProjectAddConfirm.html.en  |   66 ++
 

[openoffice-org] 02/02: Migration of contributing html content

2020-11-01 Thread wave
This is an automated email from the ASF dual-hosted git repository.

wave pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/openoffice-org.git

commit c1a09731992f71f1a0fd91aafc711babc63da6c7
Author: Dave Fisher 
AuthorDate: Sun Nov 1 13:07:49 2020 -0800

Migration of contributing html content
---
 content/contributing/art.html |  42 +++
 content/contributing/help.html|  44 +++
 content/contributing/index.html   |  58 +
 content/contributing/marketing.html   |  44 +++
 content/contributing/native-lang.html |  44 +++
 content/contributing/programming.html | 173 ++
 content/contributing/qa.html  |  35 ++
 content/contributing/tryouts/pgm_build.html   |  51 
 content/contributing/tryouts/programming.html |  55 
 content/contributing/writing.html |  68 ++
 10 files changed, 614 insertions(+)

diff --git a/content/contributing/art.html b/content/contributing/art.html
new file mode 100644
index 000..963338f
--- /dev/null
+++ b/content/contributing/art.html
@@ -0,0 +1,42 @@
+
+
+ Participate in OpenOffice.org
+ 
+ 
+
+
+
+  Participate in OpenOffice.org
+  
+  
+
+
+ Graphics and Art
+
+   
+
+Have any art skills? Then you can help us create icons, logos, banners, 
labels, and more! These will be seen every day and used throughout the project 
and its products.
+If you are interested, consider joining our new http://marketing.openoffice.org/art/;> Art Project.  The Art Project 
is working closely with other open source projects, and is the center of art 
activity for the OpenOffice.org world.
+
+  
+
+ Read the provisions of the Art Project for donating images there. You 
might also find it useful to visit our Guidelines for Participate in 
OpenOffice.org page, which outlines the way in which your work can be 
channeled into this project.
+  
+
+  
+  
+ 
+
diff --git a/content/contributing/help.html b/content/contributing/help.html
new file mode 100644
index 000..a9bc3b6
--- /dev/null
+++ b/content/contributing/help.html
@@ -0,0 +1,44 @@
+
+
+ Participate in OpenOffice.org
+ 
+ 
+
+
+
+  Participate in OpenOffice.org
+  
+  
+
+
+ Helping Users
+
+   
+
+  A simple way to help out is by answering user questions. In doing this 
you will, indirectly, also help developers. Answering user questions takes 
time. Every question you answer clearly is a question a developer doesn't have 
to answer. The time taken to answer that question can be used to write code for 
OpenOffice.org. Furthermore, helping other users is an excellent way to learn a 
lot about OpenOffice.org yourself. There are two ways you can help other 
users:
+  
+  
+Users mailing list
+  The users mailing list is the primary avenue for OpenOffice.org tech 
support. Information about joining can be found at the Mailing lists page.
+  
+  
+Forums
+  Another popular support option is the http://user.services.openoffice.org;>OpenOffice.org Community 
Forum.
+  
+
+  
+ 
+
diff --git a/content/contributing/index.html b/content/contributing/index.html
new file mode 100644
index 000..4a39e79
--- /dev/null
+++ b/content/contributing/index.html
@@ -0,0 +1,58 @@
+
+
+Participate in OpenOffice.org
+
+
+
+
+  Participate in OpenOffice.org
+  OpenOffice.org always welcomes new contributors  especially new 
programmers. But no matter what your skills and interests are, there is a place 
where you can participate to improve OpenOffice.org:
+  
+  
+
+ 
+Programming
+
+
+Marketing
+  
+   
+
+
+Quality 
Assurance
+
+
+Graphics and 
Art
+   
+   
+
+
+Writing
+
+
+Helping 
Users
+  
+   
+
+http://ux.openoffice.org/;>
+http://ux.openoffice.org/;>User Experience
+
+
+Language Communities 
+  
+  
+  Before submitting your work, please read the 'Guidelines for Participate in 
OpenOffice.org'. It will enumerate to you how contributions will be used, 
and how the OpenOffice.org community organises its collaboration.
+  
+ 
+
diff --git a/content/contributing/marketing.html 
b/content/contributing/marketing.html
new file mode 100644
index 000..ab0314e
--- /dev/null
+++ b/content/contributing/marketing.html
@@ -0,0 +1,44 @@
+
+
+ Participate in OpenOffice.org
+ 
+ 
+
+
+
+  Participate in OpenOffice.org
+  
+  
+
+
+ Marketing
+
+   
+
+You can always help promote the use of OpenOffice.org. Here are two ways 
you can help:
+  
+  
+Join the marketing project
+  The aims of the marketing project are to further the growth and use of 
OpenOffice.org throughout the world and act as a communications group within 
the project. To learn more about this opportunity, visit the http://marketing.openoffice.org/;>Marketing project home page.
+  
+  
+Distribute OpenOffice.org
+  We 

[openoffice-org] 01/02: Migration of writerfirststeps assets

2020-11-01 Thread wave
This is an automated email from the ASF dual-hosted git repository.

wave pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/openoffice-org.git

commit 39775c907746ce491dd55ebaf35544eb8843d64d
Author: Dave Fisher 
AuthorDate: Sun Nov 1 13:07:06 2020 -0800

Migration of writerfirststeps assets
---
 assets/writerfirststeps/writerfirststeps.mov | Bin 0 -> 168447 bytes
 assets/writerfirststeps/writerfirststeps.swf | Bin 0 -> 168255 bytes
 2 files changed, 0 insertions(+), 0 deletions(-)

diff --git a/assets/writerfirststeps/writerfirststeps.mov 
b/assets/writerfirststeps/writerfirststeps.mov
new file mode 100644
index 000..58d9a38
Binary files /dev/null and b/assets/writerfirststeps/writerfirststeps.mov differ
diff --git a/assets/writerfirststeps/writerfirststeps.swf 
b/assets/writerfirststeps/writerfirststeps.swf
new file mode 100644
index 000..86df695
Binary files /dev/null and b/assets/writerfirststeps/writerfirststeps.swf differ



[openoffice-org] 01/02: Migration of contributing assets

2020-11-01 Thread wave
This is an automated email from the ASF dual-hosted git repository.

wave pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/openoffice-org.git

commit 86ce052f250fd27efcac86ab11887df7c90495c1
Author: Dave Fisher 
AuthorDate: Sun Nov 1 13:07:49 2020 -0800

Migration of contributing assets
---
 assets/contributing/robots.txt | 7 +++
 1 file changed, 7 insertions(+)

diff --git a/assets/contributing/robots.txt b/assets/contributing/robots.txt
new file mode 100644
index 000..7e0b2af
--- /dev/null
+++ b/assets/contributing/robots.txt
@@ -0,0 +1,7 @@
+User-Agent: *
+Disallow: /source/
+Disallow: /issues/
+Disallow: /search/
+Disallow: /servlets/
+Disallow: /project/
+Disallow: /nonav/



[openoffice-org] branch main updated (f86e77b -> c1a0973)

2020-11-01 Thread wave
This is an automated email from the ASF dual-hosted git repository.

wave pushed a change to branch main
in repository https://gitbox.apache.org/repos/asf/openoffice-org.git.


from f86e77b  Migration of writerfirststeps html content
 new 86ce052  Migration of contributing assets
 new c1a0973  Migration of contributing html content

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 assets/{support/tryout => contributing}/robots.txt |   0
 content/contributing/art.html  |  42 +
 content/contributing/help.html |  44 ++
 content/contributing/index.html|  58 +++
 content/contributing/marketing.html|  44 ++
 content/contributing/native-lang.html  |  44 ++
 content/contributing/programming.html  | 173 +
 content/contributing/qa.html   |  35 +
 content/contributing/tryouts/pgm_build.html|  51 ++
 content/contributing/tryouts/programming.html  |  55 +++
 content/contributing/writing.html  |  68 
 11 files changed, 614 insertions(+)
 copy assets/{support/tryout => contributing}/robots.txt (100%)
 create mode 100644 content/contributing/art.html
 create mode 100644 content/contributing/help.html
 create mode 100644 content/contributing/index.html
 create mode 100644 content/contributing/marketing.html
 create mode 100644 content/contributing/native-lang.html
 create mode 100644 content/contributing/programming.html
 create mode 100644 content/contributing/qa.html
 create mode 100644 content/contributing/tryouts/pgm_build.html
 create mode 100644 content/contributing/tryouts/programming.html
 create mode 100644 content/contributing/writing.html



[openoffice-org] 02/03: Migration of licenses html content

2020-11-01 Thread wave
This is an automated email from the ASF dual-hosted git repository.

wave pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/openoffice-org.git

commit 5e3720b2f829964a1365c6248a98d3aad070ae6d
Author: Dave Fisher 
AuthorDate: Sun Nov 1 13:06:14 2020 -0800

Migration of licenses html content
---
 content/licenses/PDL.html   | 295 ++
 content/licenses/sissl_license.html | 304 
 2 files changed, 599 insertions(+)

diff --git a/content/licenses/PDL.html b/content/licenses/PDL.html
new file mode 100644
index 000..30e7c87
--- /dev/null
+++ b/content/licenses/PDL.html
@@ -0,0 +1,295 @@
+
+
+
+
+Public Documentation License
+
+
+
+
+
+body, p, h1, h2, h3, h4, h5, div, li, td, th, dd, 
input, select, span, font {
+   font-family:Times, Times New Roman; 11pt; color: #000;
+   }
+   h1 {text-align: center;
+   }
+   h2 {text-align: center;
+   }
+   h3 {text-align: left; text-indent: 1em;
+   }
+   h4 {text-align:left; text-indent: 2em;
+   }
+   h5 {text-align:left; text-indent: 4em;
+   }
+   p {text-indent:  3em;
+   }
+   .subp {text-indent: 4em;
+   }
+   
+
+
+PUBLIC DOCUMENTATION LICENSE
+Version 1.0 
+
+1.0 DEFINITIONS.
+
+1.1. Commercial Use means distribution or 
otherwise 
+  making the Documentation available to a third party. 
+
+1.2. Contributor means a person or entity who 
+  creates or contributes to the creation of Modifications. 
+
+1.3. Documentation means the Original 
Documentation 
+  or Modifications or the combination of the Original Documentation and 
Modifications, 
+  in each case including portions thereof.
+
+1.4. Electronic Distribution Mechanism means a 
+  mechanism generally accepted for the electronic transfer of data. 
+
+1.5. Initial Writer means the individual or 
entity 
+  identified as the Initial Writer in the notice required by the 
Appendix. 
+
+
+1.6. Larger Work means a work which combines 
Documentation 
+  or portions thereof with documentation or other writings not governed by the 
+  terms of this License. 
+
+1.7. License means this document. 
+
+1.8. Modifications means any addition to or 
deletion 
+  from the substance or structure of either the Original Documentation or any 
+  previous Modifications, such as a translation, abridgment, condensation, or 
+  any other form in which the Original Documentation or previous Modifications 
+  may be recast, transformed or adapted. A work consisting of editorial 
revisions, 
+  annotations, elaborations, and other modifications which, as a whole 
represent 
+  an original work of authorship, is a Modification. For example, when 
Documentation 
+  is released as a series of documents, a Modification is: 
+
+A. Any addition to or deletion from the 
contents 
+  of the Original Documentation or previous Modifications. 
+
+B. Any new documentation that contains any 
part 
+  of the Original Documentation or previous Modifications. 
+
+1.9. Original Documentation means 
documentation 
+  described as Original Documentation in the notice required by the 
Appendix, 
+  and which, at the time of its release under this License is not already 
Documentation 
+  governed by this License. 
+
+1.10. Editable Form means the preferred form 
of 
+  the Documentation for making Modifications to it. The Documentation can be 
in 
+  an electronic, compressed or archival form, provided the appropriate 
decompression 
+  or de-archiving software is widely available for no charge. 
+
+1.11. You (or Your) means an 
individual 
+  or a legal entity exercising rights under, and complying with all of the 
terms 
+  of this License or a future version of this License issued under Section 5.0 
+  (Versions of the License). For legal entities, You 
includes 
+  any entity which controls, is controlled by, or is under common control with 
+  You. For purposes of this definition, control means (a) the 
power, 
+  direct or indirect, to cause the direction or management of such entity, 
whether 
+  by contract or otherwise, or (b) ownership of more than fifty percent (50%) 
+  of the outstanding shares or beneficial ownership of such entity.
+
+2.0 LICENSE GRANTS.
+
+2.1 Initial Writer Grant.
+
+ The Initial Writer hereby grants You a world-wide, royalty-free, 
non-exclusive 
+  license to use, reproduce, prepare Modifications of, compile, publicly 
perform, 
+  publicly display, demonstrate, market, disclose and distribute the 
Documentation 
+  in any form, on any media or via any Electronic Distribution Mechanism or 
other 
+  method now known or later discovered, and to sublicense the foregoing rights 
+  to third parties through multiple tiers of sublicensees in accordance with 
the 
+  terms of this License. 
+ The license rights granted in this Section 2.1 (Initial Writer 
Grant) 
+  are effective on the date Initial Writer first distributes Original 

[openoffice-org] 02/02: Migration of writerfirststeps html content

2020-11-01 Thread wave
This is an automated email from the ASF dual-hosted git repository.

wave pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/openoffice-org.git

commit f86e77baab9f9537e79ebb032a4f820b36529583
Author: Dave Fisher 
AuthorDate: Sun Nov 1 13:07:07 2020 -0800

Migration of writerfirststeps html content
---
 content/writerfirststeps/writerfirststeps.html | 41 ++
 1 file changed, 41 insertions(+)

diff --git a/content/writerfirststeps/writerfirststeps.html 
b/content/writerfirststeps/writerfirststeps.html
new file mode 100644
index 000..a11dfb2
--- /dev/null
+++ b/content/writerfirststeps/writerfirststeps.html
@@ -0,0 +1,41 @@
+
+
+
+OpenOffice.org - First steps with Writer (video)
+
+
+
+   
+  
+  
+  
+
+
+  
+ 
+   
+   
+ 
+ 
+   
+http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=4,0,0,0;
 width="600" height="400" align="middle">
+  
+  
+  http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash;
 type="application/x-shockwave-flash" width="600" height="400" align="middle"> 
+   
+
+  
+  
+
+
+  
+  
+  A Quicktime movie version (.mov) is available here. 
+  (165kB) 
+
+  
+  
+
+
+
+



[openoffice-org] branch main updated (1025cf1 -> f86e77b)

2020-11-01 Thread wave
This is an automated email from the ASF dual-hosted git repository.

wave pushed a change to branch main
in repository https://gitbox.apache.org/repos/asf/openoffice-org.git.


from 1025cf1  Migration of licenses Markdown pages
 new 39775c9  Migration of writerfirststeps assets
 new f86e77b  Migration of writerfirststeps html content

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 assets/writerfirststeps/writerfirststeps.mov   | Bin 0 -> 168447 bytes
 assets/writerfirststeps/writerfirststeps.swf   | Bin 0 -> 168255 bytes
 content/writerfirststeps/writerfirststeps.html |  41 +
 3 files changed, 41 insertions(+)
 create mode 100644 assets/writerfirststeps/writerfirststeps.mov
 create mode 100644 assets/writerfirststeps/writerfirststeps.swf
 create mode 100644 content/writerfirststeps/writerfirststeps.html



[openoffice-org] branch main updated (41f39cb -> 1025cf1)

2020-11-01 Thread wave
This is an automated email from the ASF dual-hosted git repository.

wave pushed a change to branch main
in repository https://gitbox.apache.org/repos/asf/openoffice-org.git.


from 41f39cb  Migration of bibliographic html content
 new 375  Migration of licenses assets
 new 5e3720b  Migration of licenses html content
 new 1025cf1  Migration of licenses Markdown pages

The 3 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 assets/licenses/BSD.pdf   | Bin 0 -> 28736 bytes
 assets/licenses/PDL.rtf   | 241 +++
 assets/licenses/jca.pdf   | Bin 0 -> 38325 bytes
 assets/licenses/oca.pdf   | Bin 0 -> 7740 bytes
 assets/licenses/pdl.pdf   | Bin 0 -> 114102 bytes
 assets/licenses/sca.pdf   | Bin 0 -> 67619 bytes
 assets/licenses/sissl_license_1-1.pdf | Bin 0 -> 18206 bytes
 content/licenses/PDL.html | 295 +
 content/licenses/lgpl_license.md  |  12 ++
 content/licenses/sissl_license.html   | 304 ++
 10 files changed, 852 insertions(+)
 create mode 100755 assets/licenses/BSD.pdf
 create mode 100644 assets/licenses/PDL.rtf
 create mode 100644 assets/licenses/jca.pdf
 create mode 100644 assets/licenses/oca.pdf
 create mode 100644 assets/licenses/pdl.pdf
 create mode 100644 assets/licenses/sca.pdf
 create mode 100644 assets/licenses/sissl_license_1-1.pdf
 create mode 100644 content/licenses/PDL.html
 create mode 100644 content/licenses/lgpl_license.md
 create mode 100644 content/licenses/sissl_license.html



[openoffice-org] 03/03: Migration of licenses Markdown pages

2020-11-01 Thread wave
This is an automated email from the ASF dual-hosted git repository.

wave pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/openoffice-org.git

commit 1025cf1a90679811b4de1e803d4587ae832e4801
Author: Dave Fisher 
AuthorDate: Sun Nov 1 13:06:14 2020 -0800

Migration of licenses Markdown pages
---
 content/licenses/lgpl_license.md | 12 
 1 file changed, 12 insertions(+)

diff --git a/content/licenses/lgpl_license.md b/content/licenses/lgpl_license.md
new file mode 100644
index 000..e8333a7
--- /dev/null
+++ b/content/licenses/lgpl_license.md
@@ -0,0 +1,12 @@
+type=page
+title=Historical OpenOffice Licenses 
+notice=https://www.apache.org/licenses/LICENSE-2.0
+~~
+The OpenOffice product has been published under various licenses since it was
+first made available as open source in 2000. 
[LGPLv3](http://www.gnu.org/licenses/lgpl.html)
+was used for OpenOffice.org 3.0 beta through OpenOffice 3.4 beta.  Currently 
+[Apache License 2.0](http://www.apache.org/licenses/LICENSE-2.0.html) is used, 
+since Apache OpenOffice 3.4.0.
+
+A more detailed review of the history and pointers to current and historical 
+licenses for OpenOffice code and documentation can be found 
[here](http://www.openoffice.org/license.html).



[openoffice-org] 01/03: Migration of licenses assets

2020-11-01 Thread wave
This is an automated email from the ASF dual-hosted git repository.

wave pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/openoffice-org.git

commit 3756afb261ef465e4d27c52ee01af61d10df
Author: Dave Fisher 
AuthorDate: Sun Nov 1 13:06:14 2020 -0800

Migration of licenses assets
---
 assets/licenses/BSD.pdf   | Bin 0 -> 28736 bytes
 assets/licenses/PDL.rtf   | 241 ++
 assets/licenses/jca.pdf   | Bin 0 -> 38325 bytes
 assets/licenses/oca.pdf   | Bin 0 -> 7740 bytes
 assets/licenses/pdl.pdf   | Bin 0 -> 114102 bytes
 assets/licenses/sca.pdf   | Bin 0 -> 67619 bytes
 assets/licenses/sissl_license_1-1.pdf | Bin 0 -> 18206 bytes
 7 files changed, 241 insertions(+)

diff --git a/assets/licenses/BSD.pdf b/assets/licenses/BSD.pdf
new file mode 100755
index 000..13846f0
Binary files /dev/null and b/assets/licenses/BSD.pdf differ
diff --git a/assets/licenses/PDL.rtf b/assets/licenses/PDL.rtf
new file mode 100644
index 000..7667010
--- /dev/null
+++ b/assets/licenses/PDL.rtf
@@ -0,0 +1,241 @@
+{\rtf1\mac\ansicpg1\cocoartf100
+{\fonttbl\f0\froman\fcharset77 Times New Roman;\f1\fswiss\fcharset77 
Helvetica;\f2\fswiss\fcharset77 Helvetica-Bold;
+}
+{\colortbl;\red255\green255\blue255;}
+\paperw12240\paperh15781\margl1426\margr1426\vieww9000\viewh9000\viewkind0
+\pard\qc
+
+\f0\fs24 \cf0 PUBLIC DOCUMENTATION LICENSE \
+Version 1.0 \
+\pard\ql\qnatural
+
+\f1\fs22 \cf0 \
+\pard\ql\qnatural
+
+\f0\fs24 \cf0 1.0 DEFINITIONS. \
+\pard\ql\qnatural
+
+\f1\fs22 \cf0 \
+   
+\f0 1.1. "Commercial Use" means distribution or otherwise making the 
Documentation available to a third party. \
+\
+   1.2. "Contributor" means a person or entity who creates or contributes 
to the creation of Modifications. \
+\
+   1.3. "Documentation" means the Original Documentation or Modifications 
or the combination of the Original Documentation and Modifications, in each 
case including portions thereof.\
+\
+   1.4. "Electronic Distribution Mechanism" means a mechanism generally 
accepted for the electronic transfer of data. \
+\
+   1.5. "Initial Writer" means the individual or entity identified as the 
Initial Writer in the notice required by the Appendix. \
+\
+   1.6. "Larger Work" means a work which combines Documentation or 
portions thereof with documentation or other writings not governed by the terms 
of this License. \
+\
+   1.7. "License" means this document. \
+\
+   1.8. "Modifications" means any addition to or deletion from the 
substance or structure of either the Original Documentation or any previous 
Modifications, such as a translation, abridgment, condensation, or any other 
form in which the Original Documentation or previous Modifications may be 
recast, transformed or adapted.  A work consisting of editorial revisions, 
annotations, elaborations, and other modifications which, as a whole represent 
an original work of authorship, is a Modificat [...]
+\
+   A. Any addition to or deletion from the contents of the 
Original Documentation or previous Modifications. \
+\
+   B. Any new documentation that contains any part of the Original 
Documentation or previous Modifications. \
+\
+   1.9. "Original Documentation" means documentation described as Original 
Documentation in the notice required by the Appendix, and which, at the time of 
its release under this License is not already Documentation governed by this 
License. \
+\
+   1.10. "Editable Form" means the preferred form of the Documentation for 
making Modifications to it.  The Documentation can be in an electronic, 
compressed or archival form, provided the appropriate decompression or 
de-archiving software is widely available for no charge. \
+\
+   1.11. "You" (or "Your") means an individual or a legal entity 
exercising rights under, and complying with all of the terms of this License or 
a future version of this License issued under Section 5.0 ("Versions of the 
License"). For legal entities, "You" includes any entity which controls, is 
controlled by, or is under common control with You. For purposes of this 
definition, "control" means (a) the power, direct or indirect, to cause the 
direction or management of such entity, whether  [...]
+\pard\ql\qnatural
+
+\f2\b \cf0 \
+\pard\ql\qnatural
+
+\f0\b0\fs24 \cf0 2.0 LICENSE GRANTS. \
+\
+\pard\ql\qnatural
+
+\f2\b\fs22 \cf0
+\f0\b0 2.1  Initial Writer Grant. \
+\pard\ql\qnatural
+
+\f1 \cf0 \
+   
+\f0 The Initial Writer hereby grants You a world-wide, royalty-free, 
non-exclusive license to use, reproduce, prepare Modifications of, compile, 
publicly perform, publicly display, demonstrate, market, disclose and 
distribute the Documentation in any form, on any media or via any Electronic 
Distribution Mechanism or other method now known or later discovered, and to 
sublicense the 

[openoffice-org] branch asf-staging updated: git-site-role commit from build_staging.sh

2020-11-01 Thread git-site-role
This is an automated email from the ASF dual-hosted git repository.

git-site-role pushed a commit to branch asf-staging
in repository https://gitbox.apache.org/repos/asf/openoffice-org.git


The following commit(s) were added to refs/heads/asf-staging by this push:
 new c6fca39  git-site-role commit from build_staging.sh
c6fca39 is described below

commit c6fca3917ecdbfd3fa4839ce77f4e53dc7fb6a6d
Author: jenkins 
AuthorDate: Sun Nov 1 21:06:02 2020 +

git-site-role commit from build_staging.sh
---
 content/feed.xml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/content/feed.xml b/content/feed.xml
index a0343bf..d625807 100644
--- a/content/feed.xml
+++ b/content/feed.xml
@@ -6,8 +6,8 @@
 http://localhost:8820/feed.xml; rel="self" 
type="application/rss+xml" />
 OpenOffice.org Feed
 en-us
-Sun, 1 Nov 2020 21:05:00 +
-Sun, 1 Nov 2020 21:05:00 +
+Sun, 1 Nov 2020 21:05:59 +
+Sun, 1 Nov 2020 21:05:59 +
 
 




[openoffice-org] branch main updated (a634fc5 -> 41f39cb)

2020-11-01 Thread wave
This is an automated email from the ASF dual-hosted git repository.

wave pushed a change to branch main
in repository https://gitbox.apache.org/repos/asf/openoffice-org.git.


from a634fc5  Migration of bugs html content
 new 23b4711  Migration of bibliographic assets
 new 41f39cb  Migration of bibliographic html content

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 assets/bibliographic/BiblioDB/images/alert.png |  Bin 0 -> 333 bytes
 assets/bibliographic/BiblioDB/images/aliasdt.gif   |  Bin 0 -> 177 bytes
 assets/bibliographic/BiblioDB/images/basicdt.gif   |  Bin 0 -> 187 bytes
 assets/bibliographic/BiblioDB/images/blueball.gif  |  Bin 0 -> 940 bytes
 assets/bibliographic/BiblioDB/images/danger.png|  Bin 0 -> 276 bytes
 .../BiblioDB/images/er-views/Bibli0DB.png  |  Bin 0 -> 61021 bytes
 .../BiblioDB/images/er-views/Bibli0DB_agents.png   |  Bin 0 -> 3218 bytes
 .../images/er-views/Bibli0DB_annotations.png   |  Bin 0 -> 2113 bytes
 .../images/er-views/Bibli0DB_collection_types.png  |  Bin 0 -> 2165 bytes
 .../images/er-views/Bibli0DB_collections.png   |  Bin 0 -> 3378 bytes
 .../images/er-views/Bibli0DB_contributions.png |  Bin 0 -> 2803 bytes
 .../images/er-views/Bibli0DB_contributors.png  |  Bin 0 -> 3003 bytes
 .../images/er-views/Bibli0DB_event_types.png   |  Bin 0 -> 2035 bytes
 .../BiblioDB/images/er-views/Bibli0DB_events.png   |  Bin 0 -> 3501 bytes
 .../BiblioDB/images/er-views/Bibli0DB_feeds.png|  Bin 0 -> 3520 bytes
 .../images/er-views/Bibli0DB_locator_type.png  |  Bin 0 -> 2102 bytes
 .../BiblioDB/images/er-views/Bibli0DB_locators.png |  Bin 0 -> 2545 bytes
 .../BiblioDB/images/er-views/Bibli0DB_names.png|  Bin 0 -> 4029 bytes
 .../BiblioDB/images/er-views/Bibli0DB_notes.png|  Bin 0 -> 2365 bytes
 .../images/er-views/Bibli0DB_notes_types.png   |  Bin 0 -> 1974 bytes
 .../images/er-views/Bibli0DB_reference_items.png   |  Bin 0 -> 3973 bytes
 .../images/er-views/Bibli0DB_reference_types.png   |  Bin 0 -> 2031 bytes
 .../images/er-views/Bibli0DB_relation_types.png|  Bin 0 -> 2164 bytes
 .../images/er-views/Bibli0DB_relations.png |  Bin 0 -> 3303 bytes
 .../BiblioDB/images/er-views/Bibli0DB_roles.png|  Bin 0 -> 1698 bytes
 .../BiblioDB/images/er-views/Bibli0DB_small.png|  Bin 0 -> 11040 bytes
 .../BiblioDB/images/er-views/Bibli0DB_tagings.png  |  Bin 0 -> 2384 bytes
 .../BiblioDB/images/er-views/Bibli0DB_tags.png |  Bin 0 -> 1770 bytes
 .../BiblioDB/images/er-views/Bibli0DB_users.png|  Bin 0 -> 2577 bytes
 assets/bibliographic/BiblioDB/images/folder.png|  Bin 0 -> 293 bytes
 assets/bibliographic/BiblioDB/images/function.gif  |  Bin 0 -> 164 bytes
 assets/bibliographic/BiblioDB/images/greenball.gif |  Bin 0 -> 940 bytes
 assets/bibliographic/BiblioDB/images/info.png  |  Bin 0 -> 327 bytes
 .../bibliographic/BiblioDB/images/large/alert.png  |  Bin 0 -> 2725 bytes
 .../bibliographic/BiblioDB/images/large/danger.png |  Bin 0 -> 2776 bytes
 .../bibliographic/BiblioDB/images/large/info.png   |  Bin 0 -> 4819 bytes
 assets/bibliographic/BiblioDB/images/procedure.png |  Bin 0 -> 286 bytes
 .../bibliographic/BiblioDB/images/purpleball.gif   |  Bin 0 -> 940 bytes
 assets/bibliographic/BiblioDB/images/sequence.png  |  Bin 0 -> 354 bytes
 assets/bibliographic/BiblioDB/images/set.gif   |  Bin 0 -> 86 bytes
 assets/bibliographic/BiblioDB/images/table.png |  Bin 0 -> 223 bytes
 assets/bibliographic/BiblioDB/images/unset.gif |  Bin 0 -> 75 bytes
 assets/bibliographic/BiblioDB/images/view.png  |  Bin 0 -> 239 bytes
 .../bibliographic/BiblioDB/images/yellowball.gif   |  Bin 0 -> 940 bytes
 assets/bibliographic/BiblioDB/main/stylesheet.css  |   85 +
 ..._functional_requirements_6_27_html_396f2f2b.gif |  Bin 0 -> 5227 bytes
 ...functional_requirements_6_27_html_m6bd80934.gif |  Bin 0 -> 5227 bytes
 .../GUI-MODS-proposal_html_33aa2a15.jpg|  Bin 0 -> 37447 bytes
 .../GUI-MODS-proposal_html_m2cae1023.jpg   |  Bin 0 -> 96486 bytes
 assets/bibliographic/TextFields.png|  Bin 0 -> 58681 bytes
 assets/bibliographic/WP-bib-suport-1.0.pdf |  Bin 0 -> 188406 bytes
 assets/bibliographic/WP-bib-suport-1.0.sxw |  Bin 0 -> 12282 bytes
 assets/bibliographic/XML-bibliography-proposal.pdf |  Bin 0 -> 70854 bytes
 .../__modules/left_sidebar_topics.htmlx|   38 +
 assets/bibliographic/abbrv.pdf |  Bin 0 -> 39905 bytes
 assets/bibliographic/background-2.png  |  Bin 0 -> 9848 bytes
 assets/bibliographic/background-3.png  |  Bin 0 -> 15267 bytes
 assets/bibliographic/backwards.png |  Bin 0 -> 73870 bytes
 assets/bibliographic/basic functions-s.png |  Bin 0 -> 97608 bytes
 

[openoffice-org] branch main updated: Migration of bugs html content

2020-11-01 Thread wave
This is an automated email from the ASF dual-hosted git repository.

wave pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/openoffice-org.git


The following commit(s) were added to refs/heads/main by this push:
 new a634fc5  Migration of bugs html content
a634fc5 is described below

commit a634fc5a813c8e4f8ed5c6223c78f8e8ff4e
Author: Dave Fisher 
AuthorDate: Sun Nov 1 13:01:50 2020 -0800

Migration of bugs html content
---
 content/bugs/bug_writing_guidelines.html | 117 
 content/bugs/issues.html | 306 +++
 2 files changed, 423 insertions(+)

diff --git a/content/bugs/bug_writing_guidelines.html 
b/content/bugs/bug_writing_guidelines.html
new file mode 100644
index 000..3bc6328
--- /dev/null
+++ b/content/bugs/bug_writing_guidelines.html
@@ -0,0 +1,117 @@
+
+
+Issue Writing Guidelines
+
+
+
+
+Issue Writing Guidelines
+
+
+Why you should read this
+
+
+ Simply put, the more effectively you report an issue, the more likely an 
engineer will actually fix it. These issue writing guidelines are an attempt at 
a general tutorial on writing effective issue reports for novice issue writers; 
not every sentence may precisely apply to your software project. 
+
+
+
+How to Write a Useful Issue Report
+
+ 
+Useful issue reports are ones that get issues fixed. A useful issue report 
normally has two qualities:
+
+ Reproducible. If an engineer can't see it or conclusively 
prove that it exists, the engineer will probably stamp it "WORKSFORME" or 
"INVALID", and move on to the next issue. Every detail you can provide helps. 

+
+ Specific. The quicker the engineer can isolate the issue to a 
specific problem, the more likely it'll be expediently fixed. (If a 
programmer or tester has to decipher an issue, they spend more time cursing the 
submitter than fixing or testing the problem.)  
+
+ Let's say the application you're testing is a web browser. You 
crash at foo.com, and want to write up an issue report: 
+
+ Bad: "My spreadsheet crashed when I tried to open a 
document. I think it contained a chart. My computer uses Windows. I think that 
this is a really bad problem and you should fix it now. By the way, your icons 
really suck. Nobody will use your software if you keep those ugly icons. Oh, 
and my grandmother's has a problem with the word processor. Nothing works 
right, either. Good luck."
+
+ 
+  Good: "I crashed each time when I opened the attached spreadsheet 
document using the 10.13.00 build on a Win NT 4.0 (Service Pack 5) system. I 
also rebooted into Linux (RedHat 6.2), and reproduced this problem using the 
10.13.00 Linux build.
+When I removed the chart from the document I was able to load it without 
any trouble." 
+ 
+How to enter a useful Issue Report into IssueZilla
+ In order to file an Issue, you must be a registered user of 
OpenOffice.org. Registering is easy: simply click on the "Join" link in the 
left navbar and follow the instructions. It takes all of a few minutes. If you 
are a registered user, click on the "My Issues" link in the left navbar or on 
the "Bugs and Issues" link 
on the navbar. The latter is a more comprehensive page which provides a 
explanation of IssueZilla and also  [...]
+ Go to the IssueZilla Query 
Page to determine whether the defect you've discovered is a known issue and 
has already been reported. (If your issue is the 37th duplicate of a known 
issue, you're more likely to annoy the engineer. Annoyed engineers fix fewer 
issues.)
+
+Next, be sure that you've reproduced your issue using a recent build. 
(Engineers tend to be most interested in problems afflicting the code base that 
they're actively working on, rather than those in a code base that's hundreds 
of issue fixes obsolete.)  If you've discovered a new issue using a 
current build, report it in IssueZilla: 
+
+  From your IssueZilla main page, choose "Enter a new issue". 

+
+ Select the product that you've found an issue in. 
+
+ Enter your E-mail address, Password, and press the "Login" button. (If 
you don't yet have a password, leave the password text box empty, and press the 
"E-mail me a password" button instead. You'll receive an E-mail message with 
your password shortly.)  
+
+Now, fill out the form. Here's what it all means: 
+
+ Where did you find the issue? 
+
+ Product: In which product did you find the issue? You 
just filled this out on the last page. 
+
+ Version: In which product version did you first find the 
issue?
+   If applicable. 
+
+ Component: In which component does the issue exist? 
IssueZilla requires that you select a component to enter an issue. (If they all 
look meaningless, click on the Component link, which links to descriptions of 
each component, to help you make the best choice.) 
+
+ Platform:On which hardware platform did you find this 
issue? (e.g., Sun, PC) If you know the issue happens on all hardware 
platforms, choose 'All'. Otherwise, select the platform 

[openoffice-org] branch asf-staging updated: git-site-role commit from build_staging.sh

2020-11-01 Thread git-site-role
This is an automated email from the ASF dual-hosted git repository.

git-site-role pushed a commit to branch asf-staging
in repository https://gitbox.apache.org/repos/asf/openoffice-org.git


The following commit(s) were added to refs/heads/asf-staging by this push:
 new f8658e0  git-site-role commit from build_staging.sh
f8658e0 is described below

commit f8658e00811672ac979763a275dad1467bdcc9b3
Author: jenkins 
AuthorDate: Sun Nov 1 21:00:36 2020 +

git-site-role commit from build_staging.sh
---
 content/feed.xml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/content/feed.xml b/content/feed.xml
index 3fb53ba..7d2a00b 100644
--- a/content/feed.xml
+++ b/content/feed.xml
@@ -6,8 +6,8 @@
 http://localhost:8820/feed.xml; rel="self" 
type="application/rss+xml" />
 OpenOffice.org Feed
 en-us
-Sun, 1 Nov 2020 21:00:01 +
-Sun, 1 Nov 2020 21:00:01 +
+Sun, 1 Nov 2020 21:00:33 +
+Sun, 1 Nov 2020 21:00:33 +
 
 




[openoffice-org] branch main updated (5e0b142 -> bb21125)

2020-11-01 Thread wave
This is an automated email from the ASF dual-hosted git repository.

wave pushed a change to branch main
in repository https://gitbox.apache.org/repos/asf/openoffice-org.git.


from 5e0b142  Migration of editorial html content
 new 74d7cb0  Migration of specs assets
 new bb21125  Migration of specs html content

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .../System_Integration/Fondu-Integration.odt   |  Bin 0 -> 109307 bytes
 .../System_Integration/macosx_quicktime.odt|  Bin 0 -> 69849 bytes
 .../appwide/SmartTags/Smart_Tags_OOoConf2007.odp   |  Bin 0 -> 1444910 bytes
 .../appwide/SmartTags/Smart_Tags_Specification.odt |  Bin 0 -> 109196 bytes
 .../Accessibility_Issues_For_OpenOffice_2.0.1.odt  |  Bin 0 -> 41106 bytes
 .../Naming_Drawing_Objects_in_Writer_and_Calc.odt  |  Bin 0 -> 46083 bytes
 assets/specs/appwide/autocorrect/AutoCorrect.odt   |  Bin 0 -> 42066 bytes
 assets/specs/appwide/binfilter/SpecBinfilter.sxw   |  Bin 0 -> 13812 bytes
 .../Drag_and_Drop_and_Clipboard.sxw|  Bin 0 -> 81308 bytes
 .../clipboard_drag_and_drop/ImpressClipboard.odt   |  Bin 0 -> 17883 bytes
 .../configuration_robustness_spec.sxw  |  Bin 0 -> 18721 bytes
 .../appwide/ctl/TextNumeralsContextMode-Spec.odt   |  Bin 0 -> 41991 bytes
 .../desktop_integration/ooo_file_search.sxw|  Bin 0 -> 232732 bytes
 .../desktop_integration/ooo_file_thumbnails.sxw|  Bin 0 -> 157933 bytes
 .../desktop_integration/ooo_mozilla_plugin.sxw |  Bin 0 -> 170746 bytes
 .../appwide/desktop_integration/send_as_email.sxw  |  Bin 0 -> 31547 bytes
 .../desktop_integration/unix_browser_detection.sxw |  Bin 0 -> 40989 bytes
 .../windows_explorer_column_handler.sxw|  Bin 0 -> 160866 bytes
 .../windows_explorer_infotip_handler.sxw   |  Bin 0 -> 34031 bytes
 .../Export_single_dialog_from_library.odt  |  Bin 0 -> 89346 bytes
 .../dialog_ide/GUI_Translation_in_Dialog_IDE.odt   |  Bin 0 -> 163509 bytes
 assets/specs/appwide/dialog_ide/Import_dialog.odt  |  Bin 0 -> 119246 bytes
 .../appwide/dialog_ide/New_Tree_Control_in_IDE.odt |  Bin 0 -> 80744 bytes
 .../drag_and_drop_styles/drag_and_drop_styles.sxw  |  Bin 0 -> 12660 bytes
 .../drawing_layer/AltTextsForDrawingObjectsTCS.odt |  Bin 0 -> 15810 bytes
 .../AlternativeTextsForDrawingObjects.odt  |  Bin 0 -> 93303 bytes
 .../specs/appwide/drawing_layer/SolidDragging.odt  |  Bin 0 -> 134708 bytes
 .../borders_and_shadow_for_bitmap_objects.sxw  |  Bin 0 -> 127465 bytes
 .../specs/appwide/drawing_layer/imagemapdialog.odt |  Bin 0 -> 85653 bytes
 .../specs/appwide/embedding/IconifiedObjects.odt   |  Bin 0 -> 74663 bytes
 .../error_report_2_0_ui_specification.odt  |  Bin 0 -> 367408 bytes
 ...ior_of_Saving_Documents_Containing_Versions.odt |  Bin 0 -> 20276 bytes
 .../appwide/fileIO/Custom_Document_Properties.odt  |  Bin 0 -> 416831 bytes
 assets/specs/appwide/fileIO/FileFormatNames.sxw|  Bin 0 -> 107312 bytes
 assets/specs/appwide/fileIO/FileLockingOnLinux.sxw |  Bin 0 -> 19112 bytes
 assets/specs/appwide/fileIO/FileOpenDialog.sxw |  Bin 0 -> 51259 bytes
 assets/specs/appwide/fileIO/File_Locking.odt   |  Bin 0 -> 164088 bytes
 .../appwide/fileIO/File_Open_and_Save_Dialogs.odt  |  Bin 0 -> 74505 bytes
 .../appwide/fileIO/OASIS_Fileformat_for_OOo1.1.sxw |  Bin 0 -> 25767 bytes
 assets/specs/appwide/fileIO/WebDAV_over_HTTPS.odt  |  Bin 0 -> 174325 bytes
 .../find_and_replace/Regular_Expressions.odt   |  Bin 0 -> 71453 bytes
 .../format_paintbrush/format_paintbrush.sxw|  Bin 0 -> 28180 bytes
 assets/specs/appwide/formatting/Overlined_Text.odt |  Bin 0 -> 186311 bytes
 assets/specs/appwide/gallery/Gallery.sxw   |  Bin 0 -> 13970 bytes
 assets/specs/appwide/help/ExtensibleHelp.odt   |  Bin 0 -> 87430 bytes
 assets/specs/appwide/help/search_in_help.sxw   |  Bin 0 -> 204139 bytes
 .../Behavior_of_Hyperlinks_in_OOo_Documents.odt|  Bin 0 -> 143692 bytes
 .../Export_Password_Protected_MS_Word_File.odt |  Bin 0 -> 81179 bytes
 .../Import_Password_Protected_MS_Office_Files.sxw  |  Bin 0 -> 22267 bytes
 .../appwide/java/java_options_dialog_spec.sxw  |  Bin 0 -> 77845 bytes
 .../appwide/keyboard/Assign_Keyboard_Shortcuts.odt |  Bin 0 -> 106127 bytes
 .../assign_keyboard_shortcuts_to_styles.sxw|  Bin 0 -> 79681 bytes
 .../Automatic_Language_Guessing_Component.odt  |  Bin 0 -> 77515 bytes
 assets/specs/appwide/linguistic/Hyphenation.odt|  Bin 0 -> 77683 bytes
 ...BAR_CONTROL_FOR_LANGUAGE_Minutes_2007-04-23.odt |  Bin 0 -> 13774 bytes
 .../linguistic/Set_Language_Attribute_for_Text.odt |  Bin 0 -> 281743 bytes
 .../specs/appwide/linguistic/Spellcheckdialog.sxw  |  Bin 0 -> 233325 bytes
 .../appwide/linguistic/Spelling_and_Grammar.odt|  Bin 0 -> 

[openoffice-org] branch main updated (96b7f2d -> 5e0b142)

2020-11-01 Thread wave
This is an automated email from the ASF dual-hosted git repository.

wave pushed a change to branch main
in repository https://gitbox.apache.org/repos/asf/openoffice-org.git.


from 96b7f2d  Migration of press html content
 new f089384  Migration of editorial assets
 new 5e0b142  Migration of editorial html content

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 assets/editorial/ooo_news-year4.pdf|  Bin 0 -> 342455 bytes
 assets/editorial/ooo_news-year4.sxw|  Bin 0 -> 66191 bytes
 assets/editorial/panel_mundie.jpg  |  Bin 0 -> 22403 bytes
 content/editorial/20021014_danese_cooper.html  |   75 +
 content/editorial/20021014_year_two.html   |  113 +
 content/editorial/200311_wrap_up.html  |   31 +
 content/editorial/JT-2002-03-15.html   |   69 +
 content/editorial/LWE.html |   70 +
 content/editorial/MSFTArticle.html |  105 +
 content/editorial/SunsOpenDoor.html|   46 +
 content/editorial/Uli-LWE.html |   52 +
 content/editorial/about_broffice.html  |   37 +
 content/editorial/akshay_dayal.html|   22 +
 content/editorial/alexandro_colorado.html  |   60 +
 content/editorial/articles.html|  333 +++
 content/editorial/awpartyka.html   |   57 +
 content/editorial/aynu_team.html   |  153 ++
 content/editorial/bharateeyaooo.html   |  121 +
 content/editorial/blogs.html   |  212 ++
 content/editorial/brainshare_report.html   |   29 +
 content/editorial/bwhelan.html |   49 +
 content/editorial/carlos-dantas-de-menezes.html|   74 +
 content/editorial/cbosdonnat.htm   |   66 +
 content/editorial/cbosdonnat.html  |   66 +
 content/editorial/cc_mumbai_meet.html  |   60 +
 content/editorial/charles_schulz.html  |   48 +
 content/editorial/charles_shulz.html   |   47 +
 content/editorial/communityaction.html |   75 +
 content/editorial/deepankar_datta.html |   57 +
 content/editorial/dmiller.html |   55 +
 content/editorial/dozza_and_losselli.html  |   78 +
 content/editorial/ec02020.html |   96 +
 content/editorial/ec09Nov.html |  125 +
 content/editorial/ec10Dec.html |   76 +
 content/editorial/ec11May.html |   78 +
 content/editorial/ec12Apr.html |   94 +
 content/editorial/ec12Sept.html|  111 +
 content/editorial/ec13July.html|   93 +
 content/editorial/ec13Oct.html |   72 +
 content/editorial/ec14August.html  |   75 +
 content/editorial/ec15Feb.html |  255 ++
 content/editorial/ec15Mar.html |   99 +
 content/editorial/ec16Jan01.html   |   71 +
 content/editorial/ec1Feb.html  |  157 ++
 content/editorial/ec1Mar.html  |  118 +
 content/editorial/ec1May.html  |   85 +
 content/editorial/ec20June.html|   78 +
 content/editorial/ec21May.html |   90 +
 content/editorial/ec23Apr.html |  200 ++
 content/editorial/ec23July.html|   44 +
 content/editorial/ec27Mar.html |  128 +
 content/editorial/ec29August.html  |   52 +
 content/editorial/ec29June.html|  107 +
 content/editorial/ec29Sept.html|   89 +
 content/editorial/ec31May.html |   73 +
 content/editorial/ec8Feb.html  |   99 +
 content/editorial/ec8June.html |  163 ++
 content/editorial/ec9Mar.html  |  101 +
 content/editorial/editors.html |   87 +
 content/editorial/edp_and_danw.html|  307 +++
 content/editorial/el_oss.html  |   49 +
 content/editorial/ffairmicheal.html|   69 +
 .../editorial/first_broffice_meeting_200606.html   |   74 +
 content/editorial/index.html   |   18 +
 .../interview-mathias_bauer_juergen_schmidt.html   |   85 +
 content/editorial/interview_alberto_escudero.html  |   66 +
 content/editorial/interview_andrea_maggioni.html   |   37 +
 content/editorial/interview_as.html|   45 +
 content/editorial/interview_dwilson.html   |  109 +
 content/editorial/interview_joerg_heilig.html  |  104 +
 content/editorial/interview_rm.html|  168 ++
 

[openoffice-org] 01/02: Migration of press assets

2020-11-01 Thread wave
This is an automated email from the ASF dual-hosted git repository.

wave pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/openoffice-org.git

commit d8d66dcb4a5fda8732b4d9891b3d9b16d72cb558
Author: Dave Fisher 
AuthorDate: Sun Nov 1 12:59:15 2020 -0800

Migration of press assets
---
 assets/press/ibm_press_release.pdf  | Bin 0 -> 46442 bytes
 assets/press/ooo_news_2004_2005.odt | Bin 0 -> 77493 bytes
 assets/press/ooo_news_2004_2005.pdf | Bin 0 -> 617496 bytes
 3 files changed, 0 insertions(+), 0 deletions(-)

diff --git a/assets/press/ibm_press_release.pdf 
b/assets/press/ibm_press_release.pdf
new file mode 100644
index 000..56765b1
Binary files /dev/null and b/assets/press/ibm_press_release.pdf differ
diff --git a/assets/press/ooo_news_2004_2005.odt 
b/assets/press/ooo_news_2004_2005.odt
new file mode 100644
index 000..6773ec3
Binary files /dev/null and b/assets/press/ooo_news_2004_2005.odt differ
diff --git a/assets/press/ooo_news_2004_2005.pdf 
b/assets/press/ooo_news_2004_2005.pdf
new file mode 100644
index 000..94ecc07
Binary files /dev/null and b/assets/press/ooo_news_2004_2005.pdf differ



[openoffice-org] 01/02: Migration of editorial assets

2020-11-01 Thread wave
This is an automated email from the ASF dual-hosted git repository.

wave pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/openoffice-org.git

commit f0893842027839d272254c275bf59ff69005d1fd
Author: Dave Fisher 
AuthorDate: Sun Nov 1 12:59:32 2020 -0800

Migration of editorial assets
---
 assets/editorial/ooo_news-year4.pdf | Bin 0 -> 342455 bytes
 assets/editorial/ooo_news-year4.sxw | Bin 0 -> 66191 bytes
 assets/editorial/panel_mundie.jpg   | Bin 0 -> 22403 bytes
 3 files changed, 0 insertions(+), 0 deletions(-)

diff --git a/assets/editorial/ooo_news-year4.pdf 
b/assets/editorial/ooo_news-year4.pdf
new file mode 100644
index 000..eda72ef
Binary files /dev/null and b/assets/editorial/ooo_news-year4.pdf differ
diff --git a/assets/editorial/ooo_news-year4.sxw 
b/assets/editorial/ooo_news-year4.sxw
new file mode 100644
index 000..83f376d
Binary files /dev/null and b/assets/editorial/ooo_news-year4.sxw differ
diff --git a/assets/editorial/panel_mundie.jpg 
b/assets/editorial/panel_mundie.jpg
new file mode 100755
index 000..d687469
Binary files /dev/null and b/assets/editorial/panel_mundie.jpg differ



[openoffice-org] branch main updated (f590720 -> 96b7f2d)

2020-11-01 Thread wave
This is an automated email from the ASF dual-hosted git repository.

wave pushed a change to branch main
in repository https://gitbox.apache.org/repos/asf/openoffice-org.git.


from f590720  Migration of servlets Markdown pages
 new d8d66dc  Migration of press assets
 new 96b7f2d  Migration of press html content

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 assets/press/ibm_press_release.pdf |  Bin 0 -> 46442 bytes
 assets/press/ooo_news_2004_2005.odt|  Bin 0 -> 77493 bytes
 assets/press/ooo_news_2004_2005.pdf|  Bin 0 -> 617496 bytes
 content/press/1.1/index.html   |  191 +
 content/press/1.1/press_faq.html   |  381 ++
 content/press/2.0/index.html   |  291 ++
 content/press/2.0/press_release.html   |  110 +
 content/press/collab_net_release.html  |  124 +
 .../{extensions.html => press/ibm_press_faq.html}  |5 +-
 content/press/ibm_press_release.html   |   63 +
 content/press/iso_pr.html  |   83 +
 content/press/ooo_news_2004_2005.html  | 3705 
 content/press/press_release_ooo2.2.0.html  |  109 +
 content/press/press_release_year_five.html |   65 +
 .../press/statement-proof-of-concept-virus.html|   38 +
 content/press/sun_release.html |  224 ++
 16 files changed, 5387 insertions(+), 2 deletions(-)
 create mode 100644 assets/press/ibm_press_release.pdf
 create mode 100644 assets/press/ooo_news_2004_2005.odt
 create mode 100644 assets/press/ooo_news_2004_2005.pdf
 create mode 100644 content/press/1.1/index.html
 create mode 100644 content/press/1.1/press_faq.html
 create mode 100644 content/press/2.0/index.html
 create mode 100644 content/press/2.0/press_release.html
 create mode 100644 content/press/collab_net_release.html
 copy content/{extensions.html => press/ibm_press_faq.html} (59%)
 create mode 100644 content/press/ibm_press_release.html
 create mode 100644 content/press/iso_pr.html
 create mode 100644 content/press/ooo_news_2004_2005.html
 create mode 100644 content/press/press_release_ooo2.2.0.html
 create mode 100644 content/press/press_release_year_five.html
 create mode 100644 content/press/statement-proof-of-concept-virus.html
 create mode 100644 content/press/sun_release.html



[openoffice-org] branch asf-staging updated: git-site-role commit from build_staging.sh

2020-11-01 Thread git-site-role
This is an automated email from the ASF dual-hosted git repository.

git-site-role pushed a commit to branch asf-staging
in repository https://gitbox.apache.org/repos/asf/openoffice-org.git


The following commit(s) were added to refs/heads/asf-staging by this push:
 new 1e3ab6a  git-site-role commit from build_staging.sh
1e3ab6a is described below

commit 1e3ab6a5ba8183d2e5fc1fd60ef4ca1820791aab
Author: jenkins 
AuthorDate: Sun Nov 1 20:59:26 2020 +

git-site-role commit from build_staging.sh
---
 content/feed.xml|   4 +-
 content/scproces/Tigris_to_SC.html  | 754 
 content/scproces/process.html   | 408 +++
 content/servlets/Join/index.html|  32 ++
 content/servlets/ReadMsg/index.html |  31 ++
 content/servlets/readme.txt |   7 +
 6 files changed, 1234 insertions(+), 2 deletions(-)

diff --git a/content/feed.xml b/content/feed.xml
index 0e81fae..ccc7480 100644
--- a/content/feed.xml
+++ b/content/feed.xml
@@ -6,8 +6,8 @@
 http://localhost:8820/feed.xml; rel="self" 
type="application/rss+xml" />
 OpenOffice.org Feed
 en-us
-Sun, 1 Nov 2020 20:57:07 +
-Sun, 1 Nov 2020 20:57:07 +
+Sun, 1 Nov 2020 20:59:22 +
+Sun, 1 Nov 2020 20:59:22 +
 
 

diff --git a/content/scproces/Tigris_to_SC.html 
b/content/scproces/Tigris_to_SC.html
new file mode 100644
index 000..0d5af98
--- /dev/null
+++ b/content/scproces/Tigris_to_SC.html
@@ -0,0 +1,754 @@
+
+
+
+  
+
+
+
+
+
+
+ 
+
+  
+  
+
+
+  
+  homescproces
+
+
+  
+  
+
+  
+  
+  body, h2, h3, h4, DIV, P, blockquote, ul, ol, li 
{font-family: Helvetica,Arial,sans-serif;}
+OpenOffice.org Process Inventory II
+Jeff Love, Louis Surez-Potts
+Last modified 28 June 2001
+
+  This document is a modified version of one Jeff Love wrote for NetBeans's 
migration. 
+  I have modified it to fit OpenOffice.org. The document contains a list of 
common 
+  tasks currently undertaken by OpenOffice.org project owners and admins, and 
+  a description of how that task will be completed in SourceCast. 
+NB If an important element has been missed, please let me know: mailto:lo...@openoffice.org ">lo...@openoffice.org. 
+  Comments and questions should also be sent to me. If I cannot answer a 
question, 
+  I will defer it to Jeff Love, who is leading the upgrade.
+
+  
+  User Tasks
+Registering
+How it is done now: 
+
+  Admin account created by member granting access
+  Issuezilla account created by User
+
+
+General Differences (if any) in SourceCast: User creates own account; 
unified 
+  issuezilla, admin and cvs access in one user
+How to do it in SourceCast
+
+  On Home Page, click Register 
+Now
+  Enter in chosen username, email address (must be valid), Real Name, 
Organization 
+(if desired)
+  Click Register
+  Once you press Register, you will see the login screen and a 
+password will be send to your email address.
+  As soon as you receive your password, copy it into a clipboard space
+  Go to Home Page and enter username and password and hit enter
+  You will be put onto My Home Page
+  Click Edit Profile Link
+  Type in chosen password
+  Retype chosen password
+  Click Submit Changes
+
+When do I need to Register/Login?
+How it is done now: 
+
+  Browsing Web Content: No login needed
+  CVS access: No account needed to download repository (anoncvs). Must 
have 
+admin account created by other member to gain COMMIT access to the 
repository.
+  IssueZilla access: Users create accounts themselves . Admin privileges 
granted 
+by other Issuezilla admins
+  Admin Access: Users don't request admin access themselves -- they must 
be 
+created by other members -- control/create mailing lists, 
projects,etc.
+
+General Differences (if any) in SourceCast: Users create accounts 
themselves 
+  and then are approved by a SourceCast Administrator; Logging in is assumed 
to 
+  be much more frequent than in Tigris. Assumptions are made once you have 
logged 
+  in to SourceCast that presents certain information to you on My Start 
+  Page based on the projects that you are a part of (such as news and 
your 
+  project links and links to your issues on that project); If Developer or 
Content 
+  Developer, allows write access to project resources, but not to configure 
those 
+  resources; If role on project is project Owner -- user has access to 
configure 
+  all project resources
+How to do it in SourceCast
+
+  Browsing Web Content: No login needed
+  CVS access: No account needed to download repository (anoncvs). Commit 
access 
+requires an account with Developer, Content Developer (HTML only) or 
project 
+Owner status on a project
+  Issuezilla: No login needed to QUERY and CHANGE existing bugs. Login 
necessary 
+to lodge new bugs
+  Admin Access: Always be logged in to have administrative access
+
+
+Downloading the CVS 

[openoffice-org] 01/02: Migration of servlets assets

2020-11-01 Thread wave
This is an automated email from the ASF dual-hosted git repository.

wave pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/openoffice-org.git

commit a72352cbd6003e231a16831211d47f5bcb1deefa
Author: Dave Fisher 
AuthorDate: Sun Nov 1 12:57:58 2020 -0800

Migration of servlets assets
---
 assets/servlets/readme.txt | 7 +++
 1 file changed, 7 insertions(+)

diff --git a/assets/servlets/readme.txt b/assets/servlets/readme.txt
new file mode 100644
index 000..71fd6b4
--- /dev/null
+++ b/assets/servlets/readme.txt
@@ -0,0 +1,7 @@
+Note:  This directory is not really for servlets.  It is here to offer landing 
pages for the many external
+links to the legacy OpenOffice.org website that pointing to servlets used by 
the legacy website for
+signing up volunteers, reading list archives, joining mailing lists, etc.
+
+The directory structure here mimics the legacy servlet calls but substitutes 
static webpages
+that direct the user to the appropriate content.
+



  1   2   >