cvs -z9 diff (in directory C:\pgadmin2\pgadmin2\)
cvs diff: Empty password used - try 'cvs login' with a real password

? MSSCCPRJ.SCC
? pgAdmin2.vbw
? plugins/abstract/MSSCCPRJ.SCC
? plugins/abstract/pgAbsPlg.vbw
cvs server: Diffing .
Index: ScrollObjDb.ctl
===================================================================
RCS file: /disk1/cvsroot/pgadmin2/ScrollObjDb.ctl,v
retrieving revision 1.2
diff -r1.2 ScrollObjDb.ctl
2c2
< Object = "{86CF1D34-0C5F-11D2-A9FC-0000F8754DA1}#2.0#0"; "mscomct2.ocx"
---
> Object = "{86CF1D34-0C5F-11D2-A9FC-0000F8754DA1}#2.0#0"; "MSCOMCT2.OCX"
197a198,205
>         Case "Rule"
>           'verify if rule is for table or view
>           If frmMain.svr.Databases(szDatabase).Namespaces(szNamespace).Tables.Exists(szTable) Then
>             szIdentifier = GetIdentifier(CallByName(frmMain.svr.Databases(szDatabase).Namespaces(szNamespace).Tables(szTable), szObjectType & "s", VbGet), szObjIdentifier, ETypeMove)
>           ElseIf frmMain.svr.Databases(szDatabase).Namespaces(szNamespace).Views.Exists(szTable) Then
>             szIdentifier = GetIdentifier(CallByName(frmMain.svr.Databases(szDatabase).Namespaces(szNamespace).Views(szTable), szObjectType & "s", VbGet), szObjIdentifier, ETypeMove)
>           End If
>         
231a240,247
>         
>         Case "Rule"
>           'verify if rule is for table or view
>           If frmMain.svr.Databases(szDatabase).Namespaces(szNamespace).Tables.Exists(szTable) Then
>             objForm.Initialise szDatabase, szNamespace, frmMain.svr.Databases(szDatabase).Namespaces(szNamespace).Tables(szTable).Rules(szIdentifier)
>           ElseIf frmMain.svr.Databases(szDatabase).Namespaces(szNamespace).Views.Exists(szTable) Then
>             objForm.Initialise szDatabase, szNamespace, frmMain.svr.Databases(szDatabase).Namespaces(szNamespace).Views(szTable).Rules(szIdentifier)
>           End If
Index: basActions.bas
===================================================================
RCS file: /disk1/cvsroot/pgadmin2/basActions.bas,v
retrieving revision 1.22
diff -r1.22 basActions.bas
186c186,191
<       frmMain.svr.Databases(ctx.CurrentObject.Database).Namespaces(ctx.CurrentObject.Namespace).Tables(ctx.CurrentObject.Table).Rules.Remove ctx.CurrentObject.Identifier
---
>       'verify if rule is for table or view
>       If frmMain.svr.Databases(ctx.CurrentObject.Database).Namespaces(ctx.CurrentObject.Namespace).Tables.Exists(ctx.CurrentObject.Table) Then
>         frmMain.svr.Databases(ctx.CurrentObject.Database).Namespaces(ctx.CurrentObject.Namespace).Tables(ctx.CurrentObject.Table).Rules.Remove ctx.CurrentObject.Identifier
>       ElseIf frmMain.svr.Databases(ctx.CurrentObject.Database).Namespaces(ctx.CurrentObject.Namespace).Views.Exists(ctx.CurrentObject.Table) Then
>         frmMain.svr.Databases(ctx.CurrentObject.Database).Namespaces(ctx.CurrentObject.Namespace).Views(ctx.CurrentObject.Table).Rules.Remove ctx.CurrentObject.Identifier
>       End If
Index: basClone.bas
===================================================================
RCS file: /disk1/cvsroot/pgadmin2/basClone.bas,v
retrieving revision 1.2
diff -r1.2 basClone.bas
261a262
> Dim objRule As pgRule
267a269,276
>   'create rule
>   StartMsg "Creating Rules..."
>   For Each objRule In ObjDbClone.Rules
>     If Not objNewView.Rules.Exists(objRule.Name) Then
>       objNewView.Rules.Add objRule.Name, objRule.RuleEvent, objRule.Condition, objRule.DoInstead, objRule.Action, objRule.Comment
>     End If
>   Next
>   
Index: basMisc.bas
===================================================================
RCS file: /disk1/cvsroot/pgadmin2/basMisc.bas,v
retrieving revision 1.42
diff -r1.42 basMisc.bas
548,549c548,549
<     With lv
<         szKey = CStr(Now)
---
>   With lv
>     szKey = CStr(Now)
551,562c551,562
<         'frank_lupo add new element title in listview
<         Set objItem = .ListItems.Add(1, szKey, .ColumnHeaders(1).Text & "  ")
<         SendMessage .hwnd, LVM_SETCOLUMNWIDTH, 0, LVSCW_AUTOSIZE
< 
<         For ii = 1 To .ColumnHeaders.Count - 1
<             objItem.SubItems(ii) = .ColumnHeaders(ii + 1).Text & "  "
<             SendMessage .hwnd, LVM_SETCOLUMNWIDTH, ii, LVSCW_AUTOSIZE
<         Next
< 
<         'frank_lupo drop element title in listview
<         .ListItems.Remove szKey
<     End With
---
>     'frank_lupo add new element title in listview
>     Set objItem = .ListItems.Add(1, szKey, .ColumnHeaders(1).Text & "  ")
>     SendMessage .hwnd, LVM_SETCOLUMNWIDTH, 0, LVSCW_AUTOSIZE
> 
>     For ii = 1 To .ColumnHeaders.Count - 1
>       objItem.SubItems(ii) = .ColumnHeaders(ii + 1).Text & "  "
>       SendMessage .hwnd, LVM_SETCOLUMNWIDTH, ii, LVSCW_AUTOSIZE
>     Next
> 
>     'frank_lupo drop element title in listview
>     .ListItems.Remove szKey
>   End With
566a567,643
> 
> Public Function NameImageByObjectType(ObjectType As String) As String
> If inIDE Then: On Error GoTo 0: Else: On Error GoTo Err_Handler
> frmMain.svr.LogEvent "Entering " & App.Title & ":basMisc.NameImageByObjectType(" & ObjectType & ")", etFullDebug
> 
>   Select Case ObjectType
>     Case "Aggregate"
>       NameImageByObjectType = "aggregate"
>           
>     Case "Cast"
>       NameImageByObjectType = "cast"
>           
>     Case "Column"
>       NameImageByObjectType = "column"
>           
>     Case "Database"
>       NameImageByObjectType = "database"
>           
>     Case "Domain"
>       NameImageByObjectType = "domain"
>           
>     Case "Conversion"
>       NameImageByObjectType = "conversion"
>           
>     Case "Foreign Key"
>       NameImageByObjectType = "foreignkey"
>           
>     Case "Function"
>       NameImageByObjectType = "function"
> 
>     Case "Group"
>       NameImageByObjectType = "group"
>     
>     Case "Index"
>       NameImageByObjectType = "index"
>           
>     Case "Language"
>       NameImageByObjectType = "language"
>           
>     Case "Schema"
>       NameImageByObjectType = "namespace"
>           
>     Case "Operator"
>       NameImageByObjectType = "operator"
>           
>     Case "Rule"
>       NameImageByObjectType = "rule"
>           
>     Case "Server"
>       NameImageByObjectType = "server"
>           
>     Case "Sequence"
>       NameImageByObjectType = "sequence"
> 
>     Case "Table"
>       NameImageByObjectType = "table"
>           
>     Case "Trigger"
>       NameImageByObjectType = "trigger"
>         
>     Case "Type"
>       NameImageByObjectType = "type"
>           
>     Case "User"
>       NameImageByObjectType = "user"
>           
>     Case "View"
>       NameImageByObjectType = "view"
>           
>     Case Else
>       NameImageByObjectType = "property"
>         
>   End Select
> 
>   Exit Function
> Err_Handler: If Err.Number <> 0 Then LogError Err.Number, Err.Description, App.Title & ":basMisc.NameImageByObjectType"
> End Function
Index: clsPgApp.cls
===================================================================
RCS file: /disk1/cvsroot/pgadmin2/clsPgApp.cls,v
retrieving revision 1.7
diff -r1.7 clsPgApp.cls
238a239,242
> Public Function NameImageByObjectType(ObjectType As String) As String
>   NameImageByObjectType = basMisc.NameImageByObjectType(ObjectType)
> End Function
> 
Index: frmMain.frm
===================================================================
RCS file: /disk1/cvsroot/pgadmin2/frmMain.frm,v
retrieving revision 1.101
diff -r1.101 frmMain.frm
2,4c2,4
< Object = "{831FDD16-0C5C-11D2-A9FC-0000F8754DA1}#2.0#0"; "mscomctl.ocx"
< Object = "{BDC217C8-ED16-11CD-956C-0000C04E4C0A}#1.1#0"; "tabctl32.ocx"
< Object = "{F9043C88-F6F2-101A-A3C9-08002B2F49FB}#1.2#0"; "comdlg32.ocx"
---
> Object = "{831FDD16-0C5C-11D2-A9FC-0000F8754DA1}#2.0#0"; "MSCOMCTL.OCX"
> Object = "{BDC217C8-ED16-11CD-956C-0000C04E4C0A}#1.1#0"; "TABCTL32.OCX"
> Object = "{F9043C88-F6F2-101A-A3C9-08002B2F49FB}#1.2#0"; "COMDLG32.OCX"
9,10c9,10
<    ClientLeft      =   165
<    ClientTop       =   855
---
>    ClientLeft      =   3720
>    ClientTop       =   2070
16d15
<    StartUpPosition =   3  'Windows Default
347c346
<             Object.Width           =   5611
---
>             Object.Width           =   5638
547d545
<       Tabs            =   2
559a558,563
>       TabCaption(2)   =   "Depend"
>       TabPicture(2)   =   "frmMain.frx":14D44
>       Tab(2).ControlEnabled=   0   'False
>       Tab(2).Control(0)=   "tvDep"
>       Tab(2).Control(0).Enabled=   0   'False
>       Tab(2).ControlCount=   1
605a610,625
>       Begin MSComctlLib.TreeView tvDep 
>          Height          =   2655
>          Left            =   -74955
>          TabIndex        =   7
>          Top             =   45
>          Width           =   5940
>          _ExtentX        =   10478
>          _ExtentY        =   4683
>          _Version        =   393217
>          Indentation     =   441
>          LabelEdit       =   1
>          LineStyle       =   1
>          Style           =   7
>          ImageList       =   "il"
>          Appearance      =   1
>       End
1081a1102,1105
>   'treeview depend
>   tvDep.Width = prop.Width - 45
>   tvDep.Height = prop.Height - 450
>   
1633c1657,1662
<       svr.Databases(objNode.Parent.Parent.Parent.Parent.Parent.Text).Namespaces(objNode.Parent.Parent.Parent.Text).Tables(objNode.Parent.Text).Rules.Refresh
---
>       'verify if rule is for table or view
>       If svr.Databases(objNode.Parent.Parent.Parent.Parent.Parent.Text).Namespaces(objNode.Parent.Parent.Parent.Text).Tables.Exists(objNode.Parent.Text) Then
>         svr.Databases(objNode.Parent.Parent.Parent.Parent.Parent.Text).Namespaces(objNode.Parent.Parent.Parent.Text).Tables(objNode.Parent.Text).Rules.Refresh
>       ElseIf svr.Databases(objNode.Parent.Parent.Parent.Parent.Parent.Text).Namespaces(objNode.Parent.Parent.Parent.Text).Views.Exists(objNode.Parent.Text) Then
>         svr.Databases(objNode.Parent.Parent.Parent.Parent.Parent.Text).Namespaces(objNode.Parent.Parent.Parent.Text).Views(objNode.Parent.Text).Rules.Refresh
>       End If
2546c2575
<   lvItem.SubItems(1) = ctx.CurrentObject.OID
---
>   lvItem.SubItems(1) = ctx.CurrentObject.Oid
2816c2845
<   lvItem.SubItems(1) = ctx.CurrentObject.OID
---
>   lvItem.SubItems(1) = ctx.CurrentObject.Oid
2877c2906
<   lvItem.SubItems(1) = ctx.CurrentObject.OID
---
>   lvItem.SubItems(1) = ctx.CurrentObject.Oid
2954c2983
<   lvItem.SubItems(1) = ctx.CurrentObject.OID
---
>   lvItem.SubItems(1) = ctx.CurrentObject.Oid
3017c3046
<   lvItem.SubItems(1) = ctx.CurrentObject.OID
---
>   lvItem.SubItems(1) = ctx.CurrentObject.Oid
3087c3116
<   lvItem.SubItems(1) = ctx.CurrentObject.OID
---
>   lvItem.SubItems(1) = ctx.CurrentObject.Oid
3186c3215
<   lvItem.SubItems(1) = ctx.CurrentObject.OID
---
>   lvItem.SubItems(1) = ctx.CurrentObject.Oid
3284c3313
<   lvItem.SubItems(1) = ctx.CurrentObject.OID
---
>   lvItem.SubItems(1) = ctx.CurrentObject.Oid
3362c3391
< Dim szSql As String
---
> Dim szSQL As String
3368c3397
<       szSql = "SELECT relname, blks_read, blks_hit FROM pg_statio_all_sequences where schemaname='" & ctx.CurrentNS & "' ORDER BY relname"
---
>       szSQL = "SELECT relname, blks_read, blks_hit FROM pg_statio_all_sequences where schemaname='" & ctx.CurrentNS & "' ORDER BY relname"
3370c3399
<       szSql = "SELECT relname, blks_read, blks_hit FROM pg_statio_all_sequences ORDER BY relname"
---
>       szSQL = "SELECT relname, blks_read, blks_hit FROM pg_statio_all_sequences ORDER BY relname"
3372c3401
<     Set rsStat = svr.Databases(ctx.CurrentDB).Execute(szSql)
---
>     Set rsStat = svr.Databases(ctx.CurrentDB).Execute(szSQL)
3410c3439
<   lvItem.SubItems(1) = ctx.CurrentObject.OID
---
>   lvItem.SubItems(1) = ctx.CurrentObject.Oid
3457c3486
<     Set rsStat = svr.Databases(ctx.CurrentDB).Execute("SELECT blks_read, blks_hit FROM pg_statio_all_sequences WHERE relid = " & ctx.CurrentObject.OID & "::oid")
---
>     Set rsStat = svr.Databases(ctx.CurrentDB).Execute("SELECT blks_read, blks_hit FROM pg_statio_all_sequences WHERE relid = " & ctx.CurrentObject.Oid & "::oid")
3518c3547
< Dim szSql As String
---
> Dim szSQL As String
3524c3553
<       szSql = "SELECT relname, n_tup_ins, n_tup_upd, n_tup_del FROM pg_stat_all_tables where schemaname='" & ctx.CurrentNS & "' ORDER BY relname"
---
>       szSQL = "SELECT relname, n_tup_ins, n_tup_upd, n_tup_del FROM pg_stat_all_tables where schemaname='" & ctx.CurrentNS & "' ORDER BY relname"
3526c3555
<       szSql = "SELECT relname, n_tup_ins, n_tup_upd, n_tup_del FROM pg_stat_all_tables ORDER BY relname"
---
>       szSQL = "SELECT relname, n_tup_ins, n_tup_upd, n_tup_del FROM pg_stat_all_tables ORDER BY relname"
3528c3557
<     Set rsStat = svr.Databases(ctx.CurrentDB).Execute(szSql)
---
>     Set rsStat = svr.Databases(ctx.CurrentDB).Execute(szSQL)
3578c3607
<   lvItem.SubItems(1) = ctx.CurrentObject.OID
---
>   lvItem.SubItems(1) = ctx.CurrentObject.Oid
3629c3658
<     Set rsStat = svr.Databases(ctx.CurrentDB).Execute("SELECT seq_scan, seq_tup_read, idx_scan, idx_tup_fetch, n_tup_ins, n_tup_upd, n_tup_del, heap_blks_read, heap_blks_hit, idx_blks_read, idx_blks_hit, toast_blks_read, toast_blks_hit, tidx_blks_read, tidx_blks_hit FROM pg_stat_all_tables stat, pg_statio_all_tables statio WHERE stat.relid = statio.relid AND stat.relid = " & ctx.CurrentObject.OID & "::oid")
---
>     Set rsStat = svr.Databases(ctx.CurrentDB).Execute("SELECT seq_scan, seq_tup_read, idx_scan, idx_tup_fetch, n_tup_ins, n_tup_upd, n_tup_del, heap_blks_read, heap_blks_hit, idx_blks_read, idx_blks_hit, toast_blks_read, toast_blks_hit, tidx_blks_read, tidx_blks_hit FROM pg_stat_all_tables stat, pg_statio_all_tables statio WHERE stat.relid = statio.relid AND stat.relid = " & ctx.CurrentObject.Oid & "::oid")
3809c3838
< Dim szSql As String
---
> Dim szSQL As String
3815,3816c3844,3845
<       szSql = "SELECT null_frac, avg_width, n_distinct, most_common_vals, most_common_freqs, histogram_bounds, correlation FROM pg_stats "
<       szSql = szSql & "WHERE tablename = '" & Node.Parent.Parent.Text & "' AND attname = '" & Node.Text & "' and schemaname='" & ctx.CurrentNS & "'"
---
>       szSQL = "SELECT null_frac, avg_width, n_distinct, most_common_vals, most_common_freqs, histogram_bounds, correlation FROM pg_stats "
>       szSQL = szSQL & "WHERE tablename = '" & Node.Parent.Parent.Text & "' AND attname = '" & Node.Text & "' and schemaname='" & ctx.CurrentNS & "'"
3818c3847
<       szSql = "SELECT null_frac, avg_width, n_distinct, most_common_vals, most_common_freqs, histogram_bounds, correlation FROM pg_stats WHERE tablename = '" & Node.Parent.Parent.Text & "' AND attname = '" & Node.Text & "'"
---
>       szSQL = "SELECT null_frac, avg_width, n_distinct, most_common_vals, most_common_freqs, histogram_bounds, correlation FROM pg_stats WHERE tablename = '" & Node.Parent.Parent.Text & "' AND attname = '" & Node.Text & "'"
3820c3849
<     Set rsStat = svr.Databases(ctx.CurrentDB).Execute(szSql)
---
>     Set rsStat = svr.Databases(ctx.CurrentDB).Execute(szSQL)
3894c3923
<   lvItem.SubItems(1) = ctx.CurrentObject.OID
---
>   lvItem.SubItems(1) = ctx.CurrentObject.Oid
3964c3993
<   lvItem.SubItems(1) = ctx.CurrentObject.OID
---
>   lvItem.SubItems(1) = ctx.CurrentObject.Oid
4044c4073
< Dim szSql As String
---
> Dim szSQL As String
4050,4051c4079,4080
<       szSql = "SELECT relname, indexrelname, idx_blks_read, idx_blks_hit FROM pg_statio_all_indexes "
<       szSql = szSql & "WHERE relname = '" & Node.Parent.Text & "' and schemaname='" & ctx.CurrentNS & "' ORDER BY indexrelname"
---
>       szSQL = "SELECT relname, indexrelname, idx_blks_read, idx_blks_hit FROM pg_statio_all_indexes "
>       szSQL = szSQL & "WHERE relname = '" & Node.Parent.Text & "' and schemaname='" & ctx.CurrentNS & "' ORDER BY indexrelname"
4053c4082
<       szSql = "SELECT relname, indexrelname, idx_blks_read, idx_blks_hit FROM pg_statio_all_indexes WHERE relname = '" & Node.Parent.Text & "' ORDER BY indexrelname"
---
>       szSQL = "SELECT relname, indexrelname, idx_blks_read, idx_blks_hit FROM pg_statio_all_indexes WHERE relname = '" & Node.Parent.Text & "' ORDER BY indexrelname"
4055c4084
<     Set rsStat = svr.Databases(ctx.CurrentDB).Execute(szSql)
---
>     Set rsStat = svr.Databases(ctx.CurrentDB).Execute(szSQL)
4095c4124
<   lvItem.SubItems(1) = ctx.CurrentObject.OID
---
>   lvItem.SubItems(1) = ctx.CurrentObject.Oid
4146c4175
<     Set rsStat = svr.Databases(ctx.CurrentDB).Execute("SELECT idx_scan, idx_tup_read, idx_tup_fetch, idx_blks_read, idx_blks_hit FROM pg_stat_all_indexes stat, pg_statio_all_indexes statio WHERE stat.relid = statio.relid AND stat.indexrelid = statio.indexrelid AND statio.indexrelid = " & ctx.CurrentObject.OID & "::oid")
---
>     Set rsStat = svr.Databases(ctx.CurrentDB).Execute("SELECT idx_scan, idx_tup_read, idx_tup_fetch, idx_blks_read, idx_blks_hit FROM pg_stat_all_indexes stat, pg_statio_all_indexes statio WHERE stat.relid = statio.relid AND stat.indexrelid = statio.indexrelid AND statio.indexrelid = " & ctx.CurrentObject.Oid & "::oid")
4183a4213
> Dim objTmp
4185c4215,4222
<   If Node.Children = 0 Or Node.Children <> svr.Databases(Node.Parent.Parent.Parent.Parent.Parent.Text).Namespaces(Node.Parent.Parent.Parent.Text).Tables(Node.Parent.Text).Rules.Count(Not ctx.IncludeSys) Then
---
>   'verify if rule is for table or view
>   If svr.Databases(Node.Parent.Parent.Parent.Parent.Parent.Text).Namespaces(Node.Parent.Parent.Parent.Text).Tables.Exists(Node.Parent.Text) Then
>     Set objTmp = svr.Databases(Node.Parent.Parent.Parent.Parent.Parent.Text).Namespaces(Node.Parent.Parent.Parent.Text).Tables
>   ElseIf svr.Databases(Node.Parent.Parent.Parent.Parent.Parent.Text).Namespaces(Node.Parent.Parent.Parent.Text).Views.Exists(Node.Parent.Text) Then
>     Set objTmp = svr.Databases(Node.Parent.Parent.Parent.Parent.Parent.Text).Namespaces(Node.Parent.Parent.Parent.Text).Views
>   End If
> 
>   If Node.Children = 0 Or Node.Children <> objTmp(Node.Parent.Text).Rules.Count(Not ctx.IncludeSys) Then
4189c4226
<     For Each rul In svr.Databases(Node.Parent.Parent.Parent.Parent.Parent.Text).Namespaces(Node.Parent.Parent.Parent.Text).Tables(Node.Parent.Text).Rules
---
>     For Each rul In objTmp(Node.Parent.Text).Rules
4196c4233
<   For Each rul In svr.Databases(Node.Parent.Parent.Parent.Parent.Parent.Text).Namespaces(Node.Parent.Parent.Parent.Text).Tables(Node.Parent.Text).Rules
---
>   For Each rul In objTmp(Node.Parent.Text).Rules
4218c4255
<   lvItem.SubItems(1) = ctx.CurrentObject.OID
---
>   lvItem.SubItems(1) = ctx.CurrentObject.Oid
4289c4326
<   lvItem.SubItems(1) = ctx.CurrentObject.OID
---
>   lvItem.SubItems(1) = ctx.CurrentObject.Oid
4354c4391
<   lvItem.SubItems(1) = ctx.CurrentObject.OID
---
>   lvItem.SubItems(1) = ctx.CurrentObject.Oid
4431a4469,4471
>   If Node.Children = 0 Then
>     Set ctx.CurrentObject.Rules.Tag = tv.Nodes.Add(Node.Key, tvwChild, "RUL+" & GetID, "Rules (" & ctx.CurrentObject.Rules.Count(Not ctx.IncludeSys) & ")", "rule")
>   End If
4435c4475
<   lvItem.SubItems(1) = ctx.CurrentObject.OID
---
>   lvItem.SubItems(1) = ctx.CurrentObject.Oid
4508a4549
>       tvDepend Node
4514a4556
>       tvDepend Node
4521a4564
>       tvDepend Node
4527a4571
>       tvDepend Node
4534a4579
>       tvDepend Node
4541c4586,4587
<       
---
>       tvDepend Node
> 
4547a4594
>       tvDepend Node
4553a4601
>       tvDepend Node
4560a4609
>       tvDepend Node
4566a4616
>       tvDepend Node
4573a4624
>       tvDepend Node
4579a4631
>       tvDepend Node
4586a4639
>       tvDepend Node
4592a4646
>       tvDepend Node
4599a4654
>       tvDepend Node
4605a4661
>       tvDepend Node
4612a4669
>       tvDepend Node
4618a4676
>       tvDepend Node
4625a4684
>       tvDepend Node
4631a4691
>       tvDepend Node
4638a4699
>       tvDepend Node
4644a4706
>       tvDepend Node
4651a4714
>       tvDepend Node
4657a4721
>       tvDepend Node
4664a4729
>       tvDepend Node
4670a4736
>       tvDepend Node
4677a4744
>       tvDepend Node
4683a4751
>       tvDepend Node
4690a4759
>       tvDepend Node
4696a4766
>       tvDepend Node
4703a4774
>       tvDepend Node
4709a4781
>       tvDepend Node
4716a4789
>       tvDepend Node
4722a4796
>       tvDepend Node
4728a4803
>       tvDepend Node
4735a4811
>       tvDepend Node
4741a4818
>       tvDepend Node
4745c4822,4827
<       Set ctx.CurrentObject = svr.Databases(Node.Parent.Parent.Parent.Parent.Parent.Parent.Text).Namespaces(Node.Parent.Parent.Parent.Parent.Text).Tables(Node.Parent.Parent.Text).Rules(Node.Text)
---
>       'verify if rule is for table or view
>       If svr.Databases(Node.Parent.Parent.Parent.Parent.Parent.Parent.Text).Namespaces(Node.Parent.Parent.Parent.Parent.Text).Tables.Exists(Node.Parent.Parent.Text) Then
>         Set ctx.CurrentObject = svr.Databases(Node.Parent.Parent.Parent.Parent.Parent.Parent.Text).Namespaces(Node.Parent.Parent.Parent.Parent.Text).Tables(Node.Parent.Parent.Text).Rules(Node.Text)
>       ElseIf svr.Databases(Node.Parent.Parent.Parent.Parent.Parent.Parent.Text).Namespaces(Node.Parent.Parent.Parent.Parent.Text).Views.Exists(Node.Parent.Parent.Text) Then
>         Set ctx.CurrentObject = svr.Databases(Node.Parent.Parent.Parent.Parent.Parent.Parent.Text).Namespaces(Node.Parent.Parent.Parent.Parent.Text).Views(Node.Parent.Parent.Text).Rules(Node.Text)
>       End If
4748a4831
>       tvDepend Node
4754a4838
>       tvDepend Node
4761a4846
>       tvDepend Node
4767a4853
>       tvDepend Node
4774a4861
>       tvDepend Node
4780a4868
>       tvDepend Node
4788c4876,4877
<       
---
>       tvDepend Node
>     
4919c5008,5013
<       Set ctx.CurrentObject = svr.Databases(szPath(2)).Namespaces(szPath(4)).Tables(szPath(6)).Rules(Item.Text)
---
>       'verify if rule is for table or view
>       If svr.Databases(szPath(2)).Namespaces(szPath(4)).Tables.Exists(szPath(6)) Then
>         Set ctx.CurrentObject = svr.Databases(szPath(2)).Namespaces(szPath(4)).Tables(szPath(6)).Rules(Item.Text)
>       Else
>         Set ctx.CurrentObject = svr.Databases(szPath(2)).Namespaces(szPath(4)).Views(szPath(6)).Rules(Item.Text)
>       End If
4941c5035
<       
---
>   
5001a5096,5264
> End Sub
> 
> Private Sub prop_Click(PreviousTab As Integer)
> If inIDE Then: On Error GoTo 0: Else: On Error GoTo Err_Handler
> svr.LogEvent "Entering " & App.Title & ":frmMain.prop_Click(" & PreviousTab & ")", etFullDebug
>     
>   If prop.Tab = 2 Then
>     'refresh depending
>     'Simulate a node click to refresh the ListDomain
>     tv_NodeClick tv.SelectedItem
>   End If
> 
>   Exit Sub
> Err_Handler: LogError Err.Number, Err.Description, App.Title & ":frmMain.prop_Click"
> End Sub
> 
> 'show dependig object database
> Private Sub tvDepend(ByVal Node As MSComctlLib.Node)
> If inIDE Then: On Error GoTo 0: Else: On Error GoTo Err_Handler
> svr.LogEvent "Entering " & App.Title & ":frmMain.tvDepend(" & QUOTE & Node.FullPath & QUOTE & ")", etFullDebug
> 
> Dim objTmp
> Dim objDep
> Dim szKey As String
> 
>   ' Depending.
>   If prop.Tab <> 2 Then
>     tvDep.Nodes.Clear
>     tvDep.Nodes.Add , , "DEP-" & GetID, "Depending not visualized.", "property", "property"
>     Exit Sub
>   ElseIf Len(ctx.CurrentDB) = 0 Then
>     tvDep.Nodes.Clear
>     tvDep.Nodes.Add , , "DEP-" & GetID, "Depending are only available in this.", "property", "property"
>     Exit Sub
>   ElseIf ctx.dbVer < 7.3 Then
>     tvDep.Nodes.Clear
>     tvDep.Nodes.Add , , "DEP-" & GetID, "Depending are only available with PostgreSQL 7.3 or higher.", "property", "property"
>     Exit Sub
>   End If
>       
>   tvDep.Nodes.Clear
>   Select Case Left(Node.Key, 4)
>     Case "SVR-", "DAT+", "DAT-", "GRP+", "GRP-", "USR+", "USR-"
>       tvDep.Nodes.Clear
>       tvDep.Nodes.Add , , "DEP-" & GetID, "Depending are only available in this.", "property", "property"
>       
>     Case "CST-", "LNG-", "NSP-", "AGG-", "DOM-", "CNV-", "FNC-", "OPR-", "SEQ-", "TBL-", "TYP-", "VIE-"
>       AddDepRef ctx.CurrentObject
>     
>     Case "CST+" 'Casts
>       For Each objTmp In svr.Databases(ctx.CurrentDB).Casts
>         AddDepRef objTmp
>       Next
>     
>     Case "LNG+" 'Languages
>       For Each objTmp In svr.Databases(ctx.CurrentDB).Languages
>         AddDepRef objTmp
>       Next
> 
>     Case "NSP+" 'Namespaces
>       For Each objTmp In svr.Databases(ctx.CurrentDB).Namespaces
>         AddDepRef objTmp
>       Next
>     
>     Case "AGG+" 'Aggregates
>       For Each objTmp In svr.Databases(ctx.CurrentDB).Namespaces(ctx.CurrentNS).Aggregates
>         AddDepRef objTmp
>       Next
>       
>     Case "DOM+" 'Domains
>       For Each objTmp In svr.Databases(ctx.CurrentDB).Namespaces(ctx.CurrentNS).Domains
>         AddDepRef objTmp
>       Next
>       
>     Case "CNV+" 'Conversion
>       For Each objTmp In svr.Databases(ctx.CurrentDB).Namespaces(ctx.CurrentNS).Conversions
>         AddDepRef objTmp
>       Next
>       
>     Case "FNC+" 'Functions
>       For Each objTmp In svr.Databases(ctx.CurrentDB).Namespaces(ctx.CurrentNS).Functions
>         AddDepRef objTmp
>       Next
>       
>     Case "OPR+" 'Operators
>       For Each objTmp In svr.Databases(ctx.CurrentDB).Namespaces(ctx.CurrentNS).Operators
>         AddDepRef objTmp
>       Next
>       
>     Case "SEQ+" 'Sequences
>       For Each objTmp In svr.Databases(ctx.CurrentDB).Namespaces(ctx.CurrentNS).Sequences
>         AddDepRef objTmp
>       Next
>       
>     Case "TBL+" 'Tables
>       For Each objTmp In svr.Databases(ctx.CurrentDB).Namespaces(ctx.CurrentNS).Tables
>         AddDepRef objTmp
>       Next
>     
>     Case "CHK+", "CHK-", "COL+", "COL-", "FKY+", "FKY-", "REL+", "IND+", "IND-", "RUL+", "RUL-", "TRG+", "TRG-"
>       tvDep.Nodes.Clear
>       tvDep.Nodes.Add , , "DEP-" & GetID, "Depending are only available in this.", "property", "property"
>       
>     Case "TYP+" 'Types
>       For Each objTmp In svr.Databases(ctx.CurrentDB).Namespaces(ctx.CurrentNS).Types
>         AddDepRef objTmp
>       Next
>     
>     Case "VIE+" 'Views
>       For Each objTmp In svr.Databases(ctx.CurrentDB).Namespaces(ctx.CurrentNS).Views
>         AddDepRef objTmp
>       Next
>       
>   End Select
>   
>   Exit Sub
> Err_Handler: LogError Err.Number, Err.Description, App.Title & ":frmMain.tvDepend"
> End Sub
> 
> Private Sub AddDepRef(CurrentObj)
> If inIDE Then: On Error GoTo 0: Else: On Error GoTo Err_Handler
> svr.LogEvent "Entering " & App.Title & ":frmMain.AddDepRef(" & QUOTE & CurrentObj.ObjectType & QUOTE & ")", etFullDebug
> 
> Dim objDep
> Dim szKey As String
> Dim szKey1 As String
> Dim szIdentifier As String
> Dim szImg As String
> 
>   szKey = "DEP-" & GetID
>   szImg = NameImageByObjectType(CurrentObj.ObjectType)
>   tvDep.Nodes.Add , , szKey, CurrentObj.Identifier, szImg, szImg
>   
>   'add depend
>   If CurrentObj.Dependent.Count > 0 Then
>     szKey1 = "DEP-" & GetID
>     tvDep.Nodes.Add szKey, tvwChild, szKey1, "Depend", "property", "property"
>     For Each objDep In CurrentObj.Dependent
>       
>       szIdentifier = objDep.Identifier
>       Select Case objDep.ObjectType
>         Case "Aggregate", "Domain", "Conversion", "Function", "Operator", "Sequence", "Table", "Type", "View"
>           szIdentifier = objDep.Namespace & "." & szIdentifier
>       End Select
>       
>       szImg = NameImageByObjectType(objDep.ObjectType)
>       tvDep.Nodes.Add szKey1, tvwChild, "DEP-" & GetID, szIdentifier, szImg, szImg
>     Next
>   End If
>   
>   'add reference
>   If CurrentObj.Referenced.Count > 0 Then
>     szKey1 = "REF-" & GetID
>     tvDep.Nodes.Add szKey, tvwChild, szKey1, "Reference", "property", "property"
>     For Each objDep In CurrentObj.Referenced
>       
>       szIdentifier = objDep.Identifier
>       Select Case objDep.ObjectType
>         Case "Aggregate", "Domain", "Conversion", "Function", "Operator", "Sequence", "Table", "Type", "View"
>           szIdentifier = objDep.Namespace & "." & szIdentifier
>       End Select
>       
>       szImg = NameImageByObjectType(objDep.ObjectType)
>       tvDep.Nodes.Add szKey1, tvwChild, "REF-" & GetID, szIdentifier, szImg, szImg
>     Next
>   End If
> 
>   Exit Sub
> Err_Handler: LogError Err.Number, Err.Description, App.Title & ":frmMain.AddDepRef"
Index: frmMain.frx
===================================================================
RCS file: /disk1/cvsroot/pgadmin2/frmMain.frx,v
retrieving revision 1.18
diff -r1.18 frmMain.frx
Binary files /tmp/cvs6Y0Ivg and frmMain.frx differ
Index: frmRule.frm
===================================================================
RCS file: /disk1/cvsroot/pgadmin2/frmRule.frm,v
retrieving revision 1.15
diff -r1.15 frmRule.frm
2,3c2,3
< Object = "{831FDD16-0C5C-11D2-A9FC-0000F8754DA1}#2.0#0"; "mscomctl.ocx"
< Object = "{BDC217C8-ED16-11CD-956C-0000C04E4C0A}#1.1#0"; "tabctl32.ocx"
---
> Object = "{831FDD16-0C5C-11D2-A9FC-0000F8754DA1}#2.0#0"; "MSCOMCTL.OCX"
> Object = "{BDC217C8-ED16-11CD-956C-0000C04E4C0A}#1.1#0"; "TABCTL32.OCX"
260c260
<          NumListImages   =   2
---
>          NumListImages   =   3
268a269,272
>          BeginProperty ListImage3 {2C247F27-8591-11D1-B16A-00C0F0283628} 
>             Picture         =   "frmRule.frx":1112
>             Key             =   "view"
>          EndProperty
334c338,343
<     Set objNode = frmMain.svr.Databases(szDatabase).Namespaces(szNamespace).Tables(cboProperties(0).SelectedItem.Tag.Identifier).Rules.Tag
---
>     'verify if rule is for table or view
>     If frmMain.svr.Databases(szDatabase).Namespaces(szNamespace).Tables.Exists(cboProperties(0).SelectedItem.Tag.Identifier) Then
>       Set objNode = frmMain.svr.Databases(szDatabase).Namespaces(szNamespace).Tables(cboProperties(0).SelectedItem.Tag.Identifier).Rules.Tag
>     ElseIf frmMain.svr.Databases(szDatabase).Namespaces(szNamespace).Views.Exists(cboProperties(0).SelectedItem.Tag.Identifier) Then
>       Set objNode = frmMain.svr.Databases(szDatabase).Namespaces(szNamespace).Views(cboProperties(0).SelectedItem.Tag.Identifier).Rules.Tag
>     End If
361a371
> Dim objView As pgView
382c392
<         Set objItem = cboProperties(0).ComboItems.Add(, , objTable.FormattedID, "table")
---
>         Set objItem = cboProperties(0).ComboItems.Add(, "TBL-" & GetID, objTable.FormattedID, "table")
385a396,401
>     For Each objView In frmMain.svr.Databases(szDatabase).Namespaces(szNamespace).Views
>       If Not objView.SystemObject Then
>         Set objItem = cboProperties(0).ComboItems.Add(, "VIE-" & GetID, objView.FormattedID, "view")
>         Set objItem.Tag = objView
>       End If
>     Next objView
409,410c425,431
<     txtProperties(1).Text = objRule.OID
<     Set objItem = cboProperties(0).ComboItems.Add(, , objRule.Table, "table")
---
>     txtProperties(1).Text = objRule.Oid
>     
>     If frmMain.svr.Databases(szDatabase).Namespaces(szNamespace).Tables.Exists(objRule.Table) Then
>       Set objItem = cboProperties(0).ComboItems.Add(, , objRule.Table, "table")
>     Else
>       Set objItem = cboProperties(0).ComboItems.Add(, , objRule.Table, "view")
>     End If
Index: frmRule.frx
===================================================================
RCS file: /disk1/cvsroot/pgadmin2/frmRule.frx,v
retrieving revision 1.3
diff -r1.3 frmRule.frx
Binary files /tmp/cvsEwi706 and frmRule.frx differ
Index: pgAdmin2.vbp
===================================================================
RCS file: /disk1/cvsroot/pgadmin2/pgAdmin2.vbp,v
retrieving revision 1.149
diff -r1.149 pgAdmin2.vbp
2,4c2,4
< Reference=*\G{00020430-0000-0000-C000-000000000046}#2.0#0#..\..\..\..\..\WINDOWS\System32\stdole2.tlb#OLE Automation
< Reference=*\G{00000200-0000-0010-8000-00AA006D2EA4}#2.0#0#..\..\..\..\..\Program Files\Common Files\system\ado\msado20.tlb#Microsoft ActiveX Data Objects 2.0 Library
< Reference=*\G{6B263850-900B-11D0-9484-00A0C91110ED}#1.0#0#..\..\..\..\..\WINDOWS\System32\msstdfmt.dll#Microsoft Data Formatting Object Library 6.0 (SP4)
---
> Reference=*\G{00020430-0000-0000-C000-000000000046}#2.0#0#..\..\WINNT\System32\Stdole2.tlb#OLE Automation
> Reference=*\G{00000200-0000-0010-8000-00AA006D2EA4}#2.0#0#..\..\Programmi\File comuni\system\ado\msado20.tlb#Microsoft ActiveX Data Objects 2.0 Library
> Reference=*\G{6B263850-900B-11D0-9484-00A0C91110ED}#1.0#0#..\..\WINNT\System32\MSSTDFMT.DLL#Microsoft Data Formatting Object Library 6.0 (SP4)
8,10c8,10
< Object={831FDD16-0C5C-11D2-A9FC-0000F8754DA1}#2.0#0; mscomctl.ocx
< Object={BDC217C8-ED16-11CD-956C-0000C04E4C0A}#1.1#0; tabctl32.ocx
< Object={F9043C88-F6F2-101A-A3C9-08002B2F49FB}#1.2#0; comdlg32.ocx
---
> Object={831FDD16-0C5C-11D2-A9FC-0000F8754DA1}#2.0#0; MSCOMCTL.OCX
> Object={BDC217C8-ED16-11CD-956C-0000C04E4C0A}#1.1#0; TABCTL32.OCX
> Object={F9043C88-F6F2-101A-A3C9-08002B2F49FB}#1.2#0; COMDLG32.OCX
12c12
< Object={86CF1D34-0C5F-11D2-A9FC-0000F8754DA1}#2.0#0; mscomct2.ocx
---
> Object={86CF1D34-0C5F-11D2-A9FC-0000F8754DA1}#2.0#0; MSCOMCT2.OCX
81c81
< RevisionVer=23
---
> RevisionVer=29
cvs server: Diffing exporters
cvs server: Diffing exporters/abstract
Index: exporters/abstract/pgAbsExp.vbp
===================================================================
RCS file: /disk1/cvsroot/pgadmin2/exporters/abstract/pgAbsExp.vbp,v
retrieving revision 1.95
diff -r1.95 pgAbsExp.vbp
2,3c2,3
< Reference=*\G{00020430-0000-0000-C000-000000000046}#2.0#0#..\..\..\..\..\..\..\WINDOWS\System32\stdole2.tlb#OLE Automation
< Reference=*\G{00000200-0000-0010-8000-00AA006D2EA4}#2.0#0#..\..\..\..\..\..\..\Program Files\Common Files\system\ado\msado20.tlb#Microsoft ActiveX Data Objects 2.0 Library
---
> Reference=*\G{00020430-0000-0000-C000-000000000046}#2.0#0#..\..\..\..\WINNT\System32\Stdole2.tlb#OLE Automation
> Reference=*\G{00000200-0000-0010-8000-00AA006D2EA4}#2.0#0#..\..\..\..\Programmi\File comuni\system\ado\msado20.tlb#Microsoft ActiveX Data Objects 2.0 Library
19c19
< RevisionVer=17
---
> RevisionVer=21
cvs server: Diffing exporters/access
Index: exporters/access/pgAccess.vbp
===================================================================
RCS file: /disk1/cvsroot/pgadmin2/exporters/access/pgAccess.vbp,v
retrieving revision 1.13
diff -r1.13 pgAccess.vbp
2c2
< Reference=*\G{00000200-0000-0010-8000-00AA006D2EA4}#2.0#0#..\..\..\..\..\..\..\Program Files\Common Files\system\ado\msado20.tlb#Microsoft ActiveX Data Objects 2.0 Library
---
> Reference=*\G{00000200-0000-0010-8000-00AA006D2EA4}#2.0#0#..\..\..\..\Programmi\File comuni\system\ado\msado20.tlb#Microsoft ActiveX Data Objects 2.0 Library
4c4
< Object={F9043C88-F6F2-101A-A3C9-08002B2F49FB}#1.2#0; comdlg32.ocx
---
> Object={F9043C88-F6F2-101A-A3C9-08002B2F49FB}#1.2#0; COMDLG32.OCX
8c8
< Object={831FDD16-0C5C-11D2-A9FC-0000F8754DA1}#2.0#0; mscomctl.ocx
---
> Object={831FDD16-0C5C-11D2-A9FC-0000F8754DA1}#2.0#0; MSCOMCTL.OCX
23c23
< RevisionVer=17
---
> RevisionVer=21
cvs server: Diffing exporters/access/images
cvs server: Diffing exporters/ascii
Index: exporters/ascii/pgASCII.vbp
===================================================================
RCS file: /disk1/cvsroot/pgadmin2/exporters/ascii/pgASCII.vbp,v
retrieving revision 1.98
diff -r1.98 pgASCII.vbp
2,3c2,3
< Reference=*\G{00020430-0000-0000-C000-000000000046}#2.0#0#..\..\..\..\..\..\..\WINDOWS\System32\stdole2.tlb#OLE Automation
< Reference=*\G{00000200-0000-0010-8000-00AA006D2EA4}#2.0#0#..\..\..\..\..\..\..\Program Files\Common Files\system\ado\msado20.tlb#Microsoft ActiveX Data Objects 2.0 Library
---
> Reference=*\G{00020430-0000-0000-C000-000000000046}#2.0#0#..\..\..\..\WINNT\System32\Stdole2.tlb#OLE Automation
> Reference=*\G{00000200-0000-0010-8000-00AA006D2EA4}#2.0#0#..\..\..\..\Programmi\File comuni\system\ado\msado20.tlb#Microsoft ActiveX Data Objects 2.0 Library
5,7c5,7
< Object={F9043C88-F6F2-101A-A3C9-08002B2F49FB}#1.2#0; comdlg32.ocx
< Object={BDC217C8-ED16-11CD-956C-0000C04E4C0A}#1.1#0; tabctl32.ocx
< Object={831FDD16-0C5C-11D2-A9FC-0000F8754DA1}#2.0#0; mscomctl.ocx
---
> Object={F9043C88-F6F2-101A-A3C9-08002B2F49FB}#1.2#0; COMDLG32.OCX
> Object={BDC217C8-ED16-11CD-956C-0000C04E4C0A}#1.1#0; TABCTL32.OCX
> Object={831FDD16-0C5C-11D2-A9FC-0000F8754DA1}#2.0#0; MSCOMCTL.OCX
26c26
< RevisionVer=17
---
> RevisionVer=21
cvs server: Diffing exporters/excel
Index: exporters/excel/pgExcel.vbp
===================================================================
RCS file: /disk1/cvsroot/pgadmin2/exporters/excel/pgExcel.vbp,v
retrieving revision 1.97
diff -r1.97 pgExcel.vbp
2c2
< Reference=*\G{00000200-0000-0010-8000-00AA006D2EA4}#2.0#0#..\..\..\..\..\..\..\Program Files\Common Files\system\ado\msado20.tlb#Microsoft ActiveX Data Objects 2.0 Library
---
> Reference=*\G{00000200-0000-0010-8000-00AA006D2EA4}#2.0#0#..\..\..\..\Programmi\File comuni\system\ado\msado20.tlb#Microsoft ActiveX Data Objects 2.0 Library
19c19
< RevisionVer=17
---
> RevisionVer=21
cvs server: Diffing exporters/html
Index: exporters/html/pgHTML.vbp
===================================================================
RCS file: /disk1/cvsroot/pgadmin2/exporters/html/pgHTML.vbp,v
retrieving revision 1.96
diff -r1.96 pgHTML.vbp
2c2
< Reference=*\G{00020430-0000-0000-C000-000000000046}#2.0#0#..\..\..\..\..\..\..\WINDOWS\System32\stdole2.tlb#OLE Automation
---
> Reference=*\G{00020430-0000-0000-C000-000000000046}#2.0#0#..\..\..\..\WINNT\System32\Stdole2.tlb#OLE Automation
4,5c4,5
< Reference=*\G{00000200-0000-0010-8000-00AA006D2EA4}#2.0#0#..\..\..\..\..\..\..\Program Files\Common Files\system\ado\msado20.tlb#Microsoft ActiveX Data Objects 2.0 Library
< Object={F9043C88-F6F2-101A-A3C9-08002B2F49FB}#1.2#0; comdlg32.ocx
---
> Reference=*\G{00000200-0000-0010-8000-00AA006D2EA4}#2.0#0#..\..\..\..\Programmi\File comuni\system\ado\msado20.tlb#Microsoft ActiveX Data Objects 2.0 Library
> Object={F9043C88-F6F2-101A-A3C9-08002B2F49FB}#1.2#0; COMDLG32.OCX
22c22
< RevisionVer=17
---
> RevisionVer=21
cvs server: Diffing help
cvs server: Diffing help/html
cvs server: Diffing help/html/developerinfo
cvs server: Diffing help/html/howtos
cvs server: Diffing help/html/images
cvs server: Diffing help/html/licenceinfo
cvs server: Diffing images
cvs server: Diffing installer
cvs server: Diffing plugins
cvs server: Diffing plugins/abstract
Index: plugins/abstract/pgAbsPlg.vbp
===================================================================
RCS file: /disk1/cvsroot/pgadmin2/plugins/abstract/pgAbsPlg.vbp,v
retrieving revision 1.96
diff -r1.96 pgAbsPlg.vbp
2,3c2,3
< Reference=*\G{00020430-0000-0000-C000-000000000046}#2.0#0#..\..\..\..\..\..\..\WINDOWS\System32\stdole2.tlb#OLE Automation
< Reference=*\G{00000200-0000-0010-8000-00AA006D2EA4}#2.0#0#..\..\..\..\..\..\..\Program Files\Common Files\system\ado\msado20.tlb#Microsoft ActiveX Data Objects 2.0 Library
---
> Reference=*\G{00020430-0000-0000-C000-000000000046}#2.0#0#..\..\..\..\WINNT\System32\Stdole2.tlb#OLE Automation
> Reference=*\G{00000200-0000-0010-8000-00AA006D2EA4}#2.0#0#..\..\..\..\Programmi\File comuni\system\ado\msado20.tlb#Microsoft ActiveX Data Objects 2.0 Library
20c20
< RevisionVer=17
---
> RevisionVer=22
cvs server: Diffing plugins/conndebug
Index: plugins/conndebug/pgConnDebug.vbp
===================================================================
RCS file: /disk1/cvsroot/pgadmin2/plugins/conndebug/pgConnDebug.vbp,v
retrieving revision 1.84
diff -r1.84 pgConnDebug.vbp
2c2
< Reference=*\G{00020430-0000-0000-C000-000000000046}#2.0#0#..\..\..\..\..\..\..\WINDOWS\System32\stdole2.tlb#OLE Automation
---
> Reference=*\G{00020430-0000-0000-C000-000000000046}#2.0#0#..\..\..\..\WINNT\System32\Stdole2.tlb#OLE Automation
5,6c5,6
< Object={BDC217C8-ED16-11CD-956C-0000C04E4C0A}#1.1#0; tabctl32.ocx
< Object={831FDD16-0C5C-11D2-A9FC-0000F8754DA1}#2.0#0; mscomctl.ocx
---
> Object={BDC217C8-ED16-11CD-956C-0000C04E4C0A}#1.1#0; TABCTL32.OCX
> Object={831FDD16-0C5C-11D2-A9FC-0000F8754DA1}#2.0#0; MSCOMCTL.OCX
27c27
< RevisionVer=17
---
> RevisionVer=22
cvs server: Diffing plugins/hba
Index: plugins/hba/pgHba.vbp
===================================================================
RCS file: /disk1/cvsroot/pgadmin2/plugins/hba/pgHba.vbp,v
retrieving revision 1.12
diff -r1.12 pgHba.vbp
2c2
< Reference=*\G{00020430-0000-0000-C000-000000000046}#2.0#0#..\..\..\..\..\..\..\WINDOWS\System32\stdole2.tlb#OLE Automation
---
> Reference=*\G{00020430-0000-0000-C000-000000000046}#2.0#0#..\..\..\..\WINNT\System32\Stdole2.tlb#OLE Automation
5,6c5,6
< Object={BDC217C8-ED16-11CD-956C-0000C04E4C0A}#1.1#0; tabctl32.ocx
< Object={831FDD16-0C5C-11D2-A9FC-0000F8754DA1}#2.0#0; mscomctl.ocx
---
> Object={BDC217C8-ED16-11CD-956C-0000C04E4C0A}#1.1#0; TABCTL32.OCX
> Object={831FDD16-0C5C-11D2-A9FC-0000F8754DA1}#2.0#0; MSCOMCTL.OCX
12c12
< Object={F9043C88-F6F2-101A-A3C9-08002B2F49FB}#1.2#0; comdlg32.ocx
---
> Object={F9043C88-F6F2-101A-A3C9-08002B2F49FB}#1.2#0; COMDLG32.OCX
28c28
< RevisionVer=18
---
> RevisionVer=23
cvs server: Diffing plugins/hba/images
cvs server: Diffing plugins/import
Index: plugins/import/pgImport.vbp
===================================================================
RCS file: /disk1/cvsroot/pgadmin2/plugins/import/pgImport.vbp,v
retrieving revision 1.97
diff -r1.97 pgImport.vbp
2,3c2,3
< Reference=*\G{00020430-0000-0000-C000-000000000046}#2.0#0#..\..\..\..\..\..\..\WINDOWS\System32\stdole2.tlb#OLE Automation
< Reference=*\G{00000200-0000-0010-8000-00AA006D2EA4}#2.0#0#..\..\..\..\..\..\..\Program Files\Common Files\system\ado\msado20.tlb#Microsoft ActiveX Data Objects 2.0 Library
---
> Reference=*\G{00020430-0000-0000-C000-000000000046}#2.0#0#..\..\..\..\WINNT\System32\Stdole2.tlb#OLE Automation
> Reference=*\G{00000200-0000-0010-8000-00AA006D2EA4}#2.0#0#..\..\..\..\Programmi\File comuni\system\ado\msado20.tlb#Microsoft ActiveX Data Objects 2.0 Library
6,9c6,9
< Object={F9043C88-F6F2-101A-A3C9-08002B2F49FB}#1.2#0; comdlg32.ocx
< Object={BDC217C8-ED16-11CD-956C-0000C04E4C0A}#1.1#0; tabctl32.ocx
< Object={831FDD16-0C5C-11D2-A9FC-0000F8754DA1}#2.0#0; mscomctl.ocx
< Object={86CF1D34-0C5F-11D2-A9FC-0000F8754DA1}#2.0#0; mscomct2.ocx
---
> Object={F9043C88-F6F2-101A-A3C9-08002B2F49FB}#1.2#0; COMDLG32.OCX
> Object={BDC217C8-ED16-11CD-956C-0000C04E4C0A}#1.1#0; TABCTL32.OCX
> Object={831FDD16-0C5C-11D2-A9FC-0000F8754DA1}#2.0#0; MSCOMCTL.OCX
> Object={86CF1D34-0C5F-11D2-A9FC-0000F8754DA1}#2.0#0; MSCOMCT2.OCX
30c30
< RevisionVer=17
---
> RevisionVer=22
cvs server: Diffing plugins/import/images
cvs server: Diffing plugins/migration
Index: plugins/migration/pgMigration.vbp
===================================================================
RCS file: /disk1/cvsroot/pgadmin2/plugins/migration/pgMigration.vbp,v
retrieving revision 1.96
diff -r1.96 pgMigration.vbp
2,3c2,3
< Reference=*\G{00020430-0000-0000-C000-000000000046}#2.0#0#..\..\..\..\..\..\..\WINDOWS\System32\stdole2.tlb#OLE Automation
< Reference=*\G{00000200-0000-0010-8000-00AA006D2EA4}#2.0#0#..\..\..\..\..\..\..\Program Files\Common Files\system\ado\msado20.tlb#Microsoft ActiveX Data Objects 2.0 Library
---
> Reference=*\G{00020430-0000-0000-C000-000000000046}#2.0#0#..\..\..\..\WINNT\System32\Stdole2.tlb#OLE Automation
> Reference=*\G{00000200-0000-0010-8000-00AA006D2EA4}#2.0#0#..\..\..\..\Programmi\File comuni\system\ado\msado20.tlb#Microsoft ActiveX Data Objects 2.0 Library
6,10c6,10
< Reference=*\G{00000600-0000-0010-8000-00AA006D2EA4}#2.7#0#..\..\..\..\..\..\..\Program Files\Common Files\System\ado\msadox.dll#Microsoft ADO Ext. 2.7 for DDL and Security
< Object={F9043C88-F6F2-101A-A3C9-08002B2F49FB}#1.2#0; comdlg32.ocx
< Object={BDC217C8-ED16-11CD-956C-0000C04E4C0A}#1.1#0; tabctl32.ocx
< Object={831FDD16-0C5C-11D2-A9FC-0000F8754DA1}#2.0#0; mscomctl.ocx
< Object={86CF1D34-0C5F-11D2-A9FC-0000F8754DA1}#2.0#0; mscomct2.ocx
---
> Reference=*\G{00000600-0000-0010-8000-00AA006D2EA4}#2.7#0#..\..\..\..\Program Files\Common Files\System\ado\msadox.dll#Microsoft ADO Ext. 2.7 for DDL and Security
> Object={F9043C88-F6F2-101A-A3C9-08002B2F49FB}#1.2#0; COMDLG32.OCX
> Object={BDC217C8-ED16-11CD-956C-0000C04E4C0A}#1.1#0; TABCTL32.OCX
> Object={831FDD16-0C5C-11D2-A9FC-0000F8754DA1}#2.0#0; MSCOMCTL.OCX
> Object={86CF1D34-0C5F-11D2-A9FC-0000F8754DA1}#2.0#0; MSCOMCT2.OCX
cvs server: Diffing plugins/migration/images
cvs server: Diffing plugins/msysconf
Index: plugins/msysconf/pgMSysConf.vbp
===================================================================
RCS file: /disk1/cvsroot/pgadmin2/plugins/msysconf/pgMSysConf.vbp,v
retrieving revision 1.102
diff -r1.102 pgMSysConf.vbp
2,3c2,3
< Reference=*\G{00020430-0000-0000-C000-000000000046}#2.0#0#..\..\..\..\..\..\..\WINDOWS\System32\stdole2.tlb#OLE Automation
< Reference=*\G{00000200-0000-0010-8000-00AA006D2EA4}#2.0#0#..\..\..\..\..\..\..\Program Files\Common Files\system\ado\msado20.tlb#Microsoft ActiveX Data Objects 2.0 Library
---
> Reference=*\G{00020430-0000-0000-C000-000000000046}#2.0#0#..\..\..\..\WINNT\System32\Stdole2.tlb#OLE Automation
> Reference=*\G{00000200-0000-0010-8000-00AA006D2EA4}#2.0#0#..\..\..\..\Programmi\File comuni\system\ado\msado20.tlb#Microsoft ActiveX Data Objects 2.0 Library
6,9c6,9
< Object={F9043C88-F6F2-101A-A3C9-08002B2F49FB}#1.2#0; comdlg32.ocx
< Object={BDC217C8-ED16-11CD-956C-0000C04E4C0A}#1.1#0; tabctl32.ocx
< Object={831FDD16-0C5C-11D2-A9FC-0000F8754DA1}#2.0#0; mscomctl.ocx
< Object={86CF1D34-0C5F-11D2-A9FC-0000F8754DA1}#2.0#0; mscomct2.ocx
---
> Object={F9043C88-F6F2-101A-A3C9-08002B2F49FB}#1.2#0; COMDLG32.OCX
> Object={BDC217C8-ED16-11CD-956C-0000C04E4C0A}#1.1#0; TABCTL32.OCX
> Object={831FDD16-0C5C-11D2-A9FC-0000F8754DA1}#2.0#0; MSCOMCTL.OCX
> Object={86CF1D34-0C5F-11D2-A9FC-0000F8754DA1}#2.0#0; MSCOMCT2.OCX
28c28
< RevisionVer=17
---
> RevisionVer=22
cvs server: Diffing plugins/msysconf/images
cvs server: Diffing plugins/publishing
Index: plugins/publishing/pgPublishing.vbp
===================================================================
RCS file: /disk1/cvsroot/pgadmin2/plugins/publishing/pgPublishing.vbp,v
retrieving revision 1.89
diff -r1.89 pgPublishing.vbp
2,3c2,3
< Reference=*\G{00020430-0000-0000-C000-000000000046}#2.0#0#..\..\..\..\..\..\..\WINDOWS\System32\stdole2.tlb#OLE Automation
< Reference=*\G{00000200-0000-0010-8000-00AA006D2EA4}#2.0#0#..\..\..\..\..\..\..\Program Files\Common Files\system\ado\msado20.tlb#Microsoft ActiveX Data Objects 2.0 Library
---
> Reference=*\G{00020430-0000-0000-C000-000000000046}#2.0#0#..\..\..\..\WINNT\System32\Stdole2.tlb#OLE Automation
> Reference=*\G{00000200-0000-0010-8000-00AA006D2EA4}#2.0#0#..\..\..\..\Programmi\File comuni\system\ado\msado20.tlb#Microsoft ActiveX Data Objects 2.0 Library
6,9c6,9
< Object={F9043C88-F6F2-101A-A3C9-08002B2F49FB}#1.2#0; comdlg32.ocx
< Object={BDC217C8-ED16-11CD-956C-0000C04E4C0A}#1.1#0; tabctl32.ocx
< Object={831FDD16-0C5C-11D2-A9FC-0000F8754DA1}#2.0#0; mscomctl.ocx
< Object={86CF1D34-0C5F-11D2-A9FC-0000F8754DA1}#2.0#0; mscomct2.ocx
---
> Object={F9043C88-F6F2-101A-A3C9-08002B2F49FB}#1.2#0; COMDLG32.OCX
> Object={BDC217C8-ED16-11CD-956C-0000C04E4C0A}#1.1#0; TABCTL32.OCX
> Object={831FDD16-0C5C-11D2-A9FC-0000F8754DA1}#2.0#0; MSCOMCTL.OCX
> Object={86CF1D34-0C5F-11D2-A9FC-0000F8754DA1}#2.0#0; MSCOMCT2.OCX
29c29
< RevisionVer=17
---
> RevisionVer=22
cvs server: Diffing plugins/publishing/images
cvs server: Diffing plugins/security
Index: plugins/security/pgSecurity.vbp
===================================================================
RCS file: /disk1/cvsroot/pgadmin2/plugins/security/pgSecurity.vbp,v
retrieving revision 1.97
diff -r1.97 pgSecurity.vbp
2,3c2,3
< Reference=*\G{00020430-0000-0000-C000-000000000046}#2.0#0#..\..\..\..\..\..\..\WINDOWS\System32\stdole2.tlb#OLE Automation
< Reference=*\G{00000200-0000-0010-8000-00AA006D2EA4}#2.0#0#..\..\..\..\..\..\..\Program Files\Common Files\system\ado\msado20.tlb#Microsoft ActiveX Data Objects 2.0 Library
---
> Reference=*\G{00020430-0000-0000-C000-000000000046}#2.0#0#..\..\..\..\WINNT\System32\Stdole2.tlb#OLE Automation
> Reference=*\G{00000200-0000-0010-8000-00AA006D2EA4}#2.0#0#..\..\..\..\Programmi\File comuni\system\ado\msado20.tlb#Microsoft ActiveX Data Objects 2.0 Library
6,9c6,9
< Object={F9043C88-F6F2-101A-A3C9-08002B2F49FB}#1.2#0; comdlg32.ocx
< Object={BDC217C8-ED16-11CD-956C-0000C04E4C0A}#1.1#0; tabctl32.ocx
< Object={831FDD16-0C5C-11D2-A9FC-0000F8754DA1}#2.0#0; mscomctl.ocx
< Object={86CF1D34-0C5F-11D2-A9FC-0000F8754DA1}#2.0#0; mscomct2.ocx
---
> Object={F9043C88-F6F2-101A-A3C9-08002B2F49FB}#1.2#0; COMDLG32.OCX
> Object={BDC217C8-ED16-11CD-956C-0000C04E4C0A}#1.1#0; TABCTL32.OCX
> Object={831FDD16-0C5C-11D2-A9FC-0000F8754DA1}#2.0#0; MSCOMCTL.OCX
> Object={86CF1D34-0C5F-11D2-A9FC-0000F8754DA1}#2.0#0; MSCOMCT2.OCX
28c28
< RevisionVer=17
---
> RevisionVer=22
cvs server: Diffing plugins/security/images
cvs server: Diffing plugins/template


***** CVS exited normally with code 1 *****


