opencoe-cvs Mailing List for OpenCOE (Page 2)
Status: Alpha
Brought to you by:
rbroberg
You can subscribe to this list here.
| 2003 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(17) |
Nov
(17) |
Dec
|
|---|
|
From: <rbr...@us...> - 2003-10-18 18:03:55
|
Update of /cvsroot/opencoe/coekernel/src/COE/src/COE/java/org/opencoe/coe/kernel/apps
In directory sc8-pr-cvs1:/tmp/cvs-serv18267/java/org/opencoe/coe/kernel/apps
Modified Files:
COEInstaller.java
Log Message:
20031018:rb:825985 - COEInstaller S/W row cells should not be editableZ
Index: COEInstaller.java
===================================================================
RCS file: /cvsroot/opencoe/coekernel/src/COE/src/COE/java/org/opencoe/coe/kernel/apps/COEInstaller.java,v
retrieving revision 1.8
retrieving revision 1.9
diff -C2 -d -r1.8 -r1.9
*** COEInstaller.java 18 Oct 2003 14:37:40 -0000 1.8
--- COEInstaller.java 18 Oct 2003 18:00:38 -0000 1.9
***************
*** 20,23 ****
--- 20,24 ----
*
* Created on January 29, 2001, 1:02 PM
+ * 20031018:rb:825985 - COEInstaller S/W row cells should not be editable
* 20031018:rb:825973 - COEInstaller Available Disks not used
*/
***************
*** 85,89 ****
cfgDiskTable = new javax.swing.JTable();
//cfgDiskTableLSM = cfgDiskTable.getSelectionModel();
! //cfgDiskTableModel = cfgDiskTable.getModel();
cfgDiskButtonPanel = new javax.swing.JPanel();
cfgDiskSpaceButton = new javax.swing.JButton();
--- 86,90 ----
cfgDiskTable = new javax.swing.JTable();
//cfgDiskTableLSM = cfgDiskTable.getSelectionModel();
! //cfgDisk = cfgDiskTable.getModel();
cfgDiskButtonPanel = new javax.swing.JPanel();
cfgDiskSpaceButton = new javax.swing.JButton();
***************
*** 492,511 ****
swInstalledPanel.setBorder(new javax.swing.border.TitledBorder("Software Installed"));
! swInstalledTableModel = new javax.swing.table.DefaultTableModel(
! new String[]{"Type", "Name", "Version", "Class", "Size", "Dir"},
! 0);
! swInstalledTable = new javax.swing.JTable(swInstalledTableModel);
!
! instArray = getINST();
! for (int i = 0; i < instArray.length; i++) {
! String[] newrow = new String[]{instArray[i][0],
! instArray[i][1],
! instArray[i][2],
! instArray[i][3],
! instArray[i][4],
! instArray[i][5],};
! swInstalledTableModel.addRow(newrow);
! }
!
swInstalledScrollPanel.setViewportView(swInstalledTable);
--- 493,502 ----
swInstalledPanel.setBorder(new javax.swing.border.TitledBorder("Software Installed"));
! //20031018:rb:825985 - COEInstaller S/W row cells should not be editable
! swInstalledTableModel = new COEInstallerTableModel();
! instArray = getInstalled();
! swInstalledTableModel.setData(instArray);
! swInstalledTable= new javax.swing.JTable(swInstalledTableModel);
! swInstalledTable.tableChanged(new javax.swing.event.TableModelEvent(swInstalledTableModel));
swInstalledScrollPanel.setViewportView(swInstalledTable);
***************
*** 536,546 ****
//# Set Available Software Panel
//# ------------------------------------------------------------------
swAvailablePanel.setLayout(new java.awt.BorderLayout());
swAvailablePanel.setBorder(new javax.swing.border.TitledBorder("Software Available"));
swAvailableTableModel = new javax.swing.table.DefaultTableModel(
! new String[]{"Type", "Name", "Version", "Class", "Size", "Dir"},
! 0);
!
swAvailableTable = new javax.swing.JTable(swAvailableTableModel);
--- 527,538 ----
//# Set Available Software Panel
//# ------------------------------------------------------------------
+ //swAvailable = swAvailableTable.getModel();
swAvailablePanel.setLayout(new java.awt.BorderLayout());
swAvailablePanel.setBorder(new javax.swing.border.TitledBorder("Software Available"));
+ //20031018:rb:825985 - COEInstaller S/W row cells should not be editable
swAvailableTableModel = new javax.swing.table.DefaultTableModel(
! new String[]{"Type", "Name", "Version", "Class", "Size", "Dir"}, 0)
! { public boolean isCellEditable(int row, int column) { return false;} };
swAvailableTable = new javax.swing.JTable(swAvailableTableModel);
***************
*** 569,573 ****
// tweak list and table models
swAvailableTableLSM = swAvailableTable.getSelectionModel();
- //swAvailableTableModel = swAvailableTable.getModel();
swAvailableTableLSM.addListSelectionListener(
--- 561,564 ----
***************
*** 704,707 ****
--- 695,699 ----
//# +----|----+----|----+----|----+----|----+----|----+----|----+----|----+----|
+
/**
* Description of the Method
***************
*** 879,883 ****
* refresh the installed table
*/
! readINST();
}
--- 871,875 ----
* refresh the installed table
*/
! readInstalled();
}
***************
*** 916,920 ****
* refresh the installed table
*/
! readINST();
}
--- 908,912 ----
* refresh the installed table
*/
! readInstalled();
}
***************
*** 937,945 ****
/**
! * Gets the iNST attribute of the COEInstaller object
*
! *@return The iNST value
*/
! private String[][] getINST() {
String cmdstr = "COE_HOME/bin/COEListSegs";
String flagstr = "--installer";
--- 929,937 ----
/**
! * Gets the Installed Segments attribute of the COEInstaller object
*
! *@return The Installed Segments value
*/
! private String[][] getInstalled() {
String cmdstr = "COE_HOME/bin/COEListSegs";
String flagstr = "--installer";
***************
*** 969,993 ****
* Description of the Method
*/
! private void readINST() {
!
! int rows = swInstalledTableModel.getRowCount();
! System.out.println("rows ==" + rows);
! for (int i = rows; i > 0; i--) {
! swInstalledTableModel.removeRow(i - 1);
! }
! /*
! * get the new stuff
! */
! instArray = getINST();
! for (int i = 0; i < instArray.length; i++) {
! String[] newrow = new String[]{instArray[i][0],
! instArray[i][1],
! instArray[i][2],
! instArray[i][3],
! instArray[i][4],
! instArray[i][5]};
! swInstalledTableModel.addRow(newrow);
! }
}
--- 961,970 ----
* Description of the Method
*/
! private void readInstalled() {
! // 20031018:rb:825985 - COEInstaller S/W row cells should not be editable
! instArray = getInstalled();
! swInstalledTableModel.setData(instArray);
! swInstalledTable.tableChanged(new javax.swing.event.TableModelEvent(swInstalledTableModel));
}
***************
*** 1024,1028 ****
*
*@param path Description of the Parameter
! *@return The tOC value
*/
private String[][] getTOC(String path) {
--- 1001,1005 ----
*
*@param path Description of the Parameter
! *@return The TOC value
*/
private String[][] getTOC(String path) {
***************
*** 1305,1309 ****
private javax.swing.JScrollPane cfgDiskTableScrollPane;
private javax.swing.JTable cfgDiskTable;
! private javax.swing.table.TableModel cfgDiskTableModel;
private javax.swing.ListSelectionModel cfgDiskTableLSM;
private javax.swing.JPanel cfgDiskButtonPanel;
--- 1282,1286 ----
private javax.swing.JScrollPane cfgDiskTableScrollPane;
private javax.swing.JTable cfgDiskTable;
! private javax.swing.table.TableModel cfgDiskTableModel;
private javax.swing.ListSelectionModel cfgDiskTableLSM;
private javax.swing.JPanel cfgDiskButtonPanel;
***************
*** 1315,1319 ****
private javax.swing.JScrollPane swInstalledScrollPanel;
private javax.swing.JTable swInstalledTable;
! private javax.swing.table.DefaultTableModel swInstalledTableModel;
private javax.swing.JPanel swInstalledButtonPanel;
private javax.swing.JButton swInstalledRelnotesButton;
--- 1292,1297 ----
private javax.swing.JScrollPane swInstalledScrollPanel;
private javax.swing.JTable swInstalledTable;
! //private javax.swing.table.Default swInstalled;
! private COEInstallerTableModel swInstalledTableModel;
private javax.swing.JPanel swInstalledButtonPanel;
private javax.swing.JButton swInstalledRelnotesButton;
***************
*** 1335,1339 ****
--- 1313,1428 ----
//20031006:rb - Use Coe Env Variables to set install path
private org.opencoe.coe.kernel.util._OpenCOEEnv coeEnv;
+
+ // 20031018:rb:825985 - COEInstaller S/W row cells should not be editable
+ class COEInstallerTableModel extends javax.swing.table.AbstractTableModel {
+ final String[] columnNames = {"Type", "Name", "Version", "Class", "Size", "Dir"};
+
+ private Object[][] data = {{"", "", "", "", "", ""}};
+
+ private boolean DEBUG = true;
+
+ public void setData (Object[][] tmp) {
+ data = tmp;
+ }
+
+ public int getColumnCount() {
+ return columnNames.length;
+ }
+
+ public int getRowCount() {
+ //return data.length/columnNames.length;
+ return data.length;
+ }
+
+ public String getColumnName(int col) {
+ return columnNames[col];
+ }
+
+ public Object getValueAt(int row, int col) {
+ System.out.println("row: "+row);
+ System.out.println("col: "+col);
+ System.out.println("rowcnt: "+getRowCount());
+ System.out.println("colcnt: "+getColumnCount());
+ if (row < getRowCount() && col <getColumnCount()) {
+ return data[row][col];
+ } else {
+ return null;
+ }
+ }
+
+ /*
+ * JTable uses this method to determine the default renderer/
+ * editor for each cell. If we didn't implement this method,
+ * then the last column would contain text ("true"/"false"),
+ * rather than a check box.
+ */
+ public Class getColumnClass(int c) {
+ return getValueAt(0, c).getClass();
+ }
+
+ /*
+ * Don't need to implement this method unless your table's
+ * editable.
+ */
+ public boolean isCellEditable(int row, int col) {
+ return false;
+ }
+
+ /*
+ * Don't need to implement this method unless your table's
+ * data can change.
+ */
+ public void setValueAt(Object value, int row, int col) {
+ if (DEBUG) {
+ System.out.println("Setting value at " + row + "," + col
+ + " to " + value
+ + " (an instance of "
+ + value.getClass() + ")");
+ }
+
+ if (data[0][col] instanceof Integer
+ && !(value instanceof Integer)) {
+ //With JFC/Swing 1.1 and JDK 1.2, we need to create
+ //an Integer from the value; otherwise, the column
+ //switches to contain Strings. Starting with v 1.3,
+ //the table automatically converts value to an Integer,
+ //so you only need the code in the 'else' part of this
+ //'if' block.
+ //XXX: See TableEditDemo.java for a better solution!!!
+ try {
+ data[row][col] = new Integer(value.toString());
+ fireTableCellUpdated(row, col);
+ } catch (NumberFormatException e) {
+ System.err.println("The \"" + getColumnName(col) + "\" column accepts only integer values.");
+ }
+ } else {
+ data[row][col] = value;
+ fireTableCellUpdated(row, col);
+ }
+
+ if (DEBUG) {
+ System.out.println("New value of data:");
+ printDebugData();
+ }
+ }
+
+ private void printDebugData() {
+ int numRows = getRowCount();
+ int numCols = getColumnCount();
+
+ for (int i=0; i < numRows; i++) {
+ System.out.print(" row " + i + ":");
+ for (int j=0; j < numCols; j++) {
+ System.out.print(" " + data[i][j]);
+ }
+ System.out.println();
+ }
+ System.out.println("--------------------------");
+ }
+ }
+
}
+
+
|
|
From: <rbr...@us...> - 2003-10-18 15:06:06
|
Update of /cvsroot/opencoe/coekernel/src/COE/src/COE/java/org/opencoe/coe/kernel/apps
In directory sc8-pr-cvs1:/tmp/cvs-serv20185/src/COE/java/org/opencoe/coe/kernel/apps
Modified Files:
COEInstaller.java
Log Message:
20031018:rb:825973 - COEInstaller Available Disks not used
Index: COEInstaller.java
===================================================================
RCS file: /cvsroot/opencoe/coekernel/src/COE/src/COE/java/org/opencoe/coe/kernel/apps/COEInstaller.java,v
retrieving revision 1.7
retrieving revision 1.8
diff -C2 -d -r1.7 -r1.8
*** COEInstaller.java 8 Oct 2003 05:05:43 -0000 1.7
--- COEInstaller.java 18 Oct 2003 14:37:40 -0000 1.8
***************
*** 20,23 ****
--- 20,24 ----
*
* Created on January 29, 2001, 1:02 PM
+ * 20031018:rb:825973 - COEInstaller Available Disks not used
*/
***************
*** 445,448 ****
--- 446,451 ----
//# ----------------------------------------------------------------
cfgDiskSpaceButton.setText("Reserved Space");
+ //20031018:rb:825973 - COEInstaller Available Disks not used
+ cfgDiskSpaceButton.setEnabled(false);
cfgDiskButtonPanel.add(cfgDiskSpaceButton);
***************
*** 453,456 ****
--- 456,461 ----
//# ----------------------------------------------------------------
cfgDiskDirButton.setText("Change Directory");
+ //20031018:rb:825973 - COEInstaller Available Disks not used
+ cfgDiskDirButton.setEnabled(false);
cfgDiskDirButton.addActionListener(
new java.awt.event.ActionListener() {
|
|
From: <rbr...@us...> - 2003-10-18 03:53:16
|
Update of /cvsroot/opencoe/coekernel/src/UAM/src/UAM/java/org/opencoe/coe/uam In directory sc8-pr-cvs1:/tmp/cvs-serv4285/UAM/java/org/opencoe/coe/uam Modified Files: UAM_EditUser.java Log Message: 20031017:rb:821278 Parent/Default Profile assigned to user Index: UAM_EditUser.java =================================================================== RCS file: /cvsroot/opencoe/coekernel/src/UAM/src/UAM/java/org/opencoe/coe/uam/UAM_EditUser.java,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** UAM_EditUser.java 21 Jun 2002 22:43:57 -0000 1.4 --- UAM_EditUser.java 18 Oct 2003 03:53:12 -0000 1.5 *************** *** 1,30 **** /** ! * Copyright (C) 2002, Federal Linux Systems ! * ! * The project home for this software is http://www.opencoe.org ! * ! * This segment is free software; you can redistribute it and/or ! * modify it under the terms of the GNU Lesser General Public ! * License as published by the Free Software Foundation; either ! * version 2.1 of the License, or (at your option) any later version. ! * [...1890 lines suppressed...] ! /* ! * command exec variables ! */ ! private String cmd; private String str; private String username; *************** *** 882,886 **** private java.util.ArrayList tmp; ! // End of variables declaration } --- 1032,1037 ---- private java.util.ArrayList tmp; ! // End of variables declaration } + |
Update of /cvsroot/opencoe/coekernel/src/COE/src/COE/data/NET_SERVER/TESTAPP-SOFTWARE-1.0.0.0-COE_ALL/SegDescrip
In directory sc8-pr-cvs1:/tmp/cvs-serv13929/NET_SERVER/TESTAPP-SOFTWARE-1.0.0.0-COE_ALL/SegDescrip
Added Files:
DEINSTALL LICENSE PostInstall PreInstall ReleaseNotes SegInfo
SegName VERSION
Log Message:
Add the NET_SERVER/TESTAPP to the COE Kernel for installation verification.
--- NEW FILE: DEINSTALL ---
#!/usr/bin/perl -I /h/COE/lib
use coe_lib;
my $SEGMENT;
my $INSTALL_DIR;
my $TIMESTAMP;
sub getTimeF;
# Set segment name
$SEGMENT="TESTAPP";
# Set installation directory
$INSTALL_DIR=$ENV{'INSTALL_DIR'};
if ( "$INSTALL_DIR" eq "" ) { $INSTALL_DIR="/h/$SEGMENT"; }
# Get current time
$TIMESTAMP=getTimeF("YYYYMMDD hh:mm:ss");
# Execute DEINSTALL
# Note: this is for impacts outside the
# Segments directory which will be
# removed after this runs
print "$SEGMENT [$TIMESTAMP]: Executing DEINSTALL $INSTALL_DIR\n";
# Exit gracefully
exit 0;
--- NEW FILE: LICENSE ---
This file is free to all.
--- NEW FILE: PostInstall ---
#!/usr/bin/perl -I /h/COE/lib
use coe_lib;
my $INSTALL_DIR;
my $JAVA;
my $JAVA_HOME;
my $SEGMENT;
my $TIMESTAMP;
sub getTimeF;
sub sedFile;
#------------------------------------------------------------------------------|
# Set the Segment Name
#------------------------------------------------------------------------------|
$SEGMENT="TESTAPP";
#------------------------------------------------------------------------------|
# Define the Launch and Icon/Menu Scripts
#------------------------------------------------------------------------------|
my $sysdrive=$ENV{'SystemDrive'};
my @NTScripts=("../bin/TESTAPP_launch.pl",
"../bin/testapp.bat");
my @Scripts=("../bin/TESTAPP_launch.pl",
"../data/Icons/TESTAPP.Icon",
"../data/Menus/TESTAPP.Menu",
"../bin/testapp");
#------------------------------------------------------------------------------|
# Set the installation directory
# If it is already set, tweak the launch Scripts
#------------------------------------------------------------------------------|
$INSTALL_DIR=$ENV{'INSTALL_DIR'};
if ( "$INSTALL_DIR" eq "" ) {
$INSTALL_DIR="/h/$SEGMENT";
} else {
if ( "$sysdrive" ne "" ) {
sedFile ("/h/\\\$SEG", "$INSTALL_DIR", "false", @NTScripts);
sedFile ("rem INSTALL_DIR", "set INSTALL_DIR", "true", @NTScripts);
} else {
sedFile ("/h/\\\$SEG", "$INSTALL_DIR", "false", @Scripts);
sedFile ("#INSTALL_DIR", "INSTALL_DIR", "false", @Scripts);
}
}
#------------------------------------------------------------------------------|
# If this is NT, set the installation drive
# If it is already set, tweak the launch
#------------------------------------------------------------------------------|
my $sysdrive=$ENV{'SystemDrive'};
if ( "$sysdrive" ne "" ) {
my $appdrive=$ENV{'INSTALL_DRIVE'};
if ( "$appdrive" ne "D:" ) {
sedFile ("D:", "$appdrive", "false", @Scripts);
sedFile ("D:", "$appdrive", "false", @NTScripts);
sedFile ("rem INSTALL_DRIVE", "set INSTALL_DRIVE", "true", @NTScripts);
}
}
#------------------------------------------------------------------------------|
# Set the java_home directory
# If it is already set, tweak the launch Scripts
#------------------------------------------------------------------------------|
$JAVA_HOME=$ENV{'JAVA_HOME'};
if ( "$JAVA_HOME" eq "" ) {
$JAVA_HOME="/h/COE/Comp/JAVA2";
} else {
if ( "$sysdrive" ne "" ) {
sedFile ("/h/COE/Comp/JAVA2", "$JAVA_HOME", "false", @NTScripts);
sedFile ("rem JAVA_HOME", "set JAVA_HOME", "true", @NTScripts);
} else {
sedFile ("/h/COE/Comp/JAVA2", "$JAVA_HOME", "false", @Scripts);
sedFile ("#JAVA_HOME", "JAVA_HOME", "false", @Scripts);
}
}
#------------------------------------------------------------------------------|
# Set the java command
# If it is already set, tweak the launch Scripts
#------------------------------------------------------------------------------|
$JAVA=$ENV{'JAVA'};
if ( "$JAVA" eq "" ) {
$JAVA="$JAVA_HOME/bin/java";
} else {
if ( "$sysdrive" ne "" ) {
sedFile ("\\\$JAVA_HOME/bin/java", "$JAVA_HOME\\$JAVA", "false", @NTScripts);
sedFile ("rem JAVA", "set JAVA", "true", @NTScripts);
} else {
sedFile ("#JAVA=", "JAVA=", "false", @Scripts);
sedFile ("\\\$JAVA_HOME/bin/java", "$JAVA_HOME/$JAVA", "false", @Scripts);
}
}
#------------------------------------------------------------------------------|
# If this is NT, change the directory character in the Icon and Menu Scripts
#------------------------------------------------------------------------------|
my $sysdrive=$ENV{'SystemDrive'};
if ( "$sysdrive" ne "" ) {
sedFile ("/", "\\", "false", @NTScripts);
}
#------------------------------------------------------------------------------|
# Get the current time;
#------------------------------------------------------------------------------|
$TIMESTAMP=getTimeF("YYYYMMDD hh:mm:ss");
#------------------------------------------------------------------------------|
# Execute the Segment Specfic PostInstall
#------------------------------------------------------------------------------|
print "$SEGMENT [$TIMESTAMP]: Executing PostInstall $INSTALL_DIR\n";
#------------------------------------------------------------------------------|
# Exit gracefully
#------------------------------------------------------------------------------|
exit 0;
--- NEW FILE: PreInstall ---
#!/usr/bin/perl -I /h/COE/lib
use coe_lib;
my $SEGMENT;
my $INSTALL_DIR;
my $TIMESTAMP;
sub getTimeF;
# Set the Segment Name
$SEGMENT="TESTAPP";
# Set the install directory
$INSTALL_DIR=$ENV{'INSTALL_DIR'};
if ( "$INSTALL_DIR" eq "" ) { my $INSTALL_DIR="/h/$SEGMENT"; }
# Get the current time;
my $TIMESTAMP=getTimeF("YYYYMMDD hh:mm:ss");
# Execute the PreInstall
print "$SEGMENT [$TIMESTAMP]: Executing PreInstall $INSTALL_DIR\n";
# Exit gracefully
exit 0;
--- NEW FILE: ReleaseNotes ---
================================================================================
1.0 Description
================================================================================
Source Name: OpenCOE Test Segment
Source Author(s): Ron Broberg
Source Contact: ron...@ya...
Source Site: http://opencoe.org
Segment FTP: ftp://opencoe.org/pub/rhinohide/OpenCOE
Source Version: 1.0.0.0
Source Date: Jan 31, 2002
License: GNU Lesser General Public License, v2.1
Segment Name: OpenCOE Testapp
Segment Prefix: TMPLATE
Segment Author: Ron Broberg
Segment Contact: ron...@ya...
Segment Site: http://www.opencoe.org
Segment FTP: ftp://opencoe.org/usr/rhinohide/OpenCOE
Segment Version: 1.0.0.0
Segment Date: January 31, 2002
Description:
Test Segment for COEInstaller Test
================================================================================
2.0 Segment History
================================================================================
2002 01 31 - Initial Segment Build
================================================================================
3.0 Compilation Notes
================================================================================
<List any special compilation instructions here>
================================================================================
4.0 Configuration Files
================================================================================
<List any configuration files and short description here>
================================================================================
5.0 Runtime Parameters
================================================================================
<List any run time parameters and short description here>
================================================================================
6.0 Executables
================================================================================
<List the segment executables, command line argments, and description here>
================================================================================
7.0 Initialization Procedures
================================================================================
<List any special initializtion procedures here>
================================================================================
8.0 Log Files
================================================================================
<List any log files and short description here>
================================================================================
9.0 Debug
================================================================================
<List any debug procedures here>
================================================================================
10.0 Deinstallation
================================================================================
<List any special deinstallation instructions here>
================================================================================
11.0 Known Issues
================================================================================
<List known problems here>
================================================================================
12.0 Other
================================================================================
<List any other information here>
--- NEW FILE: SegInfo ---
[Hardware]
$CPU:ANY
$OPSYS:COE
$DISK:10
$MEMORY:10
[Icons]
TESTAPP.Icon:STAFF
[Menus]
TESTAPP.Menu:STAFF.main
[Requires]
[Conflicts]
[Security]
UNCLASS
--- NEW FILE: SegName ---
$TYPE:SOFTWARE
$NAME:Testapp
$PREFIX:TESTAPP
$SEGMENT:Staff Acct Grp:STAFF:/h/AcctGrps/Staff
--- NEW FILE: VERSION ---
1.0.0.0 : 01/31/2002 : 12:10
|
|
From: <rbr...@us...> - 2003-10-10 03:15:54
|
Update of /cvsroot/opencoe/coekernel/src/COE/src/COE/data/NET_SERVER/TESTAPP-SOFTWARE-1.0.0.0-COE_ALL In directory sc8-pr-cvs1:/tmp/cvs-serv13929/NET_SERVER/TESTAPP-SOFTWARE-1.0.0.0-COE_ALL Added Files: TESTAPP-SOFTWARE-1.0.0.0-COE_ALL.tar Log Message: Add the NET_SERVER/TESTAPP to the COE Kernel for installation verification. --- NEW FILE: TESTAPP-SOFTWARE-1.0.0.0-COE_ALL.tar --- (This appears to be a binary file; contents omitted.) |
|
From: <rbr...@us...> - 2003-10-10 03:15:54
|
Update of /cvsroot/opencoe/coekernel/src/COE/src/COE/data/NET_SERVER In directory sc8-pr-cvs1:/tmp/cvs-serv13929/NET_SERVER Added Files: toc Log Message: Add the NET_SERVER/TESTAPP to the COE Kernel for installation verification. --- NEW FILE: toc --- 1:0:1:COE_ALL:TESTAPP:Testapp :TESTAPP:SOFTWARE:1.0.0.0:UNCLASS:10 |
|
From: <rbr...@us...> - 2003-10-10 03:13:01
|
Update of /cvsroot/opencoe/coekernel/src/COE/src/COE/data/NET_SERVER/TESTAPP-SOFTWARE-1.0.0.0-COE_ALL/SegDescrip In directory sc8-pr-cvs1:/tmp/cvs-serv13505/NET_SERVER/TESTAPP-SOFTWARE-1.0.0.0-COE_ALL/SegDescrip Log Message: Directory /cvsroot/opencoe/coekernel/src/COE/src/COE/data/NET_SERVER/TESTAPP-SOFTWARE-1.0.0.0-COE_ALL/SegDescrip added to the repository |
|
From: <rbr...@us...> - 2003-10-10 03:12:31
|
Update of /cvsroot/opencoe/coekernel/src/COE/src/COE/data/NET_SERVER/TESTAPP-SOFTWARE-1.0.0.0-COE_ALL In directory sc8-pr-cvs1:/tmp/cvs-serv13464/NET_SERVER/TESTAPP-SOFTWARE-1.0.0.0-COE_ALL Log Message: Directory /cvsroot/opencoe/coekernel/src/COE/src/COE/data/NET_SERVER/TESTAPP-SOFTWARE-1.0.0.0-COE_ALL added to the repository |
|
From: <rbr...@us...> - 2003-10-10 03:11:44
|
Update of /cvsroot/opencoe/coekernel/src/COE/src/COE/data/NET_SERVER In directory sc8-pr-cvs1:/tmp/cvs-serv13337/NET_SERVER Log Message: Directory /cvsroot/opencoe/coekernel/src/COE/src/COE/data/NET_SERVER added to the repository |