You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@jspwiki.apache.org by ja...@apache.org on 2009/06/07 21:19:01 UTC

svn commit: r782441 - in /incubator/jspwiki/trunk: build.sh etc/db/hsql/userdb-setup.ddl etc/db/hsql/userdb-teardown.ddl etc/db/postgresql/userdb-setup.ddl etc/db/postgresql/userdb-teardown.ddl install.sh

Author: jalkanen
Date: Sun Jun  7 19:19:00 2009
New Revision: 782441

URL: http://svn.apache.org/viewvc?rev=782441&view=rev
Log:
Fixed broken comments.

Modified:
    incubator/jspwiki/trunk/build.sh
    incubator/jspwiki/trunk/etc/db/hsql/userdb-setup.ddl
    incubator/jspwiki/trunk/etc/db/hsql/userdb-teardown.ddl
    incubator/jspwiki/trunk/etc/db/postgresql/userdb-setup.ddl
    incubator/jspwiki/trunk/etc/db/postgresql/userdb-teardown.ddl
    incubator/jspwiki/trunk/install.sh

Modified: incubator/jspwiki/trunk/build.sh
URL: http://svn.apache.org/viewvc/incubator/jspwiki/trunk/build.sh?rev=782441&r1=782440&r2=782441&view=diff
==============================================================================
--- incubator/jspwiki/trunk/build.sh (original)
+++ incubator/jspwiki/trunk/build.sh Sun Jun  7 19:19:00 2009
@@ -1,3 +1,4 @@
+#!/bin/sh
 # 
 #    JSPWiki - a JSP-based WikiWiki clone.
 #
@@ -20,6 +21,4 @@
 #
 ############################################################################
 
-#!/bin/sh
-
 ant -Dbuild.properties=build.properties -find

Modified: incubator/jspwiki/trunk/etc/db/hsql/userdb-setup.ddl
URL: http://svn.apache.org/viewvc/incubator/jspwiki/trunk/etc/db/hsql/userdb-setup.ddl?rev=782441&r1=782440&r2=782441&view=diff
==============================================================================
--- incubator/jspwiki/trunk/etc/db/hsql/userdb-setup.ddl (original)
+++ incubator/jspwiki/trunk/etc/db/hsql/userdb-setup.ddl Sun Jun  7 19:19:00 2009
@@ -1,24 +1,23 @@
-# 
-#    JSPWiki - a JSP-based WikiWiki clone.
-#
-#    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.  
-#
-############################################################################
+-- 
+--    JSPWiki - a JSP-based WikiWiki clone.
+--
+--    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.  
+--
 
 drop table @jspwiki.userdatabase.table@ if exists;
 drop table @jspwiki.userdatabase.roleTable@ if exists;

Modified: incubator/jspwiki/trunk/etc/db/hsql/userdb-teardown.ddl
URL: http://svn.apache.org/viewvc/incubator/jspwiki/trunk/etc/db/hsql/userdb-teardown.ddl?rev=782441&r1=782440&r2=782441&view=diff
==============================================================================
--- incubator/jspwiki/trunk/etc/db/hsql/userdb-teardown.ddl (original)
+++ incubator/jspwiki/trunk/etc/db/hsql/userdb-teardown.ddl Sun Jun  7 19:19:00 2009
@@ -1,24 +1,23 @@
-# 
-#    JSPWiki - a JSP-based WikiWiki clone.
-#
-#    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.  
-#
-############################################################################
+-- 
+--    JSPWiki - a JSP-based WikiWiki clone.
+--
+--    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.  
+--
 
 drop table @jspwiki.userdatabase.table@ if exists;
 drop table @jspwiki.userdatabase.roleTable@ if exists;

Modified: incubator/jspwiki/trunk/etc/db/postgresql/userdb-setup.ddl
URL: http://svn.apache.org/viewvc/incubator/jspwiki/trunk/etc/db/postgresql/userdb-setup.ddl?rev=782441&r1=782440&r2=782441&view=diff
==============================================================================
--- incubator/jspwiki/trunk/etc/db/postgresql/userdb-setup.ddl (original)
+++ incubator/jspwiki/trunk/etc/db/postgresql/userdb-setup.ddl Sun Jun  7 19:19:00 2009
@@ -1,24 +1,23 @@
-# 
-#    JSPWiki - a JSP-based WikiWiki clone.
-#
-#    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.  
-#
-############################################################################
+-- 
+--    JSPWiki - a JSP-based WikiWiki clone.
+--
+--    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.  
+--
 
 drop table @jspwiki.userdatabase.table@;
 drop table @jspwiki.userdatabase.roleTable@;

Modified: incubator/jspwiki/trunk/etc/db/postgresql/userdb-teardown.ddl
URL: http://svn.apache.org/viewvc/incubator/jspwiki/trunk/etc/db/postgresql/userdb-teardown.ddl?rev=782441&r1=782440&r2=782441&view=diff
==============================================================================
--- incubator/jspwiki/trunk/etc/db/postgresql/userdb-teardown.ddl (original)
+++ incubator/jspwiki/trunk/etc/db/postgresql/userdb-teardown.ddl Sun Jun  7 19:19:00 2009
@@ -1,24 +1,23 @@
-# 
-#    JSPWiki - a JSP-based WikiWiki clone.
-#
-#    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.  
-#
-############################################################################
+-- 
+--    JSPWiki - a JSP-based WikiWiki clone.
+--
+--    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.  
+--
 
 drop table @jspwiki.userdatabase.table@;
 drop table @jspwiki.userdatabase.roleTable@;

Modified: incubator/jspwiki/trunk/install.sh
URL: http://svn.apache.org/viewvc/incubator/jspwiki/trunk/install.sh?rev=782441&r1=782440&r2=782441&view=diff
==============================================================================
--- incubator/jspwiki/trunk/install.sh (original)
+++ incubator/jspwiki/trunk/install.sh Sun Jun  7 19:19:00 2009
@@ -1,3 +1,4 @@
+#!/bin/sh
 # 
 #    JSPWiki - a JSP-based WikiWiki clone.
 #
@@ -19,8 +20,6 @@
 #    under the License.  
 #
 ############################################################################
-
-#!/bin/sh
 #
 #  A very simple installer script which restarts tomcat as well.
 #