Skip to content

Commit 1f367f5

Browse files
author
Johannes Gijsbers
committed
Add a bunch of $Id$ keywords, clarify the license for the SQL in tsearch2_setup.py.
1 parent 429c408 commit 1f367f5

File tree

6 files changed

+37
-3
lines changed

6 files changed

+37
-3
lines changed

roundup/backends/back_mysql.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
#$Id: back_mysql.py,v 1.53 2005-01-08 11:25:22 jlgijsbers Exp $
12
#
23
# Copyright (c) 2003 Martynas Sklyzmantas, Andrey Lebedev <[email protected]>
34
#

roundup/backends/back_postgresql.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
#$Id: back_postgresql.py,v 1.27 2005-01-08 11:25:23 jlgijsbers Exp $
12
#
23
# Copyright (c) 2003 Martynas Sklyzmantas, Andrey Lebedev <[email protected]>
34
#

roundup/backends/back_tsearch2.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
1-
# Note: this backend is EXPERIMENTAL. Do not use if you value your data.
1+
#$Id: back_tsearch2.py,v 1.8 2005-01-08 11:25:23 jlgijsbers Exp $
22

3+
# Note: this backend is EXPERIMENTAL. Do not use if you value your data.
34
import re
45

56
import psycopg

roundup/backends/indexer_common.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
#$Id: indexer_common.py,v 1.3 2005-01-08 11:25:23 jlgijsbers Exp $
12
import re
23

34
from roundup import hyperdb

roundup/backends/indexer_rdbms.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
#$Id: indexer_rdbms.py,v 1.7 2005-01-08 11:25:23 jlgijsbers Exp $
12
''' This implements the full-text indexer over two RDBMS tables. The first
23
is a mapping of words to occurance IDs. The second maps the IDs to (Class,
34
propname, itemid) instances.

roundup/backends/tsearch2_setup.py

Lines changed: 31 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,34 @@
1-
tsearch_sql = """
2-
-- Adjust this setting to control where the objects get CREATEd.
1+
#$Id: tsearch2_setup.py,v 1.2 2005-01-08 11:25:23 jlgijsbers Exp $
2+
3+
# All the SQL in this module is taken from the tsearch2 module in the contrib
4+
# tree of PostgreSQL 7.4.6. PostgreSQL, and this code, has the following
5+
# license:
6+
#
7+
# PostgreSQL Data Base Management System
8+
# (formerly known as Postgres, then as Postgres95).
9+
#
10+
# Portions Copyright (c) 1996-2003, The PostgreSQL Global Development Group
11+
#
12+
# Portions Copyright (c) 1994, The Regents of the University of California
13+
#
14+
# Permission to use, copy, modify, and distribute this software and its
15+
# documentation for any purpose, without fee, and without a written agreement
16+
# is hereby granted, provided that the above copyright notice and this
17+
# paragraph and the following two paragraphs appear in all copies.
18+
#
19+
# IN NO EVENT SHALL THE UNIVERSITY OF CALIFORNIA BE LIABLE TO ANY PARTY FOR
20+
# DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES, INCLUDING
21+
# LOST PROFITS, ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS
22+
# DOCUMENTATION, EVEN IF THE UNIVERSITY OF CALIFORNIA HAS BEEN ADVISED OF THE
23+
# POSSIBILITY OF SUCH DAMAGE.
24+
#
25+
# THE UNIVERSITY OF CALIFORNIA SPECIFICALLY DISCLAIMS ANY WARRANTIES,
26+
# INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY
27+
# AND FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS
28+
# ON AN "AS IS" BASIS, AND THE UNIVERSITY OF CALIFORNIA HAS NO OBLIGATIONS TO
29+
# PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
30+
31+
tsearch_sql = """ -- Adjust this setting to control where the objects get CREATEd.
332
SET search_path = public;
433
534
--dict conf

0 commit comments

Comments
 (0)