Commit f0e2f227 authored by Project Open's avatar Project Open

http -> httpd

parent eefe8c18
This diff is collapsed.
<?xml version="1.0"?>
<!-- Generated by the OpenACS Package Manager -->
<package key="intranet-confdb" url="http://openacs.org/repository/apm/packages/intranet-confdb" type="apm_application">
<package key="intranet-confdb" url="https://openacs.org/repository/apm/packages/intranet-confdb" type="apm_application">
<package-name>]project-open[ Configuration Items</package-name>
<pretty-plural>]project-open[ Configuration Items</pretty-plural>
<initial-install-p>f</initial-install-p>
<singleton-p>t</singleton-p>
<auto-mount>intranet-confdb</auto-mount>
<version name="5.0.4.0.0" url="http://www.project-open.net/download/apm/intranet-confdb-5.0.4.0.0.apm">
<version name="5.0.4.0.0" url="https://www.project-open.net/download/apm/intranet-confdb-5.0.4.0.0.apm">
<owner url="mailto:frank.bergmann@project-open.com">Frank Bergmann</owner>
<release-date>2007-07-28</release-date>
<vendor url="http://www.project-open.com/">]project-open[</vendor>
<vendor url="https://www.project-open.com/">]project-open[</vendor>
<license>]project-open[ Free License (FL)</license>
<provides url="intranet-confdb" version="3.4.0.2.0"/>
......
......@@ -3,7 +3,7 @@
# Copyright (c) 2003-2008 ]project-open[
#
# All rights reserved. Please check
# http://www.project-open.com/license/ for details.
# https://www.project-open.com/license/ for details.
# Shows the list of tickets related to the current ticket
......
......@@ -497,7 +497,7 @@ if ($create_sql ne "") { # we are inside create table statement so lets proces
}
if (/^\s*(\w+)\s+.*int.*auto_increment/i) { # example: data_id mediumint(8) unsigned NOT NULL auto_increment,
# int,auto_increment -> serial (same as what is done below)
# for postgres side see http://www.postgresql.org/docs/7.4/interactive/datatype.html#DATATYPE-SERIAL
# for postgres side see https://www.postgresql.org/docs/7.4/interactive/datatype.html#DATATYPE-SERIAL
$seq = get_identifier($table, $1, 'seq');
$quoted_column=quote_and_lc($1);
$pre_create_sql.= "DROP SEQUENCE $seq CASCADE \;\n\n"; # cascade will force drop of table, too
......@@ -524,7 +524,7 @@ if ($create_sql ne "") { # we are inside create table statement so lets proces
if (m/^(\s*)(\w+)\s+(bigint.*)unsigned/) {
$quoted_column=quote_and_lc($2);
# see http://archives.postgresql.org/pgsql-general/2005-07/msg01178.php
# and see http://www.postgresql.org/docs/8.2/interactive/datatype-numeric.html
# and see https://www.postgresql.org/docs/8.2/interactive/datatype-numeric.html
# see http://dev.mysql.com/doc/refman/5.1/en/numeric-types.html max size == 20 digits
s/^(\s*)(\w+)\s+bigint(.*)unsigned/$1 $quoted_column NUMERIC (20,0) CHECK ($quoted_column >= 0)/i;
......@@ -536,7 +536,7 @@ if ($create_sql ne "") { # we are inside create table statement so lets proces
# MEDIUMINT A medium-sized integer. The signed range is -8388608 to 8388607. The unsigned range is 0 to 16777215.
# INT A normal-size integer. The signed range is -2147483648 to 2147483647. The unsigned range is 0 to 4294967295.
# BIGINT The signed range is -9223372036854775808 to 9223372036854775807. The unsigned range is 0 to 18446744073709551615
# for postgres see http://www.postgresql.org/docs/8.2/static/datatype-numeric.html#DATATYPE-INT
# for postgres see https://www.postgresql.org/docs/8.2/static/datatype-numeric.html#DATATYPE-INT
s/^(\s+"*\w+"*\s+)tinyint/$1 smallint/i;
s/^(\s+"*\w+"*\s+)mediumint/$1 integer/i;
......@@ -752,7 +752,7 @@ update_".$table_no_quotes."();\n";
# the tsvector datatype is made for these types of things
# example mysql file:
# what is tsvector datatype?
# http://www.sai.msu.su/~megera/postgres/gist/tsearch/V2/docs/tsearch-V2-intro.html
# https://www.sai.msu.su/~megera/postgres/gist/tsearch/V2/docs/tsearch-V2-intro.html
warn "dba must do fulltext key transformation for $table\n";
next;
}
......@@ -858,7 +858,7 @@ elsif (/^\s*insert into/i) { # not inside create table and doing insert
$auto_increment_seq = "";
s/'((?:.*?(?:\\')?.*?)*)'([),])/E'$1'$2/g;
# for the E'' see http://www.postgresql.org/docs/8.2/interactive/release-8-1.html
# for the E'' see https://www.postgresql.org/docs/8.2/interactive/release-8-1.html
# split 'extended' INSERT INTO statements to something PostgreSQL can understand
( $insert_table, $valueString) = $_ =~ m/^INSERT\s+INTO\s+['`"]*(.*?)['`"]*\s+VALUES\s*(.*)/i;
......
......@@ -497,7 +497,7 @@ while(<IN>) {
}
if (/^\s*(\w+)\s+.*int.*auto_increment/i) { # example: data_id mediumint(8) unsigned NOT NULL auto_increment,
# int,auto_increment -> serial (same as what is done below)
# for postgres side see http://www.postgresql.org/docs/7.4/interactive/datatype.html#DATATYPE-SERIAL
# for postgres side see https://www.postgresql.org/docs/7.4/interactive/datatype.html#DATATYPE-SERIAL
$seq = get_identifier($table, $1, 'seq');
$quoted_column=quote_and_lc($1);
$pre_create_sql.= "DROP SEQUENCE $seq CASCADE \;\n\n"; # cascade will force drop of table, too
......@@ -523,7 +523,7 @@ while(<IN>) {
if (m/^(\s*)(\w+)\s+(bigint.*)unsigned/) {
$quoted_column=quote_and_lc($2);
# see http://archives.postgresql.org/pgsql-general/2005-07/msg01178.php
# and see http://www.postgresql.org/docs/8.2/interactive/datatype-numeric.html
# and see https://www.postgresql.org/docs/8.2/interactive/datatype-numeric.html
# see http://dev.mysql.com/doc/refman/5.1/en/numeric-types.html max size == 20 digits
s/^(\s*)(\w+)\s+bigint(.*)unsigned/$1 $quoted_column NUMERIC (20,0) CHECK ($quoted_column >= 0)/i;
......@@ -535,7 +535,7 @@ while(<IN>) {
# MEDIUMINT A medium-sized integer. The signed range is -8388608 to 8388607. The unsigned range is 0 to 16777215.
# INT A normal-size integer. The signed range is -2147483648 to 2147483647. The unsigned range is 0 to 4294967295.
# BIGINT The signed range is -9223372036854775808 to 9223372036854775807. The unsigned range is 0 to 18446744073709551615
# for postgres see http://www.postgresql.org/docs/8.2/static/datatype-numeric.html#DATATYPE-INT
# for postgres see https://www.postgresql.org/docs/8.2/static/datatype-numeric.html#DATATYPE-INT
s/^(\s+"*\w+"*\s+)tinyint/$1 smallint/i;
s/^(\s+"*\w+"*\s+)mediumint/$1 integer/i;
......@@ -751,7 +751,7 @@ update_".$table_no_quotes."();\n";
# the tsvector datatype is made for these types of things
# example mysql file:
# what is tsvector datatype?
# http://www.sai.msu.su/~megera/postgres/gist/tsearch/V2/docs/tsearch-V2-intro.html
# https://www.sai.msu.su/~megera/postgres/gist/tsearch/V2/docs/tsearch-V2-intro.html
warn "dba must do fulltext key transformation for $table\n";
next;
}
......@@ -855,7 +855,7 @@ update_".$table_no_quotes."();\n";
$pre_create_sql="";
# s/'(.*?)'([,)])/E'$1'$2/g;
# for the E'' see http://www.postgresql.org/docs/8.2/interactive/release-8-1.html
# for the E'' see https://www.postgresql.org/docs/8.2/interactive/release-8-1.html
# split 'extended' INSERT INTO statements to something PostgreSQL can understand
( $insert_table, $valueString) = $_ =~ m/^INSERT\s+INTO\s+['`"]*(.*?)['`"]*\s+VALUES\s*(.*)/i;
......
This source diff could not be displayed because it is too large. You can view the blob instead.
......@@ -3,7 +3,7 @@
# Copyright (C) 2003-2007 ]project-open[
#
# All rights reserved. Please check
# http://www.project-open.com/license/ for details.
# https://www.project-open.com/license/ for details.
ad_library {
@author frank.bergmann@project-open.com
......
......@@ -3,7 +3,7 @@
# Copyright (C) 2003-2008 ]project-open[
#
# All rights reserved. Please check
# http://www.project-open.com/license/ for details.
# https://www.project-open.com/license/ for details.
ad_page_contract {
Perform bulk actions on conf_items
......
......@@ -3,7 +3,7 @@
# Copyright (C) 2010 ]project-open[
#
# All rights reserved. Please check
# http://www.project-open.com/license/ for details.
# https://www.project-open.com/license/ for details.
ad_page_contract {
Associate the conf_item_ids in "cid" with one of the specified objects.
......
......@@ -3,7 +3,7 @@
# Copyright (C) 2010 ]project-open[
#
# All rights reserved. Please check
# http://www.project-open.com/license/ for details.
# https://www.project-open.com/license/ for details.
ad_page_contract {
Associate the conf_item_ids in "cid" with one of the specified objects.
......
......@@ -3,7 +3,7 @@
# Copyright (C) 2010 ]project-open[
#
# All rights reserved. Please check
# http://www.project-open.com/license/ for details.
# https://www.project-open.com/license/ for details.
ad_page_contract {
Allow the user to associate the current ticket with a new object
......
......@@ -3,7 +3,7 @@
# Copyright (c) 2010 ]project-open[
#
# All rights reserved. Please check
# http://www.project-open.com/license/ for details.
# https://www.project-open.com/license/ for details.
# ---------------------------------------------------------------
# 1. Page Contract
......
......@@ -3,7 +3,7 @@
# Copyright (C) 2010 ]project-open[
#
# All rights reserved. Please check
# http://www.project-open.com/license/ for details.
# https://www.project-open.com/license/ for details.
ad_page_contract {
Allow the user to associate the current ticket with a new object
......
......@@ -3,7 +3,7 @@
# Copyright (C) 2010 ]project-open[
#
# All rights reserved. Please check
# http://www.project-open.com/license/ for details.
# https://www.project-open.com/license/ for details.
ad_page_contract {
Allow the user to associate the current ticket with a new object
......
......@@ -3,7 +3,7 @@
# Copyright (c) 2003 - 2009 ]project-open[
#
# All rights reserved. Please check
# http://www.project-open.com/license/ for details.
# https://www.project-open.com/license/ for details.
# ---------------------------------------------------------------
# 1. Page Contract
......
......@@ -3,7 +3,7 @@
# Copyright (c) 2003-2007 ]project-open[
#
# All rights reserved. Please check
# http://www.project-open.com/license/ for details.
# https://www.project-open.com/license/ for details.
# ---------------------------------------------------------------
# Page Contract
......
......@@ -3,7 +3,7 @@
# Copyright (c) 2003-2007 ]project-open[
#
# All rights reserved. Please check
# http://www.project-open.com/license/ for details.
# https://www.project-open.com/license/ for details.
# ---------------------------------------------------------------
# Page Contract
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment