Author: vgritsenko
Date: Sat Feb 24 19:04:14 2007
New Revision: 511415
URL: http://svn.apache.org/viewvc?view=rev&rev=511415
Log:
adding license headers
Modified:
xml/xindice/trunk/build.bat
xml/xindice/trunk/build.properties
xml/xindice/trunk/build.sh
xml/xindice/trunk/contributor.xml
xml/xindice/trunk/doap_Xindice.rdf
xml/xindice/trunk/java/examples/guide/run
xml/xindice/trunk/java/examples/guide/run.bat
xml/xindice/trunk/src/documentation/sitemap.xmap
xml/xindice/trunk/status.xml
xml/xindice/trunk/tools/eclipse/classpath-tmpl.xml
xml/xindice/trunk/tools/eclipse/make-classpath.xsl
xml/xindice/trunk/tools/jetty/conf/admin.xml
xml/xindice/trunk/tools/jetty/conf/main.xml
xml/xindice/trunk/tools/jetty/conf/realm.properties
xml/xindice/trunk/tools/jetty/conf/webdefaults.xml
xml/xindice/trunk/xindice.bat
xml/xindice/trunk/xindice.sh
Modified: xml/xindice/trunk/build.bat
URL: http://svn.apache.org/viewvc/xml/xindice/trunk/build.bat?view=diff&rev=511415&r1=511414&r2=511415
==============================================================================
--- xml/xindice/trunk/build.bat (original)
+++ xml/xindice/trunk/build.bat Sat Feb 24 19:04:14 2007
@@ -1,56 +1,71 @@
@echo off
-rem ----------------------------------------------------------------------------
-rem build.bat - Win32 Build Script for Apache Xindice
-rem
-rem $Id$
-rem ----------------------------------------------------------------------------
+:: Licensed to the Apache Software Foundation (ASF) under one or more
+:: contributor license agreements. See the NOTICE file distributed with
+:: this work for additional information regarding copyright ownership.
+:: The ASF licenses this file to You under the Apache License, Version 2.0
+:: (the "License"); you may not use this file except in compliance with
+:: the License. You may obtain a copy of the License at
+::
+:: http://www.apache.org/licenses/LICENSE-2.0
+::
+:: Unless required by applicable law or agreed to in writing, software
+:: distributed under the License is distributed on an "AS IS" BASIS,
+:: WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+:: See the License for the specific language governing permissions and
+:: limitations under the License.
+::
+:: $Id$
+
+:: ----------------------------------------------------------------------------
+:: build.bat - Win32 Build Script for Apache Xindice
+:: ----------------------------------------------------------------------------
-rem ----- Create endorsed lib for the Java -------------------------------------
+:: ----- Create endorsed lib for the Java -------------------------------------
if not exist "build" mkdir build
if not exist "build\endorsed" mkdir build\endorsed
if not exist "build\endorsed\xerces*.jar" copy java\lib\xerces*.jar build\endorsed
if not exist "build\endorsed\xalan*.jar" copy java\lib\xalan*.jar build\endorsed
if not exist "build\endorsed\xml-api*.jar" copy java\lib\xml-api*.jar build\endorsed
-rem ----- Java 1.3 support
+:: ----- Java 1.3 support
if not exist "tools\lib\xerces*.jar" copy java\lib\xerces*.jar tools\lib
if not exist "tools\lib\xalan*.jar" copy java\lib\xalan*.jar tools\lib
if not exist "tools\lib\xml-api*.jar" copy java\lib\xml-api*.jar tools\lib
-rem ----- Verify and Set Required Environment Variables ------------------------
+:: ----- Verify and Set Required Environment Variables ------------------------
-rem ----- Ignore system CLASSPATH variable
+:: ----- Ignore system CLASSPATH variable
set OLD_CLASSPATH=%CLASSPATH%
set CLASSPATH=
-rem ----- Use Java in JAVA_HOME if JAVA_HOME is set.
+:: ----- Use Java in JAVA_HOME if JAVA_HOME is set.
set OLD_PATH=%PATH%
if "%JAVA_HOME%" == "" goto noJavaHome
echo Using Java from %JAVA_HOME%
set PATH=%JAVA_HOME%\bin
:noJavaHome
-rem ----- Use Ant shipped with Cocoon. Ignore installed in the system Ant
+:: ----- Use Ant shipped with Cocoon. Ignore installed in the system Ant
set OLD_ANT_HOME=%ANT_HOME%
set ANT_HOME=tools
-rem ----- Set endorsed library path to be used by Ant
+:: ----- Set endorsed library path to be used by Ant
set OLD_ANT_OPTS=%ANT_OPTS%
call %ANT_HOME%\bin\ant -Djava.endorsed.dirs=build\endorsed -logger org.apache.tools.ant.NoBannerLogger %1 %2 %3 %4 %5 %6 %7 %8 %9
-rem ----- Restore ANT_OPTS
+:: ----- Restore ANT_OPTS
set ANT_OPTS=%OLD_ANT_OPTS%
set OLD_ANT_OPTS=
-rem ----- Restore ANT_HOME
+:: ----- Restore ANT_HOME
set ANT_HOME=%OLD_ANT_HOME%
set OLD_ANT_HOME=
-rem ----- Restore PATH
+:: ----- Restore PATH
set PATH=%OLD_PATH%
set OLD_PATH=
-rem ----- Restore CLASSPATH
+:: ----- Restore CLASSPATH
set CLASSPATH=%OLD_CLASSPATH%
set OLD_CLASSPATH=
Modified: xml/xindice/trunk/build.properties
URL: http://svn.apache.org/viewvc/xml/xindice/trunk/build.properties?view=diff&rev=511415&r1=511414&r2=511415
==============================================================================
--- xml/xindice/trunk/build.properties (original)
+++ xml/xindice/trunk/build.properties Sat Feb 24 19:04:14 2007
@@ -1,13 +1,26 @@
+# Licensed to the Apache Software Foundation (ASF) under one or more
+# contributor license agreements. See the NOTICE file distributed with
+# this work for additional information regarding copyright ownership.
+# The ASF licenses this file to You under the Apache License, Version 2.0
+# (the "License"); you may not use this file except in compliance with
+# the License. You may obtain a copy of the License at
#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+#
+# $Id$
+
# Xindice build properties.
#
# NOTE: do not modify this file directly but copy the properties you need
# to modify over to a file named 'local.build.properties' and modify that.
# The build system will override these properties with the ones in the
# 'local.build.properties' file.
-#
-# $Id$
-#
# ---- Testing -----------------------------------------------------------------
Modified: xml/xindice/trunk/build.sh
URL: http://svn.apache.org/viewvc/xml/xindice/trunk/build.sh?view=diff&rev=511415&r1=511414&r2=511415
==============================================================================
--- xml/xindice/trunk/build.sh (original)
+++ xml/xindice/trunk/build.sh Sat Feb 24 19:04:14 2007
@@ -1,4 +1,20 @@
#!/bin/sh
+
+# Licensed to the Apache Software Foundation (ASF) under one or more
+# contributor license agreements. See the NOTICE file distributed with
+# this work for additional information regarding copyright ownership.
+# The ASF licenses this file to You under the Apache License, Version 2.0
+# (the "License"); you may not use this file except in compliance with
+# the License. You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+#
# $Id$
echo
Modified: xml/xindice/trunk/contributor.xml
URL: http://svn.apache.org/viewvc/xml/xindice/trunk/contributor.xml?view=diff&rev=511415&r1=511414&r2=511415
==============================================================================
--- xml/xindice/trunk/contributor.xml (original)
+++ xml/xindice/trunk/contributor.xml Sat Feb 24 19:04:14 2007
@@ -1,4 +1,22 @@
<?xml version="1.0"?>
+<!--
+ - Licensed to the Apache Software Foundation (ASF) under one or more
+ - contributor license agreements. See the NOTICE file distributed with
+ - this work for additional information regarding copyright ownership.
+ - The ASF licenses this file to You under the Apache License, Version 2.0
+ - (the "License"); you may not use this file except in compliance with
+ - the License. You may obtain a copy of the License at
+ -
+ - http://www.apache.org/licenses/LICENSE-2.0
+ -
+ - Unless required by applicable law or agreed to in writing, software
+ - distributed under the License is distributed on an "AS IS" BASIS,
+ - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ - See the License for the specific language governing permissions and
+ - limitations under the License.
+ -
+ - $Id$
+ -->
<!--
- Build file for Contributors to the Xindice Project.
@@ -13,7 +31,6 @@
- Version: $Revision$ $Date$
- Author: Vladimir R. Bossicard ([email protected])
-->
-
<project name="xindice-contributor" default="all" basedir=".">
<property file="local.build.properties" />
Modified: xml/xindice/trunk/doap_Xindice.rdf
URL: http://svn.apache.org/viewvc/xml/xindice/trunk/doap_Xindice.rdf?view=diff&rev=511415&r1=511414&r2=511415
==============================================================================
--- xml/xindice/trunk/doap_Xindice.rdf (original)
+++ xml/xindice/trunk/doap_Xindice.rdf Sat Feb 24 19:04:14 2007
@@ -1,18 +1,29 @@
<?xml version="1.0"?>
<?xml-stylesheet type="text/xsl"?>
+<!--
+ - Licensed to the Apache Software Foundation (ASF) under one or more
+ - contributor license agreements. See the NOTICE file distributed with
+ - this work for additional information regarding copyright ownership.
+ - The ASF licenses this file to You under the Apache License, Version 2.0
+ - (the "License"); you may not use this file except in compliance with
+ - the License. You may obtain a copy of the License at
+ -
+ - http://www.apache.org/licenses/LICENSE-2.0
+ -
+ - Unless required by applicable law or agreed to in writing, software
+ - distributed under the License is distributed on an "AS IS" BASIS,
+ - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ - See the License for the specific language governing permissions and
+ - limitations under the License.
+ -
+ - $Id$
+ -->
+
<rdf:RDF xml:lang="en"
xmlns="http://usefulinc.com/ns/doap#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:asfext="http://projects.apache.org/ns/asfext#"
xmlns:foaf="http://xmlns.com/foaf/0.1/">
-<!--
- =======================================================================
-
- Copyright (c) 2006 The Apache Software Foundation.
- All rights reserved.
-
- =======================================================================
--->
<Project rdf:about="http://Xindice.rdf.apache.org/">
<created>2006-03-27</created>
<license rdf:resource="http://usefulinc.com/doap/licenses/asl20" />
@@ -20,7 +31,7 @@
<homepage rdf:resource="http://xml.apache.org/xindice/" />
<asfext:pmc rdf:resource="http://xml.apache.org" />
<shortdesc>XML Database</shortdesc>
- <description>Pure Java based native xml database. Supports XPath and XUpdate.</description>
+ <description>Pure Java based native XML database. Supports XPath and XUpdate.</description>
<bug-database rdf:resource="http://issues.apache.org/bugzilla/buglist.cgi?query_format=specific&bug_status=__open__&product=Xindice" />
<mailing-list rdf:resource="http://xml.apache.org/xindice/mail.html" />
<download-page rdf:resource="http://xml.apache.org/xindice/download.cgi" />
@@ -42,7 +53,7 @@
<maintainer>
<foaf:Person>
<foaf:name>Todd Byrne</foaf:name>
- <foaf:mbox rdf:resource="mailto:[email protected]"/>
+ <foaf:mbox rdf:resource="mailto:[email protected]"/>
</foaf:Person>
</maintainer>
</Project>
Modified: xml/xindice/trunk/java/examples/guide/run
URL: http://svn.apache.org/viewvc/xml/xindice/trunk/java/examples/guide/run?view=diff&rev=511415&r1=511414&r2=511415
==============================================================================
--- xml/xindice/trunk/java/examples/guide/run (original)
+++ xml/xindice/trunk/java/examples/guide/run Sat Feb 24 19:04:14 2007
@@ -1,5 +1,22 @@
#!/bin/sh
+# Licensed to the Apache Software Foundation (ASF) under one or more
+# contributor license agreements. See the NOTICE file distributed with
+# this work for additional information regarding copyright ownership.
+# The ASF licenses this file to You under the Apache License, Version 2.0
+# (the "License"); you may not use this file except in compliance with
+# the License. You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+#
+# $Id$
+
CMD_HOME=`dirname $0`
CMD_NAME=`basename $0`
echo $CMD_HOME
Modified: xml/xindice/trunk/java/examples/guide/run.bat
URL: http://svn.apache.org/viewvc/xml/xindice/trunk/java/examples/guide/run.bat?view=diff&rev=511415&r1=511414&r2=511415
==============================================================================
--- xml/xindice/trunk/java/examples/guide/run.bat (original)
+++ xml/xindice/trunk/java/examples/guide/run.bat Sat Feb 24 19:04:14 2007
@@ -1,4 +1,21 @@
@echo off
+:: Licensed to the Apache Software Foundation (ASF) under one or more
+:: contributor license agreements. See the NOTICE file distributed with
+:: this work for additional information regarding copyright ownership.
+:: The ASF licenses this file to You under the Apache License, Version 2.0
+:: (the "License"); you may not use this file except in compliance with
+:: the License. You may obtain a copy of the License at
+::
+:: http://www.apache.org/licenses/LICENSE-2.0
+::
+:: Unless required by applicable law or agreed to in writing, software
+:: distributed under the License is distributed on an "AS IS" BASIS,
+:: WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+:: See the License for the specific language governing permissions and
+:: limitations under the License.
+::
+:: $Id$
+
set _XINDICE_HOME=%~dp0..\..\..
if not exist %_XINDICE_HOME%\config\commands.xml goto noHome
goto checkJava
Modified: xml/xindice/trunk/src/documentation/sitemap.xmap
URL: http://svn.apache.org/viewvc/xml/xindice/trunk/src/documentation/sitemap.xmap?view=diff&rev=511415&r1=511414&r2=511415
==============================================================================
--- xml/xindice/trunk/src/documentation/sitemap.xmap (original)
+++ xml/xindice/trunk/src/documentation/sitemap.xmap Sat Feb 24 19:04:14 2007
@@ -1,8 +1,23 @@
<?xml version="1.0" encoding="UTF-8"?>
-
<!--
+ - Licensed to the Apache Software Foundation (ASF) under one or more
+ - contributor license agreements. See the NOTICE file distributed with
+ - this work for additional information regarding copyright ownership.
+ - The ASF licenses this file to You under the Apache License, Version 2.0
+ - (the "License"); you may not use this file except in compliance with
+ - the License. You may obtain a copy of the License at
+ -
+ - http://www.apache.org/licenses/LICENSE-2.0
+ -
+ - Unless required by applicable law or agreed to in writing, software
+ - distributed under the License is distributed on an "AS IS" BASIS,
+ - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ - See the License for the specific language governing permissions and
+ - limitations under the License.
+ -
- $Id$
-->
+
<map:sitemap xmlns:map="http://apache.org/cocoon/sitemap/1.0">
<map:pipelines>
<map:pipeline>
Modified: xml/xindice/trunk/status.xml
URL: http://svn.apache.org/viewvc/xml/xindice/trunk/status.xml?view=diff&rev=511415&r1=511414&r2=511415
==============================================================================
--- xml/xindice/trunk/status.xml (original)
+++ xml/xindice/trunk/status.xml Sat Feb 24 19:04:14 2007
@@ -1,5 +1,23 @@
<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" href="./tools/antipede/resources/stylesheets/status.xsl"?>
+<!--
+ - Licensed to the Apache Software Foundation (ASF) under one or more
+ - contributor license agreements. See the NOTICE file distributed with
+ - this work for additional information regarding copyright ownership.
+ - The ASF licenses this file to You under the Apache License, Version 2.0
+ - (the "License"); you may not use this file except in compliance with
+ - the License. You may obtain a copy of the License at
+ -
+ - http://www.apache.org/licenses/LICENSE-2.0
+ -
+ - Unless required by applicable law or agreed to in writing, software
+ - distributed under the License is distributed on an "AS IS" BASIS,
+ - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ - See the License for the specific language governing permissions and
+ - limitations under the License.
+ -
+ - $Id$
+ -->
<!--
- Xindice project status file.
Modified: xml/xindice/trunk/tools/eclipse/classpath-tmpl.xml
URL: http://svn.apache.org/viewvc/xml/xindice/trunk/tools/eclipse/classpath-tmpl.xml?view=diff&rev=511415&r1=511414&r2=511415
==============================================================================
--- xml/xindice/trunk/tools/eclipse/classpath-tmpl.xml (original)
+++ xml/xindice/trunk/tools/eclipse/classpath-tmpl.xml Sat Feb 24 19:04:14 2007
@@ -1,4 +1,23 @@
<?xml version="1.0"?>
+<!--
+ - Licensed to the Apache Software Foundation (ASF) under one or more
+ - contributor license agreements. See the NOTICE file distributed with
+ - this work for additional information regarding copyright ownership.
+ - The ASF licenses this file to You under the Apache License, Version 2.0
+ - (the "License"); you may not use this file except in compliance with
+ - the License. You may obtain a copy of the License at
+ -
+ - http://www.apache.org/licenses/LICENSE-2.0
+ -
+ - Unless required by applicable law or agreed to in writing, software
+ - distributed under the License is distributed on an "AS IS" BASIS,
+ - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ - See the License for the specific language governing permissions and
+ - limitations under the License.
+ -
+ - $Id$
+ -->
+
<data>
<src-dirs><item>@SRC_DIRS@</item></src-dirs>
<libs><item>@LIBS@</item></libs>
Modified: xml/xindice/trunk/tools/eclipse/make-classpath.xsl
URL: http://svn.apache.org/viewvc/xml/xindice/trunk/tools/eclipse/make-classpath.xsl?view=diff&rev=511415&r1=511414&r2=511415
==============================================================================
--- xml/xindice/trunk/tools/eclipse/make-classpath.xsl (original)
+++ xml/xindice/trunk/tools/eclipse/make-classpath.xsl Sat Feb 24 19:04:14 2007
@@ -1,15 +1,32 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
- Build the Eclipse .classpath file from a list of path items
- (see "eclipse-project" target in build.xml)
-
- @author Sylvain Wallez
- @version CVS $Id$
--->
+ - Licensed to the Apache Software Foundation (ASF) under one or more
+ - contributor license agreements. See the NOTICE file distributed with
+ - this work for additional information regarding copyright ownership.
+ - The ASF licenses this file to You under the Apache License, Version 2.0
+ - (the "License"); you may not use this file except in compliance with
+ - the License. You may obtain a copy of the License at
+ -
+ - http://www.apache.org/licenses/LICENSE-2.0
+ -
+ - Unless required by applicable law or agreed to in writing, software
+ - distributed under the License is distributed on an "AS IS" BASIS,
+ - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ - See the License for the specific language governing permissions and
+ - limitations under the License.
+ -
+ - $Id$
+ -->
-<xsl:stylesheet
- version="1.0"
- xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
+<!--
+ - Build the Eclipse .classpath file from a list of path items
+ - (see "eclipse-project" target in build.xml)
+ -
+ - @author Sylvain Wallez
+ - @version $Id$
+ -->
+<xsl:stylesheet version="1.0"
+ xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output indent="yes" method="xml"/>
Modified: xml/xindice/trunk/tools/jetty/conf/admin.xml
URL: http://svn.apache.org/viewvc/xml/xindice/trunk/tools/jetty/conf/admin.xml?view=diff&rev=511415&r1=511414&r2=511415
==============================================================================
--- xml/xindice/trunk/tools/jetty/conf/admin.xml (original)
+++ xml/xindice/trunk/tools/jetty/conf/admin.xml Sat Feb 24 19:04:14 2007
@@ -1,5 +1,25 @@
<?xml version="1.0" encoding="ISO-8859-1"?>
-<!DOCTYPE Configure PUBLIC "-//Mort Bay Consulting//DTD Configure 1.2//EN" "http://jetty.mortbay.org/configure_1_2.dtd">
+<!--
+ - Licensed to the Apache Software Foundation (ASF) under one or more
+ - contributor license agreements. See the NOTICE file distributed with
+ - this work for additional information regarding copyright ownership.
+ - The ASF licenses this file to You under the Apache License, Version 2.0
+ - (the "License"); you may not use this file except in compliance with
+ - the License. You may obtain a copy of the License at
+ -
+ - http://www.apache.org/licenses/LICENSE-2.0
+ -
+ - Unless required by applicable law or agreed to in writing, software
+ - distributed under the License is distributed on an "AS IS" BASIS,
+ - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ - See the License for the specific language governing permissions and
+ - limitations under the License.
+ -
+ - $Id$
+ -->
+
+<!DOCTYPE Configure PUBLIC "-//Mort Bay Consulting//DTD Configure 1.2//EN"
+ "http://jetty.mortbay.org/configure_1_2.dtd">
<!-- =============================================================== -->
<!-- Configure the Jetty Server for the Administration Interface -->
@@ -47,7 +67,3 @@
</Call>
</Configure>
-
-
-
-
Modified: xml/xindice/trunk/tools/jetty/conf/main.xml
URL: http://svn.apache.org/viewvc/xml/xindice/trunk/tools/jetty/conf/main.xml?view=diff&rev=511415&r1=511414&r2=511415
==============================================================================
--- xml/xindice/trunk/tools/jetty/conf/main.xml (original)
+++ xml/xindice/trunk/tools/jetty/conf/main.xml Sat Feb 24 19:04:14 2007
@@ -1,5 +1,25 @@
<?xml version="1.0" encoding="ISO-8859-1"?>
-<!DOCTYPE Configure PUBLIC "-//Mort Bay Consulting//DTD Configure 1.2//EN" "http://jetty.mortbay.org/configure_1_2.dtd">
+<!--
+ - Licensed to the Apache Software Foundation (ASF) under one or more
+ - contributor license agreements. See the NOTICE file distributed with
+ - this work for additional information regarding copyright ownership.
+ - The ASF licenses this file to You under the Apache License, Version 2.0
+ - (the "License"); you may not use this file except in compliance with
+ - the License. You may obtain a copy of the License at
+ -
+ - http://www.apache.org/licenses/LICENSE-2.0
+ -
+ - Unless required by applicable law or agreed to in writing, software
+ - distributed under the License is distributed on an "AS IS" BASIS,
+ - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ - See the License for the specific language governing permissions and
+ - limitations under the License.
+ -
+ - $Id$
+ -->
+
+<!DOCTYPE Configure PUBLIC "-//Mort Bay Consulting//DTD Configure 1.2//EN"
+ "http://jetty.mortbay.org/configure_1_2.dtd">
<!-- =============================================================== -->
<!-- Configure the Jetty Server -->
Modified: xml/xindice/trunk/tools/jetty/conf/realm.properties
URL: http://svn.apache.org/viewvc/xml/xindice/trunk/tools/jetty/conf/realm.properties?view=diff&rev=511415&r1=511414&r2=511415
==============================================================================
--- xml/xindice/trunk/tools/jetty/conf/realm.properties (original)
+++ xml/xindice/trunk/tools/jetty/conf/realm.properties Sat Feb 24 19:04:14 2007
@@ -1,4 +1,20 @@
+# Licensed to the Apache Software Foundation (ASF) under one or more
+# contributor license agreements. See the NOTICE file distributed with
+# this work for additional information regarding copyright ownership.
+# The ASF licenses this file to You under the Apache License, Version 2.0
+# (the "License"); you may not use this file except in compliance with
+# the License. You may obtain a copy of the License at
#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+#
+# $Id$
+
# This is a HashUserRealm defining users passwords and roles.
# The format is
# <username>: <password>[,<rolename> ...]
Modified: xml/xindice/trunk/tools/jetty/conf/webdefaults.xml
URL: http://svn.apache.org/viewvc/xml/xindice/trunk/tools/jetty/conf/webdefaults.xml?view=diff&rev=511415&r1=511414&r2=511415
==============================================================================
--- xml/xindice/trunk/tools/jetty/conf/webdefaults.xml (original)
+++ xml/xindice/trunk/tools/jetty/conf/webdefaults.xml Sat Feb 24 19:04:14 2007
@@ -1,7 +1,26 @@
<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE web-app PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN" "http://java.sun.com/dtd/web-app_2_3.dtd">
+<!--
+ - Licensed to the Apache Software Foundation (ASF) under one or more
+ - contributor license agreements. See the NOTICE file distributed with
+ - this work for additional information regarding copyright ownership.
+ - The ASF licenses this file to You under the Apache License, Version 2.0
+ - (the "License"); you may not use this file except in compliance with
+ - the License. You may obtain a copy of the License at
+ -
+ - http://www.apache.org/licenses/LICENSE-2.0
+ -
+ - Unless required by applicable law or agreed to in writing, software
+ - distributed under the License is distributed on an "AS IS" BASIS,
+ - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ - See the License for the specific language governing permissions and
+ - limitations under the License.
+ -
+ - $Id$
+ -->
+
+<!DOCTYPE web-app PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN"
+ "http://java.sun.com/dtd/web-app_2_3.dtd">
-<!-- ===================================================================== -->
<web-app>
<description>
This file is applied to a Web application before it's own WEB-INF/web.xml file
@@ -33,4 +52,3 @@
</session-config>
</web-app>
-
Modified: xml/xindice/trunk/xindice.bat
URL: http://svn.apache.org/viewvc/xml/xindice/trunk/xindice.bat?view=diff&rev=511415&r1=511414&r2=511415
==============================================================================
--- xml/xindice/trunk/xindice.bat (original)
+++ xml/xindice/trunk/xindice.bat Sat Feb 24 19:04:14 2007
@@ -1,12 +1,28 @@
@echo off
-if not "%OS%"=="Windows_NT" goto start
-@setlocal
-:start
-:: -----------------------------------------------------------------------------
-:: Xindice Win32/Win16 Shell Script
+:: Licensed to the Apache Software Foundation (ASF) under one or more
+:: contributor license agreements. See the NOTICE file distributed with
+:: this work for additional information regarding copyright ownership.
+:: The ASF licenses this file to You under the Apache License, Version 2.0
+:: (the "License"); you may not use this file except in compliance with
+:: the License. You may obtain a copy of the License at
+::
+:: http://www.apache.org/licenses/LICENSE-2.0
+::
+:: Unless required by applicable law or agreed to in writing, software
+:: distributed under the License is distributed on an "AS IS" BASIS,
+:: WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+:: See the License for the specific language governing permissions and
+:: limitations under the License.
::
:: $Id$
+
+:: -----------------------------------------------------------------------------
+:: Xindice Win32/Win16 Shell Script
:: -----------------------------------------------------------------------------
+
+if not "%OS%"=="Windows_NT" goto start
+@setlocal
+:start
:: Configuration variables
::
Modified: xml/xindice/trunk/xindice.sh
URL: http://svn.apache.org/viewvc/xml/xindice/trunk/xindice.sh?view=diff&rev=511415&r1=511414&r2=511415
==============================================================================
--- xml/xindice/trunk/xindice.sh (original)
+++ xml/xindice/trunk/xindice.sh Sat Feb 24 19:04:14 2007
@@ -1,8 +1,24 @@
#!/bin/sh
-# -----------------------------------------------------------------------------
-# Xindice Unix Shell Script
+
+# Licensed to the Apache Software Foundation (ASF) under one or more
+# contributor license agreements. See the NOTICE file distributed with
+# this work for additional information regarding copyright ownership.
+# The ASF licenses this file to You under the Apache License, Version 2.0
+# (the "License"); you may not use this file except in compliance with
+# the License. You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
#
# $Id$
+
+# -----------------------------------------------------------------------------
+# Xindice Unix Shell Script
# -----------------------------------------------------------------------------
# Configuration variables
lmpx.com only provides a reader for public news (NNTP) servers. It is not
affiliated with the servers or forums shown here and is not responsible for
the content of articles, which is written by their respective authors.