You can subscribe to this list here.
| 2002 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(267) |
Nov
(344) |
Dec
(119) |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 2003 |
Jan
(23) |
Feb
(15) |
Mar
(16) |
Apr
(388) |
May
|
Jun
(4) |
Jul
|
Aug
|
Sep
(4) |
Oct
|
Nov
|
Dec
|
|
From: <jas...@us...> - 2003-04-16 23:25:10
|
Update of /cvsroot/genex/genex-server/Genex/scripts
In directory sc8-pr-cvs1:/tmp/cvs-serv18825/Genex/scripts
Modified Files:
protocol-insert.pl.in
Log Message:
* scripts/protocol-insert.pl.in (Repository):
added ability to add info for a single protocol from the command line
Index: protocol-insert.pl.in
===================================================================
RCS file: /cvsroot/genex/genex-server/Genex/scripts/protocol-insert.pl.in,v
retrieving revision 1.8
retrieving revision 1.9
diff -C2 -d -r1.8 -r1.9
*** protocol-insert.pl.in 11 Oct 2002 02:18:23 -0000 1.8
--- protocol-insert.pl.in 16 Apr 2003 23:25:06 -0000 1.9
***************
*** 4,10 ****
# first version Tue Oct 24 14:13:45 MST 2000
# script for inserting protocol entries into genex DB
#
! # author: Jason E. Stewart (je...@nc... || ja...@op...)
! # Copyright 2001-2002 Jason E. Stewart
# Copyright 2000-2001 NCGR
#
--- 4,11 ----
# first version Tue Oct 24 14:13:45 MST 2000
# script for inserting protocol entries into genex DB
+ # it can take arguments directly from the command line or from and XML file
#
! # author: Jason E. Stewart (ja...@op...)
! # Copyright 2001-2003 Jason E. Stewart
# Copyright 2000-2001 NCGR
#
***************
*** 22,25 ****
--- 23,27 ----
use Bio::Genex::Protocol;
use Bio::Genex::Contact;
+ use Bio::Genex::Config;
use Bio::Genex::GenexAdmin;
***************
*** 31,36 ****
--- 33,47 ----
my %OPTIONS;
$OPTIONS{dbname} = $Bio::Genex::Connect::DBNAME;
+ $OPTIONS{ro_groupname} = 'public';
+ $OPTIONS{rw_groupname} = 'superuser';
my $rc = GetOptions(\%OPTIONS,
'dbname=s',
+ 'name=s',
+ 'description=s',
+ 'uri=s',
+ 'ro_groupname=s',
+ 'rw_groupname=s',
+ 'type=s',
+ 'provider=i',
'username=s',
'password=s',
***************
*** 40,60 ****
my $USAGE = <<"EOU";
! usage: $0 [required flags]
! required flags:
! --file=file_name : the XML file to parse
--username=name : the DB username to login as
--password=word : the DB password to login with
optional parameters:
--dbname=name : the name of the DB to create
--debug : rollback instead of commit
--help : print this message
EOU
! die "Bad option: $rc\n$USAGE" unless $rc;
die $USAGE if exists $OPTIONS{help};
- die "Must specify --file\n$USAGE"
- unless defined $OPTIONS{file};
die "Must specify --username\n$USAGE"
unless exists $OPTIONS{username};
--- 51,84 ----
my $USAGE = <<"EOU";
! usage: $0 [required flags] [options]
! either --file is specified to read the protocols from an XML file
! or the information will be specified on the command line
!
! required flags (for all uses):
--username=name : the DB username to login as
--password=word : the DB password to login with
+ required flags (not using --file):
+ --name=name : the protocol name
+ --description=text : the protocol description
+
+ required flags (using --file):
+ --file=file_name : the XML file to parse
+
+
optional parameters:
+ --uri=text : the protocol information URI
+ --type=name : the protocol type (fkey)
+ --provider=num : the protocol provider (fkey)
--dbname=name : the name of the DB to create
+ --ro_groupname=name : the name of the read-only group to use
+ --rw_groupname=name : the name of the read-write group to use
--debug : rollback instead of commit
--help : print this message
EOU
! die "Bad option\n$USAGE" unless $rc;
die $USAGE if exists $OPTIONS{help};
die "Must specify --username\n$USAGE"
unless exists $OPTIONS{username};
***************
*** 62,70 ****
unless exists $OPTIONS{password};
-
- my $PARSER = Bio::Genex::GeneXML::DOMParser->new(validate=>0);
- $PARSER->parse(file=>$OPTIONS{file});
- my $DOC = $PARSER->get_genexml_document();
-
# open up a writeable connection
my $dbh = Bio::Genex::Connect->new(DBNAME=>$OPTIONS{dbname},
--- 86,89 ----
***************
*** 73,118 ****
TRANSACTION => 1,
);
! my $curr_table = 'Protocol';
! my @inserted;
my @error_args = (caller=>$0);
! my @protocol_list = $DOC->getElementsByTagName('protocol');
! my @protocol_dbs;
! foreach my $protocol_node (@protocol_list) {
! push(@protocol_dbs,Bio::Genex::Protocol->xml2db(doc=>$DOC,
! dbh=>$dbh,
! resolve_db_xref=>1,
! node=>$protocol_node));
! }
! print STDERR scalar @protocol_list, " Protocol entries to insert\n";
! # now insert the protocol entries
! foreach my $protocol_db (@protocol_dbs) {
! my $name = $protocol_db->title();
! $dbh->error(@error_args,
! message=>"Couldn't find name for protocol")
! unless $name ne '';
! print STDERR "Inserting protocol $name\n";
! my $protocol_pk = $protocol_db->insert_db(dbh=>$dbh,
! no_genex_admin=>1);
! $dbh->error(@error_args,
! message=>"couldn't insert record for protocol: $name")
! if $dbh->err;
! push(@inserted,$name);
! }
! print STDERR "Inserting GenexAdmin\n";
! my $ga_db = Bio::Genex::GenexAdmin->new();
! my $description = "upgraded using $0
Tables affected: $curr_table;
Entries affected: " . join('; ', @inserted);
! $ga_db->description($description);
! $ga_db->insert_db($dbh);
! $dbh->error(@error_args,message=>"Couldn't insert GenexAdmin record")
! if $dbh->err;
print STDERR "Finished\n";
--- 92,195 ----
TRANSACTION => 1,
);
!
my @error_args = (caller=>$0);
! if (exists $OPTIONS{file}) {
! my $PARSER = Bio::Genex::GeneXML::DOMParser->new(validate=>0);
! $PARSER->parse(file=>$OPTIONS{file});
! my $DOC = $PARSER->get_genexml_document();
! my $curr_table = 'Protocol';
! my @inserted;
! my @protocol_list = $DOC->getElementsByTagName('protocol');
! my @protocol_dbs;
! foreach my $protocol_node (@protocol_list) {
! push(@protocol_dbs,Bio::Genex::Protocol->xml2db(doc=>$DOC,
! dbh=>$dbh,
! resolve_db_xref=>1,
! node=>$protocol_node));
! }
! print STDERR scalar @protocol_list, " Protocol entries to insert\n";
! # now insert the protocol entries
! foreach my $protocol_db (@protocol_dbs) {
! my $name = $protocol_db->title();
! $dbh->error(@error_args,
! message=>"Couldn't find name for protocol")
! unless $name ne '';
! print STDERR "Inserting protocol $name\n";
! my $protocol_pk = $protocol_db->insert_db(dbh=>$dbh,
! no_genex_admin=>1);
! $dbh->error(@error_args,
! message=>"couldn't insert record for protocol: $name")
! if $dbh->err;
! push(@inserted,$name);
! }
!
! print STDERR "Inserting GenexAdmin\n";
!
! my $ga_db = Bio::Genex::GenexAdmin->new();
! my $description = "upgraded using $0
Tables affected: $curr_table;
Entries affected: " . join('; ', @inserted);
! $ga_db->description($description);
! $ga_db->insert_db($dbh);
! $dbh->error(@error_args,message=>"Couldn't insert GenexAdmin record")
! if $dbh->err;
! } else {
! die "Must specify --name\n$USAGE"
! unless exists $OPTIONS{name};
! die "Must specify --description\n$USAGE"
! unless exists $OPTIONS{description};
!
! # get all the arguments for a single protocol from the command line
! my ($ro_group_db) = Bio::Genex::GroupSec->get_all_objects($dbh,
! column=>'name',
! value=>$OPTIONS{ro_groupname},
! );
! $dbh->error(@error_args,
! no_errstr=>1,
! message=>"Couldn't locate $OPTIONS{ro_groupname} group")
! unless defined $ro_group_db;
!
! my ($rw_group_db) = Bio::Genex::GroupSec->get_all_objects($dbh,
! column=>'name',
! value=>$OPTIONS{rw_groupname},
! );
! $dbh->error(@error_args,
! no_errstr=>1,
! message=>"Couldn't locate $OPTIONS{rw_groupname} group")
! unless defined $rw_group_db;
!
! my $proto_db = Bio::Genex::Protocol->new(ro_groupname_obj=>$ro_group_db,
! rw_groupname_obj=>$rw_group_db,
! name=>$OPTIONS{name},
! description=>$OPTIONS{description},
!
! );
!
! # handle the simple optional arguments
! $proto_db->type($OPTIONS{type})
! if exists $OPTIONS{type};
! $proto_db->URI($OPTIONS{uri})
! if exists $OPTIONS{uri};
!
! # if they've specified a provider, we check to ensure that it exists in the DB
! if (exists $OPTIONS{provider}) {
! my ($con_db) = Bio::Genex::Contact->get_all_objects($dbh,
! column=>'con_pk',
! value=>$OPTIONS{provider},
! );
! $dbh->error(@error_args,
! no_errstr=>1,
! message=>"Couldn't locate Contact entry for value: $OPTIONS{provider}")
! unless defined $con_db;
! $proto_db->provider_con_obj($con_db);
! }
! }
print STDERR "Finished\n";
|
|
From: <jas...@us...> - 2003-04-16 23:24:23
|
Update of /cvsroot/genex/genex-server/Genex/ExternalDatabase In directory sc8-pr-cvs1:/tmp/cvs-serv17623/Genex/ExternalDatabase Modified Files: ExternalDatabase.pm Log Message: new Perl API for Protocol changes Index: ExternalDatabase.pm =================================================================== RCS file: /cvsroot/genex/genex-server/Genex/ExternalDatabase/ExternalDatabase.pm,v retrieving revision 1.32 retrieving revision 1.33 diff -C2 -d -r1.32 -r1.33 |
|
From: <jas...@us...> - 2003-04-16 23:24:22
|
Update of /cvsroot/genex/genex-server/Genex/ExperimentFactors In directory sc8-pr-cvs1:/tmp/cvs-serv17623/Genex/ExperimentFactors Modified Files: ExperimentFactors.pm Log Message: new Perl API for Protocol changes Index: ExperimentFactors.pm =================================================================== RCS file: /cvsroot/genex/genex-server/Genex/ExperimentFactors/ExperimentFactors.pm,v retrieving revision 1.32 retrieving revision 1.33 diff -C2 -d -r1.32 -r1.33 |
|
From: <jas...@us...> - 2003-04-16 23:24:22
|
Update of /cvsroot/genex/genex-server/Genex/ExperimentSet In directory sc8-pr-cvs1:/tmp/cvs-serv17623/Genex/ExperimentSet Modified Files: ExperimentSet.pm Log Message: new Perl API for Protocol changes Index: ExperimentSet.pm =================================================================== RCS file: /cvsroot/genex/genex-server/Genex/ExperimentSet/ExperimentSet.pm,v retrieving revision 1.38 retrieving revision 1.39 diff -C2 -d -r1.38 -r1.39 |
|
From: <jas...@us...> - 2003-04-16 23:24:20
|
Update of /cvsroot/genex/genex-server/Genex/ControlledVocab In directory sc8-pr-cvs1:/tmp/cvs-serv17623/Genex/ControlledVocab Modified Files: ControlledVocab.pm Log Message: new Perl API for Protocol changes Index: ControlledVocab.pm =================================================================== RCS file: /cvsroot/genex/genex-server/Genex/ControlledVocab/ControlledVocab.pm,v retrieving revision 1.31 retrieving revision 1.32 diff -C2 -d -r1.31 -r1.32 |
|
From: <jas...@us...> - 2003-04-16 23:24:20
|
Update of /cvsroot/genex/genex-server/Genex/ContactType In directory sc8-pr-cvs1:/tmp/cvs-serv17623/Genex/ContactType Modified Files: ContactType.pm Log Message: new Perl API for Protocol changes Index: ContactType.pm =================================================================== RCS file: /cvsroot/genex/genex-server/Genex/ContactType/ContactType.pm,v retrieving revision 1.19 retrieving revision 1.20 diff -C2 -d -r1.19 -r1.20 |
|
From: <jas...@us...> - 2003-04-16 23:24:19
|
Update of /cvsroot/genex/genex-server/Genex/Citation In directory sc8-pr-cvs1:/tmp/cvs-serv17623/Genex/Citation Modified Files: Citation.pm Log Message: new Perl API for Protocol changes Index: Citation.pm =================================================================== RCS file: /cvsroot/genex/genex-server/Genex/Citation/Citation.pm,v retrieving revision 1.38 retrieving revision 1.39 diff -C2 -d -r1.38 -r1.39 |
|
From: <jas...@us...> - 2003-04-16 23:24:19
|
Update of /cvsroot/genex/genex-server/Genex/Chromosome In directory sc8-pr-cvs1:/tmp/cvs-serv17623/Genex/Chromosome Modified Files: Chromosome.pm Log Message: new Perl API for Protocol changes Index: Chromosome.pm =================================================================== RCS file: /cvsroot/genex/genex-server/Genex/Chromosome/Chromosome.pm,v retrieving revision 1.42 retrieving revision 1.43 diff -C2 -d -r1.42 -r1.43 |
|
From: <jas...@us...> - 2003-04-16 23:24:19
|
Update of /cvsroot/genex/genex-server/Genex/Contact In directory sc8-pr-cvs1:/tmp/cvs-serv17623/Genex/Contact Modified Files: Contact.pm Log Message: new Perl API for Protocol changes Index: Contact.pm =================================================================== RCS file: /cvsroot/genex/genex-server/Genex/Contact/Contact.pm,v retrieving revision 1.38 retrieving revision 1.39 diff -C2 -d -r1.38 -r1.39 |
|
From: <jas...@us...> - 2003-04-16 23:24:17
|
Update of /cvsroot/genex/genex-server/Genex/Channel In directory sc8-pr-cvs1:/tmp/cvs-serv17623/Genex/Channel Modified Files: Channel.pm Log Message: new Perl API for Protocol changes Index: Channel.pm =================================================================== RCS file: /cvsroot/genex/genex-server/Genex/Channel/Channel.pm,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 |
|
From: <jas...@us...> - 2003-04-16 23:24:16
|
Update of /cvsroot/genex/genex-server/Genex/BlastHits In directory sc8-pr-cvs1:/tmp/cvs-serv17623/Genex/BlastHits Modified Files: BlastHits.pm Log Message: new Perl API for Protocol changes Index: BlastHits.pm =================================================================== RCS file: /cvsroot/genex/genex-server/Genex/BlastHits/BlastHits.pm,v retrieving revision 1.32 retrieving revision 1.33 diff -C2 -d -r1.32 -r1.33 |
|
From: <jas...@us...> - 2003-04-16 23:24:15
|
Update of /cvsroot/genex/genex-server/Genex/Audit In directory sc8-pr-cvs1:/tmp/cvs-serv17623/Genex/Audit Modified Files: Audit.pm Log Message: new Perl API for Protocol changes Index: Audit.pm =================================================================== RCS file: /cvsroot/genex/genex-server/Genex/Audit/Audit.pm,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 |
|
From: <jas...@us...> - 2003-04-16 23:24:15
|
Update of /cvsroot/genex/genex-server/Genex/Array
In directory sc8-pr-cvs1:/tmp/cvs-serv17623/Genex/Array
Modified Files:
Array.pm
Log Message:
new Perl API for Protocol changes
Index: Array.pm
===================================================================
RCS file: /cvsroot/genex/genex-server/Genex/Array/Array.pm,v
retrieving revision 1.8
retrieving revision 1.9
diff -C2 -d -r1.8 -r1.9
*** Array.pm 23 Nov 2002 10:18:12 -0000 1.8
--- Array.pm 16 Apr 2003 23:23:42 -0000 1.9
***************
*** 20,25 ****
use Bio::Genex::Contact;
use Bio::Genex::GroupSec;
use Bio::Genex::Software;
- use Bio::Genex::Spotter;
use Bio::Genex::Audit;
use Bio::Genex::ArrayDesign;
--- 20,25 ----
use Bio::Genex::Contact;
use Bio::Genex::GroupSec;
+ use Bio::Genex::Hardware;
use Bio::Genex::Software;
use Bio::Genex::Audit;
use Bio::Genex::ArrayDesign;
***************
*** 52,56 ****
'audit_fk',
'ad_fk',
! 'sptr_fk',
'sw_fk',
'spotter_sw_params',
--- 52,56 ----
'audit_fk',
'ad_fk',
! 'spotter_hw_fk',
'sw_fk',
'spotter_sw_params',
***************
*** 73,76 ****
--- 73,83 ----
;
$FKEYS = {
+ 'spotter_hw_obj' => bless( {
+ 'fkey_name' => 'spotter_hw_obj',
+ 'can_self_reference' => 'false',
+ 'pkey_name' => 'param_pk',
+ 'fkey_type' => 'ONE_TO_ONE_OO',
+ 'table_name' => 'Hardware'
+ }, 'Bio::Genex::Fkey' ),
'ad_obj' => bless( {
'fkey_name' => 'ad_obj',
***************
*** 94,104 ****
'table_name' => 'GroupSec'
}, 'Bio::Genex::Fkey' ),
- 'sptr_obj' => bless( {
- 'fkey_name' => 'sptr_obj',
- 'can_self_reference' => 'false',
- 'pkey_name' => 'sptr_pk',
- 'fkey_type' => 'ONE_TO_ONE_OO',
- 'table_name' => 'Spotter'
- }, 'Bio::Genex::Fkey' ),
'sw_obj' => bless( {
'fkey_name' => 'sw_obj',
--- 101,104 ----
***************
*** 140,146 ****
'manufacture_date' => 'Manufacture date',
'technology_type' => 'Technology Type',
'name' => 'Layout Name',
'description' => 'Description',
- 'sptr_fk' => 'Spotter',
'spotter_sw_params' => 'Spotter Software Parameters',
'ad_fk' => 'Array Design',
--- 140,146 ----
'manufacture_date' => 'Manufacture date',
'technology_type' => 'Technology Type',
+ 'spotter_hw_fk' => 'Spotter Hardware',
'name' => 'Layout Name',
'description' => 'Description',
'spotter_sw_params' => 'Spotter Software Parameters',
'ad_fk' => 'Array Design',
***************
*** 166,171 ****
'Default Spot Concentration Error' => 'default_spot_conc_error',
'Technology Type' => 'technology_type',
- 'Spotter' => 'sptr_fk',
'Array Identifier' => 'array_identifier',
'Provider Contact' => 'provider_con_fk',
'Software' => 'sw_fk',
--- 166,171 ----
'Default Spot Concentration Error' => 'default_spot_conc_error',
'Technology Type' => 'technology_type',
'Array Identifier' => 'array_identifier',
+ 'Spotter Hardware' => 'spotter_hw_fk',
'Provider Contact' => 'provider_con_fk',
'Software' => 'sw_fk',
***************
*** 176,183 ****
;
$FKEY_OBJ2RAW = {
'ad_obj' => 'ad_fk',
'audit_obj' => 'audit_fk',
'rw_groupname_obj' => 'rw_groupname',
- 'sptr_obj' => 'sptr_fk',
'sw_obj' => 'sw_fk',
'ro_groupname_obj' => 'ro_groupname',
--- 176,183 ----
;
$FKEY_OBJ2RAW = {
+ 'spotter_hw_obj' => 'spotter_hw_fk',
'ad_obj' => 'ad_fk',
'audit_obj' => 'audit_fk',
'rw_groupname_obj' => 'rw_groupname',
'sw_obj' => 'sw_fk',
'ro_groupname_obj' => 'ro_groupname',
***************
*** 245,250 ****
$Array->ad_fk($value);
! my $sptr_fk_val = $Array->sptr_fk();
! $Array->sptr_fk($value);
my $sw_fk_val = $Array->sw_fk();
--- 245,250 ----
$Array->ad_fk($value);
! my $spotter_hw_fk_val = $Array->spotter_hw_fk();
! $Array->spotter_hw_fk($value);
my $sw_fk_val = $Array->sw_fk();
***************
*** 442,446 ****
# this calls the Class::ObjectTemplate::attributes() method
# to initialize all the class attributes
! attributes (no_lookup=>['fetched', 'fetch_all', 'fetched_attr', 'id', 'dbh'], lookup=>['array_pk', 'provider_con_fk', 'ro_groupname', 'rw_groupname', 'audit_fk', 'ad_fk', 'sptr_fk', 'sw_fk', 'spotter_sw_params', 'spotter_hw_params', 'name', 'description', 'technology_type', 'identifier_code', 'medium', 'coating', 'default_spot_conc', 'default_spot_conc_units', 'default_spot_conc_error', 'manufacture_date', 'array_identifier', 'tolerance', 'ro_groupname_obj', 'rw_groupname_obj', 'audit_obj', 'ad_obj', 'sw_obj', 'sptr_obj', 'provider_con_obj']);
--- 442,446 ----
# this calls the Class::ObjectTemplate::attributes() method
# to initialize all the class attributes
! attributes (no_lookup=>['fetched', 'fetch_all', 'fetched_attr', 'id', 'dbh'], lookup=>['array_pk', 'provider_con_fk', 'ro_groupname', 'rw_groupname', 'audit_fk', 'ad_fk', 'spotter_hw_fk', 'sw_fk', 'spotter_sw_params', 'spotter_hw_params', 'name', 'description', 'technology_type', 'identifier_code', 'medium', 'coating', 'default_spot_conc', 'default_spot_conc_units', 'default_spot_conc_error', 'manufacture_date', 'array_identifier', 'tolerance', 'ro_groupname_obj', 'rw_groupname_obj', 'audit_obj', 'ad_obj', 'sw_obj', 'spotter_hw_obj', 'provider_con_obj']);
***************
*** 1430,1438 ****
! =item $value = sptr_fk();
! =item sptr_fk($value);
! Methods for the sptr_fk attribute.
--- 1430,1438 ----
! =item $value = spotter_hw_fk();
! =item spotter_hw_fk($value);
! Methods for the spotter_hw_fk attribute.
|
|
From: <jas...@us...> - 2003-04-16 23:24:15
|
Update of /cvsroot/genex/genex-server/Genex/ArrayDesign In directory sc8-pr-cvs1:/tmp/cvs-serv17623/Genex/ArrayDesign Modified Files: ArrayDesign.pm Log Message: new Perl API for Protocol changes Index: ArrayDesign.pm =================================================================== RCS file: /cvsroot/genex/genex-server/Genex/ArrayDesign/ArrayDesign.pm,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 |
|
From: <jas...@us...> - 2003-04-16 23:24:15
|
Update of /cvsroot/genex/genex-server/Genex/AM_SuspectSpots In directory sc8-pr-cvs1:/tmp/cvs-serv17623/Genex/AM_SuspectSpots Modified Files: AM_SuspectSpots.pm Log Message: new Perl API for Protocol changes Index: AM_SuspectSpots.pm =================================================================== RCS file: /cvsroot/genex/genex-server/Genex/AM_SuspectSpots/AM_SuspectSpots.pm,v retrieving revision 1.31 retrieving revision 1.32 diff -C2 -d -r1.31 -r1.32 |
|
From: <jas...@us...> - 2003-04-16 23:24:14
|
Update of /cvsroot/genex/genex-server/Genex/AM_FactorValues In directory sc8-pr-cvs1:/tmp/cvs-serv17623/Genex/AM_FactorValues Modified Files: AM_FactorValues.pm Log Message: new Perl API for Protocol changes Index: AM_FactorValues.pm =================================================================== RCS file: /cvsroot/genex/genex-server/Genex/AM_FactorValues/AM_FactorValues.pm,v retrieving revision 1.31 retrieving revision 1.32 diff -C2 -d -r1.31 -r1.32 |
|
From: <jas...@us...> - 2003-04-16 23:18:12
|
Update of /cvsroot/genex/genex-server/Genex/ProtocolStep In directory sc8-pr-cvs1:/tmp/cvs-serv16179/Genex/ProtocolStep Log Message: Directory /cvsroot/genex/genex-server/Genex/ProtocolStep added to the repository |
|
From: <jas...@us...> - 2003-04-16 23:18:12
|
Update of /cvsroot/genex/genex-server/Genex/ProtocolApplication In directory sc8-pr-cvs1:/tmp/cvs-serv16179/Genex/ProtocolApplication Log Message: Directory /cvsroot/genex/genex-server/Genex/ProtocolApplication added to the repository |
|
From: <jas...@us...> - 2003-04-16 23:18:11
|
Update of /cvsroot/genex/genex-server/Genex/Procedure In directory sc8-pr-cvs1:/tmp/cvs-serv16179/Genex/Procedure Log Message: Directory /cvsroot/genex/genex-server/Genex/Procedure added to the repository |
|
From: <jas...@us...> - 2003-04-16 23:18:11
|
Update of /cvsroot/genex/genex-server/Genex/Parameterizable In directory sc8-pr-cvs1:/tmp/cvs-serv16179/Genex/Parameterizable Log Message: Directory /cvsroot/genex/genex-server/Genex/Parameterizable added to the repository |
|
From: <jas...@us...> - 2003-04-16 23:18:11
|
Update of /cvsroot/genex/genex-server/Genex/Hardware In directory sc8-pr-cvs1:/tmp/cvs-serv16179/Genex/Hardware Log Message: Directory /cvsroot/genex/genex-server/Genex/Hardware added to the repository |
|
From: <jas...@us...> - 2003-04-16 23:18:11
|
Update of /cvsroot/genex/genex-server/Genex/ParameterValue In directory sc8-pr-cvs1:/tmp/cvs-serv16179/Genex/ParameterValue Log Message: Directory /cvsroot/genex/genex-server/Genex/ParameterValue added to the repository |
|
From: <jas...@us...> - 2003-04-16 23:18:11
|
Update of /cvsroot/genex/genex-server/Genex/Parameter In directory sc8-pr-cvs1:/tmp/cvs-serv16179/Genex/Parameter Log Message: Directory /cvsroot/genex/genex-server/Genex/Parameter added to the repository |
|
From: <jas...@us...> - 2003-04-16 23:17:33
|
Update of /cvsroot/genex/genex-server/DTD
In directory sc8-pr-cvs1:/tmp/cvs-serv15931/DTD
Modified Files:
table.dtd
Log Message:
* DTD/table.dtd (Repository):
removed IDREF and IDREFS
Index: table.dtd
===================================================================
RCS file: /cvsroot/genex/genex-server/DTD/table.dtd,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -d -r1.5 -r1.6
*** table.dtd 18 Sep 2002 21:32:16 -0000 1.5
--- table.dtd 16 Apr 2003 23:17:30 -0000 1.6
***************
*** 49,57 ****
<!ELEMENT unique EMPTY >
<!ATTLIST unique
! column_ids IDREFS #REQUIRED >
<!ELEMENT primary_key EMPTY >
<!ATTLIST primary_key
! column_id IDREF #REQUIRED
serial (true|false) "true" >
--- 49,57 ----
<!ELEMENT unique EMPTY >
<!ATTLIST unique
! column_ids NMTOKENS #REQUIRED >
<!ELEMENT primary_key EMPTY >
<!ATTLIST primary_key
! column_id NMTOKEN #REQUIRED
serial (true|false) "true" >
|
|
From: <jas...@us...> - 2003-04-16 23:17:02
|
Update of /cvsroot/genex/genex-server/DB/xml
In directory sc8-pr-cvs1:/tmp/cvs-serv15733/DB/xml
Modified Files:
Protocol.xml
Log Message:
* DB/xml/Protocol.xml (Repository):
removed not_null on the provider
Index: Protocol.xml
===================================================================
RCS file: /cvsroot/genex/genex-server/DB/xml/Protocol.xml,v
retrieving revision 1.7
retrieving revision 1.8
diff -C2 -d -r1.7 -r1.8
*** Protocol.xml 16 Apr 2003 21:25:12 -0000 1.7
--- Protocol.xml 16 Apr 2003 23:16:57 -0000 1.8
***************
*** 25,29 ****
<column name="provider_con_fk"
full_name="Protocol Provider"
- not_null="true"
type="int4"
comment=" the supplier of the protocol"/>
--- 25,28 ----
|