Skip to content

Commit

Permalink
MONDRIAN: Relocate home page to SF web server.
Browse files Browse the repository at this point in the history
[git-p4: depot-paths = "//open/mondrian/": change = 3177]
  • Loading branch information
julianhyde committed Feb 9, 2005
1 parent 77e277b commit 3d016b5
Show file tree
Hide file tree
Showing 19 changed files with 103 additions and 37 deletions.
33 changes: 31 additions & 2 deletions build.xml
Expand Up @@ -44,6 +44,7 @@
<property name="dist.data.file" value="${dist.dir}/${name}-data.zip"/>
<property name="dist.data.mysql.file" value="${dist.dir}/${name}-data-mysql.zip"/>
<property name="dist.bin.file" value="${dist.dir}/${dist.name}.zip"/>
<property name="dist.doc.file" value="${dist.dir}/doc.tar.gz"/>
<property name="jar.file" value="${lib.dir}/${name}.jar"/>
<property name="workbench.jar.file" value="workbench.jar"/>
<property name="resource.jar.file" value="${lib.dir}/mondrian-resource.jar"/>
Expand Down Expand Up @@ -256,7 +257,7 @@ copy.properties"/>
classpathref="project.classpath"
source="1.4">
<include name="mondrian/olap/MondrianException.java" />
<include name="mondrian/olap/ResultLimitExceeded.java" />
<include name="mondrian/olap/ResultLimitExceeded.java" />
</javac>

<resgen srcdir="${java.dir}" locales="en_US,de_DE">
Expand Down Expand Up @@ -481,7 +482,8 @@ ${javadoc.dir}/**,
**/_vti*/*,
**/*~,
**/junit-results/**,
${generated.java.files}" />
${generated.java.files},
doc/deployDoc.sh" />
</zip>
</target>

Expand Down Expand Up @@ -583,6 +585,32 @@ ${doc.dir}/api/src-html/**/*"/>
</zip>
</target>

