You can subscribe to this list here.
| 2006 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
(7) |
Jul
(5) |
Aug
(24) |
Sep
(21) |
Oct
(2) |
Nov
|
Dec
(6) |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 2007 |
Jan
|
Feb
(5) |
Mar
(6) |
Apr
(8) |
May
(3) |
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(23) |
Nov
|
Dec
|
| 2008 |
Jan
|
Feb
|
Mar
|
Apr
(2) |
May
(1) |
Jun
(1) |
Jul
|
Aug
|
Sep
(7) |
Oct
(8) |
Nov
(8) |
Dec
(1) |
| 2009 |
Jan
(5) |
Feb
(6) |
Mar
(1) |
Apr
(1) |
May
|
Jun
|
Jul
(1) |
Aug
|
Sep
|
Oct
(1) |
Nov
(2) |
Dec
|
| 2010 |
Jan
|
Feb
(2) |
Mar
(2) |
Apr
|
May
|
Jun
(2) |
Jul
|
Aug
|
Sep
(1) |
Oct
(6) |
Nov
(2) |
Dec
|
| 2011 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
(16) |
Oct
(1) |
Nov
|
Dec
|
| 2012 |
Jan
(9) |
Feb
(6) |
Mar
(2) |
Apr
|
May
|
Jun
|
Jul
|
Aug
(1) |
Sep
(3) |
Oct
(2) |
Nov
(3) |
Dec
|
|
From: <haw...@us...> - 2007-10-02 19:47:09
|
Revision: 169
http://pgsqlformac.svn.sourceforge.net/pgsqlformac/?rev=169&view=rev
Author: hawkmoon
Date: 2007-10-02 12:46:55 -0700 (Tue, 02 Oct 2007)
Log Message:
-----------
updated to address Leopard/Tiger compat. Dropped Panther Compat
Modified Paths:
--------------
trunk/Installers/PostgreSQL8/Resources/postflight
trunk/Installers/PostgreSQL8/Resources/preflight
Modified: trunk/Installers/PostgreSQL8/Resources/postflight
===================================================================
--- trunk/Installers/PostgreSQL8/Resources/postflight 2007-05-25 18:14:42 UTC (rev 168)
+++ trunk/Installers/PostgreSQL8/Resources/postflight 2007-10-02 19:46:55 UTC (rev 169)
@@ -3,56 +3,64 @@
# first let's make sure the the postgres user does
# not currently exist
-# set -e
+# Leopard/Tiger - this no longer works on Panther
-PG_GID=`/usr/bin/nifind -p //groups/postgres | grep "gid:.[0-9]" | sed 's/.*: //' | sed 's/ //'`
-
-# Group Doesn't Exist, create it
-if ! test $PG_GID; then
+echo Checking for Postgres group...
+PG_GID=`/usr/bin/dscl . read /groups/postgres PrimaryGroupID | grep "PrimaryGroupID:.[0-9]" | sed 's/.*: //' | sed 's/ //'`
+if test $PG_GID; then
+ echo ...found Postgres with GID of $PG_GID
+else
+ echo ...Postgres group not found
+
# loop through the '400's' until we find an available gid
X=401
until test $PG_GID; do
- TEST_GID=`/usr/bin/nidump -r /groups / | grep $X `
- if ! test "$TEST_GID"; then
+ TEST_GID=`/usr/bin/dscl . search /groups PrimaryGroupID $X | grep $X `
+
+ if test $TEST_GID; then
+ echo ...Group ID $X is not available
+ else
+ echo ...Group ID $X is available,
PG_GID=$X
fi
X=`expr $X + 1`
done
+
+ sudo /usr/bin/dscl . -create /groups/postgres PrimaryGroupID $PG_GID
+ echo ...Group postgres created with GID $PG_GID
- sudo /usr/bin/niutil -create / /groups/postgres
- sudo /usr/bin/niutil -createprop / /groups/postgres gid $PG_GID
fi
-# Display the GID for user information
-echo Postgres Group ID: $PG_GID
-
-# Now that the group exists, create the user
-
-PG_UID=`/usr/bin/nifind -p //users/postgres | grep "^uid:.[0-9]" | sed 's/.*: //' | sed 's/ //'`
+echo Checking for Postgres user...
+PG_UID=`/usr/bin/dscl . -read /users/postgres | grep "^UniqueID:.[0-9]" | sed 's/.*: //' | sed 's/ //'`
+if test $PG_UID; then
+ echo ...found user postgres with UID of $PG_UID
+else
+ echo ...user postgres not found
-# User Doesn't Exist, create it
-if ! test $PG_UID; then
- # loop through the '400's' until we find an available uid (start with the GID)
- X=$PG_GID
+ # loop through the '400's' until we find an available gid
+ X=401
until test $PG_UID; do
- TEST_UID=`/usr/bin/nidump -r /users / | grep "\"uid\" \= \( \"$X\" \);" `
- if ! test "$TEST_UID"; then
+ TEST_UID=`/usr/bin/dscl . -search /users UniqueID $X | grep $X `
+
+ if test $TEST_UID; then
+ echo ...Unique ID $X is not available
+ else
+ echo ...Unique ID $X is available,
PG_UID=$X
fi
X=`expr $X + 1`
done
-
- sudo /usr/bin/niutil -create / /users/postgres
- sudo /usr/bin/niutil -createprop / /users/postgres gid $PG_GID
- sudo /usr/bin/niutil -createprop / /users/postgres uid $PG_UID
- sudo /usr/bin/niutil -createprop / /users/postgres home "/Library/PostgreSQL8"
+
+ sudo /usr/bin/dscl . -create /users/postgres UniqueID $PG_UID
+ sudo /usr/bin/dscl . -append /users/postgres PrimaryGroupID $PG_GID
+ sudo /usr/bin/dscl . -append /users/postgres UserShell /usr/bin/false
+ sudo /usr/bin/dscl . -append /users/postgres RealName "PostgreSQL Server"
+ sudo /usr/bin/dscl . -append /users/postgres NFSHomeDirectory /var/empty
+
+ echo ...User postgres created with UID $PG_UID
fi
-
-sudo /usr/bin/niutil -resync /
-
-# Display the GID for user information
-echo Postgres User ID: $PG_UID
-
+
echo The Postgres user is configured, but you should set a
echo password on the newly created account. \(sudo passwd postgres\)
@@ -65,6 +73,7 @@
if test ! -f /Library/Logs/PostgreSQL8.log; then
sudo ln -s /Library/PostgreSQL8/log/PostgreSQL8.log /Library/Logs/PostgreSQL8.log
fi
+
sudo chown -R root:admin /Library/PostgreSQL8
sudo chown -R root:admin /Applications/PostgreSQL
sudo chown -R postgres:admin /Library/PostgreSQL8/log
@@ -74,6 +83,8 @@
sudo mkdir /Library/PostgreSQL8/data
sudo chown -R postgres:postgres /Library/PostgreSQL8/data
su -m postgres -c '/Library/PostgreSQL8/bin/initdb -D /Library/PostgreSQL8/data'
+else
+ sudo chown -R postgres:postgres /Library/PostgreSQL8/data
fi
echo Permissions have been altered to allow the automated startup
Modified: trunk/Installers/PostgreSQL8/Resources/preflight
===================================================================
--- trunk/Installers/PostgreSQL8/Resources/preflight 2007-05-25 18:14:42 UTC (rev 168)
+++ trunk/Installers/PostgreSQL8/Resources/preflight 2007-10-02 19:46:55 UTC (rev 169)
@@ -2,7 +2,7 @@
# check to see if PostgreSQL is running.
-x=`ps -auxwc | grep postgres |grep postmaster | awk -F" " '{print $2}'`
+x=`ps -auxwc | grep '^postgres' |grep 'postgres$' | awk -F" " '{print $2}'`
if /bin/test -n "$x"
then
# call shutdown...
@@ -11,7 +11,7 @@
su -m postgres -c '/Library/PostgreSQL8/bin/pg_ctl stop -D /Library/PostgreSQL8/data'
fi
- x=`ps -aux | grep postgres | grep postmaster | awk -F" " '{print $2}'`
+ x=`ps -auxwc | grep '^postgres' |grep 'postgres$' | awk -F" " '{print $2}'`
if /bin/test "$x"
then
set $x
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <haw...@us...> - 2007-05-25 18:15:15
|
Revision: 168
http://pgsqlformac.svn.sourceforge.net/pgsqlformac/?rev=168&view=rev
Author: hawkmoon
Date: 2007-05-25 11:14:42 -0700 (Fri, 25 May 2007)
Log Message:
-----------
Replaced broken NIBs
Modified Paths:
--------------
trunk/ServiceManager/Service Manager.xcodeproj/project.pbxproj
Added Paths:
-----------
trunk/ServiceManager/English.lproj/MainMenu.nib/
trunk/ServiceManager/English.lproj/MainMenu.nib/classes.nib
trunk/ServiceManager/English.lproj/MainMenu.nib/info.nib
trunk/ServiceManager/English.lproj/MainMenu.nib/keyedobjects.nib
Added: trunk/ServiceManager/English.lproj/MainMenu.nib/classes.nib
===================================================================
--- trunk/ServiceManager/English.lproj/MainMenu.nib/classes.nib (rev 0)
+++ trunk/ServiceManager/English.lproj/MainMenu.nib/classes.nib 2007-05-25 18:14:42 UTC (rev 168)
@@ -0,0 +1,37 @@
+{
+ IBClasses = (
+ {CLASS = FirstResponder; LANGUAGE = ObjC; SUPERCLASS = NSObject; },
+ {
+ ACTIONS = {
+ onAddServer = id;
+ onAutoStartChange = id;
+ onRefresh = id;
+ onRestartService = id;
+ onStartService = id;
+ onStopService = id;
+ };
+ CLASS = SQLServiceManager;
+ LANGUAGE = ObjC;
+ OUTLETS = {
+ addServer = NSButton;
+ autostartOption = NSButton;
+ progress = NSProgressIndicator;
+ refresh = NSButton;
+ restartService = NSButton;
+ restartServiceLabel = NSTextField;
+ servers = NSPopUpButton;
+ serviceImage = NSImageView;
+ services = NSPopUpButton;
+ startService = NSButton;
+ startServiceLabel = NSTextField;
+ status = NSTextField;
+ stopService = NSButton;
+ stopServiceLabel = NSTextField;
+ window = NSWindow;
+ working = NSProgressIndicator;
+ };
+ SUPERCLASS = NSObject;
+ }
+ );
+ IBVersion = 1;
+}
\ No newline at end of file
Added: trunk/ServiceManager/English.lproj/MainMenu.nib/info.nib
===================================================================
--- trunk/ServiceManager/English.lproj/MainMenu.nib/info.nib (rev 0)
+++ trunk/ServiceManager/English.lproj/MainMenu.nib/info.nib 2007-05-25 18:14:42 UTC (rev 168)
@@ -0,0 +1,17 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
+<plist version="1.0">
+<dict>
+ <key>IBDocumentLocation</key>
+ <string>96 46 356 240 0 0 1440 878 </string>
+ <key>IBEditorPositions</key>
+ <dict>
+ <key>29</key>
+ <string>17 804 387 44 0 0 1440 878 </string>
+ </dict>
+ <key>IBFramework Version</key>
+ <string>364.0</string>
+ <key>IBSystem Version</key>
+ <string>7F44</string>
+</dict>
+</plist>
Added: trunk/ServiceManager/English.lproj/MainMenu.nib/keyedobjects.nib
===================================================================
(Binary files differ)
Property changes on: trunk/ServiceManager/English.lproj/MainMenu.nib/keyedobjects.nib
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Modified: trunk/ServiceManager/Service Manager.xcodeproj/project.pbxproj
===================================================================
--- trunk/ServiceManager/Service Manager.xcodeproj/project.pbxproj 2007-05-25 18:06:01 UTC (rev 167)
+++ trunk/ServiceManager/Service Manager.xcodeproj/project.pbxproj 2007-05-25 18:14:42 UTC (rev 168)
@@ -458,18 +458,30 @@
43015CA10BC12FE0006AFACA /* Development */ = {
isa = XCBuildConfiguration;
buildSettings = {
+ ARCHS = (
+ ppc,
+ i386,
+ );
};
name = Development;
};
43015CA20BC12FE0006AFACA /* Deployment */ = {
isa = XCBuildConfiguration;
buildSettings = {
+ ARCHS = (
+ ppc,
+ i386,
+ );
};
name = Deployment;
};
43015CA30BC12FE0006AFACA /* Default */ = {
isa = XCBuildConfiguration;
buildSettings = {
+ ARCHS = (
+ ppc,
+ i386,
+ );
};
name = Default;
};
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <haw...@us...> - 2007-05-25 18:06:00
|
Revision: 167
http://pgsqlformac.svn.sourceforge.net/pgsqlformac/?rev=167&view=rev
Author: hawkmoon
Date: 2007-05-25 11:06:01 -0700 (Fri, 25 May 2007)
Log Message:
-----------
Remvoed broken NIBs
Modified Paths:
--------------
trunk/ServiceManager/.DS_Store
trunk/ServiceManager/Service Manager.xcodeproj/project.pbxproj
Removed Paths:
-------------
trunk/ServiceManager/English.lproj/MainMenu.nib/
trunk/ServiceManager/English.lproj/MainMenu~.nib/
Modified: trunk/ServiceManager/.DS_Store
===================================================================
--- trunk/ServiceManager/.DS_Store 2007-05-25 18:01:38 UTC (rev 166)
+++ trunk/ServiceManager/.DS_Store 2007-05-25 18:06:01 UTC (rev 167)
@@ -1,4 +1 @@
- |
|
From: <haw...@us...> - 2007-05-25 17:53:09
|
Revision: 165
http://pgsqlformac.svn.sourceforge.net/pgsqlformac/?rev=165&view=rev
Author: hawkmoon
Date: 2007-05-25 10:53:07 -0700 (Fri, 25 May 2007)
Log Message:
-----------
fixed script path issues
Modified Paths:
--------------
trunk/BuildScripts/Build-Installers.sh
Modified: trunk/BuildScripts/Build-Installers.sh
===================================================================
--- trunk/BuildScripts/Build-Installers.sh 2007-04-18 19:04:19 UTC (rev 164)
+++ trunk/BuildScripts/Build-Installers.sh 2007-05-25 17:53:07 UTC (rev 165)
@@ -33,19 +33,20 @@
fi
mkdir -p $BASEPATH/temp/Files/Library/PostgreSQL8/bin
-cp -r /Library/PostgreSQL8/bin/* $BASEPATH/temp/Files/Library/PostgreSQL8/bin
+cp -r ~/Desktop/Workflow\ Support/PostgreSQL8/Universal/Library/PostgreSQL8/bin/* $BASEPATH/temp/Files/Library/PostgreSQL8/bin
mkdir -p $BASEPATH/temp/Files/Library/PostgreSQL8/doc
-cp -r /Library/PostgreSQL8/doc/* $BASEPATH/temp/Files/Library/PostgreSQL8/doc
+cp -r ~/Desktop/Workflow\ Support/PostgreSQL8/Universal/Library/PostgreSQL8/doc/* $BASEPATH/temp/Files/Library/PostgreSQL8/doc
mkdir -p $BASEPATH/temp/Files/Library/PostgreSQL8/include
-cp -r /Library/PostgreSQL8/include/* $BASEPATH/temp/Files/Library/PostgreSQL8/include
+cp -r ~/Desktop/Workflow\ Support/PostgreSQL8/Universal/Library/PostgreSQL8/include/* $BASEPATH/temp/Files/Library/PostgreSQL8/include
mkdir -p $BASEPATH/temp/Files/Library/PostgreSQL8/man
-cp -r /Library/PostgreSQL8/man/* $BASEPATH/temp/Files/Library/PostgreSQL8/man
+cp -r ~/Desktop/Workflow\ Support/PostgreSQL8/Universal/Library/PostgreSQL8/man/* $BASEPATH/temp/Files/Library/PostgreSQL8/man
mkdir -p $BASEPATH/temp/Files/Library/PostgreSQL8/share
-cp -r /Library/PostgreSQL8/share/* $BASEPATH/temp/Files/Library/PostgreSQL8/share
+cp -r ~/Desktop/Workflow\ Support/PostgreSQL8/Universal/Library/PostgreSQL8/share/* $BASEPATH/temp/Files/Library/PostgreSQL8/share
mkdir -p $BASEPATH/temp/Files/Library/PostgreSQL8/lib
-cp -r /Library/PostgreSQL8/lib/* $BASEPATH/temp/Files/Library/PostgreSQL8/lib
+cp -r ~/Desktop/Workflow\ Support/PostgreSQL8/Universal/Library/PostgreSQL8/lib/* $BASEPATH/temp/Files/Library/PostgreSQL8/lib
mkdir -p $BASEPATH/temp/Files/Applications/PostgreSQL
cp -r $BASEPATH/ServiceManager/build/Deployment/Service\ Manager.app $BASEPATH/temp/Files/Applications/PostgreSQL
+cp -r $BASEPATH/Backup\ Database/build/Release/Backup\ Database.app $BASEPATH/temp/Files/Applications/PostgreSQL
cp -r $BASEPATH/BuildScripts/Clean-Installation.sh $BASEPATH/temp/Files/Applications/PostgreSQL/Uninstall-PostgreSQL.sh
find $BASEPATH/temp/ -name ".DS_Store" -exec rm -f {} \;
@@ -54,7 +55,12 @@
chown -R root:admin $BASEPATH/temp/Files/*
# build the .pkg
-/Developer/Applications/Utilities/PackageMaker.app/Contents/MacOS/PackageMaker -build -p $BASEPATH/dist/PostgreSQL/packages/PostgreSQL8.pkg -f $BASEPATH/temp/Files -r $BASEPATH/Installers/PostgreSQL8/Resources -d $BASEPATH/Installers/PostgreSQL8/Description.plist -i $BASEPATH/Installers/PostgreSQL8/Info.plist
+/Developer/Applications/Utilities/PackageMaker.app/Contents/MacOS/PackageMaker \
+ -build -p $BASEPATH/dist/PostgreSQL/packages/PostgreSQL8.pkg \
+ -f $BASEPATH/temp/Files \
+ -r $BASEPATH/Installers/PostgreSQL8/Resources \
+ -d $BASEPATH/Installers/PostgreSQL8/Description.plist \
+ -i $BASEPATH/Installers/PostgreSQL8/Info.plist
# clean up after ourselves
rm -rf $BASEPATH/temp/Files/*
@@ -81,54 +87,67 @@
chown -R root:wheel $BASEPATH/Installers/StartupItem/Files/*
# build the .pkg
-/Developer/Applications/Utilities/PackageMaker.app/Contents/MacOS/PackageMaker -build -p $BASEPATH/dist/PostgreSQL/packages/Postgres\ Startup\ Item.pkg -f $BASEPATH/temp/Files -r $BASEPATH/temp/Resources -d $BASEPATH/Installers/StartupItem/Description.plist -i $BASEPATH/Installers/StartupItem/Info.plist
+/Developer/Applications/Utilities/PackageMaker.app/Contents/MacOS/PackageMaker \
+ -build -p $BASEPATH/dist/PostgreSQL/packages/Postgres\ Startup\ Item.pkg \
+ -f $BASEPATH/temp/Files \
+ -r $BASEPATH/temp/Resources \
+ -d $BASEPATH/Installers/StartupItem/Description.plist \
+ -i $BASEPATH/Installers/StartupItem/Info.plist
# clean up after ourselves
rm -rf $BASEPATH/temp
-# ************************************************************** JDBC Driver.pkg
+# ************************************************************* Client tools.pkg
# copy the files into the temp storage.
+mkdir -p $BASEPATH/temp/Files/Applications/PostgreSQL
-mkdir -p $BASEPATH/temp/Files/Library/Java/Extensions
-cp $BASEPATH/Installers/JDBC/Files/Library/Java/Extensions/*.jar $BASEPATH/temp/Files/Library/Java/Extensions
+cp -r $BASEPATH/CreateDatabase/build/Deployment/Create\ Database.app $BASEPATH/temp/Files/Applications/PostgreSQL
+cp -r $BASEPATH/CreateUser/build/Deployment/Create\ User.app $BASEPATH/temp/Files/Applications/PostgreSQL
+cp -r $BASEPATH/QueryTool/build/Deployment/Query\ Tool\ for\ Postgres.app $BASEPATH/temp/Files/Applications/PostgreSQL
-mkdir -p $BASEPATH/temp/Resources
-cp $BASEPATH/Installers/JDBC/Resources/*.rtf $BASEPATH/temp/Resources
-cp $BASEPATH/Installers/JDBC/Resources/background.tif $BASEPATH/temp/Resources
+sudo find $BASEPATH/temp/ -name ".DS_Store" -exec rm -f {} \;
-sudo find $BASEPATH/Installers/StartupItem/ -name ".DS_Store" -exec rm -f {} \;
-
# fix permissions so that they get installed correctly.
chown -R root:admin $BASEPATH/temp/Files/*
# build the .pkg
-/Developer/Applications/Utilities/PackageMaker.app/Contents/MacOS/PackageMaker -build -p $BASEPATH/dist/PostgreSQL/packages/Postgres\ JDBC.pkg -f $BASEPATH/temp/Files -r $BASEPATH/temp/Resources -d $BASEPATH/Installers/JDBC/Description.plist -i $BASEPATH/Installers/JDBC/Info.plist
+/Developer/Applications/Utilities/PackageMaker.app/Contents/MacOS/PackageMaker -build \
+ -p $BASEPATH/dist/PostgreSQL/packages/Client\ Tools.pkg \
+ -f $BASEPATH/temp/Files \
+ -r $BASEPATH/Installers/ClientTools/Resources \
+ -d $BASEPATH/Installers/ClientTools/Description.plist \
+ -i $BASEPATH/Installers/ClientTools/Info.plist
# clean up after ourselves
rm -rf $BASEPATH/temp
-# ************************************************************** ODBC Driver.pkg
-# ************************************************************* Client tools.pkg
+exit
+# ************************************************************** JDBC Driver.pkg
+
# copy the files into the temp storage.
-mkdir -p $BASEPATH/temp/Files/Applications/PostgreSQL
-cp -r $BASEPATH/CreateDatabase/build/Deployment/Create\ Database.app $BASEPATH/temp/Files/Applications/PostgreSQL
-cp -r $BASEPATH/CreateUser/build/Deployment/Create\ User.app $BASEPATH/temp/Files/Applications/PostgreSQL
-cp -r $BASEPATH/QueryTool/build/Deployment/Query\ Tool\ for\ Postgres.app $BASEPATH/temp/Files/Applications/PostgreSQL
+mkdir -p $BASEPATH/temp/Files/Library/Java/Extensions
+cp $BASEPATH/Installers/JDBC/Files/Library/Java/Extensions/*.jar $BASEPATH/temp/Files/Library/Java/Extensions
-sudo find $BASEPATH/temp/ -name ".DS_Store" -exec rm -f {} \;
+mkdir -p $BASEPATH/temp/Resources
+cp $BASEPATH/Installers/JDBC/Resources/*.rtf $BASEPATH/temp/Resources
+cp $BASEPATH/Installers/JDBC/Resources/background.tif $BASEPATH/temp/Resources
+sudo find $BASEPATH/Installers/StartupItem/ -name ".DS_Store" -exec rm -f {} \;
+
# fix permissions so that they get installed correctly.
chown -R root:admin $BASEPATH/temp/Files/*
# build the .pkg
-/Developer/Applications/Utilities/PackageMaker.app/Contents/MacOS/PackageMaker -build -p $BASEPATH/dist/PostgreSQL/packages/Client\ Tools.pkg -f $BASEPATH/temp/Files -r $BASEPATH/Installers/ClientTools/Resources -d $BASEPATH/Installers/ClientTools/Description.plist -i $BASEPATH/Installers/ClientTools/Info.plist
+/Developer/Applications/Utilities/PackageMaker.app/Contents/MacOS/PackageMaker -build -p $BASEPATH/dist/PostgreSQL/packages/Postgres\ JDBC.pkg -f $BASEPATH/temp/Files -r $BASEPATH/temp/Resources -d $BASEPATH/Installers/JDBC/Description.plist -i $BASEPATH/Installers/JDBC/Info.plist
# clean up after ourselves
rm -rf $BASEPATH/temp
+# ************************************************************** ODBC Driver.pkg
+
# ************************************************************** Admin Tools.pkg
# PGAdmin III
@@ -137,38 +156,38 @@
# ********************************************************** Migration Tools.pkg
# *************************************************************** SQL-Ledger.pkg
-mkdir -p $BASEPATH/temp/Files/Applications/SQL-Ledger
-mkdir -p $BASEPATH/temp/Files/Library/Perl/5.8.1/darwin-thread-multi-2level
-mkdir -p $BASEPATH/temp/Files/Library/WebServer/Documents/sql-ledger
-mkdir -p $BASEPATH/temp/Files/private/etc/httpd/users
-mkdir -p $BASEPATH/temp/Files/usr/bin
+#mkdir -p $BASEPATH/temp/Files/Applications/SQL-Ledger
+#mkdir -p $BASEPATH/temp/Files/Library/Perl/5.8.1/darwin-thread-multi-2level
+#mkdir -p $BASEPATH/temp/Files/Library/WebServer/Documents/sql-ledger
+#mkdir -p $BASEPATH/temp/Files/private/etc/httpd/users
+#mkdir -p $BASEPATH/temp/Files/usr/bin
-cp -r $BASEPATH/Installers/SQL-Ledger/Files/Applications/SQL-Ledger.scpt $BASEPATH/temp/Files/Applications/SQL-Ledger
-cp -r $BASEPATH/Installers/SQL-Ledger/Files/Applications/SQL-Ledger\ Admin.scpt $BASEPATH/temp/Files/Applications/SQL-Ledger
-cp -r $BASEPATH/Installers/SQL-Ledger/Files/Library/Perl/5.8.1/darwin-thread-multi-2level/* $BASEPATH/temp/Files/Library/Perl/5.8.1/darwin-thread-multi-2level
-cp -r $BASEPATH/Installers/SQL-Ledger/Files/private/etc/httpd/users/sql-ledger.conf $BASEPATH/temp/Files/private/etc/httpd/users
-cp -r $BASEPATH/Installers/SQL-Ledger/Files/usr/bin/dbiproxy $BASEPATH/temp/Files/usr/bin
-cp -r $BASEPATH/Installers/SQL-Ledger/Files/usr/bin/dbish $BASEPATH/temp/Files/usr/bin
+#cp -r $BASEPATH/Installers/SQL-Ledger/Files/Applications/SQL-Ledger.scpt $BASEPATH/temp/Files/Applications/SQL-Ledger
+#cp -r $BASEPATH/Installers/SQL-Ledger/Files/Applications/SQL-Ledger\ Admin.scpt $BASEPATH/temp/Files/Applications/SQL-Ledger
+#cp -r $BASEPATH/Installers/SQL-Ledger/Files/Library/Perl/5.8.1/darwin-thread-multi-2level/* $BASEPATH/temp/Files/Library/Perl/5.8.1/darwin-thread-multi-2level
+#cp -r $BASEPATH/Installers/SQL-Ledger/Files/private/etc/httpd/users/sql-ledger.conf $BASEPATH/temp/Files/private/etc/httpd/users
+#cp -r $BASEPATH/Installers/SQL-Ledger/Files/usr/bin/dbiproxy $BASEPATH/temp/Files/usr/bin
+#cp -r $BASEPATH/Installers/SQL-Ledger/Files/usr/bin/dbish $BASEPATH/temp/Files/usr/bin
-cd $BASEPATH/temp/Files/Library/WebServer/Documents/
-curl -O http://www.sql-ledger.com/source/sql-ledger-2.4.11.tar.gz
-cd $BASEPATH
+#cd $BASEPATH/temp/Files/Library/WebServer/Documents/
+#curl -O http://www.sql-ledger.com/source/sql-ledger-2.4.11.tar.gz
+#cd $BASEPATH
-sudo find $BASEPATH/temp -name ".DS_Store" -exec rm -f {} \;
+#sudo find $BASEPATH/temp -name ".DS_Store" -exec rm -f {} \;
# fix permissions so that they get installed correctly.
-chown -R root:admin $BASEPATH/temp/*
+#chown -R root:admin $BASEPATH/temp/*
-mkdir -p $BASEPATH/dist/SQL-Ledger
+#mkdir -p $BASEPATH/dist/SQL-Ledger
-rm -rf $BASEPATH/dist/SQL-Ledger/packages
-cp -r $BASEPATH/dist/PostgreSQL/packages $BASEPATH/dist/SQL-Ledger/
+#rm -rf $BASEPATH/dist/SQL-Ledger/packages
+#cp -r $BASEPATH/dist/PostgreSQL/packages $BASEPATH/dist/SQL-Ledger/
# build the .pkg
-/Developer/Applications/Utilities/PackageMaker.app/Contents/MacOS/PackageMaker -build -p $BASEPATH/dist/SQL-Ledger/packages/SQL-Ledger.pkg -f $BASEPATH/temp/Files -r $BASEPATH/Installers/SQL-Ledger/Resources -d $BASEPATH/Installers/SQL-Ledger/Description.plist -i $BASEPATH/Installers/SQL-Ledger/Info.plist
+#/Developer/Applications/Utilities/PackageMaker.app/Contents/MacOS/PackageMaker -build -p $BASEPATH/dist/SQL-Ledger/packages/SQL-Ledger.pkg -f $BASEPATH/temp/Files -r $BASEPATH/Installers/SQL-Ledger/Resources -d $BASEPATH/Installers/SQL-Ledger/Description.plist -i $BASEPATH/Installers/SQL-Ledger/Info.plist
# clean up after ourselves
-rm -rf $BASEPATH/temp
+#rm -rf $BASEPATH/temp
# ************************************************************** pgAdmin/III.pkg
@@ -183,7 +202,7 @@
# ************************************************* SQL-Ledger Meta Package.mpkg
# build the .pkg
-mkdir -p $BASEPATH/temp
+#mkdir -p $BASEPATH/temp
-/Developer/Applications/Utilities/PackageMaker.app/Contents/MacOS/PackageMaker -build -p $BASEPATH/dist/SQL-Ledger/SQL-Ledger.mpkg -f $BASEPATH/temp -r $BASEPATH/Installers/SQL-LedgerMP/Resources -d $BASEPATH/Installers/SQL-LedgerMP/Description.plist -i $BASEPATH/Installers/SQL-LedgerMP/Info.plist
+#/Developer/Applications/Utilities/PackageMaker.app/Contents/MacOS/PackageMaker -build -p $BASEPATH/dist/SQL-Ledger/SQL-Ledger.mpkg -f $BASEPATH/temp -r $BASEPATH/Installers/SQL-LedgerMP/Resources -d $BASEPATH/Installers/SQL-LedgerMP/Description.plist -i $BASEPATH/Installers/SQL-LedgerMP/Info.plist
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <haw...@us...> - 2007-04-18 19:04:44
|
Revision: 164
http://pgsqlformac.svn.sourceforge.net/pgsqlformac/?rev=164&view=rev
Author: hawkmoon
Date: 2007-04-18 12:04:19 -0700 (Wed, 18 Apr 2007)
Log Message:
-----------
Adjusted Visual ques, and imports to address changes in the framework.
Modified Paths:
--------------
trunk/QueryTool/English.lproj/Preferences.nib/info.nib
trunk/QueryTool/English.lproj/Preferences.nib/keyedobjects.nib
trunk/QueryTool/English.lproj/SqlDocument.nib/keyedobjects.nib
trunk/QueryTool/ExecuteQueryThread.h
trunk/QueryTool/MyOutlineView.h
trunk/QueryTool/Query Tool for Postgres.xcodeproj/project.pbxproj
trunk/QueryTool/SqlDocument.h
trunk/QueryTool/SqlDocument.m
Modified: trunk/QueryTool/English.lproj/Preferences.nib/info.nib
===================================================================
--- trunk/QueryTool/English.lproj/Preferences.nib/info.nib 2007-04-18 18:37:22 UTC (rev 163)
+++ trunk/QueryTool/English.lproj/Preferences.nib/info.nib 2007-04-18 19:04:19 UTC (rev 164)
@@ -11,6 +11,6 @@
<integer>5</integer>
</array>
<key>IBSystem Version</key>
- <string>8L127</string>
+ <string>8P2137</string>
</dict>
</plist>
Modified: trunk/QueryTool/English.lproj/Preferences.nib/keyedobjects.nib
===================================================================
(Binary files differ)
Modified: trunk/QueryTool/English.lproj/SqlDocument.nib/keyedobjects.nib
===================================================================
(Binary files differ)
Modified: trunk/QueryTool/ExecuteQueryThread.h
===================================================================
--- trunk/QueryTool/ExecuteQueryThread.h 2007-04-18 18:37:22 UTC (rev 163)
+++ trunk/QueryTool/ExecuteQueryThread.h 2007-04-18 19:04:19 UTC (rev 164)
@@ -7,8 +7,7 @@
//
#import <Cocoa/Cocoa.h>
-#import "Connection.h"
-#import "RecordSet.h"
+#import <pgCocoaDB/PGCocoaDB.h>
enum QueryToolQueryStatus { QueryNoStatus, QueryRunning, QueryCompleted, QueryError };
enum QueryToolConnectionStatus { ConnNoStatus, Connected, ConnError };
Modified: trunk/QueryTool/MyOutlineView.h
===================================================================
--- trunk/QueryTool/MyOutlineView.h 2007-04-18 18:37:22 UTC (rev 163)
+++ trunk/QueryTool/MyOutlineView.h 2007-04-18 19:04:19 UTC (rev 164)
@@ -1,7 +1,7 @@
/* MyOutlineView */
#import <Cocoa/Cocoa.h>
-#import "ExplorerNode.h"
+#import <pgCocoaDB/ExplorerModel.h>
#import "QueryTool.h"
@interface MyOutlineView : NSOutlineView
Modified: trunk/QueryTool/Query Tool for Postgres.xcodeproj/project.pbxproj
===================================================================
--- trunk/QueryTool/Query Tool for Postgres.xcodeproj/project.pbxproj 2007-04-18 18:37:22 UTC (rev 163)
+++ trunk/QueryTool/Query Tool for Postgres.xcodeproj/project.pbxproj 2007-04-18 19:04:19 UTC (rev 164)
@@ -7,6 +7,7 @@
objects = {
/* Begin PBXBuildFile section */
+ 431F1BE10BB1721B00701090 /* SqlDocument.nib in Resources */ = {isa = PBXBuildFile; fileRef = 431F1BDB0BB1721B00701090 /* SqlDocument.nib */; };
4327F01807CEB4AA00AB5CFE /* Help in Resources */ = {isa = PBXBuildFile; fileRef = 4327F01607CEB4AA00AB5CFE /* Help */; };
4327F0B507CEBD0000AB5CFE /* about_32.png in Resources */ = {isa = PBXBuildFile; fileRef = 4327F0A307CEBD0000AB5CFE /* about_32.png */; };
4327F0B607CEBD0000AB5CFE /* connect_32.png in Resources */ = {isa = PBXBuildFile; fileRef = 4327F0A407CEBD0000AB5CFE /* connect_32.png */; };
@@ -26,51 +27,35 @@
4327F0C407CEBD0000AB5CFE /* save_32.png in Resources */ = {isa = PBXBuildFile; fileRef = 4327F0B207CEBD0000AB5CFE /* save_32.png */; };
4327F0C507CEBD0000AB5CFE /* sql-doc.icns in Resources */ = {isa = PBXBuildFile; fileRef = 4327F0B307CEBD0000AB5CFE /* sql-doc.icns */; };
4327F0C607CEBD0000AB5CFE /* sql-doc.png in Resources */ = {isa = PBXBuildFile; fileRef = 4327F0B407CEBD0000AB5CFE /* sql-doc.png */; };
- 4350CCBD0665349000244060 /* DataSource.h in Headers */ = {isa = PBXBuildFile; fileRef = 4350CCB90665349000244060 /* DataSource.h */; };
- 4350CCBE0665349000244060 /* DataSource.m in Sources */ = {isa = PBXBuildFile; fileRef = 4350CCBA0665349000244060 /* DataSource.m */; };
4350CCBF0665349000244060 /* SqlDocument.h in Headers */ = {isa = PBXBuildFile; fileRef = 4350CCBB0665349000244060 /* SqlDocument.h */; };
4350CCC00665349000244060 /* SqlDocument.m in Sources */ = {isa = PBXBuildFile; fileRef = 4350CCBC0665349000244060 /* SqlDocument.m */; };
- 4350CCCE0665350000244060 /* SqlDocument.nib in Resources */ = {isa = PBXBuildFile; fileRef = 4350CCCC0665350000244060 /* SqlDocument.nib */; };
4350CD2E0665399300244060 /* SqlMenuCategory.h in Headers */ = {isa = PBXBuildFile; fileRef = 4350CD2C0665399300244060 /* SqlMenuCategory.h */; };
4350CD2F0665399300244060 /* SqlMenuCategory.m in Sources */ = {isa = PBXBuildFile; fileRef = 4350CD2D0665399300244060 /* SqlMenuCategory.m */; };
4350CE0A066540D500244060 /* SqlToolbarCategory.h in Headers */ = {isa = PBXBuildFile; fileRef = 4350CE08066540D500244060 /* SqlToolbarCategory.h */; };
4350CE0B066540D500244060 /* SqlToolbarCategory.m in Sources */ = {isa = PBXBuildFile; fileRef = 4350CE09066540D500244060 /* SqlToolbarCategory.m */; };
- 439FF4FD093FFDB3003D928C /* pgCocoaDB.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 439FF4F3093FFDB3003D928C /* pgCocoaDB.framework */; };
- 439FF50D093FFDDD003D928C /* pgCocoaDB.framework in CopyFiles */ = {isa = PBXBuildFile; fileRef = 439FF4F3093FFDB3003D928C /* pgCocoaDB.framework */; };
+ 438CC5480BADD1DF00C69C7C /* AppController.h in Headers */ = {isa = PBXBuildFile; fileRef = 438CC53B0BADD1DF00C69C7C /* AppController.h */; };
+ 438CC5490BADD1DF00C69C7C /* AppController.m in Sources */ = {isa = PBXBuildFile; fileRef = 438CC53C0BADD1DF00C69C7C /* AppController.m */; };
+ 438CC54A0BADD1DF00C69C7C /* cancel_script_32.png in Resources */ = {isa = PBXBuildFile; fileRef = 438CC53D0BADD1DF00C69C7C /* cancel_script_32.png */; };
+ 438CC54B0BADD1DF00C69C7C /* ExecuteQueryThread.h in Headers */ = {isa = PBXBuildFile; fileRef = 438CC53E0BADD1DF00C69C7C /* ExecuteQueryThread.h */; };
+ 438CC54C0BADD1DF00C69C7C /* ExecuteQueryThread.m in Sources */ = {isa = PBXBuildFile; fileRef = 438CC53F0BADD1DF00C69C7C /* ExecuteQueryThread.m */; };
+ 438CC54D0BADD1DF00C69C7C /* MyOutlineView.h in Headers */ = {isa = PBXBuildFile; fileRef = 438CC5400BADD1DF00C69C7C /* MyOutlineView.h */; };
+ 438CC54E0BADD1DF00C69C7C /* MyOutlineView.m in Sources */ = {isa = PBXBuildFile; fileRef = 438CC5410BADD1DF00C69C7C /* MyOutlineView.m */; };
+ 438CC54F0BADD1DF00C69C7C /* MyResultsView.h in Headers */ = {isa = PBXBuildFile; fileRef = 438CC5420BADD1DF00C69C7C /* MyResultsView.h */; };
+ 438CC5500BADD1DF00C69C7C /* MyResultsView.m in Sources */ = {isa = PBXBuildFile; fileRef = 438CC5430BADD1DF00C69C7C /* MyResultsView.m */; };
+ 438CC5510BADD1DF00C69C7C /* PreferenceController.h in Headers */ = {isa = PBXBuildFile; fileRef = 438CC5440BADD1DF00C69C7C /* PreferenceController.h */; };
+ 438CC5520BADD1DF00C69C7C /* PreferenceController.m in Sources */ = {isa = PBXBuildFile; fileRef = 438CC5450BADD1DF00C69C7C /* PreferenceController.m */; };
+ 438CC5530BADD1DF00C69C7C /* QueryDataSource.h in Headers */ = {isa = PBXBuildFile; fileRef = 438CC5460BADD1DF00C69C7C /* QueryDataSource.h */; };
+ 438CC5540BADD1DF00C69C7C /* QueryDataSource.m in Sources */ = {isa = PBXBuildFile; fileRef = 438CC5470BADD1DF00C69C7C /* QueryDataSource.m */; };
+ 438CC6150BADD3B600C69C7C /* Preferences.nib in Resources */ = {isa = PBXBuildFile; fileRef = 438CC60F0BADD3B600C69C7C /* Preferences.nib */; };
+ 438CC61E0BADD40300C69C7C /* MainMenu.nib in Resources */ = {isa = PBXBuildFile; fileRef = 438CC6180BADD40300C69C7C /* MainMenu.nib */; };
+ 43CC25B90BD6830400C21D32 /* pgCocoaDB.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 43CC25AD0BD6830400C21D32 /* pgCocoaDB.framework */; };
8D15AC290486D014006FF6A4 /* Query Tool for Postgres_Prefix.pch in Headers */ = {isa = PBXBuildFile; fileRef = 32DBCF750370BD2300C91783 /* Query Tool for Postgres_Prefix.pch */; };
8D15AC2C0486D014006FF6A4 /* Credits.rtf in Resources */ = {isa = PBXBuildFile; fileRef = 2A37F4B9FDCFA73011CA2CEA /* Credits.rtf */; };
- 8D15AC2D0486D014006FF6A4 /* MainMenu.nib in Resources */ = {isa = PBXBuildFile; fileRef = 2A37F4B6FDCFA73011CA2CEA /* MainMenu.nib */; };
8D15AC2F0486D014006FF6A4 /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = 089C165FFE840EACC02AAC07 /* InfoPlist.strings */; };
8D15AC320486D014006FF6A4 /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 2A37F4B0FDCFA73011CA2CEA /* main.m */; settings = {ATTRIBUTES = (); }; };
8D15AC340486D014006FF6A4 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1058C7A7FEA54F5311CA2CBB /* Cocoa.framework */; };
/* End PBXBuildFile section */
-/* Begin PBXBuildStyle section */
- 4A9504D0FFE6A4CB11CA0CBA /* Development */ = {
- isa = PBXBuildStyle;
- buildSettings = {
- COPY_PHASE_STRIP = NO;
- DEBUGGING_SYMBOLS = YES;
- GCC_DYNAMIC_NO_PIC = NO;
- GCC_ENABLE_FIX_AND_CONTINUE = YES;
- GCC_GENERATE_DEBUGGING_SYMBOLS = YES;
- GCC_OPTIMIZATION_LEVEL = 0;
- OPTIMIZATION_CFLAGS = "-O0";
- ZERO_LINK = YES;
- };
- name = Development;
- };
- 4A9504D1FFE6A4CB11CA0CBA /* Deployment */ = {
- isa = PBXBuildStyle;
- buildSettings = {
- COPY_PHASE_STRIP = YES;
- GCC_ENABLE_FIX_AND_CONTINUE = NO;
- ZERO_LINK = NO;
- };
- name = Deployment;
- };
-/* End PBXBuildStyle section */
-
/* Begin PBXContainerItemProxy section */
437FBB74094CD567007D4278 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
@@ -95,7 +80,6 @@
dstPath = "";
dstSubfolderSpec = 10;
files = (
- 439FF50D093FFDDD003D928C /* pgCocoaDB.framework in CopyFiles */,
);
runOnlyForDeploymentPostprocessing = 0;
};
@@ -105,11 +89,11 @@
089C1660FE840EACC02AAC07 /* English */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = English; path = English.lproj/InfoPlist.strings; sourceTree = "<group>"; };
1058C7A7FEA54F5311CA2CBB /* Cocoa.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Cocoa.framework; path = /System/Library/Frameworks/Cocoa.framework; sourceTree = "<absolute>"; };
2A37F4B0FDCFA73011CA2CEA /* main.m */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.objc; path = main.m; sourceTree = "<group>"; };
- 2A37F4B7FDCFA73011CA2CEA /* English */ = {isa = PBXFileReference; lastKnownFileType = wrapper.nib; name = English; path = English.lproj/MainMenu.nib; sourceTree = "<group>"; };
2A37F4BAFDCFA73011CA2CEA /* English */ = {isa = PBXFileReference; lastKnownFileType = text.rtf; name = English; path = English.lproj/Credits.rtf; sourceTree = "<group>"; };
2A37F4C4FDCFA73011CA2CEA /* AppKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AppKit.framework; path = /System/Library/Frameworks/AppKit.framework; sourceTree = "<absolute>"; };
2A37F4C5FDCFA73011CA2CEA /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = /System/Library/Frameworks/Foundation.framework; sourceTree = "<absolute>"; };
32DBCF750370BD2300C91783 /* Query Tool for Postgres_Prefix.pch */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "Query Tool for Postgres_Prefix.pch"; sourceTree = "<group>"; };
+ 431F1BDC0BB1721B00701090 /* English */ = {isa = PBXFileReference; lastKnownFileType = wrapper.nib; name = English; path = English.lproj/SqlDocument.nib; sourceTree = "<group>"; };
4327F01607CEB4AA00AB5CFE /* Help */ = {isa = PBXFileReference; lastKnownFileType = folder; path = Help; sourceTree = "<group>"; };
4327F0A307CEBD0000AB5CFE /* about_32.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = about_32.png; sourceTree = "<group>"; };
4327F0A407CEBD0000AB5CFE /* connect_32.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = connect_32.png; sourceTree = "<group>"; };
@@ -129,17 +113,29 @@
4327F0B207CEBD0000AB5CFE /* save_32.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = save_32.png; sourceTree = "<group>"; };
4327F0B307CEBD0000AB5CFE /* sql-doc.icns */ = {isa = PBXFileReference; lastKnownFileType = image.icns; path = "sql-doc.icns"; sourceTree = "<group>"; };
4327F0B407CEBD0000AB5CFE /* sql-doc.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "sql-doc.png"; sourceTree = "<group>"; };
- 4350CCB90665349000244060 /* DataSource.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = DataSource.h; sourceTree = "<group>"; };
- 4350CCBA0665349000244060 /* DataSource.m */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.objc; path = DataSource.m; sourceTree = "<group>"; };
4350CCBB0665349000244060 /* SqlDocument.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = SqlDocument.h; sourceTree = "<group>"; };
4350CCBC0665349000244060 /* SqlDocument.m */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.objc; path = SqlDocument.m; sourceTree = "<group>"; };
- 4350CCCD0665350000244060 /* English */ = {isa = PBXFileReference; lastKnownFileType = wrapper.nib; name = English; path = English.lproj/SqlDocument.nib; sourceTree = "<group>"; };
4350CD2C0665399300244060 /* SqlMenuCategory.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SqlMenuCategory.h; sourceTree = "<group>"; };
4350CD2D0665399300244060 /* SqlMenuCategory.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SqlMenuCategory.m; sourceTree = "<group>"; };
4350CE08066540D500244060 /* SqlToolbarCategory.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SqlToolbarCategory.h; sourceTree = "<group>"; };
4350CE09066540D500244060 /* SqlToolbarCategory.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SqlToolbarCategory.m; sourceTree = "<group>"; };
+ 438CC53B0BADD1DF00C69C7C /* AppController.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = AppController.h; sourceTree = "<group>"; };
+ 438CC53C0BADD1DF00C69C7C /* AppController.m */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.objc; path = AppController.m; sourceTree = "<group>"; };
+ 438CC53D0BADD1DF00C69C7C /* cancel_script_32.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = cancel_script_32.png; sourceTree = "<group>"; };
+ 438CC53E0BADD1DF00C69C7C /* ExecuteQueryThread.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = ExecuteQueryThread.h; sourceTree = "<group>"; };
+ 438CC53F0BADD1DF00C69C7C /* ExecuteQueryThread.m */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.objc; path = ExecuteQueryThread.m; sourceTree = "<group>"; };
+ 438CC5400BADD1DF00C69C7C /* MyOutlineView.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = MyOutlineView.h; sourceTree = "<group>"; };
+ 438CC5410BADD1DF00C69C7C /* MyOutlineView.m */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.objc; path = MyOutlineView.m; sourceTree = "<group>"; };
+ 438CC5420BADD1DF00C69C7C /* MyResultsView.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = MyResultsView.h; sourceTree = "<group>"; };
+ 438CC5430BADD1DF00C69C7C /* MyResultsView.m */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.objc; path = MyResultsView.m; sourceTree = "<group>"; };
+ 438CC5440BADD1DF00C69C7C /* PreferenceController.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = PreferenceController.h; sourceTree = "<group>"; };
+ 438CC5450BADD1DF00C69C7C /* PreferenceController.m */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.objc; path = PreferenceController.m; sourceTree = "<group>"; };
+ 438CC5460BADD1DF00C69C7C /* QueryDataSource.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = QueryDataSource.h; sourceTree = "<group>"; };
+ 438CC5470BADD1DF00C69C7C /* QueryDataSource.m */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.objc; path = QueryDataSource.m; sourceTree = "<group>"; };
+ 438CC6100BADD3B600C69C7C /* English */ = {isa = PBXFileReference; lastKnownFileType = wrapper.nib; name = English; path = English.lproj/Preferences.nib; sourceTree = "<group>"; };
+ 438CC6190BADD40300C69C7C /* English */ = {isa = PBXFileReference; lastKnownFileType = wrapper.nib; name = English; path = English.lproj/MainMenu.nib; sourceTree = "<group>"; };
439FF4EA093FFDA7003D928C /* pgCocoaDB.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = pgCocoaDB.xcodeproj; path = ../pgCocoaDB/pgCocoaDB.xcodeproj; sourceTree = SOURCE_ROOT; };
- 439FF4F3093FFDB3003D928C /* pgCocoaDB.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = pgCocoaDB.framework; path = ../pgCocoaDB/build/Deployment/pgCocoaDB.framework; sourceTree = SOURCE_ROOT; };
+ 43CC25AD0BD6830400C21D32 /* pgCocoaDB.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = pgCocoaDB.framework; path = /Library/Frameworks/pgCocoaDB.framework; sourceTree = "<absolute>"; };
8D15AC360486D014006FF6A4 /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist; path = Info.plist; sourceTree = "<group>"; };
8D15AC370486D014006FF6A4 /* Query Tool for Postgres.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = "Query Tool for Postgres.app"; sourceTree = BUILT_PRODUCTS_DIR; };
/* End PBXFileReference section */
@@ -150,7 +146,7 @@
buildActionMask = 2147483647;
files = (
8D15AC340486D014006FF6A4 /* Cocoa.framework in Frameworks */,
- 439FF4FD093FFDB3003D928C /* pgCocoaDB.framework in Frameworks */,
+ 43CC25B90BD6830400C21D32 /* pgCocoaDB.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
@@ -160,7 +156,7 @@
1058C7A6FEA54F5311CA2CBB /* Linked Frameworks */ = {
isa = PBXGroup;
children = (
- 439FF4F3093FFDB3003D928C /* pgCocoaDB.framework */,
+ 43CC25AD0BD6830400C21D32 /* pgCocoaDB.framework */,
1058C7A7FEA54F5311CA2CBB /* Cocoa.framework */,
);
name = "Linked Frameworks";
@@ -199,8 +195,18 @@
2A37F4ABFDCFA73011CA2CEA /* Classes */ = {
isa = PBXGroup;
children = (
- 4350CCB90665349000244060 /* DataSource.h */,
- 4350CCBA0665349000244060 /* DataSource.m */,
+ 438CC53B0BADD1DF00C69C7C /* AppController.h */,
+ 438CC53C0BADD1DF00C69C7C /* AppController.m */,
+ 438CC53E0BADD1DF00C69C7C /* ExecuteQueryThread.h */,
+ 438CC53F0BADD1DF00C69C7C /* ExecuteQueryThread.m */,
+ 438CC5400BADD1DF00C69C7C /* MyOutlineView.h */,
+ 438CC5410BADD1DF00C69C7C /* MyOutlineView.m */,
+ 438CC5420BADD1DF00C69C7C /* MyResultsView.h */,
+ 438CC5430BADD1DF00C69C7C /* MyResultsView.m */,
+ 438CC5440BADD1DF00C69C7C /* PreferenceController.h */,
+ 438CC5450BADD1DF00C69C7C /* PreferenceController.m */,
+ 438CC5460BADD1DF00C69C7C /* QueryDataSource.h */,
+ 438CC5470BADD1DF00C69C7C /* QueryDataSource.m */,
4350CCBB0665349000244060 /* SqlDocument.h */,
4350CCBC0665349000244060 /* SqlDocument.m */,
4350CD2C0665399300244060 /* SqlMenuCategory.h */,
@@ -223,6 +229,10 @@
2A37F4B8FDCFA73011CA2CEA /* Resources */ = {
isa = PBXGroup;
children = (
+ 431F1BDB0BB1721B00701090 /* SqlDocument.nib */,
+ 438CC6180BADD40300C69C7C /* MainMenu.nib */,
+ 438CC60F0BADD3B600C69C7C /* Preferences.nib */,
+ 438CC53D0BADD1DF00C69C7C /* cancel_script_32.png */,
4327F0A307CEBD0000AB5CFE /* about_32.png */,
4327F0A407CEBD0000AB5CFE /* connect_32.png */,
4327F0A507CEBD0000AB5CFE /* connect_dlg.png */,
@@ -243,8 +253,6 @@
4327F0B407CEBD0000AB5CFE /* sql-doc.png */,
4327F01607CEB4AA00AB5CFE /* Help */,
2A37F4B9FDCFA73011CA2CEA /* Credits.rtf */,
- 2A37F4B6FDCFA73011CA2CEA /* MainMenu.nib */,
- 4350CCCC0665350000244060 /* SqlDocument.nib */,
8D15AC360486D014006FF6A4 /* Info.plist */,
089C165FFE840EACC02AAC07 /* InfoPlist.strings */,
);
@@ -276,10 +284,15 @@
buildActionMask = 2147483647;
files = (
8D15AC290486D014006FF6A4 /* Query Tool for Postgres_Prefix.pch in Headers */,
- 4350CCBD0665349000244060 /* DataSource.h in Headers */,
4350CCBF0665349000244060 /* SqlDocument.h in Headers */,
4350CD2E0665399300244060 /* SqlMenuCategory.h in Headers */,
4350CE0A066540D500244060 /* SqlToolbarCategory.h in Headers */,
+ 438CC5480BADD1DF00C69C7C /* AppController.h in Headers */,
+ 438CC54B0BADD1DF00C69C7C /* ExecuteQueryThread.h in Headers */,
+ 438CC54D0BADD1DF00C69C7C /* MyOutlineView.h in Headers */,
+ 438CC54F0BADD1DF00C69C7C /* MyResultsView.h in Headers */,
+ 438CC5510BADD1DF00C69C7C /* PreferenceController.h in Headers */,
+ 438CC5530BADD1DF00C69C7C /* QueryDataSource.h in Headers */,
);
runOnlyForDeploymentPostprocessing = 0;
};
@@ -298,30 +311,6 @@
);
buildRules = (
);
- buildSettings = {
- FRAMEWORK_SEARCH_PATHS = ../pgCocoaDB/build;
- GCC_ENABLE_TRIGRAPHS = NO;
- GCC_GENERATE_DEBUGGING_SYMBOLS = NO;
- GCC_PRECOMPILE_PREFIX_HEADER = YES;
- GCC_PREFIX_HEADER = "Query Tool for Postgres_Prefix.pch";
- GCC_WARN_ABOUT_MISSING_PROTOTYPES = NO;
- GCC_WARN_FOUR_CHARACTER_CONSTANTS = NO;
- GCC_WARN_UNKNOWN_PRAGMAS = NO;
- HEADER_SEARCH_PATHS = ../pgCocoaDB;
- INFOPLIST_FILE = Info.plist;
- INSTALL_PATH = "$(HOME)/Applications";
- LIBRARY_SEARCH_PATHS = "";
- OTHER_CFLAGS = "";
- OTHER_LDFLAGS = "";
- PRODUCT_NAME = "Query Tool for Postgres";
- SECTORDER_FLAGS = "";
- WARNING_CFLAGS = (
- "-Wmost",
- "-Wno-four-char-constants",
- "-Wno-unknown-pragmas",
- );
- WRAPPER_EXTENSION = app;
- };
dependencies = (
437FBB75094CD567007D4278 /* PBXTargetDependency */,
);
@@ -337,12 +326,6 @@
2A37F4A9FDCFA73011CA2CEA /* Project object */ = {
isa = PBXProject;
buildConfigurationList = 439C659E08ECF07900469809 /* Build configuration list for PBXProject "Query Tool for Postgres" */;
- buildSettings = {
- };
- buildStyles = (
- 4A9504D0FFE6A4CB11CA0CBA /* Development */,
- 4A9504D1FFE6A4CB11CA0CBA /* Deployment */,
- );
hasScannedForEncodings = 1;
mainGroup = 2A37F4AAFDCFA73011CA2CEA /* Query Tool for Postgres */;
projectDirPath = "";
@@ -374,9 +357,7 @@
buildActionMask = 2147483647;
files = (
8D15AC2C0486D014006FF6A4 /* Credits.rtf in Resources */,
- 8D15AC2D0486D014006FF6A4 /* MainMenu.nib in Resources */,
8D15AC2F0486D014006FF6A4 /* InfoPlist.strings in Resources */,
- 4350CCCE0665350000244060 /* SqlDocument.nib in Resources */,
4327F01807CEB4AA00AB5CFE /* Help in Resources */,
4327F0B507CEBD0000AB5CFE /* about_32.png in Resources */,
4327F0B607CEBD0000AB5CFE /* connect_32.png in Resources */,
@@ -396,6 +377,10 @@
4327F0C407CEBD0000AB5CFE /* save_32.png in Resources */,
4327F0C507CEBD0000AB5CFE /* sql-doc.icns in Resources */,
4327F0C607CEBD0000AB5CFE /* sql-doc.png in Resources */,
+ 438CC54A0BADD1DF00C69C7C /* cancel_script_32.png in Resources */,
+ 438CC6150BADD3B600C69C7C /* Preferences.nib in Resources */,
+ 438CC61E0BADD40300C69C7C /* MainMenu.nib in Resources */,
+ 431F1BE10BB1721B00701090 /* SqlDocument.nib in Resources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
@@ -407,10 +392,15 @@
buildActionMask = 2147483647;
files = (
8D15AC320486D014006FF6A4 /* main.m in Sources */,
- 4350CCBE0665349000244060 /* DataSource.m in Sources */,
4350CCC00665349000244060 /* SqlDocument.m in Sources */,
4350CD2F0665399300244060 /* SqlMenuCategory.m in Sources */,
4350CE0B066540D500244060 /* SqlToolbarCategory.m in Sources */,
+ 438CC5490BADD1DF00C69C7C /* AppController.m in Sources */,
+ 438CC54C0BADD1DF00C69C7C /* ExecuteQueryThread.m in Sources */,
+ 438CC54E0BADD1DF00C69C7C /* MyOutlineView.m in Sources */,
+ 438CC5500BADD1DF00C69C7C /* MyResultsView.m in Sources */,
+ 438CC5520BADD1DF00C69C7C /* PreferenceController.m in Sources */,
+ 438CC5540BADD1DF00C69C7C /* QueryDataSource.m in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
@@ -433,30 +423,38 @@
name = InfoPlist.strings;
sourceTree = "<group>";
};
- 2A37F4B6FDCFA73011CA2CEA /* MainMenu.nib */ = {
+ 2A37F4B9FDCFA73011CA2CEA /* Credits.rtf */ = {
isa = PBXVariantGroup;
children = (
- 2A37F4B7FDCFA73011CA2CEA /* English */,
+ 2A37F4BAFDCFA73011CA2CEA /* English */,
);
- name = MainMenu.nib;
+ name = Credits.rtf;
sourceTree = "<group>";
};
- 2A37F4B9FDCFA73011CA2CEA /* Credits.rtf */ = {
+ 431F1BDB0BB1721B00701090 /* SqlDocument.nib */ = {
isa = PBXVariantGroup;
children = (
- 2A37F4BAFDCFA73011CA2CEA /* English */,
+ 431F1BDC0BB1721B00701090 /* English */,
);
- name = Credits.rtf;
+ name = SqlDocument.nib;
sourceTree = "<group>";
};
- 4350CCCC0665350000244060 /* SqlDocument.nib */ = {
+ 438CC60F0BADD3B600C69C7C /* Preferences.nib */ = {
isa = PBXVariantGroup;
children = (
- 4350CCCD0665350000244060 /* English */,
+ 438CC6100BADD3B600C69C7C /* English */,
);
- name = SqlDocument.nib;
+ name = Preferences.nib;
sourceTree = "<group>";
};
+ 438CC6180BADD40300C69C7C /* MainMenu.nib */ = {
+ isa = PBXVariantGroup;
+ children = (
+ 438CC6190BADD40300C69C7C /* English */,
+ );
+ name = MainMenu.nib;
+ sourceTree = "<group>";
+ };
/* End PBXVariantGroup section */
/* Begin XCBuildConfiguration section */
@@ -469,10 +467,7 @@
);
COPY_PHASE_STRIP = NO;
DEBUGGING_SYMBOLS = YES;
- FRAMEWORK_SEARCH_PATHS = (
- ../pgCocoaDB/build,
- "$(SRCROOT)/../pgCocoaDB/build/Deployment",
- );
+ FRAMEWORK_SEARCH_PATHS = "";
GCC_DYNAMIC_NO_PIC = NO;
GCC_ENABLE_FIX_AND_CONTINUE = YES;
GCC_ENABLE_TRIGRAPHS = NO;
@@ -483,13 +478,14 @@
GCC_WARN_ABOUT_MISSING_PROTOTYPES = NO;
GCC_WARN_FOUR_CHARACTER_CONSTANTS = NO;
GCC_WARN_UNKNOWN_PRAGMAS = NO;
- HEADER_SEARCH_PATHS = ../pgCocoaDB;
+ HEADER_SEARCH_PATHS = "";
INFOPLIST_FILE = Info.plist;
INSTALL_PATH = "$(HOME)/Applications";
LIBRARY_SEARCH_PATHS = "";
OPTIMIZATION_CFLAGS = "-O0";
OTHER_CFLAGS = "";
OTHER_LDFLAGS = "";
+ PREBINDING = NO;
PRODUCT_NAME = "Query Tool for Postgres";
SECTORDER_FLAGS = "";
WARNING_CFLAGS = (
@@ -510,10 +506,7 @@
i386,
);
COPY_PHASE_STRIP = YES;
- FRAMEWORK_SEARCH_PATHS = (
- ../pgCocoaDB/build,
- "$(SRCROOT)/../pgCocoaDB/build/Deployment",
- );
+ FRAMEWORK_SEARCH_PATHS = "";
GCC_ENABLE_FIX_AND_CONTINUE = NO;
GCC_ENABLE_TRIGRAPHS = NO;
GCC_GENERATE_DEBUGGING_SYMBOLS = NO;
@@ -522,12 +515,13 @@
GCC_WARN_ABOUT_MISSING_PROTOTYPES = NO;
GCC_WARN_FOUR_CHARACTER_CONSTANTS = NO;
GCC_WARN_UNKNOWN_PRAGMAS = NO;
- HEADER_SEARCH_PATHS = ../pgCocoaDB;
+ HEADER_SEARCH_PATHS = "";
INFOPLIST_FILE = Info.plist;
INSTALL_PATH = "$(HOME)/Applications";
LIBRARY_SEARCH_PATHS = "";
OTHER_CFLAGS = "";
OTHER_LDFLAGS = "";
+ PREBINDING = NO;
PRODUCT_NAME = "Query Tool for Postgres";
SECTORDER_FLAGS = "";
WARNING_CFLAGS = (
@@ -547,10 +541,7 @@
ppc,
i386,
);
- FRAMEWORK_SEARCH_PATHS = (
- ../pgCocoaDB/build,
- "$(SRCROOT)/../pgCocoaDB/build/Deployment",
- );
+ FRAMEWORK_SEARCH_PATHS = "";
GCC_ENABLE_TRIGRAPHS = NO;
GCC_GENERATE_DEBUGGING_SYMBOLS = NO;
GCC_PRECOMPILE_PREFIX_HEADER = YES;
@@ -558,12 +549,13 @@
GCC_WARN_ABOUT_MISSING_PROTOTYPES = NO;
GCC_WARN_FOUR_CHARACTER_CONSTANTS = NO;
GCC_WARN_UNKNOWN_PRAGMAS = NO;
- HEADER_SEARCH_PATHS = ../pgCocoaDB;
+ HEADER_SEARCH_PATHS = "";
INFOPLIST_FILE = Info.plist;
INSTALL_PATH = "$(HOME)/Applications";
LIBRARY_SEARCH_PATHS = "";
OTHER_CFLAGS = "";
OTHER_LDFLAGS = "";
+ PREBINDING = NO;
PRODUCT_NAME = "Query Tool for Postgres";
SECTORDER_FLAGS = "";
WARNING_CFLAGS = (
@@ -590,10 +582,7 @@
439C65A008ECF07900469809 /* Deployment */ = {
isa = XCBuildConfiguration;
buildSettings = {
- ARCHS = (
- ppc,
- i386,
- );
+ ARCHS = i386;
MACOSX_DEPLOYMENT_TARGET = 10.4;
SDKROOT = /Developer/SDKs/MacOSX10.4u.sdk;
};
Modified: trunk/QueryTool/SqlDocument.h
===================================================================
--- trunk/QueryTool/SqlDocument.h 2007-04-18 18:37:22 UTC (rev 163)
+++ trunk/QueryTool/SqlDocument.h 2007-04-18 19:04:19 UTC (rev 164)
@@ -8,10 +8,10 @@
#import <Cocoa/Cocoa.h>
-#import "DataSource.h"
+#import <pgCocoaDB/PGCocoaDB.h>
+#import <pgCocoaDB/ExplorerModel.h>
+
#import "QueryDataSource.h"
-#import "Connection.h"
-#import "ExplorerModel.h"
#import "MyOutlineView.h"
#import "MyResultsView.h"
#import "QueryTool.h"
Modified: trunk/QueryTool/SqlDocument.m
===================================================================
--- trunk/QueryTool/SqlDocument.m 2007-04-18 18:37:22 UTC (rev 163)
+++ trunk/QueryTool/SqlDocument.m 2007-04-18 19:04:19 UTC (rev 164)
@@ -331,6 +331,7 @@
}
}
+
// Create the schema explorer.
[self setNewExplorerConn];
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <haw...@us...> - 2007-04-18 18:37:35
|
Revision: 163
http://pgsqlformac.svn.sourceforge.net/pgsqlformac/?rev=163&view=rev
Author: hawkmoon
Date: 2007-04-18 11:37:22 -0700 (Wed, 18 Apr 2007)
Log Message:
-----------
Altered settings for more reliable universal binaries, and better usage of the framework (more consistant behavior with other frameworks)
Modified Paths:
--------------
trunk/pgCocoaDB/Info.plist
trunk/pgCocoaDB/PGCocoaDB.h
trunk/pgCocoaDB/pgCocoaDB.xcodeproj/project.pbxproj
Modified: trunk/pgCocoaDB/Info.plist
===================================================================
--- trunk/pgCocoaDB/Info.plist 2007-04-02 21:10:17 UTC (rev 162)
+++ trunk/pgCocoaDB/Info.plist 2007-04-18 18:37:22 UTC (rev 163)
@@ -17,7 +17,7 @@
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
- <string>8.0.1c</string>
+ <string>8.2.3</string>
<key>NSPrincipalClass</key>
<string></string>
</dict>
Modified: trunk/pgCocoaDB/PGCocoaDB.h
===================================================================
--- trunk/pgCocoaDB/PGCocoaDB.h 2007-04-02 21:10:17 UTC (rev 162)
+++ trunk/pgCocoaDB/PGCocoaDB.h 2007-04-18 18:37:22 UTC (rev 163)
@@ -7,6 +7,8 @@
*
*/
+#import "Connection.h"
+#import "DataSource.h"
// To tell other that parpameters are purposesly not used and remove compiler warning.
#define UNUSED_PARAMETER(x) (void)(x)
Modified: trunk/pgCocoaDB/pgCocoaDB.xcodeproj/project.pbxproj
===================================================================
--- trunk/pgCocoaDB/pgCocoaDB.xcodeproj/project.pbxproj 2007-04-02 21:10:17 UTC (rev 162)
+++ trunk/pgCocoaDB/pgCocoaDB.xcodeproj/project.pbxproj 2007-04-18 18:37:22 UTC (rev 163)
@@ -7,6 +7,7 @@
objects = {
/* Begin PBXBuildFile section */
+ 43069B510BC2DB6300BD6D0B /* PGCocoaDB.h in Headers */ = {isa = PBXBuildFile; fileRef = 43069B500BC2DB6300BD6D0B /* PGCocoaDB.h */; settings = {ATTRIBUTES = (Public, ); }; };
43303391066135480037D932 /* Connection.h in Headers */ = {isa = PBXBuildFile; fileRef = 4330338F066135480037D932 /* Connection.h */; settings = {ATTRIBUTES = (Public, ); }; };
43303392066135480037D932 /* Connection.m in Sources */ = {isa = PBXBuildFile; fileRef = 43303390066135480037D932 /* Connection.m */; };
433033B7066135EA0037D932 /* Database.h in Headers */ = {isa = PBXBuildFile; fileRef = 433033A7066135EA0037D932 /* Database.h */; settings = {ATTRIBUTES = (Public, ); }; };
@@ -23,37 +24,34 @@
433033C2066135EA0037D932 /* Record.m in Sources */ = {isa = PBXBuildFile; fileRef = 433033B2066135EA0037D932 /* Record.m */; };
433033C3066135EA0037D932 /* RecordSet.h in Headers */ = {isa = PBXBuildFile; fileRef = 433033B3066135EA0037D932 /* RecordSet.h */; settings = {ATTRIBUTES = (Public, ); }; };
433033C4066135EA0037D932 /* RecordSet.m in Sources */ = {isa = PBXBuildFile; fileRef = 433033B4066135EA0037D932 /* RecordSet.m */; };
+ 43AD0FE00BADCDFC0049BDA4 /* ExplorerModel.h in Headers */ = {isa = PBXBuildFile; fileRef = 43AD0FDA0BADCDFC0049BDA4 /* ExplorerModel.h */; settings = {ATTRIBUTES = (Public, ); }; };
+ 43AD0FE10BADCDFC0049BDA4 /* ExplorerModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 43AD0FDB0BADCDFC0049BDA4 /* ExplorerModel.m */; };
+ 43AD0FE20BADCDFC0049BDA4 /* ExplorerNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 43AD0FDC0BADCDFC0049BDA4 /* ExplorerNode.h */; settings = {ATTRIBUTES = (Public, ); }; };
+ 43AD0FE30BADCDFC0049BDA4 /* ExplorerNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 43AD0FDD0BADCDFC0049BDA4 /* ExplorerNode.m */; };
+ 43AD0FE40BADCDFC0049BDA4 /* Schema.h in Headers */ = {isa = PBXBuildFile; fileRef = 43AD0FDE0BADCDFC0049BDA4 /* Schema.h */; settings = {ATTRIBUTES = (Public, ); }; };
+ 43AD0FE50BADCDFC0049BDA4 /* Schema.m in Sources */ = {isa = PBXBuildFile; fileRef = 43AD0FDF0BADCDFC0049BDA4 /* Schema.m */; };
+ 43AD0FE70BADCEFD0049BDA4 /* Table.h in Headers */ = {isa = PBXBuildFile; fileRef = 433033B5066135EA0037D932 /* Table.h */; };
+ 43AD0FE80BADCEFE0049BDA4 /* Table.m in Sources */ = {isa = PBXBuildFile; fileRef = 433033B6066135EA0037D932 /* Table.m */; };
+ 43CC257E0BD681D100C21D32 /* pgCocoaDB.framework in CopyFiles */ = {isa = PBXBuildFile; fileRef = 8DC2EF5B0486A6940098B216 /* pgCocoaDB.framework */; };
8DC2EF510486A6940098B216 /* pgCocoaDB_Prefix.pch in Headers */ = {isa = PBXBuildFile; fileRef = 32DBCF5E0370ADEE00C91783 /* pgCocoaDB_Prefix.pch */; };
8DC2EF530486A6940098B216 /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = 089C1666FE841158C02AAC07 /* InfoPlist.strings */; };
8DC2EF550486A6940098B216 /* main.c in Sources */ = {isa = PBXBuildFile; fileRef = 08FB77B4FE84181DC02AAC07 /* main.c */; settings = {ATTRIBUTES = (); }; };
8DC2EF570486A6940098B216 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1058C7B1FEA5585E11CA2CBB /* Cocoa.framework */; };
/* End PBXBuildFile section */
-/* Begin PBXBuildStyle section */
- 014CEA440018CDF011CA2923 /* Development */ = {
- isa = PBXBuildStyle;
- buildSettings = {
- COPY_PHASE_STRIP = NO;
- DEBUGGING_SYMBOLS = YES;
- GCC_DYNAMIC_NO_PIC = NO;
- GCC_ENABLE_FIX_AND_CONTINUE = YES;
- GCC_GENERATE_DEBUGGING_SYMBOLS = YES;
- GCC_OPTIMIZATION_LEVEL = 0;
- OPTIMIZATION_CFLAGS = "-O0";
- ZERO_LINK = YES;
- };
- name = Development;
+/* Begin PBXCopyFilesBuildPhase section */
+ 43CC257C0BD681A000C21D32 /* CopyFiles */ = {
+ isa = PBXCopyFilesBuildPhase;
+ buildActionMask = 2147483647;
+ comments = "Copy to the Common Frameworks folder\n";
+ dstPath = /Library/Frameworks;
+ dstSubfolderSpec = 0;
+ files = (
+ 43CC257E0BD681D100C21D32 /* pgCocoaDB.framework in CopyFiles */,
+ );
+ runOnlyForDeploymentPostprocessing = 0;
};
- 014CEA450018CDF011CA2923 /* Deployment */ = {
- isa = PBXBuildStyle;
- buildSettings = {
- COPY_PHASE_STRIP = YES;
- GCC_ENABLE_FIX_AND_CONTINUE = NO;
- ZERO_LINK = NO;
- };
- name = Deployment;
- };
-/* End PBXBuildStyle section */
+/* End PBXCopyFilesBuildPhase section */
/* Begin PBXFileReference section */
0867D69BFE84028FC02AAC07 /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = /System/Library/Frameworks/Foundation.framework; sourceTree = "<absolute>"; };
@@ -62,7 +60,7 @@
08FB77B4FE84181DC02AAC07 /* main.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = main.c; sourceTree = "<group>"; };
1058C7B1FEA5585E11CA2CBB /* Cocoa.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Cocoa.framework; path = /System/Library/Frameworks/Cocoa.framework; sourceTree = "<absolute>"; };
32DBCF5E0370ADEE00C91783 /* pgCocoaDB_Prefix.pch */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = pgCocoaDB_Prefix.pch; sourceTree = "<group>"; };
- 430CA1710825BC7800F43A7D /* pgCocoaDB.xcclassmodel */ = {isa = PBXFileReference; lastKnownFileType = wrapper.xcclassmodel; path = pgCocoaDB.xcclassmodel; sourceTree = "<group>"; };
+ 43069B500BC2DB6300BD6D0B /* PGCocoaDB.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = PGCocoaDB.h; sourceTree = "<group>"; };
4330338F066135480037D932 /* Connection.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = Connection.h; sourceTree = "<group>"; };
43303390066135480037D932 /* Connection.m */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.objc; path = Connection.m; sourceTree = "<group>"; };
433033A7066135EA0037D932 /* Database.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = Database.h; sourceTree = "<group>"; };
@@ -86,6 +84,12 @@
433033F7066137830037D932 /* libssl.dylib */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o"; name = libssl.dylib; path = /Developer/SDKs/MacOSX10.4u.sdk/usr/lib/libssl.dylib; sourceTree = "<absolute>"; };
4330341C066138050037D932 /* libkrb5.dylib */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o"; name = libkrb5.dylib; path = /Developer/SDKs/MacOSX10.4u.sdk/usr/lib/libkrb5.dylib; sourceTree = "<absolute>"; };
434E29C207DDFF62002F9C11 /* COPYRIGHT */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = COPYRIGHT; sourceTree = "<group>"; };
+ 43AD0FDA0BADCDFC0049BDA4 /* ExplorerModel.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = ExplorerModel.h; sourceTree = "<group>"; };
+ 43AD0FDB0BADCDFC0049BDA4 /* ExplorerModel.m */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.objc; path = ExplorerModel.m; sourceTree = "<group>"; };
+ 43AD0FDC0BADCDFC0049BDA4 /* ExplorerNode.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = ExplorerNode.h; sourceTree = "<group>"; };
+ 43AD0FDD0BADCDFC0049BDA4 /* ExplorerNode.m */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.objc; path = ExplorerNode.m; sourceTree = "<group>"; };
+ 43AD0FDE0BADCDFC0049BDA4 /* Schema.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = Schema.h; sourceTree = "<group>"; };
+ 43AD0FDF0BADCDFC0049BDA4 /* Schema.m */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.objc; path = Schema.m; sourceTree = "<group>"; };
8DC2EF5A0486A6940098B216 /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist; path = Info.plist; sourceTree = "<group>"; };
8DC2EF5B0486A6940098B216 /* pgCocoaDB.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = pgCocoaDB.framework; sourceTree = BUILT_PRODUCTS_DIR; };
/* End PBXFileReference section */
@@ -119,7 +123,6 @@
089C1665FE841158C02AAC07 /* Resources */,
0867D69AFE84028FC02AAC07 /* External Frameworks and Libraries */,
034768DFFF38A50411DB9C8B /* Products */,
- 430CA1710825BC7800F43A7D /* pgCocoaDB.xcclassmodel */,
);
name = pgCocoaDB;
sourceTree = "<group>";
@@ -145,6 +148,13 @@
08FB77AEFE84172EC02AAC07 /* Classes */ = {
isa = PBXGroup;
children = (
+ 43AD0FDA0BADCDFC0049BDA4 /* ExplorerModel.h */,
+ 43069B500BC2DB6300BD6D0B /* PGCocoaDB.h */,
+ 43AD0FDB0BADCDFC0049BDA4 /* ExplorerModel.m */,
+ 43AD0FDC0BADCDFC0049BDA4 /* ExplorerNode.h */,
+ 43AD0FDD0BADCDFC0049BDA4 /* ExplorerNode.m */,
+ 43AD0FDE0BADCDFC0049BDA4 /* Schema.h */,
+ 43AD0FDF0BADCDFC0049BDA4 /* Schema.m */,
4330338F066135480037D932 /* Connection.h */,
43303390066135480037D932 /* Connection.m */,
433033A7066135EA0037D932 /* Database.h */,
@@ -213,6 +223,11 @@
433033BF066135EA0037D932 /* Fields.h in Headers */,
433033C1066135EA0037D932 /* Record.h in Headers */,
433033C3066135EA0037D932 /* RecordSet.h in Headers */,
+ 43AD0FE00BADCDFC0049BDA4 /* ExplorerModel.h in Headers */,
+ 43AD0FE20BADCDFC0049BDA4 /* ExplorerNode.h in Headers */,
+ 43AD0FE40BADCDFC0049BDA4 /* Schema.h in Headers */,
+ 43AD0FE70BADCEFD0049BDA4 /* Table.h in Headers */,
+ 43069B510BC2DB6300BD6D0B /* PGCocoaDB.h in Headers */,
);
runOnlyForDeploymentPostprocessing = 0;
};
@@ -228,41 +243,10 @@
8DC2EF540486A6940098B216 /* Sources */,
8DC2EF560486A6940098B216 /* Frameworks */,
8DC2EF580486A6940098B216 /* Rez */,
+ 43CC257C0BD681A000C21D32 /* CopyFiles */,
);
buildRules = (
);
- buildSettings = {
- DYLIB_COMPATIBILITY_VERSION = 1;
- DYLIB_CURRENT_VERSION = 1;
- FRAMEWORK_SEARCH_PATHS = "";
- FRAMEWORK_VERSION = A;
- GCC_ENABLE_TRIGRAPHS = NO;
- GCC_GENERATE_DEBUGGING_SYMBOLS = NO;
- GCC_PRECOMPILE_PREFIX_HEADER = YES;
- GCC_PREFIX_HEADER = pgCocoaDB_Prefix.pch;
- GCC_WARN_ABOUT_MISSING_PROTOTYPES = NO;
- GCC_WARN_FOUR_CHARACTER_CONSTANTS = NO;
- GCC_WARN_UNKNOWN_PRAGMAS = NO;
- HEADER_SEARCH_PATHS = "\"$(LOCAL_LIBRARY_DIR)/PostgreSQL8/include\"";
- INFOPLIST_FILE = Info.plist;
- INSTALL_PATH = "@executable_path/../Frameworks";
- LIBRARY_SEARCH_PATHS = "\"$(LOCAL_LIBRARY_DIR)/PostgreSQL8/lib\"";
- LIBRARY_STYLE = Dynamic;
- MACOSX_DEPLOYMENT_TARGET = 10.3;
- OTHER_LDFLAGS = (
- "-seg1addr",
- 0xb0000000,
- );
- PRODUCT_NAME = pgCocoaDB;
- SECTORDER_FLAGS = "";
- VERSIONING_SYSTEM = "";
- WARNING_CFLAGS = (
- "-Wmost",
- "-Wno-four-char-constants",
- "-Wno-unknown-pragmas",
- );
- WRAPPER_EXTENSION = framework;
- };
dependencies = (
);
name = pgCocoaDB;
@@ -277,12 +261,6 @@
0867D690FE84028FC02AAC07 /* Project object */ = {
isa = PBXProject;
buildConfigurationList = 43389A4A0869E11900D5B56D /* Build configuration list for PBXProject "pgCocoaDB" */;
- buildSettings = {
- };
- buildStyles = (
- 014CEA440018CDF011CA2923 /* Development */,
- 014CEA450018CDF011CA2923 /* Deployment */,
- );
hasScannedForEncodings = 1;
mainGroup = 0867D691FE84028FC02AAC07 /* pgCocoaDB */;
productRefGroup = 034768DFFF38A50411DB9C8B /* Products */;
@@ -328,6 +306,10 @@
433033C0066135EA0037D932 /* Fields.m in Sources */,
433033C2066135EA0037D932 /* Record.m in Sources */,
433033C4066135EA0037D932 /* RecordSet.m in Sources */,
+ 43AD0FE10BADCDFC0049BDA4 /* ExplorerModel.m in Sources */,
+ 43AD0FE30BADCDFC0049BDA4 /* ExplorerNode.m in Sources */,
+ 43AD0FE50BADCDFC0049BDA4 /* Schema.m in Sources */,
+ 43AD0FE80BADCEFE0049BDA4 /* Table.m in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
@@ -348,7 +330,10 @@
43389A470869E11900D5B56D /* Development */ = {
isa = XCBuildConfiguration;
buildSettings = {
- ARCHS = i386;
+ ARCHS = (
+ i386,
+ ppc,
+ );
COPY_PHASE_STRIP = NO;
DEBUGGING_SYMBOLS = YES;
DYLIB_COMPATIBILITY_VERSION = 1;
@@ -381,6 +366,7 @@
"-seg1addr",
0xb0000000,
);
+ PREBINDING = NO;
PRODUCT_NAME = pgCocoaDB;
SDKROOT = /Developer/SDKs/MacOSX10.4u.sdk;
SECTORDER_FLAGS = "";
@@ -398,7 +384,10 @@
43389A480869E11900D5B56D /* Deployment */ = {
isa = XCBuildConfiguration;
buildSettings = {
- ARCHS = i386;
+ ARCHS = (
+ i386,
+ ppc,
+ );
COPY_PHASE_STRIP = YES;
DYLIB_COMPATIBILITY_VERSION = 1;
DYLIB_CURRENT_VERSION = 1;
@@ -427,6 +416,7 @@
"-seg1addr",
0xb0000000,
);
+ PREBINDING = NO;
PRODUCT_NAME = pgCocoaDB;
SDKROOT = /Developer/SDKs/MacOSX10.4u.sdk;
SECTORDER_FLAGS = "";
@@ -444,7 +434,10 @@
43389A490869E11900D5B56D /* Default */ = {
isa = XCBuildConfiguration;
buildSettings = {
- ARCHS = i386;
+ ARCHS = (
+ i386,
+ ppc,
+ );
DYLIB_COMPATIBILITY_VERSION = 1;
DYLIB_CURRENT_VERSION = 1;
FRAMEWORK_SEARCH_PATHS = "";
@@ -471,6 +464,7 @@
"-seg1addr",
0xb0000000,
);
+ PREBINDING = NO;
PRODUCT_NAME = pgCocoaDB;
SDKROOT = /Developer/SDKs/MacOSX10.4u.sdk;
SECTORDER_FLAGS = "";
@@ -487,6 +481,10 @@
43389A4B0869E11900D5B56D /* Development */ = {
isa = XCBuildConfiguration;
buildSettings = {
+ ARCHS = (
+ ppc,
+ i386,
+ );
HEADER_SEARCH_PATHS = /opt/local/include;
LIBRARY_SEARCH_PATHS = /opt/local/lib;
MACOSX_DEPLOYMENT_TARGET = 10.4;
@@ -497,9 +495,14 @@
43389A4C0869E11900D5B56D /* Deployment */ = {
isa = XCBuildConfiguration;
buildSettings = {
+ ARCHS = (
+ ppc,
+ i386,
+ );
HEADER_SEARCH_PATHS = /opt/local/include;
LIBRARY_SEARCH_PATHS = /opt/local/lib;
MACOSX_DEPLOYMENT_TARGET = 10.4;
+ PREBINDING = NO;
SDKROOT = /Developer/SDKs/MacOSX10.4u.sdk;
};
name = Deployment;
@@ -507,6 +510,10 @@
43389A4D0869E11900D5B56D /* Default */ = {
isa = XCBuildConfiguration;
buildSettings = {
+ ARCHS = (
+ ppc,
+ i386,
+ );
HEADER_SEARCH_PATHS = /opt/local/include;
LIBRARY_SEARCH_PATHS = /opt/local/lib;
MACOSX_DEPLOYMENT_TARGET = 10.4;
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <haw...@us...> - 2007-04-02 21:10:17
|
Revision: 162
http://pgsqlformac.svn.sourceforge.net/pgsqlformac/?rev=162&view=rev
Author: hawkmoon
Date: 2007-04-02 14:10:17 -0700 (Mon, 02 Apr 2007)
Log Message:
-----------
Readded images after delete
Added Paths:
-----------
trunk/ServiceManager/images/Xserve 42U.icns
trunk/ServiceManager/images/Xserve-rack.png
trunk/ServiceManager/images/Xserve.icns
trunk/ServiceManager/images/restart.png
trunk/ServiceManager/images/start.png
trunk/ServiceManager/images/stop.png
trunk/ServiceManager/images/xserve-alert.png
trunk/ServiceManager/images/xserve-running.png
trunk/ServiceManager/images/xserve-stopped.png
trunk/ServiceManager/images/xserve-unknown.png
Added: trunk/ServiceManager/images/Xserve 42U.icns
===================================================================
(Binary files differ)
Property changes on: trunk/ServiceManager/images/Xserve 42U.icns
___________________________________________________________________
Name: svn:executable
+ *
Name: svn:mime-type
+ application/octet-stream
Added: trunk/ServiceManager/images/Xserve-rack.png
===================================================================
(Binary files differ)
Property changes on: trunk/ServiceManager/images/Xserve-rack.png
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: trunk/ServiceManager/images/Xserve.icns
===================================================================
(Binary files differ)
Property changes on: trunk/ServiceManager/images/Xserve.icns
___________________________________________________________________
Name: svn:executable
+ *
Name: svn:mime-type
+ application/octet-stream
Added: trunk/ServiceManager/images/restart.png
===================================================================
(Binary files differ)
Property changes on: trunk/ServiceManager/images/restart.png
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: trunk/ServiceManager/images/start.png
===================================================================
(Binary files differ)
Property changes on: trunk/ServiceManager/images/start.png
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: trunk/ServiceManager/images/stop.png
===================================================================
(Binary files differ)
Property changes on: trunk/ServiceManager/images/stop.png
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: trunk/ServiceManager/images/xserve-alert.png
===================================================================
(Binary files differ)
Property changes on: trunk/ServiceManager/images/xserve-alert.png
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: trunk/ServiceManager/images/xserve-running.png
===================================================================
(Binary files differ)
Property changes on: trunk/ServiceManager/images/xserve-running.png
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: trunk/ServiceManager/images/xserve-stopped.png
===================================================================
(Binary files differ)
Property changes on: trunk/ServiceManager/images/xserve-stopped.png
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: trunk/ServiceManager/images/xserve-unknown.png
===================================================================
(Binary files differ)
Property changes on: trunk/ServiceManager/images/xserve-unknown.png
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <haw...@us...> - 2007-04-02 20:58:22
|
Revision: 160
http://pgsqlformac.svn.sourceforge.net/pgsqlformac/?rev=160&view=rev
Author: hawkmoon
Date: 2007-04-02 13:58:23 -0700 (Mon, 02 Apr 2007)
Log Message:
-----------
Property Changed:
----------------
trunk/ServiceManager/images/restart.png
Property changes on: trunk/ServiceManager/images/restart.png
___________________________________________________________________
Name: svn:mime-type
+ images/png
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <haw...@us...> - 2007-04-02 15:16:50
|
Revision: 159
http://pgsqlformac.svn.sourceforge.net/pgsqlformac/?rev=159&view=rev
Author: hawkmoon
Date: 2007-04-02 08:16:51 -0700 (Mon, 02 Apr 2007)
Log Message:
-----------
Updated to Xcode 2.4 project.
Added Paths:
-----------
trunk/ServiceManager/Service Manager.xcodeproj/
trunk/ServiceManager/Service Manager.xcodeproj/project.pbxproj
Added: trunk/ServiceManager/Service Manager.xcodeproj/project.pbxproj
===================================================================
--- trunk/ServiceManager/Service Manager.xcodeproj/project.pbxproj (rev 0)
+++ trunk/ServiceManager/Service Manager.xcodeproj/project.pbxproj 2007-04-02 15:16:51 UTC (rev 159)
@@ -0,0 +1,490 @@
+// !$*UTF8*$!
+{
+ archiveVersion = 1;
+ classes = {
+ };
+ objectVersion = 42;
+ objects = {
+
+/* Begin PBXBuildFile section */
+ 43015CD50BC133A8006AFACA /* StartupHelper in Resources */ = {isa = PBXBuildFile; fileRef = 43015CD40BC133A8006AFACA /* StartupHelper */; };
+ 43015D2B0BC13E91006AFACA /* restart.png in Resources */ = {isa = PBXBuildFile; fileRef = 43015D210BC13E91006AFACA /* restart.png */; };
+ 43015D2C0BC13E91006AFACA /* start.png in Resources */ = {isa = PBXBuildFile; fileRef = 43015D220BC13E91006AFACA /* start.png */; };
+ 43015D2D0BC13E91006AFACA /* stop.png in Resources */ = {isa = PBXBuildFile; fileRef = 43015D230BC13E91006AFACA /* stop.png */; };
+ 43015D2E0BC13E91006AFACA /* Xserve 42U.icns in Resources */ = {isa = PBXBuildFile; fileRef = 43015D240BC13E91006AFACA /* Xserve 42U.icns */; };
+ 43015D2F0BC13E91006AFACA /* xserve-alert.png in Resources */ = {isa = PBXBuildFile; fileRef = 43015D250BC13E91006AFACA /* xserve-alert.png */; };
+ 43015D300BC13E91006AFACA /* Xserve-rack.png in Resources */ = {isa = PBXBuildFile; fileRef = 43015D260BC13E91006AFACA /* Xserve-rack.png */; };
+ 43015D310BC13E91006AFACA /* xserve-running.png in Resources */ = {isa = PBXBuildFile; fileRef = 43015D270BC13E91006AFACA /* xserve-running.png */; };
+ 43015D320BC13E91006AFACA /* xserve-stopped.png in Resources */ = {isa = PBXBuildFile; fileRef = 43015D280BC13E91006AFACA /* xserve-stopped.png */; };
+ 43015D330BC13E91006AFACA /* xserve-unknown.png in Resources */ = {isa = PBXBuildFile; fileRef = 43015D290BC13E91006AFACA /* xserve-unknown.png */; };
+ 43015D340BC13E91006AFACA /* Xserve.icns in Resources */ = {isa = PBXBuildFile; fileRef = 43015D2A0BC13E91006AFACA /* Xserve.icns */; };
+ 43927B3C05C8C58C009FBD73 /* windowCategory.h in Headers */ = {isa = PBXBuildFile; fileRef = 43927B3A05C8C58C009FBD73 /* windowCategory.h */; };
+ 43927B3D05C8C58C009FBD73 /* windowCategory.m in Sources */ = {isa = PBXBuildFile; fileRef = 43927B3B05C8C58C009FBD73 /* windowCategory.m */; };
+ 43927B8F05C8D4A7009FBD73 /* AGProcess.h in Headers */ = {isa = PBXBuildFile; fileRef = 43927B8D05C8D4A7009FBD73 /* AGProcess.h */; };
+ 43927B9005C8D4A7009FBD73 /* AGProcess.m in Sources */ = {isa = PBXBuildFile; fileRef = 43927B8E05C8D4A7009FBD73 /* AGProcess.m */; };
+ 43C1BE82063E0A5E00B55BBB /* Security.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 43C1BE81063E0A5E00B55BBB /* Security.framework */; };
+ 43C4E7A405C8344A00B92B88 /* SQLServiceManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 43C4E7A205C8344A00B92B88 /* SQLServiceManager.h */; };
+ 43C4E7A505C8344A00B92B88 /* SQLServiceManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 43C4E7A305C8344A00B92B88 /* SQLServiceManager.m */; };
+ 43FA561405C9EDB900A738DA /* menuCategory.h in Headers */ = {isa = PBXBuildFile; fileRef = 43FA561205C9EDB900A738DA /* menuCategory.h */; };
+ 43FA561505C9EDB900A738DA /* menuCategory.m in Sources */ = {isa = PBXBuildFile; fileRef = 43FA561305C9EDB900A738DA /* menuCategory.m */; };
+ 8D1107280486CEB800E47090 /* Service Manager_Prefix.pch in Headers */ = {isa = PBXBuildFile; fileRef = 32CA4F630368D1EE00C91783 /* Service Manager_Prefix.pch */; };
+ 8D11072A0486CEB800E47090 /* MainMenu.nib in Resources */ = {isa = PBXBuildFile; fileRef = 29B97318FDCFA39411CA2CEA /* MainMenu.nib */; };
+ 8D11072B0486CEB800E47090 /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = 089C165CFE840E0CC02AAC07 /* InfoPlist.strings */; };
+ 8D11072D0486CEB800E47090 /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 29B97316FDCFA39411CA2CEA /* main.m */; settings = {ATTRIBUTES = (); }; };
+ 8D11072F0486CEB800E47090 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1058C7A1FEA54F0111CA2CBB /* Cocoa.framework */; };
+/* End PBXBuildFile section */
+
+/* Begin PBXContainerItemProxy section */
+ 4324A92207B7C6D1000481FF /* PBXContainerItemProxy */ = {
+ isa = PBXContainerItemProxy;
+ containerPortal = 4340349F06D3C8B3007C9FD4 /* StartupHelper.xcode */;
+ proxyType = 2;
+ remoteGlobalIDString = 8DD76FB20486AB0100D96B5E;
+ remoteInfo = StartupHelper;
+ };
+ 4324A94707B7C6DE000481FF /* PBXContainerItemProxy */ = {
+ isa = PBXContainerItemProxy;
+ containerPortal = 4340349F06D3C8B3007C9FD4 /* StartupHelper.xcode */;
+ proxyType = 1;
+ remoteGlobalIDString = 8DD76FA90486AB0100D96B5E;
+ remoteInfo = StartupHelper;
+ };
+/* End PBXContainerItemProxy section */
+
+/* Begin PBXCopyFilesBuildPhase section */
+ 434034AF06D3C95E007C9FD4 /* CopyFiles */ = {
+ isa = PBXCopyFilesBuildPhase;
+ buildActionMask = 2147483647;
+ dstPath = "";
+ dstSubfolderSpec = 7;
+ files = (
+ );
+ runOnlyForDeploymentPostprocessing = 0;
+ };
+/* End PBXCopyFilesBuildPhase section */
+
+/* Begin PBXFileReference section */
+ 089C165DFE840E0CC02AAC07 /* English */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = English; path = English.lproj/InfoPlist.strings; sourceTree = "<group>"; };
+ 1058C7A1FEA54F0111CA2CBB /* Cocoa.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Cocoa.framework; path = /System/Library/Frameworks/Cocoa.framework; sourceTree = "<absolute>"; };
+ 29B97316FDCFA39411CA2CEA /* main.m */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.objc; path = main.m; sourceTree = "<group>"; };
+ 29B97319FDCFA39411CA2CEA /* English */ = {isa = PBXFileReference; lastKnownFileType = wrapper.nib; name = English; path = English.lproj/MainMenu.nib; sourceTree = "<group>"; };
+ 29B97324FDCFA39411CA2CEA /* AppKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AppKit.framework; path = /System/Library/Frameworks/AppKit.framework; sourceTree = "<absolute>"; };
+ 29B97325FDCFA39411CA2CEA /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = /System/Library/Frameworks/Foundation.framework; sourceTree = "<absolute>"; };
+ 32CA4F630368D1EE00C91783 /* Service Manager_Prefix.pch */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "Service Manager_Prefix.pch"; sourceTree = "<group>"; };
+ 43015CD40BC133A8006AFACA /* StartupHelper */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.executable"; name = StartupHelper; path = ../StartupHelper/build/Deployment/StartupHelper; sourceTree = SOURCE_ROOT; };
+ 43015D210BC13E91006AFACA /* restart.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = restart.png; path = images/restart.png; sourceTree = "<group>"; };
+ 43015D220BC13E91006AFACA /* start.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = start.png; path = images/start.png; sourceTree = "<group>"; };
+ 43015D230BC13E91006AFACA /* stop.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = stop.png; path = images/stop.png; sourceTree = "<group>"; };
+ 43015D240BC13E91006AFACA /* Xserve 42U.icns */ = {isa = PBXFileReference; lastKnownFileType = image.icns; name = "Xserve 42U.icns"; path = "images/Xserve 42U.icns"; sourceTree = "<group>"; };
+ 43015D250BC13E91006AFACA /* xserve-alert.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "xserve-alert.png"; path = "images/xserve-alert.png"; sourceTree = "<group>"; };
+ 43015D260BC13E91006AFACA /* Xserve-rack.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "Xserve-rack.png"; path = "images/Xserve-rack.png"; sourceTree = "<group>"; };
+ 43015D270BC13E91006AFACA /* xserve-running.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "xserve-running.png"; path = "images/xserve-running.png"; sourceTree = "<group>"; };
+ 43015D280BC13E91006AFACA /* xserve-stopped.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "xserve-stopped.png"; path = "images/xserve-stopped.png"; sourceTree = "<group>"; };
+ 43015D290BC13E91006AFACA /* xserve-unknown.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "xserve-unknown.png"; path = "images/xserve-unknown.png"; sourceTree = "<group>"; };
+ 43015D2A0BC13E91006AFACA /* Xserve.icns */ = {isa = PBXFileReference; lastKnownFileType = image.icns; name = Xserve.icns; path = images/Xserve.icns; sourceTree = "<group>"; };
+ 4340349F06D3C8B3007C9FD4 /* StartupHelper.xcode */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = StartupHelper.xcode; path = ../StartupHelper/StartupHelper.xcode; sourceTree = SOURCE_ROOT; };
+ 43927B3A05C8C58C009FBD73 /* windowCategory.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = windowCategory.h; sourceTree = "<group>"; };
+ 43927B3B05C8C58C009FBD73 /* windowCategory.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = windowCategory.m; sourceTree = "<group>"; };
+ 43927B8D05C8D4A7009FBD73 /* AGProcess.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = AGProcess.h; sourceTree = "<group>"; };
+ 43927B8E05C8D4A7009FBD73 /* AGProcess.m */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.objc; path = AGProcess.m; sourceTree = "<group>"; };
+ 43C1BE81063E0A5E00B55BBB /* Security.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Security.framework; path = /System/Library/Frameworks/Security.framework; sourceTree = "<absolute>"; };
+ 43C4E7A205C8344A00B92B88 /* SQLServiceManager.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = SQLServiceManager.h; sourceTree = "<group>"; };
+ 43C4E7A305C8344A00B92B88 /* SQLServiceManager.m */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.objc; path = SQLServiceManager.m; sourceTree = "<group>"; };
+ 43FA561205C9EDB900A738DA /* menuCategory.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = menuCategory.h; sourceTree = "<group>"; };
+ 43FA561305C9EDB900A738DA /* menuCategory.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = menuCategory.m; sourceTree = "<group>"; };
+ 8D1107310486CEB800E47090 /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist; path = Info.plist; sourceTree = "<group>"; };
+ 8D1107320486CEB800E47090 /* Service Manager.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = "Service Manager.app"; sourceTree = BUILT_PRODUCTS_DIR; };
+/* End PBXFileReference section */
+
+/* Begin PBXFrameworksBuildPhase section */
+ 8D11072E0486CEB800E47090 /* Frameworks */ = {
+ isa = PBXFrameworksBuildPhase;
+ buildActionMask = 2147483647;
+ files = (
+ 8D11072F0486CEB800E47090 /* Cocoa.framework in Frameworks */,
+ 43C1BE82063E0A5E00B55BBB /* Security.framework in Frameworks */,
+ );
+ runOnlyForDeploymentPostprocessing = 0;
+ };
+/* End PBXFrameworksBuildPhase section */
+
+/* Begin PBXGroup section */
+ 080E96DDFE201D6D7F000001 /* Classes */ = {
+ isa = PBXGroup;
+ children = (
+ 43C4E7A205C8344A00B92B88 /* SQLServiceManager.h */,
+ 43C4E7A305C8344A00B92B88 /* SQLServiceManager.m */,
+ 43927B3A05C8C58C009FBD73 /* windowCategory.h */,
+ 43927B3B05C8C58C009FBD73 /* windowCategory.m */,
+ 43FA561205C9EDB900A738DA /* menuCategory.h */,
+ 43FA561305C9EDB900A738DA /* menuCategory.m */,
+ 43927B8D05C8D4A7009FBD73 /* AGProcess.h */,
+ 43927B8E05C8D4A7009FBD73 /* AGProcess.m */,
+ );
+ name = Classes;
+ sourceTree = "<group>";
+ };
+ 1058C7A0FEA54F0111CA2CBB /* Linked Frameworks */ = {
+ isa = PBXGroup;
+ children = (
+ 43C1BE81063E0A5E00B55BBB /* Security.framework */,
+ 1058C7A1FEA54F0111CA2CBB /* Cocoa.framework */,
+ );
+ name = "Linked Frameworks";
+ sourceTree = "<group>";
+ };
+ 1058C7A2FEA54F0111CA2CBB /* Other Frameworks */ = {
+ isa = PBXGroup;
+ children = (
+ 29B97325FDCFA39411CA2CEA /* Foundation.framework */,
+ 29B97324FDCFA39411CA2CEA /* AppKit.framework */,
+ );
+ name = "Other Frameworks";
+ sourceTree = "<group>";
+ };
+ 19C28FACFE9D520D11CA2CBB /* Products */ = {
+ isa = PBXGroup;
+ children = (
+ 8D1107320486CEB800E47090 /* Service Manager.app */,
+ );
+ name = Products;
+ sourceTree = "<group>";
+ };
+ 29B97314FDCFA39411CA2CEA /* Service Manager */ = {
+ isa = PBXGroup;
+ children = (
+ 080E96DDFE201D6D7F000001 /* Classes */,
+ 29B97315FDCFA39411CA2CEA /* Other Sources */,
+ 29B97317FDCFA39411CA2CEA /* Resources */,
+ 29B97323FDCFA39411CA2CEA /* Frameworks */,
+ 19C28FACFE9D520D11CA2CBB /* Products */,
+ 4340349F06D3C8B3007C9FD4 /* StartupHelper.xcode */,
+ );
+ name = "Service Manager";
+ sourceTree = "<group>";
+ };
+ 29B97315FDCFA39411CA2CEA /* Other Sources */ = {
+ isa = PBXGroup;
+ children = (
+ 32CA4F630368D1EE00C91783 /* Service Manager_Prefix.pch */,
+ 29B97316FDCFA39411CA2CEA /* main.m */,
+ );
+ name = "Other Sources";
+ sourceTree = "<group>";
+ };
+ 29B97317FDCFA39411CA2CEA /* Resources */ = {
+ isa = PBXGroup;
+ children = (
+ 43015D210BC13E91006AFACA /* restart.png */,
+ 43015D220BC13E91006AFACA /* start.png */,
+ 43015D230BC13E91006AFACA /* stop.png */,
+ 43015D240BC13E91006AFACA /* Xserve 42U.icns */,
+ 43015D250BC13E91006AFACA /* xserve-alert.png */,
+ 43015D260BC13E91006AFACA /* Xserve-rack.png */,
+ 43015D270BC13E91006AFACA /* xserve-running.png */,
+ 43015D280BC13E91006AFACA /* xserve-stopped.png */,
+ 43015D290BC13E91006AFACA /* xserve-unknown.png */,
+ 43015D2A0BC13E91006AFACA /* Xserve.icns */,
+ 8D1107310486CEB800E47090 /* Info.plist */,
+ 089C165CFE840E0CC02AAC07 /* InfoPlist.strings */,
+ 29B97318FDCFA39411CA2CEA /* MainMenu.nib */,
+ 43015CD40BC133A8006AFACA /* StartupHelper */,
+ );
+ name = Resources;
+ sourceTree = "<group>";
+ };
+ 29B97323FDCFA39411CA2CEA /* Frameworks */ = {
+ isa = PBXGroup;
+ children = (
+ 1058C7A0FEA54F0111CA2CBB /* Linked Frameworks */,
+ 1058C7A2FEA54F0111CA2CBB /* Other Frameworks */,
+ );
+ name = Frameworks;
+ sourceTree = "<group>";
+ };
+ 4324A91F07B7C6C1000481FF /* Products */ = {
+ isa = PBXGroup;
+ children = (
+ 4324A92007B7C6C1000481FF /* StartupHelper */,
+ );
+ name = Products;
+ sourceTree = "<group>";
+ };
+/* End PBXGroup section */
+
+/* Begin PBXHeadersBuildPhase section */
+ 8D1107270486CEB800E47090 /* Headers */ = {
+ isa = PBXHeadersBuildPhase;
+ buildActionMask = 2147483647;
+ files = (
+ 8D1107280486CEB800E47090 /* Service Manager_Prefix.pch in Headers */,
+ 43C4E7A405C8344A00B92B88 /* SQLServiceManager.h in Headers */,
+ 43927B3C05C8C58C009FBD73 /* windowCategory.h in Headers */,
+ 43927B8F05C8D4A7009FBD73 /* AGProcess.h in Headers */,
+ 43FA561405C9EDB900A738DA /* menuCategory.h in Headers */,
+ );
+ runOnlyForDeploymentPostprocessing = 0;
+ };
+/* End PBXHeadersBuildPhase section */
+
+/* Begin PBXNativeTarget section */
+ 8D1107260486CEB800E47090 /* Service Manager */ = {
+ isa = PBXNativeTarget;
+ buildConfigurationList = 43015C9C0BC12FE0006AFACA /* Build configuration list for PBXNativeTarget "Service Manager" */;
+ buildPhases = (
+ 8D1107270486CEB800E47090 /* Headers */,
+ 8D1107290486CEB800E47090 /* Resources */,
+ 8D11072C0486CEB800E47090 /* Sources */,
+ 8D11072E0486CEB800E47090 /* Frameworks */,
+ 434034AF06D3C95E007C9FD4 /* CopyFiles */,
+ );
+ buildRules = (
+ );
+ dependencies = (
+ 4324A94807B7C6DE000481FF /* PBXTargetDependency */,
+ );
+ name = "Service Manager";
+ productInstallPath = "$(HOME)/Applications";
+ productName = "Service Manager";
+ productReference = 8D1107320486CEB800E47090 /* Service Manager.app */;
+ productType = "com.apple.product-type.application";
+ };
+/* End PBXNativeTarget section */
+
+/* Begin PBXProject section */
+ 29B97313FDCFA39411CA2CEA /* Project object */ = {
+ isa = PBXProject;
+ buildConfigurationList = 43015CA00BC12FE0006AFACA /* Build configuration list for PBXProject "Service Manager" */;
+ hasScannedForEncodings = 1;
+ mainGroup = 29B97314FDCFA39411CA2CEA /* Service Manager */;
+ projectDirPath = "";
+ projectReferences = (
+ {
+ ProductGroup = 4324A91F07B7C6C1000481FF /* Products */;
+ ProjectRef = 4340349F06D3C8B3007C9FD4 /* StartupHelper.xcode */;
+ },
+ );
+ targets = (
+ 8D1107260486CEB800E47090 /* Service Manager */,
+ );
+ };
+/* End PBXProject section */
+
+/* Begin PBXReferenceProxy section */
+ 4324A92007B7C6C1000481FF /* StartupHelper */ = {
+ isa = PBXReferenceProxy;
+ fileType = "compiled.mach-o.executable";
+ path = StartupHelper;
+ remoteRef = 4324A92207B7C6D1000481FF /* PBXContainerItemProxy */;
+ sourceTree = BUILT_PRODUCTS_DIR;
+ };
+/* End PBXReferenceProxy section */
+
+/* Begin PBXResourcesBuildPhase section */
+ 8D1107290486CEB800E47090 /* Resources */ = {
+ isa = PBXResourcesBuildPhase;
+ buildActionMask = 2147483647;
+ files = (
+ 8D11072A0486CEB800E47090 /* MainMenu.nib in Resources */,
+ 8D11072B0486CEB800E47090 /* InfoPlist.strings in Resources */,
+ 43015CD50BC133A8006AFACA /* StartupHelper in Resources */,
+ 43015D2B0BC13E91006AFACA /* restart.png in Resources */,
+ 43015D2C0BC13E91006AFACA /* start.png in Resources */,
+ 43015D2D0BC13E91006AFACA /* stop.png in Resources */,
+ 43015D2E0BC13E91006AFACA /* Xserve 42U.icns in Resources */,
+ 43015D2F0BC13E91006AFACA /* xserve-alert.png in Resources */,
+ 43015D300BC13E91006AFACA /* Xserve-rack.png in Resources */,
+ 43015D310BC13E91006AFACA /* xserve-running.png in Resources */,
+ 43015D320BC13E91006AFACA /* xserve-stopped.png in Resources */,
+ 43015D330BC13E91006AFACA /* xserve-unknown.png in Resources */,
+ 43015D340BC13E91006AFACA /* Xserve.icns in Resources */,
+ );
+ runOnlyForDeploymentPostprocessing = 0;
+ };
+/* End PBXResourcesBuildPhase section */
+
+/* Begin PBXSourcesBuildPhase section */
+ 8D11072C0486CEB800E47090 /* Sources */ = {
+ isa = PBXSourcesBuildPhase;
+ buildActionMask = 2147483647;
+ files = (
+ 8D11072D0486CEB800E47090 /* main.m in Sources */,
+ 43C4E7A505C8344A00B92B88 /* SQLServiceManager.m in Sources */,
+ 43927B3D05C8C58C009FBD73 /* windowCategory.m in Sources */,
+ 43927B9005C8D4A7009FBD73 /* AGProcess.m in Sources */,
+ 43FA561505C9EDB900A738DA /* menuCategory.m in Sources */,
+ );
+ runOnlyForDeploymentPostprocessing = 0;
+ };
+/* End PBXSourcesBuildPhase section */
+
+/* Begin PBXTargetDependency section */
+ 4324A94807B7C6DE000481FF /* PBXTargetDependency */ = {
+ isa = PBXTargetDependency;
+ name = "StartupHelper (from StartupHelper.xcode)";
+ targetProxy = 4324A94707B7C6DE000481FF /* PBXContainerItemProxy */;
+ };
+/* End PBXTargetDependency section */
+
+/* Begin PBXVariantGroup section */
+ 089C165CFE840E0CC02AAC07 /* InfoPlist.strings */ = {
+ isa = PBXVariantGroup;
+ children = (
+ 089C165DFE840E0CC02AAC07 /* English */,
+ );
+ name = InfoPlist.strings;
+ sourceTree = "<group>";
+ };
+ 29B97318FDCFA39411CA2CEA /* MainMenu.nib */ = {
+ isa = PBXVariantGroup;
+ children = (
+ 29B97319FDCFA39411CA2CEA /* English */,
+ );
+ name = MainMenu.nib;
+ sourceTree = "<group>";
+ };
+/* End PBXVariantGroup section */
+
+/* Begin XCBuildConfiguration section */
+ 43015C9D0BC12FE0006AFACA /* Development */ = {
+ isa = XCBuildConfiguration;
+ buildSettings = {
+ COPY_PHASE_STRIP = NO;
+ DEBUGGING_SYMBOLS = YES;
+ FRAMEWORK_SEARCH_PATHS = "";
+ GCC_DYNAMIC_NO_PIC = NO;
+ GCC_ENABLE_FIX_AND_CONTINUE = YES;
+ GCC_ENABLE_TRIGRAPHS = NO;
+ GCC_GENERATE_DEBUGGING_SYMBOLS = YES;
+ GCC_OPTIMIZATION_LEVEL = 0;
+ GCC_PRECOMPILE_PREFIX_HEADER = YES;
+ GCC_PREFIX_HEADER = "Service Manager_Prefix.pch";
+ GCC_WARN_ABOUT_MISSING_PROTOTYPES = NO;
+ GCC_WARN_FOUR_CHARACTER_CONSTANTS = NO;
+ GCC_WARN_UNKNOWN_PRAGMAS = NO;
+ HEADER_SEARCH_PATHS = "";
+ INFOPLIST_FILE = Info.plist;
+ INSTALL_PATH = "$(HOME)/Applications";
+ LIBRARY_SEARCH_PATHS = "";
+ MACOSX_DEPLOYMENT_TARGET = 10.3;
+ OPTIMIZATION_CFLAGS = "-O0";
+ OTHER_CFLAGS = "";
+ OTHER_LDFLAGS = "";
+ PRODUCT_NAME = "Service Manager";
+ SECTORDER_FLAGS = "";
+ WARNING_CFLAGS = (
+ "-Wmost",
+ "-Wno-four-char-constants",
+ "-Wno-unknown-pragmas",
+ );
+ WRAPPER_EXTENSION = app;
+ ZERO_LINK = YES;
+ };
+ name = Development;
+ };
+ 43015C9E0BC12FE0006AFACA /* Deployment */ = {
+ isa = XCBuildConfiguration;
+ buildSettings = {
+ COPY_PHASE_STRIP = YES;
+ FRAMEWORK_SEARCH_PATHS = "";
+ GCC_ENABLE_FIX_AND_CONTINUE = NO;
+ GCC_ENABLE_TRIGRAPHS = NO;
+ GCC_GENERATE_DEBUGGING_SYMBOLS = NO;
+ GCC_PRECOMPILE_PREFIX_HEADER = YES;
+ GCC_PREFIX_HEADER = "Service Manager_Prefix.pch";
+ GCC_WARN_ABOUT_MISSING_PROTOTYPES = NO;
+ GCC_WARN_FOUR_CHARACTER_CONSTANTS = NO;
+ GCC_WARN_UNKNOWN_PRAGMAS = NO;
+ HEADER_SEARCH_PATHS = "";
+ INFOPLIST_FILE = Info.plist;
+ INSTALL_PATH = "$(HOME)/Applications";
+ LIBRARY_SEARCH_PATHS = "";
+ MACOSX_DEPLOYMENT_TARGET = 10.3;
+ OTHER_CFLAGS = "";
+ OTHER_LDFLAGS = "";
+ PRODUCT_NAME = "Service Manager";
+ SECTORDER_FLAGS = "";
+ WARNING_CFLAGS = (
+ "-Wmost",
+ "-Wno-four-char-constants",
+ "-Wno-unknown-pragmas",
+ );
+ WRAPPER_EXTENSION = app;
+ ZERO_LINK = NO;
+ };
+ name = Deployment;
+ };
+ 43015C9F0BC12FE0006AFACA /* Default */ = {
+ isa = XCBuildConfiguration;
+ buildSettings = {
+ FRAMEWORK_SEARCH_PATHS = "";
+ GCC_ENABLE_TRIGRAPHS = NO;
+ GCC_GENERATE_DEBUGGING_SYMBOLS = NO;
+ GCC_PRECOMPILE_PREFIX_HEADER = YES;
+ GCC_PREFIX_HEADER = "Service Manager_Prefix.pch";
+ GCC_WARN_ABOUT_MISSING_PROTOTYPES = NO;
+ GCC_WARN_FOUR_CHARACTER_CONSTANTS = NO;
+ GCC_WARN_UNKNOWN_PRAGMAS = NO;
+ HEADER_SEARCH_PATHS = "";
+ INFOPLIST_FILE = Info.plist;
+ INSTALL_PATH = "$(HOME)/Applications";
+ LIBRARY_SEARCH_PATHS = "";
+ MACOSX_DEPLOYMENT_TARGET = 10.3;
+ OTHER_CFLAGS = "";
+ OTHER_LDFLAGS = "";
+ PRODUCT_NAME = "Service Manager";
+ SECTORDER_FLAGS = "";
+ WARNING_CFLAGS = (
+ "-Wmost",
+ "-Wno-four-char-constants",
+ "-Wno-unknown-pragmas",
+ );
+ WRAPPER_EXTENSION = app;
+ };
+ name = Default;
+ };
+ 43015CA10BC12FE0006AFACA /* Development */ = {
+ isa = XCBuildConfiguration;
+ buildSettings = {
+ };
+ name = Development;
+ };
+ 43015CA20BC12FE0006AFACA /* Deployment */ = {
+ isa = XCBuildConfiguration;
+ buildSettings = {
+ };
+ name = Deployment;
+ };
+ 43015CA30BC12FE0006AFACA /* Default */ = {
+ isa = XCBuildConfiguration;
+ buildSettings = {
+ };
+ name = Default;
+ };
+/* End XCBuildConfiguration section */
+
+/* Begin XCConfigurationList section */
+ 43015C9C0BC12FE0006AFACA /* Build configuration list for PBXNativeTarget "Service Manager" */ = {
+ isa = XCConfigurationList;
+ buildConfigurations = (
+ 43015C9D0BC12FE0006AFACA /* Development */,
+ 43015C9E0BC12FE0006AFACA /* Deployment */,
+ 43015C9F0BC12FE0006AFACA /* Default */,
+ );
+ defaultConfigurationIsVisible = 0;
+ defaultConfigurationName = Default;
+ };
+ 43015CA00BC12FE0006AFACA /* Build configuration list for PBXProject "Service Manager" */ = {
+ isa = XCConfigurationList;
+ buildConfigurations = (
+ 43015CA10BC12FE0006AFACA /* Development */,
+ 43015CA20BC12FE0006AFACA /* Deployment */,
+ 43015CA30BC12FE0006AFACA /* Default */,
+ );
+ defaultConfigurationIsVisible = 0;
+ defaultConfigurationName = Default;
+ };
+/* End XCConfigurationList section */
+ };
+ rootObject = 29B97313FDCFA39411CA2CEA /* Project object */;
+}
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <haw...@us...> - 2007-04-02 14:03:10
|
Revision: 158
http://pgsqlformac.svn.sourceforge.net/pgsqlformac/?rev=158&view=rev
Author: hawkmoon
Date: 2007-04-02 07:03:11 -0700 (Mon, 02 Apr 2007)
Log Message:
-----------
Bug ID: 1692933
updated to address manual start / restart if environment has postgres disabled (hostconfig).
Modified Paths:
--------------
trunk/ServiceManager/SQLServiceManager.m
Modified: trunk/ServiceManager/SQLServiceManager.m
===================================================================
--- trunk/ServiceManager/SQLServiceManager.m 2007-04-02 13:34:00 UTC (rev 157)
+++ trunk/ServiceManager/SQLServiceManager.m 2007-04-02 14:03:11 UTC (rev 158)
@@ -229,11 +229,12 @@
if (myStatus == errAuthorizationSuccess)
{
const char *myToolPath = [pathToHelper cString];
- char *myArguments[3];
+ char *myArguments[4];
myArguments[0] = [command cString];
myArguments[1] = [operation cString];
- myArguments[2] = NULL;
+ myArguments[2] = "MANUAL";
+ myArguments[3] = NULL;
FILE *myCommunicationsPipe = NULL;
char myReadBuffer[128];
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <haw...@us...> - 2007-04-02 13:34:00
|
Revision: 157
http://pgsqlformac.svn.sourceforge.net/pgsqlformac/?rev=157&view=rev
Author: hawkmoon
Date: 2007-04-02 06:34:00 -0700 (Mon, 02 Apr 2007)
Log Message:
-----------
Bug ID: 1692933
updated to address manual start / restart if environment has postgres disabled (hostconfig).
Modified Paths:
--------------
trunk/StartupHelper/StartupHelper.xcode/project.pbxproj
Modified: trunk/StartupHelper/StartupHelper.xcode/project.pbxproj
===================================================================
--- trunk/StartupHelper/StartupHelper.xcode/project.pbxproj 2007-04-02 13:20:17 UTC (rev 156)
+++ trunk/StartupHelper/StartupHelper.xcode/project.pbxproj 2007-04-02 13:34:00 UTC (rev 157)
@@ -11,30 +11,6 @@
8DD76FB00486AB0100D96B5E /* StartupHelper.1 in CopyFiles */ = {isa = PBXBuildFile; fileRef = C6A0FF2C0290799A04C91782 /* StartupHelper.1 */; };
/* End PBXBuildFile section */
-/* Begin PBXBuildStyle section */
- 014CEA520018CE5811CA2923 /* Development */ = {
- isa = PBXBuildStyle;
- buildSettings = {
- COPY_PHASE_STRIP = NO;
- GCC_DYNAMIC_NO_PIC = NO;
- GCC_ENABLE_FIX_AND_CONTINUE = YES;
- GCC_GENERATE_DEBUGGING_SYMBOLS = YES;
- GCC_OPTIMIZATION_LEVEL = 0;
- ZERO_LINK = YES;
- };
- name = Development;
- };
- 014CEA530018CE5811CA2923 /* Deployment */ = {
- isa = PBXBuildStyle;
- buildSettings = {
- COPY_PHASE_STRIP = YES;
- GCC_ENABLE_FIX_AND_CONTINUE = NO;
- ZERO_LINK = NO;
- };
- name = Deployment;
- };
-/* End PBXBuildStyle section */
-
/* Begin PBXCopyFilesBuildPhase section */
8DD76FAF0486AB0100D96B5E /* CopyFiles */ = {
isa = PBXCopyFilesBuildPhase;
@@ -112,11 +88,6 @@
);
buildRules = (
);
- buildSettings = {
- GCC_GENERATE_DEBUGGING_SYMBOLS = NO;
- INSTALL_PATH = "$(HOME)/bin";
- PRODUCT_NAME = StartupHelper;
- };
dependencies = (
);
name = StartupHelper;
@@ -131,12 +102,6 @@
08FB7793FE84155DC02AAC07 /* Project object */ = {
isa = PBXProject;
buildConfigurationList = 4302D214089F0F9100BB8465 /* Build configuration list for PBXProject "StartupHelper" */;
- buildSettings = {
- };
- buildStyles = (
- 014CEA520018CE5811CA2923 /* Development */,
- 014CEA530018CE5811CA2923 /* Deployment */,
- );
hasScannedForEncodings = 1;
mainGroup = 08FB7794FE84155DC02AAC07 /* StartupHelper */;
projectDirPath = "";
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <haw...@us...> - 2007-04-02 13:20:19
|
Revision: 156
http://pgsqlformac.svn.sourceforge.net/pgsqlformac/?rev=156&view=rev
Author: hawkmoon
Date: 2007-04-02 06:20:17 -0700 (Mon, 02 Apr 2007)
Log Message:
-----------
updated for manual override
'
-This line, and those below, will be ignored--
M PostgreSQL/PostgreSQL
Modified Paths:
--------------
trunk/StartupItem/PostgreSQL/PostgreSQL
Modified: trunk/StartupItem/PostgreSQL/PostgreSQL
===================================================================
--- trunk/StartupItem/PostgreSQL/PostgreSQL 2007-03-19 01:08:52 UTC (rev 155)
+++ trunk/StartupItem/PostgreSQL/PostgreSQL 2007-04-02 13:20:17 UTC (rev 156)
@@ -9,6 +9,11 @@
# History
# -------
#
+# 2007-04-02 Andy Satori <dr...@dr...>
+# Added manual-restart manual-start options for use with the
+# startup manager and allow the user to use hostconfig properly.
+# (probably last change before moving to launchd for leopard)
+#
# 2005-02-28 Andy Satori <dr...@dr... >
# Modified to resolve issues with the Postgres user not having a
# Shell defined (su -m)
@@ -52,13 +57,19 @@
StartService ()
{
-
+ shouldStartPostgres="-NO-"
+
if [ "${POSTGRES:=-YES-}" = "-YES-" ]; then
-
-
+ shouldStartPostgres="-YES-"
+ fi
+
+ if [ "$overrideEnvironment" = "-YES-" ]; then
+ shouldStartPostgres="-YES-"
+ fi
+
+ if [ "$shouldStartPostgres" = "-YES-" ]; then
ConsoleMessage "Starting PostgreSQL database server"
su -m postgres -c '/Library/PostgreSQL8/bin/pg_ctl start -D /Library/PostgreSQL8/data -l /Library/PostgreSQL8/log/PostgreSQL8.log -o -i'
-
fi
}
@@ -84,5 +95,8 @@
}
+if [ "$2" = "MANUAL" ]; then
+ overrideEnvironment='-YES-'
+fi
RunService "$1"
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <nt...@us...> - 2007-03-19 01:08:51
|
Revision: 155
http://pgsqlformac.svn.sourceforge.net/pgsqlformac/?rev=155&view=rev
Author: ntiffin
Date: 2007-03-18 18:08:52 -0700 (Sun, 18 Mar 2007)
Log Message:
-----------
Correct more .pgn and .icns conversion problems.
Modified Paths:
--------------
trunk/QueryTool/English.lproj/SqlDocument.nib/info.nib
trunk/QueryTool/TODO.txt
trunk/QueryTool/connect_32.png
trunk/QueryTool/connect_dlg.png
trunk/QueryTool/copy_32.png
trunk/QueryTool/cut_32.png
trunk/QueryTool/disconnect_32.png
trunk/QueryTool/export_data_32.png
trunk/QueryTool/icon_postgres.png
trunk/QueryTool/icon_query_tool.icns
trunk/QueryTool/open_32.png
trunk/QueryTool/paste_32.png
trunk/QueryTool/prefs_32.png
trunk/QueryTool/print_32.png
trunk/QueryTool/run_script_32.png
trunk/QueryTool/savas_32.png
trunk/QueryTool/save_32.png
trunk/QueryTool/sql-doc.icns
trunk/QueryTool/sql-doc.png
Property Changed:
----------------
trunk/QueryTool/icon_query_tool.icns
trunk/QueryTool/sql-doc.icns
Modified: trunk/QueryTool/English.lproj/SqlDocument.nib/info.nib
===================================================================
--- trunk/QueryTool/English.lproj/SqlDocument.nib/info.nib 2007-03-19 00:57:04 UTC (rev 154)
+++ trunk/QueryTool/English.lproj/SqlDocument.nib/info.nib 2007-03-19 01:08:52 UTC (rev 155)
@@ -19,6 +19,6 @@
<integer>43</integer>
</array>
<key>IBSystem Version</key>
- <string>8L127</string>
+ <string>8P2137</string>
</dict>
</plist>
Modified: trunk/QueryTool/TODO.txt
===================================================================
--- trunk/QueryTool/TODO.txt 2007-03-19 00:57:04 UTC (rev 154)
+++ trunk/QueryTool/TODO.txt 2007-03-19 01:08:52 UTC (rev 155)
@@ -37,6 +37,25 @@
Completed
=========
+- 2007-03-18 clean up binary/text file converions problems from cvs2svn.
+
+ $svn propdel svn:eol-style objects.nib
+ property 'svn:eol-style' deleted from 'objects.nib'.
+
+ $svn -v status objects.nib
+ MM 148 127 ntiffin objects.nib
+
+ $svn commit -m "Correct file conversion error." objects.nibSending objects.nib
+ Transmitting file data .
+ Committed revision 152.
+
+ $svn propset svn:mime-type application/octet-stream objects.nib
+ property 'svn:mime-type' set on 'objects.nib'
+
+ $svn commit -m "Correct file conversion error." objects.nib
+ Sending objects.nib
+ Committed revision 153.
+
- 2007-03-17 converted to svn. svn r148 matches cvs head at the time of conversion.
- 2006-11-10 Need to be able to save multiple connections in preferences. (12/02/2006)
Modified: trunk/QueryTool/connect_32.png
===================================================================
(Binary files differ)
Modified: trunk/QueryTool/connect_dlg.png
===================================================================
(Binary files differ)
Modified: trunk/QueryTool/copy_32.png
===================================================================
(Binary files differ)
Modified: trunk/QueryTool/cut_32.png
===================================================================
(Binary files differ)
Modified: trunk/QueryTool/disconnect_32.png
===================================================================
(Binary files differ)
Modified: trunk/QueryTool/export_data_32.png
===================================================================
(Binary files differ)
Modified: trunk/QueryTool/icon_postgres.png
===================================================================
(Binary files differ)
Modified: trunk/QueryTool/icon_query_tool.icns
===================================================================
(Binary files differ)
Property changes on: trunk/QueryTool/icon_query_tool.icns
___________________________________________________________________
Name: svn:eol-style
- native
Name: svn:mime-type
+ application/octet-stream
Modified: trunk/QueryTool/open_32.png
===================================================================
(Binary files differ)
Modified: trunk/QueryTool/paste_32.png
===================================================================
(Binary files differ)
Modified: trunk/QueryTool/prefs_32.png
===================================================================
(Binary files differ)
Modified: trunk/QueryTool/print_32.png
===================================================================
(Binary files differ)
Modified: trunk/QueryTool/run_script_32.png
===================================================================
(Binary files differ)
Modified: trunk/QueryTool/savas_32.png
===================================================================
(Binary files differ)
Modified: trunk/QueryTool/save_32.png
===================================================================
(Binary files differ)
Modified: trunk/QueryTool/sql-doc.icns
===================================================================
(Binary files differ)
Property changes on: trunk/QueryTool/sql-doc.icns
___________________________________________________________________
Name: svn:eol-style
- native
Name: svn:mime-type
+ application/octet-stream
Modified: trunk/QueryTool/sql-doc.png
===================================================================
(Binary files differ)
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <nt...@us...> - 2007-03-19 01:07:52
|
Revision: 154
http://pgsqlformac.svn.sourceforge.net/pgsqlformac/?rev=154&view=rev
Author: ntiffin
Date: 2007-03-18 17:57:04 -0700 (Sun, 18 Mar 2007)
Log Message:
-----------
Correct .png file conversions problems.
Modified Paths:
--------------
trunk/QueryTool/about_32.png
Property Changed:
----------------
trunk/QueryTool/about_32.png
trunk/QueryTool/connect_32.png
trunk/QueryTool/connect_dlg.png
trunk/QueryTool/copy_32.png
trunk/QueryTool/cut_32.png
trunk/QueryTool/disconnect_32.png
trunk/QueryTool/export_data_32.png
trunk/QueryTool/icon_postgres.png
trunk/QueryTool/open_32.png
trunk/QueryTool/paste_32.png
trunk/QueryTool/prefs_32.png
trunk/QueryTool/print_32.png
trunk/QueryTool/run_script_32.png
trunk/QueryTool/savas_32.png
trunk/QueryTool/save_32.png
trunk/QueryTool/sql-doc.png
Modified: trunk/QueryTool/about_32.png
===================================================================
(Binary files differ)
Property changes on: trunk/QueryTool/about_32.png
___________________________________________________________________
Name: svn:executable
- *
Name: svn:eol-style
- native
Name: svn:mime-type
+ application/octet-stream
Property changes on: trunk/QueryTool/connect_32.png
___________________________________________________________________
Name: svn:executable
- *
Name: svn:eol-style
- native
Name: svn:mime-type
+ application/octet-stream
Property changes on: trunk/QueryTool/connect_dlg.png
___________________________________________________________________
Name: svn:eol-style
- native
Name: svn:mime-type
+ application/octet-stream
Property changes on: trunk/QueryTool/copy_32.png
___________________________________________________________________
Name: svn:executable
- *
Name: svn:eol-style
- native
Name: svn:mime-type
+ application/octet-stream
Property changes on: trunk/QueryTool/cut_32.png
___________________________________________________________________
Name: svn:executable
- *
Name: svn:eol-style
- native
Name: svn:mime-type
+ application/octet-stream
Property changes on: trunk/QueryTool/disconnect_32.png
___________________________________________________________________
Name: svn:executable
- *
Name: svn:eol-style
- native
Name: svn:mime-type
+ application/octet-stream
Property changes on: trunk/QueryTool/export_data_32.png
___________________________________________________________________
Name: svn:executable
- *
Name: svn:eol-style
- native
Name: svn:mime-type
+ application/octet-stream
Property changes on: trunk/QueryTool/icon_postgres.png
___________________________________________________________________
Name: svn:eol-style
- native
Name: svn:mime-type
+ application/octet-stream
Property changes on: trunk/QueryTool/open_32.png
___________________________________________________________________
Name: svn:executable
- *
Name: svn:eol-style
- native
Name: svn:mime-type
+ application/octet-stream
Property changes on: trunk/QueryTool/paste_32.png
___________________________________________________________________
Name: svn:executable
- *
Name: svn:eol-style
- native
Name: svn:mime-type
+ application/octet-stream
Property changes on: trunk/QueryTool/prefs_32.png
___________________________________________________________________
Name: svn:executable
- *
Name: svn:eol-style
- native
Name: svn:mime-type
+ application/octet-stream
Property changes on: trunk/QueryTool/print_32.png
___________________________________________________________________
Name: svn:executable
- *
Name: svn:eol-style
- native
Name: svn:mime-type
+ application/octet-stream
Property changes on: trunk/QueryTool/run_script_32.png
___________________________________________________________________
Name: svn:executable
- *
Name: svn:eol-style
- native
Name: svn:mime-type
+ application/octet-stream
Property changes on: trunk/QueryTool/savas_32.png
___________________________________________________________________
Name: svn:executable
- *
Name: svn:eol-style
- native
Name: svn:mime-type
+ application/octet-stream
Property changes on: trunk/QueryTool/save_32.png
___________________________________________________________________
Name: svn:executable
- *
Name: svn:eol-style
- native
Name: svn:mime-type
+ application/octet-stream
Property changes on: trunk/QueryTool/sql-doc.png
___________________________________________________________________
Name: svn:eol-style
- native
Name: svn:mime-type
+ application/octet-stream
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <nt...@us...> - 2007-03-19 00:32:56
|
Revision: 153
http://pgsqlformac.svn.sourceforge.net/pgsqlformac/?rev=153&view=rev
Author: ntiffin
Date: 2007-03-18 17:22:20 -0700 (Sun, 18 Mar 2007)
Log Message:
-----------
Correct file conversion error.
Property Changed:
----------------
trunk/QueryTool/English.lproj/MainMenu.nib/objects.nib
Property changes on: trunk/QueryTool/English.lproj/MainMenu.nib/objects.nib
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <nt...@us...> - 2007-03-19 00:32:56
|
Revision: 152
http://pgsqlformac.svn.sourceforge.net/pgsqlformac/?rev=152&view=rev
Author: ntiffin
Date: 2007-03-18 17:21:17 -0700 (Sun, 18 Mar 2007)
Log Message:
-----------
Correct file conversion error.
Modified Paths:
--------------
trunk/QueryTool/English.lproj/MainMenu.nib/objects.nib
Property Changed:
----------------
trunk/QueryTool/English.lproj/MainMenu.nib/objects.nib
Modified: trunk/QueryTool/English.lproj/MainMenu.nib/objects.nib
===================================================================
--- trunk/QueryTool/English.lproj/MainMenu.nib/objects.nib 2007-03-19 00:01:52 UTC (rev 151)
+++ trunk/QueryTool/English.lproj/MainMenu.nib/objects.nib 2007-03-19 00:21:17 UTC (rev 152)
@@ -1,25 +1,25 @@
-typedstream\x81\xE8\x84@\x84\x84\x84NSIBObjectData\x81 |
|
From: <nt...@us...> - 2007-03-19 00:02:17
|
Revision: 151
http://pgsqlformac.svn.sourceforge.net/pgsqlformac/?rev=151&view=rev
Author: ntiffin
Date: 2007-03-18 17:01:52 -0700 (Sun, 18 Mar 2007)
Log Message:
-----------
Correct conversion propoerty.
Modified Paths:
--------------
trunk/QueryTool/English.lproj/SqlDocument.nib/keyedobjects.nib
Property Changed:
----------------
trunk/QueryTool/English.lproj/SqlDocument.nib/keyedobjects.nib
Modified: trunk/QueryTool/English.lproj/SqlDocument.nib/keyedobjects.nib
===================================================================
(Binary files differ)
Property changes on: trunk/QueryTool/English.lproj/SqlDocument.nib/keyedobjects.nib
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <nt...@us...> - 2007-03-18 12:36:50
|
Revision: 149
http://pgsqlformac.svn.sourceforge.net/pgsqlformac/?rev=149&view=rev
Author: ntiffin
Date: 2007-03-17 07:50:51 -0700 (Sat, 17 Mar 2007)
Log Message:
-----------
Add note about conversion.
Modified Paths:
--------------
trunk/QueryTool/TODO.txt
Modified: trunk/QueryTool/TODO.txt
===================================================================
--- trunk/QueryTool/TODO.txt 2007-02-19 20:44:54 UTC (rev 148)
+++ trunk/QueryTool/TODO.txt 2007-03-17 14:50:51 UTC (rev 149)
@@ -37,6 +37,8 @@
Completed
=========
+- 2007-03-17 converted to svn. svn r148 matches cvs head at the time of conversion.
+
- 2006-11-10 Need to be able to save multiple connections in preferences. (12/02/2006)
- 2006-08-26 Function return parameters not correctly determined, see below: (10/30/2006)
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: Neil T. <nt...@us...> - 2007-02-19 20:45:01
|
Update of /cvsroot/pgsqlformac/QueryTool In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv617 Modified Files: SqlDocument.h SqlDocument.m Added Files: ExecuteQueryThread.h ExecuteQueryThread.m QueryDataSource.h QueryDataSource.m Removed Files: DataSource.h DataSource.m Log Message: Fix name conflicts in deployment build. --- NEW FILE: ExecuteQueryThread.h --- // // ExecuteQueryThread.h // QueryToolForPostgresN // // Created by Neil Tiffin on 9/17/06. // Copyright 2006 Performance Champions, Inc.. All rights reserved. // #import <Cocoa/Cocoa.h> #import "Connection.h" #import "RecordSet.h" enum QueryToolQueryStatus { QueryNoStatus, QueryRunning, QueryCompleted, QueryError }; enum QueryToolConnectionStatus { ConnNoStatus, Connected, ConnError }; @interface ExecuteQueryThread : NSObject { NSLock *threadLock; enum QueryToolQueryStatus queryStatus; enum QueryToolConnectionStatus connStatus; RecordSet *threadResults; // is kept until next query Connection *connection; // is persistant through multiple executions NSString *connectionString; NSString *errorString; } - (BOOL)createNewSQLConnection:(NSString *)aString; - (void)executeQueryThread:(id)theDocument; @end --- NEW FILE: ExecuteQueryThread.m --- // // ExecuteQueryThread.m // QueryToolForPostgresN // // Created by Neil Tiffin on 9/17/06. // Copyright 2006 Performance Champions, Inc.. All rights reserved. // #import "ExecuteQueryThread.h" @class SQLDocument; @implementation ExecuteQueryThread - (id)init { [super init]; threadLock = [[NSLock alloc] init]; return self; } - (void)dealloc { [connection disconnect]; [connection release]; [threadLock release]; [connectionString release]; [threadResults release]; [super dealloc]; } - (BOOL)createNewSQLConnection:(NSString *)aString { [connectionString release]; [connection disconnect]; [connection release]; connectionString = aString; [connectionString retain]; connection = [[Connection alloc] init]; [connection connectUsingString:connectionString]; if ([connection connectUsingString:connectionString]) { connStatus = Connected; return YES; } connStatus = ConnError; return NO; } - (void)executeQueryThread:(id)theDocument { if (queryStatus == QueryRunning) { return; } if (connStatus != Connected) { queryStatus = QueryError; return; } queryStatus = QueryRunning; [errorString release]; errorString = nil; [threadResults release]; threadResults = nil; threadResults = [connection execQueryLogInfoLogSQL:[(SQLDocument *)theDocument currentQuery]]; if ([connection errorDescription] != nil) { NSLog([connection errorDescription]); errorString = [NSString stringWithString:[connection errorDescription]]; } //queryStatus == QueryDone; [(SQLDocument *)theDocument threadComplete]; } @end --- NEW FILE: QueryDataSource.m --- // // QueryDataSource.m // // Created by Andy Satori on Sun 02/08/04 05:38 PM // Copyright (c) 2004 __MyCompanyName__. All rights reserved. // #import <Cocoa/Cocoa.h> #import "QueryDataSource.h" #import "QueryTool.h" @implementation QueryDataSource - (id)init { [super init]; items = [[NSMutableArray alloc] init]; return self; } // collection management - (NSMutableDictionary *)addItem { NSMutableDictionary *newItem = [[NSMutableDictionary alloc] init]; [items addObject: newItem]; return newItem; } - (void)removeItemAtIndex:(int)index { [items removeObjectAtIndex:index]; } - (NSMutableDictionary *)itemAtIndex:(int)index { return [items objectAtIndex:index]; } - (int)count { return [items count]; } // table view data source methods - (int)numberOfRowsInTableView:(NSTableView *)aTableView { return [items count]; } - (id)tableView:(NSTableView *)aTableView objectValueForTableColumn:(NSTableColumn *)aTableColumn row:(int)rowIndex { NSString *ident = [aTableColumn identifier]; NSMutableDictionary *anItem = [items objectAtIndex:rowIndex]; return [anItem valueForKey:ident]; } @end --- NEW FILE: QueryDataSource.h --- // // QueryDataSource.h // // Created by Andy Satori on Sun 02/08/04 05:38 PM // Copyright (c) 2004 __MyCompanyName__. All rights reserved. // #import <Foundation/Foundation.h> @interface QueryDataSource : NSObject { NSMutableArray *items; } - (NSMutableDictionary *)addItem; - (void)removeItemAtIndex:(int)index; - (NSMutableDictionary *)itemAtIndex:(int)index; - (int)count; @end --- DataSource.m DELETED --- Index: SqlDocument.m =================================================================== RCS file: /cvsroot/pgsqlformac/QueryTool/SqlDocument.m,v retrieving revision 1.25 retrieving revision 1.26 diff -C2 -d -r1.25 -r1.26 *** SqlDocument.m 2 Dec 2006 14:51:43 -0000 1.25 --- SqlDocument.m 19 Feb 2007 20:44:54 -0000 1.26 *************** *** 563,567 **** [dataSource release]; } ! dataSource = [[DataSource alloc] init]; NSMutableArray *maxDataInColumn = [NSMutableArray arrayWithCapacity:20]; --- 563,567 ---- [dataSource release]; } ! dataSource = [[QueryDataSource alloc] init]; NSMutableArray *maxDataInColumn = [NSMutableArray arrayWithCapacity:20]; Index: SqlDocument.h =================================================================== RCS file: /cvsroot/pgsqlformac/QueryTool/SqlDocument.h,v retrieving revision 1.15 retrieving revision 1.16 diff -C2 -d -r1.15 -r1.16 *** SqlDocument.h 2 Dec 2006 14:51:43 -0000 1.15 --- SqlDocument.h 19 Feb 2007 20:44:54 -0000 1.16 *************** *** 10,13 **** --- 10,14 ---- #import <Cocoa/Cocoa.h> #import "DataSource.h" + #import "QueryDataSource.h" #import "Connection.h" #import "ExplorerModel.h" --- DataSource.h DELETED --- |
|
From: Neil T. <nt...@us...> - 2007-02-19 20:40:20
|
Update of /cvsroot/pgsqlformac/pgCocoaDB/UnitTest In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv31478/UnitTest Modified Files: pgCocoaDBSchemaTest.m Log Message: Bug Fixes. Index: pgCocoaDBSchemaTest.m =================================================================== RCS file: /cvsroot/pgsqlformac/pgCocoaDB/UnitTest/pgCocoaDBSchemaTest.m,v retrieving revision 1.20 retrieving revision 1.21 diff -C2 -d -r1.20 -r1.21 *** pgCocoaDBSchemaTest.m 30 Oct 2006 19:30:32 -0000 1.20 --- pgCocoaDBSchemaTest.m 19 Feb 2007 20:40:16 -0000 1.21 *************** *** 18,22 **** NSString* const PGCocoaTestDatabase = @"pgcocoa_test_database"; NSString* const PGCocoaTestSchema = @"pgcocoa_test_schema"; ! NSString* const PGCocoaTestUser = @"ntiffin"; NSString* const PGCocoaTestPassword = @""; NSString* const PGCocoaTestHost = @"localhost"; --- 18,22 ---- NSString* const PGCocoaTestDatabase = @"pgcocoa_test_database"; NSString* const PGCocoaTestSchema = @"pgcocoa_test_schema"; ! NSString* const PGCocoaTestUser = @"neiltiffin"; NSString* const PGCocoaTestPassword = @""; NSString* const PGCocoaTestHost = @"localhost"; *************** *** 30,33 **** --- 30,46 ---- //------------------------------------------------------------------ + /* + initdb -D /Maui-Dev/PostgreSQL_Tools_cvs/testdatabase + + Success. You can now start the database server using: + + postgres-8.2 -D /Maui-Dev/PostgreSQL_Tools_cvs/testdatabase + or + pg_ctl-8.2 -D /Maui-Dev/PostgreSQL_Tools_cvs/testdatabase -l /Maui-Dev/PostgreSQL_Tools_cvs/testdatabase/logfile start + + createlang plpgsql template 1 + pg_ctl-8.2 -D /Maui-Dev/PostgreSQL_Tools_cvs/testdatabase stop + */ + @implementation pgCocoaDBSchemaTest |
|
From: Neil T. <nt...@us...> - 2007-02-19 20:40:20
|
Update of /cvsroot/pgsqlformac/pgCocoaDB In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv31478 Modified Files: Schema.m Log Message: Bug Fixes. Index: Schema.m =================================================================== RCS file: /cvsroot/pgsqlformac/pgCocoaDB/Schema.m,v retrieving revision 1.24 retrieving revision 1.25 diff -C2 -d -r1.24 -r1.25 *** Schema.m 30 Oct 2006 19:30:32 -0000 1.24 --- Schema.m 19 Feb 2007 20:40:16 -0000 1.25 *************** *** 40,44 **** // TODO add user default to bypass versions check //PostgreSQL 8.1.2 on powerpc-apple-darwin8.5.0, compiled by GCC powerpc-apple-darwin8-gcc-4.0.1 (GCC) 4.0.1 (Apple Computer, Inc. build 5250) ! if ([pgVersionFound rangeOfString:@"PostgreSQL 8.1"].location == NSNotFound) { // TODO not found raise error? --- 40,44 ---- // TODO add user default to bypass versions check //PostgreSQL 8.1.2 on powerpc-apple-darwin8.5.0, compiled by GCC powerpc-apple-darwin8-gcc-4.0.1 (GCC) 4.0.1 (Apple Computer, Inc. build 5250) ! if ([pgVersionFound rangeOfString:@"PostgreSQL 8.2"].location == NSNotFound) { // TODO not found raise error? |
|
From: Neil T. <nt...@us...> - 2007-02-19 20:40:19
|
Update of /cvsroot/pgsqlformac/pgCocoaDB/pgCocoaDBn.xcodeproj In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv31478/pgCocoaDBn.xcodeproj Modified Files: project.pbxproj ntiffin.pbxuser ntiffin.mode1 Log Message: Bug Fixes. Index: project.pbxproj =================================================================== RCS file: /cvsroot/pgsqlformac/pgCocoaDB/pgCocoaDBn.xcodeproj/project.pbxproj,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** project.pbxproj 4 Sep 2006 14:34:29 -0000 1.1 --- project.pbxproj 19 Feb 2007 20:40:16 -0000 1.2 *************** *** 51,56 **** CED6300109C48EED00B6B94B /* ExplorerNode.h in Headers */ = {isa = PBXBuildFile; fileRef = CED62FFE09C48EED00B6B94B /* ExplorerNode.h */; }; CED6300209C48EED00B6B94B /* ExplorerNode.m in Sources */ = {isa = PBXBuildFile; fileRef = CED62FFF09C48EED00B6B94B /* ExplorerNode.m */; }; ! CED865D30A0E5FCC00F9FD5D /* libpq.4.1.dylib-8.1 in Resources */ = {isa = PBXBuildFile; fileRef = CED865D20A0E5FCC00F9FD5D /* libpq.4.1.dylib-8.1 */; }; ! CED865D40A0E5FCC00F9FD5D /* libpq.4.1.dylib-8.1 in Resources */ = {isa = PBXBuildFile; fileRef = CED865D20A0E5FCC00F9FD5D /* libpq.4.1.dylib-8.1 */; }; /* End PBXBuildFile section */ --- 51,56 ---- CED6300109C48EED00B6B94B /* ExplorerNode.h in Headers */ = {isa = PBXBuildFile; fileRef = CED62FFE09C48EED00B6B94B /* ExplorerNode.h */; }; CED6300209C48EED00B6B94B /* ExplorerNode.m in Sources */ = {isa = PBXBuildFile; fileRef = CED62FFF09C48EED00B6B94B /* ExplorerNode.m */; }; ! CED865D30A0E5FCC00F9FD5D /* libpq.dylib in Resources */ = {isa = PBXBuildFile; fileRef = CED865D20A0E5FCC00F9FD5D /* libpq.dylib */; }; ! CED865D40A0E5FCC00F9FD5D /* libpq.dylib in Resources */ = {isa = PBXBuildFile; fileRef = CED865D20A0E5FCC00F9FD5D /* libpq.dylib */; }; /* End PBXBuildFile section */ *************** *** 96,100 **** CED62FFE09C48EED00B6B94B /* ExplorerNode.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ExplorerNode.h; sourceTree = "<group>"; }; CED62FFF09C48EED00B6B94B /* ExplorerNode.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ExplorerNode.m; sourceTree = "<group>"; }; ! CED865D20A0E5FCC00F9FD5D /* libpq.4.1.dylib-8.1 */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = text.man; name = "libpq.4.1.dylib-8.1"; path = "/sw/lib/libpq.4.1.dylib-8.1"; sourceTree = "<absolute>"; }; /* End PBXFileReference section */ --- 96,100 ---- CED62FFE09C48EED00B6B94B /* ExplorerNode.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ExplorerNode.h; sourceTree = "<group>"; }; CED62FFF09C48EED00B6B94B /* ExplorerNode.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ExplorerNode.m; sourceTree = "<group>"; }; ! CED865D20A0E5FCC00F9FD5D /* libpq.dylib */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = "compiled.mach-o.dylib"; name = libpq.dylib; path = /sw/lib/libpq.dylib; sourceTree = "<absolute>"; }; /* End PBXFileReference section */ *************** *** 196,200 **** isa = PBXGroup; children = ( ! CED865D20A0E5FCC00F9FD5D /* libpq.4.1.dylib-8.1 */, CE9B2B9D09B9F03000877A0E /* SenTestingKit.framework */, 1058C7B1FEA5585E11CA2CBB /* Cocoa.framework */, --- 196,200 ---- isa = PBXGroup; children = ( ! CED865D20A0E5FCC00F9FD5D /* libpq.dylib */, CE9B2B9D09B9F03000877A0E /* SenTestingKit.framework */, 1058C7B1FEA5585E11CA2CBB /* Cocoa.framework */, *************** *** 319,323 **** files = ( 8DC2EF530486A6940098B216 /* InfoPlist.strings in Resources */, ! CED865D40A0E5FCC00F9FD5D /* libpq.4.1.dylib-8.1 in Resources */, ); runOnlyForDeploymentPostprocessing = 0; --- 319,323 ---- files = ( 8DC2EF530486A6940098B216 /* InfoPlist.strings in Resources */, ! CED865D40A0E5FCC00F9FD5D /* libpq.dylib in Resources */, ); runOnlyForDeploymentPostprocessing = 0; *************** *** 327,331 **** buildActionMask = 2147483647; files = ( ! CED865D30A0E5FCC00F9FD5D /* libpq.4.1.dylib-8.1 in Resources */, ); runOnlyForDeploymentPostprocessing = 0; --- 327,331 ---- buildActionMask = 2147483647; files = ( ! CED865D30A0E5FCC00F9FD5D /* libpq.dylib in Resources */, ); runOnlyForDeploymentPostprocessing = 0; *************** *** 417,421 **** isa = XCBuildConfiguration; buildSettings = { ! ARCHS = ppc; COPY_PHASE_STRIP = NO; DEBUGGING_SYMBOLS = YES; --- 417,421 ---- isa = XCBuildConfiguration; buildSettings = { ! ARCHS = i386; COPY_PHASE_STRIP = NO; DEBUGGING_SYMBOLS = YES; *************** *** 466,471 **** "-lssl", "-lcrypto", - "-lkrb5", "-lpq", "-seg1addr", 0xb0000000, --- 466,471 ---- "-lssl", "-lcrypto", "-lpq", + "-lkrb5", "-seg1addr", 0xb0000000, *************** *** 485,489 **** isa = XCBuildConfiguration; buildSettings = { ! ARCHS = ppc; COPY_PHASE_STRIP = YES; DYLIB_COMPATIBILITY_VERSION = 1; --- 485,489 ---- isa = XCBuildConfiguration; buildSettings = { ! ARCHS = i386; COPY_PHASE_STRIP = YES; DYLIB_COMPATIBILITY_VERSION = 1; *************** *** 516,521 **** "-lssl", "-lcrypto", - "-lkrb5", "-lpq", "-seg1addr", 0xb0000000, --- 516,521 ---- "-lssl", "-lcrypto", "-lpq", + "-lkrb5", "-seg1addr", 0xb0000000, *************** *** 564,569 **** "-lssl", "-lcrypto", - "-lkrb5", "-lpq", "-seg1addr", 0xb0000000, --- 564,569 ---- "-lssl", "-lcrypto", "-lpq", + "-lkrb5", "-seg1addr", 0xb0000000, *************** *** 585,590 **** --- 585,594 ---- isa = XCBuildConfiguration; buildSettings = { + GCC_MODEL_TUNING = ""; GCC_OPTIMIZATION_LEVEL = 0; + HEADER_SEARCH_PATHS = /sw/include; + LIBRARY_SEARCH_PATHS = /sw/lib; MACOSX_DEPLOYMENT_TARGET = 10.4; + PREBINDING = YES; SDKROOT = /Developer/SDKs/MacOSX10.4u.sdk; }; *************** *** 594,598 **** --- 598,606 ---- isa = XCBuildConfiguration; buildSettings = { + GCC_MODEL_TUNING = ""; + HEADER_SEARCH_PATHS = /sw/include; + LIBRARY_SEARCH_PATHS = /sw/lib; MACOSX_DEPLOYMENT_TARGET = 10.4; + PREBINDING = YES; SDKROOT = /Developer/SDKs/MacOSX10.4u.sdk; }; *************** *** 602,606 **** --- 610,618 ---- isa = XCBuildConfiguration; buildSettings = { + GCC_MODEL_TUNING = ""; + HEADER_SEARCH_PATHS = /sw/include; + LIBRARY_SEARCH_PATHS = /sw/lib; MACOSX_DEPLOYMENT_TARGET = 10.4; + PREBINDING = YES; SDKROOT = /Developer/SDKs/MacOSX10.4u.sdk; }; Index: ntiffin.mode1 =================================================================== RCS file: /cvsroot/pgsqlformac/pgCocoaDB/pgCocoaDBn.xcodeproj/ntiffin.mode1,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** ntiffin.mode1 18 Sep 2006 17:54:56 -0000 1.3 --- ntiffin.mode1 19 Feb 2007 20:40:16 -0000 1.4 *************** *** 205,290 **** </array> <key>OpenEditors</key> ! <array> ! <dict> ! <key>Content</key> ! <dict> ! <key>PBXProjectModuleGUID</key> ! <string>CED970B80ABEF8110072C3CC</string> ! <key>PBXProjectModuleLabel</key> ! <string>ExplorerModel.m</string> ! <key>PBXSplitModuleInNavigatorKey</key> ! <dict> ! <key>Split0</key> ! <dict> ! <key>PBXProjectModuleGUID</key> ! <string>CED970B90ABEF8110072C3CC</string> ! <key>PBXProjectModuleLabel</key> ! <string>ExplorerModel.m</string> ! <key>_historyCapacity</key> ! <integer>0</integer> ! <key>bookmark</key> ! <string>CE0B9E2F0ABEF85F00AD89B4</string> ! <key>history</key> ! <array> ! <string>CE0B9E280ABEF84800AD89B4</string> ! </array> ! </dict> ! <key>SplitCount</key> ! <string>1</string> ! </dict> ! <key>StatusBarVisibility</key> ! <true/> ! </dict> ! <key>Geometry</key> ! <dict> ! <key>Frame</key> ! <string>{{0, 20}, {898, 763}}</string> ! <key>PBXModuleWindowStatusBarHidden2</key> ! <false/> ! <key>RubberWindowFrame</key> ! <string>452 42 898 804 0 0 1440 878 </string> ! </dict> ! </dict> ! <dict> ! <key>Content</key> ! <dict> ! <key>PBXProjectModuleGUID</key> ! <string>CED970BB0ABEF8110072C3CC</string> ! <key>PBXProjectModuleLabel</key> ! <string>ExplorerModel.h</string> ! <key>PBXSplitModuleInNavigatorKey</key> ! <dict> ! <key>Split0</key> ! <dict> ! <key>PBXProjectModuleGUID</key> ! <string>CED970BC0ABEF8110072C3CC</string> ! <key>PBXProjectModuleLabel</key> ! <string>ExplorerModel.h</string> ! <key>_historyCapacity</key> ! <integer>0</integer> ! <key>bookmark</key> ! <string>CE0B9E310ABEF85F00AD89B4</string> ! <key>history</key> ! <array> ! <string>CE0B9E300ABEF85F00AD89B4</string> ! </array> ! </dict> ! <key>SplitCount</key> ! <string>1</string> ! </dict> ! <key>StatusBarVisibility</key> ! <true/> ! </dict> ! <key>Geometry</key> ! <dict> ! <key>Frame</key> ! <string>{{0, 20}, {674, 716}}</string> ! <key>PBXModuleWindowStatusBarHidden2</key> ! <false/> ! <key>RubberWindowFrame</key> ! <string>22 12 674 757 0 0 1440 878 </string> ! </dict> ! </dict> ! </array> <key>PerspectiveWidths</key> <array> --- 205,209 ---- </array> <key>OpenEditors</key> ! <array/> <key>PerspectiveWidths</key> <array> *************** *** 369,373 **** <array> <array> ! <integer>9</integer> <integer>5</integer> <integer>0</integer> --- 288,292 ---- <array> <array> ! <integer>12</integer> <integer>5</integer> <integer>0</integer> *************** *** 394,398 **** </array> <key>RubberWindowFrame</key> ! <string>188 186 903 692 0 0 1440 878 </string> </dict> <key>Module</key> --- 313,317 ---- </array> <key>RubberWindowFrame</key> ! <string>188 185 903 692 0 0 1440 878 </string> </dict> <key>Module</key> *************** *** 431,435 **** <string>{{0, 0}, {603, 0}}</string> <key>RubberWindowFrame</key> ! <string>188 186 903 692 0 0 1440 878 </string> </dict> <key>Module</key> --- 350,354 ---- <string>{{0, 0}, {603, 0}}</string> <key>RubberWindowFrame</key> ! <string>188 185 903 692 0 0 1440 878 </string> </dict> <key>Module</key> *************** *** 451,455 **** <string>{{0, 5}, {603, 646}}</string> <key>RubberWindowFrame</key> ! <string>188 186 903 692 0 0 1440 878 </string> </dict> <key>Module</key> --- 370,374 ---- <string>{{0, 5}, {603, 646}}</string> <key>RubberWindowFrame</key> ! <string>188 185 903 692 0 0 1440 878 </string> </dict> <key>Module</key> *************** *** 475,481 **** <key>TableOfContents</key> <array> ! <string>CE0B9E2D0ABEF85F00AD89B4</string> <string>1CE0B1FE06471DED0097A5F4</string> ! <string>CE0B9E2E0ABEF85F00AD89B4</string> <string>1CE0B20306471E060097A5F4</string> <string>1CE0B20506471E060097A5F4</string> --- 394,400 ---- <key>TableOfContents</key> <array> ! <string>CED4CD9B0B07B5A600980A5B</string> <string>1CE0B1FE06471DED0097A5F4</string> ! <string>CED4CD9C0B07B5A600980A5B</string> <string>1CE0B20306471E060097A5F4</string> <string>1CE0B20506471E060097A5F4</string> *************** *** 596,600 **** <true/> <key>TimeStamp</key> ! <real>180287583.40070099</real> <key>ToolbarDisplayMode</key> <integer>1</integer> --- 515,519 ---- <true/> <key>TimeStamp</key> ! <real>185054610.245828</real> <key>ToolbarDisplayMode</key> <integer>1</integer> *************** *** 611,621 **** <key>WindowOrderList</key> <array> - <string>CED970BB0ABEF8110072C3CC</string> - <string>CED970B80ABEF8110072C3CC</string> - <string>CE0B9E320ABEF85F00AD89B4</string> <string>/Maui-Dev/PostgreSQL_Tools_cvs/pgCocoaDB/pgCocoaDBn.xcodeproj</string> </array> <key>WindowString</key> ! <string>188 186 903 692 0 0 1440 878 </string> <key>WindowTools</key> <array> --- 530,537 ---- <key>WindowOrderList</key> <array> <string>/Maui-Dev/PostgreSQL_Tools_cvs/pgCocoaDB/pgCocoaDBn.xcodeproj</string> </array> <key>WindowString</key> ! <string>188 185 903 692 0 0 1440 878 </string> <key>WindowTools</key> <array> *************** *** 647,651 **** <string>{{0, 0}, {1178, 119}}</string> <key>RubberWindowFrame</key> ! <string>203 86 1178 697 0 0 1440 878 </string> </dict> <key>Module</key> --- 563,567 ---- <string>{{0, 0}, {1178, 119}}</string> <key>RubberWindowFrame</key> ! <string>97 134 1178 697 0 0 1440 878 </string> </dict> <key>Module</key> *************** *** 660,664 **** <dict> <key>PBXBuildLogShowsTranscriptDefaultKey</key> ! <string>{{0, 122}, {1178, 410}}</string> <key>PBXProjectModuleGUID</key> <string>XCMainBuildResultsModuleGUID</string> --- 576,580 ---- <dict> <key>PBXBuildLogShowsTranscriptDefaultKey</key> ! <string>{{0, 110}, {1178, 422}}</string> <key>PBXProjectModuleGUID</key> <string>XCMainBuildResultsModuleGUID</string> *************** *** 675,679 **** <string>{{0, 124}, {1178, 532}}</string> <key>RubberWindowFrame</key> ! <string>203 86 1178 697 0 0 1440 878 </string> </dict> <key>Module</key> --- 591,595 ---- <string>{{0, 124}, {1178, 532}}</string> <key>RubberWindowFrame</key> ! <string>97 134 1178 697 0 0 1440 878 </string> </dict> <key>Module</key> *************** *** 697,702 **** <key>TableOfContents</key> <array> ! <string>CE0B9E320ABEF85F00AD89B4</string> ! <string>CE0B9E330ABEF85F00AD89B4</string> <string>1CD0528F0623707200166675</string> <string>XCMainBuildResultsModuleGUID</string> --- 613,618 ---- <key>TableOfContents</key> <array> ! <string>CE943ADE0B052DD60062E2B1</string> ! <string>CE71F1490B05FFB00028BDB2</string> <string>1CD0528F0623707200166675</string> <string>XCMainBuildResultsModuleGUID</string> *************** *** 705,713 **** <string>xcode.toolbar.config.build</string> <key>WindowString</key> ! <string>203 86 1178 697 0 0 1440 878 </string> <key>WindowToolGUID</key> ! <string>CE0B9E320ABEF85F00AD89B4</string> <key>WindowToolIsVisible</key> ! <true/> </dict> <dict> --- 621,629 ---- <string>xcode.toolbar.config.build</string> <key>WindowString</key> ! <string>97 134 1178 697 0 0 1440 878 </string> <key>WindowToolGUID</key> ! <string>CE943ADE0B052DD60062E2B1</string> <key>WindowToolIsVisible</key> ! <false/> </dict> <dict> *************** *** 967,971 **** <array> <string>CE76CF0409BA22270005B7AB</string> ! <string>CE64C2950AA72CA600FBCB31</string> <string>1C78EAAC065D492600B07095</string> </array> --- 883,887 ---- <array> <string>CE76CF0409BA22270005B7AB</string> ! <string>CEF01A4B0AF6764600BCE7B3</string> <string>1C78EAAC065D492600B07095</string> </array> *************** *** 975,979 **** <string>CE76CF0409BA22270005B7AB</string> <key>WindowToolIsVisible</key> ! <false/> </dict> <dict> --- 891,895 ---- <string>CE76CF0409BA22270005B7AB</string> <key>WindowToolIsVisible</key> ! <true/> </dict> <dict> Index: ntiffin.pbxuser =================================================================== RCS file: /cvsroot/pgsqlformac/pgCocoaDB/pgCocoaDBn.xcodeproj/ntiffin.pbxuser,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** ntiffin.pbxuser 18 Sep 2006 17:54:56 -0000 1.3 --- ntiffin.pbxuser 19 Feb 2007 20:40:16 -0000 1.4 *************** *** 9,14 **** ); breakpoints = ( ! CE3C3A9B0A0FEAD100556EA0 /* Schema.m:619 */, ! CEFCE8060A227563008F2667 /* Schema.m:645 */, CE69B18D09D6DBB000910AD1 /* ExplorerModel.m:149 */, CEDA95EE0A28EEA900A0CDA5 /* Schema.m:150 */, --- 9,14 ---- ); breakpoints = ( ! CE3C3A9B0A0FEAD100556EA0 /* Schema.m:637 */, ! CEFCE8060A227563008F2667 /* Schema.m:656 */, CE69B18D09D6DBB000910AD1 /* ExplorerModel.m:149 */, CEDA95EE0A28EEA900A0CDA5 /* Schema.m:150 */, *************** *** 127,138 **** ); }; ! PBXPerProjectTemplateStateSaveDate = 180287523; ! PBXWorkspaceStateSaveDate = 180287523; ! }; ! perUserProjectItems = { ! CE0B9E280ABEF84800AD89B4 /* PBXTextBookmark */ = CE0B9E280ABEF84800AD89B4 /* PBXTextBookmark */; ! CE0B9E2F0ABEF85F00AD89B4 /* PBXTextBookmark */ = CE0B9E2F0ABEF85F00AD89B4 /* PBXTextBookmark */; ! CE0B9E300ABEF85F00AD89B4 /* PBXTextBookmark */ = CE0B9E300ABEF85F00AD89B4 /* PBXTextBookmark */; ! CE0B9E310ABEF85F00AD89B4 /* PBXTextBookmark */ = CE0B9E310ABEF85F00AD89B4 /* PBXTextBookmark */; }; sourceControlManager = CED43E1C09B0992E0096CAC2 /* Source Control */; --- 127,132 ---- ); }; ! PBXPerProjectTemplateStateSaveDate = 185054610; ! PBXWorkspaceStateSaveDate = 185054610; }; sourceControlManager = CED43E1C09B0992E0096CAC2 /* Source Control */; *************** *** 142,156 **** 4330338F066135480037D932 /* Connection.h */ = { uiCtxt = { ! sepNavIntBoundsRect = "{{0, 0}, {617, 1470}}"; ! sepNavSelRange = "{971, 10}"; ! sepNavVisRect = "{{0, 498}, {617, 695}}"; ! sepNavWindowFrame = "{{692, 46}, {662, 768}}"; }; }; 43303390066135480037D932 /* Connection.m */ = { uiCtxt = { ! sepNavIntBoundsRect = "{{0, 0}, {944, 9422}}"; ! sepNavSelRange = "{9721, 0}"; ! sepNavVisRect = "{{0, 8484}, {928, 748}}"; sepNavWindowFrame = "{{334, 41}, {973, 821}}"; }; --- 136,150 ---- 4330338F066135480037D932 /* Connection.h */ = { uiCtxt = { ! sepNavIntBoundsRect = "{{0, 0}, {617, 1512}}"; ! sepNavSelRange = "{1816, 0}"; ! sepNavVisRect = "{{0, 719}, {617, 695}}"; ! sepNavWindowFrame = "{{618, 66}, {662, 768}}"; }; }; 43303390066135480037D932 /* Connection.m */ = { uiCtxt = { ! sepNavIntBoundsRect = "{{0, 0}, {944, 9576}}"; ! sepNavSelRange = "{13269, 168}"; ! sepNavVisRect = "{{0, 8814}, {928, 748}}"; sepNavWindowFrame = "{{334, 41}, {973, 821}}"; }; *************** *** 231,236 **** uiCtxt = { sepNavIntBoundsRect = "{{0, 0}, {799, 1428}}"; ! sepNavSelRange = "{184, 0}"; ! sepNavVisRect = "{{0, 43}, {799, 421}}"; sepNavWindowFrame = "{{30, 384}, {844, 494}}"; }; --- 225,230 ---- uiCtxt = { sepNavIntBoundsRect = "{{0, 0}, {799, 1428}}"; ! sepNavSelRange = "{819, 8}"; ! sepNavVisRect = "{{0, 582}, {799, 421}}"; sepNavWindowFrame = "{{30, 384}, {844, 494}}"; }; *************** *** 287,328 **** activeExec = 0; }; - CE0B9E280ABEF84800AD89B4 /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - comments = "error: 'Done' undeclared (first use in this function)"; - fRef = CED62FF809C48EDE00B6B94B /* ExplorerModel.m */; - rLen = 1; - rLoc = 638; - rType = 1; - }; - CE0B9E2F0ABEF85F00AD89B4 /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = CED62FF809C48EDE00B6B94B /* ExplorerModel.m */; - name = "ExplorerModel.m: 639"; - rLen = 0; - rLoc = 17020; - rType = 0; - vrLen = 1350; - vrLoc = 15773; - }; - CE0B9E300ABEF85F00AD89B4 /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = CED62FF709C48EDE00B6B94B /* ExplorerModel.h */; - name = "ExplorerModel.h: setExplorerThreadStatus:"; - rLen = 0; - rLoc = 1287; - rType = 0; - vrLen = 1525; - vrLoc = 234; - }; - CE0B9E310ABEF85F00AD89B4 /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = CED62FF709C48EDE00B6B94B /* ExplorerModel.h */; - name = ExplorerDone; - rLen = 12; - rLoc = 336; - rType = 0; - vrLen = 1525; - vrLoc = 234; - }; CE0EBCA90A4D8CE700003FF7 /* ExplorerModel.m:159 */ = { isa = PBXFileBreakpoint; --- 281,284 ---- *************** *** 337,341 **** lineNumber = 159; location = UnitTest; ! modificationTime = 179883208.228205; state = 2; }; --- 293,297 ---- lineNumber = 159; location = UnitTest; ! modificationTime = 183929168.864678; state = 2; }; *************** *** 352,359 **** lineNumber = 147; location = UnitTest; ! modificationTime = 179883208.258848; state = 2; }; ! CE3C3A9B0A0FEAD100556EA0 /* Schema.m:619 */ = { isa = PBXFileBreakpoint; actions = ( --- 308,315 ---- lineNumber = 147; location = UnitTest; ! modificationTime = 183929168.86477; state = 2; }; ! CE3C3A9B0A0FEAD100556EA0 /* Schema.m:637 */ = { isa = PBXFileBreakpoint; actions = ( *************** *** 365,371 **** functionName = "-getTableSQLFromSchema:fromTableName:pretty:"; hitCount = 1; ! lineNumber = 619; location = UnitTest; ! modificationTime = 179883208.216068; state = 2; }; --- 321,327 ---- functionName = "-getTableSQLFromSchema:fromTableName:pretty:"; hitCount = 1; ! lineNumber = 637; location = UnitTest; ! modificationTime = 183929168.864504; state = 2; }; *************** *** 382,386 **** lineNumber = 149; location = UnitTest; ! modificationTime = 179883208.221565; state = 2; }; --- 338,342 ---- lineNumber = 149; location = UnitTest; ! modificationTime = 183929168.86459; state = 2; }; *************** *** 395,402 **** CE6BF7F109B26F98000856E5 /* Schema.m */ = { uiCtxt = { ! sepNavIntBoundsRect = "{{0, 0}, {1194, 15036}}"; ! sepNavSelRange = "{307, 0}"; ! sepNavVisRect = "{{0, 0}, {1194, 728}}"; ! sepNavWindowFrame = "{{177, 60}, {1239, 801}}"; }; }; --- 351,358 ---- CE6BF7F109B26F98000856E5 /* Schema.m */ = { uiCtxt = { ! sepNavIntBoundsRect = "{{0, 0}, {1367, 15078}}"; ! sepNavSelRange = "{17324, 0}"; ! sepNavVisRect = "{{0, 7321}, {1367, 725}}"; ! sepNavWindowFrame = "{{5, 80}, {1412, 798}}"; }; }; *************** *** 406,412 **** objects = ( CE69B18D09D6DBB000910AD1 /* ExplorerModel.m:149 */, ! CE3C3A9B0A0FEAD100556EA0 /* Schema.m:619 */, CEDA95EE0A28EEA900A0CDA5 /* Schema.m:150 */, ! CEFCE8060A227563008F2667 /* Schema.m:645 */, CE0EBCA90A4D8CE700003FF7 /* ExplorerModel.m:159 */, CE0EBCE50A4D954D00003FF7 /* Connection.m:147 */, --- 362,368 ---- objects = ( CE69B18D09D6DBB000910AD1 /* ExplorerModel.m:149 */, ! CE3C3A9B0A0FEAD100556EA0 /* Schema.m:637 */, CEDA95EE0A28EEA900A0CDA5 /* Schema.m:150 */, ! CEFCE8060A227563008F2667 /* Schema.m:656 */, CE0EBCA90A4D8CE700003FF7 /* ExplorerModel.m:159 */, CE0EBCE50A4D954D00003FF7 /* Connection.m:147 */, *************** *** 443,447 **** lineNumber = 161; location = UnitTest; ! modificationTime = 179883208.230746; state = 2; }; --- 399,403 ---- lineNumber = 161; location = UnitTest; ! modificationTime = 183929168.864717; state = 2; }; *************** *** 457,461 **** lineNumber = 163; location = UnitTest; ! modificationTime = 179883208.255722; state = 2; }; --- 413,417 ---- lineNumber = 163; location = UnitTest; ! modificationTime = 183929168.86474; state = 2; }; *************** *** 473,479 **** CE9B2BC709B9F19800877A0E /* pgCocoaDBSchemaTest.m */ = { uiCtxt = { ! sepNavIntBoundsRect = "{{0, 0}, {1171, 14546}}"; ! sepNavSelRange = "{35828, 0}"; ! sepNavVisRect = "{{0, 13365}, {1171, 641}}"; sepNavWindowFrame = "{{153, 101}, {1216, 714}}"; }; --- 429,435 ---- CE9B2BC709B9F19800877A0E /* pgCocoaDBSchemaTest.m */ = { uiCtxt = { ! sepNavIntBoundsRect = "{{0, 0}, {1171, 14672}}"; ! sepNavSelRange = "{6934, 0}"; ! sepNavVisRect = "{{0, 1940}, {1171, 641}}"; sepNavWindowFrame = "{{153, 101}, {1216, 714}}"; }; *************** *** 497,501 **** sepNavIntBoundsRect = "{{0, 0}, {728, 854}}"; sepNavSelRange = "{336, 12}"; ! sepNavVisRect = "{{0, 156}, {629, 684}}"; sepNavWindowFrame = "{{22, 12}, {674, 757}}"; }; --- 453,457 ---- sepNavIntBoundsRect = "{{0, 0}, {728, 854}}"; sepNavSelRange = "{336, 12}"; ! sepNavVisRect = "{{0, 154}, {629, 684}}"; sepNavWindowFrame = "{{22, 12}, {674, 757}}"; }; *************** *** 505,509 **** sepNavIntBoundsRect = "{{0, 0}, {1004, 9086}}"; sepNavSelRange = "{17020, 0}"; ! sepNavVisRect = "{{0, 8355}, {853, 731}}"; sepNavWindowFrame = "{{452, 42}, {898, 804}}"; }; --- 461,465 ---- sepNavIntBoundsRect = "{{0, 0}, {1004, 9086}}"; sepNavSelRange = "{17020, 0}"; ! sepNavVisRect = "{{0, 8252}, {853, 731}}"; sepNavWindowFrame = "{{452, 42}, {898, 804}}"; }; *************** *** 537,544 **** lineNumber = 150; location = UnitTest; ! modificationTime = 179883208.224352; state = 2; }; ! CEFCE8060A227563008F2667 /* Schema.m:645 */ = { isa = PBXFileBreakpoint; actions = ( --- 493,500 ---- lineNumber = 150; location = UnitTest; ! modificationTime = 183929168.864638; state = 2; }; ! CEFCE8060A227563008F2667 /* Schema.m:656 */ = { isa = PBXFileBreakpoint; actions = ( *************** *** 550,556 **** functionName = "-getTableSQLFromSchema:fromTableName:pretty:"; hitCount = 1; ! lineNumber = 645; location = UnitTest; ! modificationTime = 179883208.218809; state = 2; }; --- 506,512 ---- functionName = "-getTableSQLFromSchema:fromTableName:pretty:"; hitCount = 1; ! lineNumber = 656; location = UnitTest; ! modificationTime = 183929168.864534; state = 2; }; |
|
From: Neil T. <nt...@us...> - 2007-02-12 22:25:46
|
Update of /cvsroot/pgsqlformac/QueryTool In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv11575 Modified Files: PreferenceController.m PreferenceController.h Log Message: Correct bug in const. Index: PreferenceController.h =================================================================== RCS file: /cvsroot/pgsqlformac/QueryTool/PreferenceController.h,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** PreferenceController.h 2 Dec 2006 14:51:43 -0000 1.4 --- PreferenceController.h 12 Feb 2007 22:25:42 -0000 1.5 *************** *** 11,40 **** /* Active NSUserDefaults Key Strings */ ! NSString * const UDUserDefaultsVersion = @"PGSqlForMac_QueryTool_UserDefaultsVersion"; ! NSString * const UDShowInformationSchema = @"PGSqlForMac_QueryTool_ShowInformationSchema"; ! NSString * const UDShowPGCatalogSchema = @"PGSqlForMac_QueryTool_ShowPGCatalogSchema"; ! NSString * const UDShowPGToastSchema = @"PGSqlForMac_QueryTool_ShowPGToastSchema"; ! NSString * const UDShowPGTempsSchema = @"PGSqlForMac_QueryTool_ShowPGTempsSchema"; ! NSString * const UDShowPGPublicSchema = @"PGSqlForMac_QueryTool_ShowPGPublicSchema"; ! NSString * const UDLogSQL = @"PGSqlForMac_QueryTool_LogSQL"; ! NSString * const UDLogQueryInfo = @"PGSqlForMac_QueryTool_LogQueryInfo"; ! NSString * const UDShowPostgreSQLHelp = @"PGSqlForMac_QueryTool_ShowPostgreSQLHelp"; ! NSString * const UDShowSQLCommandHelp = @"PGSqlForMac_QueryTool_ShowSQLCommandHelp"; ! NSString * const UDResultsTableFontName = @"PGSqlForMac_QueryTool_ResultsTableFontName"; ! NSString * const UDResultsTableFontSize = @"PGSqlForMac_QueryTool_ResultsTableFontSize"; ! NSString * const UDHighlight_Keywords = @"PGSqlForMac_QueryTool_Highlight_Keywords"; ! NSString * const UDSchemaTableFontName = @"PGSqlForMac_QueryTool_SchemaTableFontName"; ! NSString * const UDSchemaTableFontSize = @"PGSqlForMac_QueryTool_SchemaTableFontSize"; // New connection key names for connection dictionary ! NSString * const UDConnArrayName = @"ConnArray"; ! NSString * const UDConnName = @"Name"; ! NSString * const UDConnUserName = @"UserName"; ! NSString * const UDConnHost = @"Host"; ! NSString * const UDConnPort = @"Port"; ! NSString * const UDConnDatabaseName = @"DatabaseName"; // Last Connection Name ! NSString * const UDLastConn = @"LastConnection"; @interface PreferenceController : NSWindowController { --- 11,40 ---- /* Active NSUserDefaults Key Strings */ ! extern NSString * UDUserDefaultsVersion; ! extern NSString * UDShowInformationSchema; ! extern NSString * UDShowPGCatalogSchema; ! extern NSString * UDShowPGToastSchema; ! extern NSString * UDShowPGTempsSchema; ! extern NSString * UDShowPGPublicSchema; ! extern NSString * UDLogSQL; ! extern NSString * UDLogQueryInfo; ! extern NSString * UDShowPostgreSQLHelp; ! extern NSString * UDShowSQLCommandHelp; ! extern NSString * UDResultsTableFontName; ! extern NSString * UDResultsTableFontSize; ! extern NSString * UDHighlight_Keywords; ! extern NSString * UDSchemaTableFontName; ! extern NSString * UDSchemaTableFontSize; // New connection key names for connection dictionary ! extern NSString * UDConnArrayName; ! extern NSString * UDConnName; ! extern NSString * UDConnUserName; ! extern NSString * UDConnHost; ! extern NSString * UDConnPort; ! extern NSString * UDConnDatabaseName; // Last Connection Name ! extern NSString * UDLastConn; @interface PreferenceController : NSWindowController { Index: PreferenceController.m =================================================================== RCS file: /cvsroot/pgsqlformac/QueryTool/PreferenceController.m,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** PreferenceController.m 2 Dec 2006 14:51:43 -0000 1.3 --- PreferenceController.m 12 Feb 2007 22:25:42 -0000 1.4 *************** *** 12,15 **** --- 12,40 ---- @implementation PreferenceController + NSString * UDUserDefaultsVersion = @"PGSqlForMac_QueryTool_UserDefaultsVersion"; + NSString * UDShowInformationSchema = @"PGSqlForMac_QueryTool_ShowInformationSchema"; + NSString * UDShowPGCatalogSchema = @"PGSqlForMac_QueryTool_ShowPGCatalogSchema"; + NSString * UDShowPGToastSchema = @"PGSqlForMac_QueryTool_ShowPGToastSchema"; + NSString * UDShowPGTempsSchema = @"PGSqlForMac_QueryTool_ShowPGTempsSchema"; + NSString * UDShowPGPublicSchema = @"PGSqlForMac_QueryTool_ShowPGPublicSchema"; + NSString * UDLogSQL = @"PGSqlForMac_QueryTool_LogSQL"; + NSString * UDLogQueryInfo = @"PGSqlForMac_QueryTool_LogQueryInfo"; + NSString * UDShowPostgreSQLHelp = @"PGSqlForMac_QueryTool_ShowPostgreSQLHelp"; + NSString * UDShowSQLCommandHelp = @"PGSqlForMac_QueryTool_ShowSQLCommandHelp"; + NSString * UDResultsTableFontName = @"PGSqlForMac_QueryTool_ResultsTableFontName"; + NSString * UDResultsTableFontSize = @"PGSqlForMac_QueryTool_ResultsTableFontSize"; + NSString * UDHighlight_Keywords = @"PGSqlForMac_QueryTool_Highlight_Keywords"; + NSString * UDSchemaTableFontName = @"PGSqlForMac_QueryTool_SchemaTableFontName"; + NSString * UDSchemaTableFontSize = @"PGSqlForMac_QueryTool_SchemaTableFontSize"; + + NSString * UDConnArrayName = @"ConnArray"; + NSString * UDConnName = @"Name"; + NSString * UDConnUserName = @"UserName"; + NSString * UDConnHost = @"Host"; + NSString * UDConnPort = @"Port"; + NSString * UDConnDatabaseName = @"DatabaseName"; + + NSString * UDLastConn = @"LastConnection"; + -(id)init { |
|
From: Neil T. <nt...@us...> - 2006-12-03 13:08:34
|
Update of /cvsroot/pgsqlformac/QueryTool In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv599 Modified Files: ChangeLog Log Message: Update ChangeLog. Index: ChangeLog =================================================================== RCS file: /cvsroot/pgsqlformac/QueryTool/ChangeLog,v retrieving revision 1.19 retrieving revision 1.20 diff -C2 -d -r1.19 -r1.20 *** ChangeLog 2 Dec 2006 14:51:43 -0000 1.19 --- ChangeLog 3 Dec 2006 13:08:32 -0000 1.20 *************** *** 1,2 **** --- 1,18 ---- + 2006-12-02 08:51 ntiffin + + * ChangeLog, MyOutlineView.m, MyResultsView.m, + PreferenceController.h, PreferenceController.m, SqlDocument.h, + SqlDocument.m, TODO.txt, + English.lproj/Preferences.nib/classes.nib, + English.lproj/Preferences.nib/info.nib, + English.lproj/Preferences.nib/keyedobjects.nib, + English.lproj/SqlDocument.nib/classes.nib, + English.lproj/SqlDocument.nib/info.nib, + English.lproj/SqlDocument.nib/keyedobjects.nib, + QueryToolForPostgresN.xcodeproj/ntiffin.mode1, + QueryToolForPostgresN.xcodeproj/ntiffin.pbxuser, + QueryToolForPostgresN.xcodeproj/project.pbxproj: Add remember + multiple connections. + 2006-09-17 10:41 ntiffin |
|
From: Neil T. <nt...@us...> - 2006-12-02 15:03:18
|
Update of /cvsroot/pgsqlformac/pgCocoaDB In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv11668 Modified Files: ChangeLog Log Message: Update Changelog. Index: ChangeLog =================================================================== RCS file: /cvsroot/pgsqlformac/pgCocoaDB/ChangeLog,v retrieving revision 1.24 retrieving revision 1.25 diff -C2 -d -r1.24 -r1.25 *** ChangeLog 18 Sep 2006 17:54:56 -0000 1.24 --- ChangeLog 2 Dec 2006 15:03:16 -0000 1.25 *************** *** 1,2 **** --- 1,14 ---- + 2006-10-30 13:30 ntiffin + + * Schema.m, UnitTest/pgCocoaDBSchemaTest.m: Fix round trip function + SQL. + + 2006-09-18 12:54 ntiffin + + * ChangeLog, ExplorerModel.h, ExplorerModel.m, + pgCocoaDBn.xcodeproj/ntiffin.mode1, + pgCocoaDBn.xcodeproj/ntiffin.pbxuser: Fix bug in explorer not + creating sql. + 2006-09-14 07:26 ntiffin |