<target
name="doczip"
depends="javadoc"
description="Builds a zipfile of the documentation, which can then be
deployed to sf.net. See also doc/deployDoc.sh.">
<mkdir dir="${dist.dir}" />
<tar
destfile="${dist.doc.file}"
compression="gzip">
<tarfileset
dir="."
includes="
doc/api/**/*,
doc/**/*.html,
doc/**/*.gif,
doc/**/*.jpg,
doc/**/*.css,
doc/**/*.xml"
excludes="
**/*~,
**/_vti*/*,
**/*.psp,
**/*.sh"/>
</tar>
</target>

<target name="jar" depends="compile">
<mkdir dir="${lib.dir}" />
<zip
Expand Down Expand Up @@ -632,6 +660,7 @@ VERSION.txt"/>
footer="&lt;a href=&quot;http://sourceforge.net/projects/mondrian&quot;&gt;&lt;img src=&quot;http://sourceforge.net/sflogo.php?group_id=35302&#38;type=1&quot; width=&quot;88&quot; height=&quot;31&quot; border=&quot;0&quot; alt=&quot;SourceForge.net_Logo&quot;&gt;&lt;/a&gt;"
author="true"
source="1.4"
access="package"
additionalparam="-linksource">
<tag name="pre" description="Pre-condition:"
scope="constructors,methods"/>
Expand Down
4 changes: 2 additions & 2 deletions doc/architecture.html
Expand Up @@ -4,7 +4,7 @@
== This software is subject to the terms of the Common Public License
== Agreement, available at the following URL:
== http://www.opensource.org/licenses/cpl.html.
== (C) Copyright 2001-2002 Kana Software, Inc. and others.
== (C) Copyright 2001-2005 Kana Software, Inc. and others.
== All Rights Reserved.
== You must accept the terms of that agreement to use this software.
== jhyde, 24 September, 2002
Expand Down Expand Up @@ -268,7 +268,7 @@ <h3>Builtin functions</h3>
<td class="content">
<a target="_top" href="index.html">Home</a> |
<a target="_top" href="noframes.html">No frames</a> | This file is<i>
<a href="http://perforce.eigenbase.org:8080/open/mondrian/doc/architecture.html">
<a href="http://mondrian.sourceforge.net/architecture.html">
$Id$
</a></i> (<a href="http://perforce.eigenbase.org:8080/open/mondrian/doc/architecture.html?ac=22">log</a>)</td>
<td align="right">
Expand Down
4 changes: 2 additions & 2 deletions doc/components.html
Expand Up @@ -4,7 +4,7 @@
== This software is subject to the terms of the Common Public License
== Agreement, available at the following URL:
== http://www.opensource.org/licenses/cpl.html.
== (C) Copyright 2001-2003 Kana Software, Inc. and others.
== (C) Copyright 2001-2005 Kana Software, Inc. and others.
== All Rights Reserved.
== You must accept the terms of that agreement to use this software.
== jhyde, 24 September, 2002
Expand Down Expand Up @@ -137,7 +137,7 @@ <h3>4. Star schemas</h3>
<td class="content">
<a target="_top" href="index.html">Home</a> |
<a target="_top" href="noframes.html">No frames</a> | This file is<i>
<a href="http://perforce.eigenbase.org:8080/open/mondrian/doc/components.html">$Id$
<a href="http://mondrian.sourceforge.net/components.html">$Id$
</a></i> (<a href="http://perforce.eigenbase.org:8080/open/mondrian/doc/components.html?ac=22">log</a>)</td>
<td align="right">
<a href="http://sourceforge.net">
Expand Down
36 changes: 36 additions & 0 deletions doc/deployDoc.sh
@@ -0,0 +1,36 @@
#!/usr/bin/sh
# $Id$
# This software is subject to the terms of the Common Public License
# Agreement, available at the following URL:
# http://www.opensource.org/licenses/cpl.html.
# Copyright (C) 2005-2005 Julian Hyde
# All Rights Reserved.
# You must accept the terms of that agreement to use this software.
#
# This is a script to deploy Mondrian's website.
# Only the release manager (jhyde) should run this script.

set -e
set -v

cd $(dirname $0)/..
ant doczip

scp dist/doc.tar.gz jhyde@shell.sf.net:

GROUP_DIR=/home/groups/m/mo/mondrian

ssh -T jhyde@shell.sf.net <<EOF
set -e
set -v
rm -f $GROUP_DIR/doc.tar.gz
mv doc.tar.gz $GROUP_DIR
cd $GROUP_DIR
tar xzf doc.tar.gz
rm -rf old
mv htdocs old
mv doc htdocs
rm -rf old
EOF

# End deployDoc.sh
4 changes: 2 additions & 2 deletions doc/design.html
Expand Up @@ -4,7 +4,7 @@
== This software is subject to the terms of the Common Public License
== Agreement, available at the following URL:
== http://www.opensource.org/licenses/cpl.html.
== (C) Copyright 2001-2002 Kana Software, Inc. and others.
== (C) Copyright 2001-2005 Kana Software, Inc. and others.
== All Rights Reserved.
== You must accept the terms of that agreement to use this software.
== jhyde, 24 September, 2002
Expand Down Expand Up @@ -45,7 +45,7 @@ <h3>Caching</h3>
<td class="content">
<a target="_top" href="index.html">Home</a> |
<a target="_top" href="noframes.html">No frames</a> | This file is<i>
<a href="http://perforce.eigenbase.org:8080/open/mondrian/doc/design.html">
<a href="http://mondrian.sourceforge.net/design.html">
$Id$
</a></i> (<a href="http://perforce.eigenbase.org:8080/open/mondrian/doc/design.html?ac=22">log</a>)</td>
<td align="right">
Expand Down
6 changes: 3 additions & 3 deletions doc/faq.html
Expand Up @@ -4,7 +4,7 @@
== This software is subject to the terms of the Common Public License
== Agreement, available at the following URL:
== http://www.opensource.org/licenses/cpl.html.
== (C) Copyright 2001-2002 Kana Software, Inc. and others.
== (C) Copyright 2001-2005 Kana Software, Inc. and others.
== All Rights Reserved.
== You must accept the terms of that agreement to use this software.
== jhyde, 24 September, 2002
Expand Down Expand Up @@ -297,8 +297,8 @@ <h3><a name="cache_refresh">When I change the data in the RDBMS, the result
<td class="content">
<a target="_top" href="index.html">Home</a> |
<a target="_top" href="#">No frames</a> | This file is<i>
<a href="http://perforce.eigenbase.org:8080/open/mondrian/doc/faq.html">$Id$</a></i><a href="http://perforce.eigenbase.org:8080/open/mondrian/doc/faq.html">
</a>(<a href="http://perforce.eigenbase.org:8080/open/mondrian/doc/faq.html?ac=22">log</a>)</td>
<a href="http://mondrian.sourceforge.net/faq.html">$Id$</a></i>
(<a href="http://perforce.eigenbase.org:8080/open/mondrian/doc/faq.html?ac=22">log</a>)</td>
<td align="right">
<a href="http://sourceforge.net">
<img src="http://sourceforge.net/sflogo.php?group_id=35302&type=1" width="88" height="31" border="0" alt="SourceForge.net Logo">
Expand Down
4 changes: 2 additions & 2 deletions doc/help.html
Expand Up @@ -4,7 +4,7 @@
== This software is subject to the terms of the Common Public License
== Agreement, available at the following URL:
== http://www.opensource.org/licenses/cpl.html.
== (C) Copyright 2001-2002 Kana Software, Inc. and others.
== (C) Copyright 2001-2005 Kana Software, Inc. and others.
== All Rights Reserved.
== You must accept the terms of that agreement to use this software.
== jhyde, 24 September, 2002
Expand Down Expand Up @@ -35,7 +35,7 @@ <h1>Help!</h1>
<td class="content">
<a target="_top" href="index.html">Home</a> |
<a target="_top" href="noframes.html">No frames</a> | This file is<i>
<a href="http://perforce.eigenbase.org:8080/open/mondrian/doc/help.html">$Id$
<a href="http://mondrian.sourceforge.net/help.html">$Id$
</a></i> (<a href="http://perforce.eigenbase.org:8080/open/mondrian/doc/help.html?ac=22">log</a>)</td>
<td align="right">
<a href="http://sourceforge.net">
Expand Down
2 changes: 1 addition & 1 deletion doc/home.html
Expand Up @@ -85,7 +85,7 @@ <h2>News</h2>
<td class="content">
<a target="_top" href="index.html">Home</a> |
<a target="_top" href="noframes.html">No frames</a> | This file is<i>
<a href="http://perforce.eigenbase.org:8080/open/mondrian/doc/home.html">
<a href="http://mondrian.sourceforge.net/home.html">
$Id$
</a></i> (<a href="http://perforce.eigenbase.org:8080/open/mondrian/doc/home.html?ac=22">log</a>)</td>
<td align="right">
Expand Down
6 changes: 3 additions & 3 deletions doc/install.html
Expand Up @@ -4,7 +4,7 @@
== This software is subject to the terms of the Common Public License
== Agreement, available at the following URL:
== http://www.opensource.org/licenses/cpl.html.
== (C) Copyright 2001-2003 Kana Software, Inc. and others.
== (C) Copyright 2001-2005 Kana Software, Inc. and others.
== All Rights Reserved.
== You must accept the terms of that agreement to use this software.
== jhyde, 24 September, 2002
Expand Down Expand Up @@ -341,7 +341,7 @@ <h3><a name="4_2_Oracle">4.2. Oracle</a></h3>

Import: Release 8.1.7.3.0 - Production on Mon Aug 5 11:37:35 2002

(c) Copyright 2000 Oracle Corporation. All rights reserved.
(c) Copyright 2000-2005 Oracle Corporation. All rights reserved.


Connected to: Oracle8i Enterprise Edition Release 8.1.7.3.0 - Production
Expand Down Expand Up @@ -1033,7 +1033,7 @@ <h4>Mondrian setup</h4>
<td class="content">
<a target="_top" href="index.html">Home</a> |
<a target="_top" href="#">No frames</a> | This file is<i>
<a href="http://perforce.eigenbase.org:8080/open/mondrian/doc/install.html">$Id$
<a href="http://mondrian.sourceforge.net/install.html">$Id$
</a></i> (<a href="http://perforce.eigenbase.org:8080/open/mondrian/doc/install.html?ac=22">log</a>)</td>
<td align="right">
<a href="http://sourceforge.net">
Expand Down
4 changes: 2 additions & 2 deletions doc/links.html
Expand Up @@ -4,7 +4,7 @@
== This software is subject to the terms of the Common Public License
== Agreement, available at the following URL:
== http://www.opensource.org/licenses/cpl.html.
== (C) Copyright 2001-2002 Kana Software, Inc. and others.
== (C) Copyright 2001-2005 Kana Software, Inc. and others.
== All Rights Reserved.
== You must accept the terms of that agreement to use this software.
== jhyde, 24 September, 2002
Expand Down Expand Up @@ -74,7 +74,7 @@ <h2>Technology</h2>
<td class="content">
<a target="_top" href="index.html">Home</a> |
<a target="_top" href="noframes.html">No frames</a> | This file is<i>
<a href="http://perforce.eigenbase.org:8080/open/mondrian/doc/links.html">$Id$
<a href="http://mondrian.sourceforge.net/links.html">$Id$
</a></i> (<a href="http://perforce.eigenbase.org:8080/open/mondrian/doc/links.html?ac=22">log</a>)</td>
<td align="right">
<a href="http://sourceforge.net">
Expand Down
4 changes: 2 additions & 2 deletions doc/monrg.html
Expand Up @@ -4,7 +4,7 @@
== This software is subject to the terms of the Common Public License
== Agreement, available at the following URL:
== http://www.opensource.org/licenses/cpl.html.
== (C) Copyright 2001-2002 Kana Software, Inc. and others.
== (C) Copyright 2001-2005 Kana Software, Inc. and others.
== All Rights Reserved.
== You must accept the terms of that agreement to use this software.
== jhyde, 24 September, 2002
Expand Down Expand Up @@ -470,7 +470,7 @@ <h2>About MonRG and Mondrian</h2>
<td class="content">
<a target="_top" href="index.html">Home</a> |
<a target="_top" href="monrg.html">No frames</a> | This file is<i>
<a href="http://perforce.eigenbase.org:8080/open/mondrian/doc/monrg.html">
<a href="http://mondrian.sourceforge.net/monrg.html">
$Id$
</a></i> (<a href="http://perforce.eigenbase.org:8080/open/mondrian/doc/monrg.html?ac=22">log</a>)</td>
<td align="right">
Expand Down
4 changes: 2 additions & 2 deletions doc/monrg_cpp.html
Expand Up @@ -4,7 +4,7 @@
== This software is subject to the terms of the Common Public License
== Agreement, available at the following URL:
== http://www.opensource.org/licenses/cpl.html.
== (C) Copyright 2001-2002 Kana Software, Inc. and others.
== (C) Copyright 2001-2005 Kana Software, Inc. and others.
== All Rights Reserved.
== You must accept the terms of that agreement to use this software.
== jhyde, 18 February 2004
Expand Down Expand Up @@ -448,7 +448,7 @@ <h3>Compile</h3>
<td class="content">
<a target="_top" href="index.html">Home</a> |
<a target="_top" href="monrg_cpp.html">No frames</a> | This file is<i>
<a href="http://perforce.eigenbase.org:8080/open/mondrian/doc/monrg_cpp.html">
<a href="http://mondrian.sourceforge.net/monrg_cpp.html">
$Id$
</a></i> (<a href="http://perforce.eigenbase.org:8080/open/mondrian/doc/monrg_cpp.html?ac=22">log</a>)</td>
<td align="right">
Expand Down
4 changes: 2 additions & 2 deletions doc/noframes.html
Expand Up @@ -4,7 +4,7 @@
== This software is subject to the terms of the Common Public License
== Agreement, available at the following URL:
== http://www.opensource.org/licenses/cpl.html.
== (C) Copyright 2001-2002 Kana Software, Inc. and others.
== (C) Copyright 2001-2005 Kana Software, Inc. and others.
== All Rights Reserved.
== You must accept the terms of that agreement to use this software.
== jhyde, 24 September, 2002
Expand Down Expand Up @@ -87,7 +87,7 @@ <h2>What is Mondrian?</h2>
<td class="content">
<a target="_top" href="index.html">Home</a> |
<a target="_top" href="noframes.html">No frames</a> | This file is<i>
<a href="http://perforce.eigenbase.org:8080/open/mondrian/doc/noframes.html">
<a href="http://mondrian.sourceforge.net/noframes.html">
$Id$
</a></i> (<a href="http://perforce.eigenbase.org:8080/open/mondrian/doc/noframes.html?ac=22">log</a>)</td>
<td align="right">
Expand Down
4 changes: 2 additions & 2 deletions doc/olap.html
Expand Up @@ -4,7 +4,7 @@
== This software is subject to the terms of the Common Public License
== Agreement, available at the following URL:
== http://www.opensource.org/licenses/cpl.html.
== (C) Copyright 2001-2002 Kana Software, Inc. and others.
== (C) Copyright 2001-2005 Kana Software, Inc. and others.
== All Rights Reserved.
== You must accept the terms of that agreement to use this software.
== jhyde, 24 September, 2002
Expand Down Expand Up @@ -148,7 +148,7 @@ <h2>Online Analytical Processing</h2>
<td class="content">
<a target="_top" href="index.html">Home</a> |
<a target="_top" href="noframes.html">No frames</a> | This file is<i>
<a href="http://perforce.eigenbase.org:8080/open/mondrian/doc/olap.html">
<a href="http://mondrian.sourceforge.net/olap.html">
$Id$
</a></i> (<a href="http://perforce.eigenbase.org:8080/open/mondrian/doc/olap.html?ac=22">log</a>)</td>
<td align="right">
Expand Down
4 changes: 2 additions & 2 deletions doc/people.html
Expand Up @@ -3,7 +3,7 @@
== This software is subject to the terms of the Common Public License
== Agreement, available at the following URL:
== http://www.opensource.org/licenses/cpl.html.
== (C) Copyright 2001-2002 Kana Software, Inc. and others.
== (C) Copyright 2001-2005 Kana Software, Inc. and others.
== All Rights Reserved.
== You must accept the terms of that agreement to use this software.
== jhyde, 31 October, 2001
Expand Down Expand Up @@ -68,7 +68,7 @@ <h2>Who was Mondrian?</h2>
<td class="content">
<a target="_top" href="index.html">Home</a> |
<a target="_top" href="noframes.html">No frames</a> | This file is<i>
<a href="http://perforce.eigenbase.org:8080/open/mondrian/doc/people.html">
<a href="http://mondrian.sourceforge.net/people.html">
$Id$
</a></i> (<a href="http://perforce.eigenbase.org:8080/open/mondrian/doc/people.html?ac=22">log</a>)</td>
<td align="right">
Expand Down
2 changes: 1 addition & 1 deletion doc/roadmap.html
Expand Up @@ -13,7 +13,7 @@
<table border="1" class="clsStd" width="100%">
<tr>
<td colspan="2"><a href="index.html">Top</a> |
<a href="http://perforce.eigenbase.org:8080/open/mondrian/doc/roadmap.html">Web</a> |
<a href="http://mondrian.sourceforge.net/roadmap.html">Web</a> |
<a href="http://sourceforge.net/projects/mondrian/">SourceForge home</a></td>
<td width="0" align="right" rowspan="2">
<a href="http://sourceforge.net"><img src="http://sourceforge.net/sflogo.php?group_id=35302&type=1" width="88" height="31" border="0" alt="SourceForge.net Logo"></a></td>
Expand Down
2 changes: 1 addition & 1 deletion doc/schema.html
Expand Up @@ -1066,7 +1066,7 @@ <h2><a name="Access_control">Access-control</a></h2><p>You've got all this great
<td class="content">
<a target="_top" href="index.html">Home</a> |
<a target="_top" href="schema.html">No frames</a> | This file is<i>
<a href="http://perforce.eigenbase.org:8080/open/mondrian/doc/schema.html">$Id$
<a href="http://mondrian.sourceforge.net/schema.html">$Id$
</a></i> (<a href="http://perforce.eigenbase.org:8080/open/mondrian/doc/schema.html?ac=22">log</a>)</td><td align="right">
<a href="http://sourceforge.net">
<img src="http://sourceforge.net/sflogo.php?group_id=35302&type=1" width="88" height="31" border="0" alt="SourceForge.net Logo">
Expand Down
6 changes: 3 additions & 3 deletions src/main/mondrian/rolap/RolapConnectionProperties.java
Expand Up @@ -3,7 +3,7 @@
// This software is subject to the terms of the Common Public License
// Agreement, available at the following URL:
// http://www.opensource.org/licenses/cpl.html.
// (C) Copyright 2003-2003 Julian Hyde
// (C) Copyright 2003-2005 Julian Hyde
// All Rights Reserved.
// You must accept the terms of that agreement to use this software.
//
Expand Down Expand Up @@ -54,14 +54,14 @@ private RolapConnectionProperties() {
/**
* @{value} is the URL of the catalog, an XML file which describes
* the schema: cubes, hierarchies, and so forth. Catalogs are described
* <a target="_top" href="http://perforce.eigenbase.org:8080/open/mondrian/doc/schema.html">here</a>.
* <a target="_top" href="http://mondrian.sourceforge.net/schema.html">here</a>.
* See also {@link #CatalogContent}.
*/
public static final String Catalog = "Catalog";
/**
* @{value} is an XML string representing
* the schema: cubes, hierarchies, and so forth. Catalogs are described
* <a target="_top" href="http://perforce.eigenbase.org:8080/open/mondrian/doc/schema.html">here</a>.
* <a target="_top" href="http://mondrian.sourceforge.net/schema.html">here</a>.
* See also {@link #Catalog}.
*/
public static final String CatalogContent = "CatalogContent";
Expand Down

0 comments on commit 3d016b5

Please sign in to comment.