*** empty log message ***

git-svn-id: http://qeforge.qe-forge.org/svn/q-e/trunk/espresso@639 c92efa57-630b-4861-b058-cf58834340f0
This commit is contained in:
kokalj 2004-02-23 12:11:58 +00:00
parent 3df9cd6216
commit a16fa2290e
8 changed files with 28 additions and 30 deletions

View File

@ -1,3 +1,7 @@
Mon Feb 23 2004 Anton Kokalj (tone.kokalj@ijs.si)
* tclUtils.tcl: fixing tempFile routine to work also for MS-Windows
* guib.bat: adding a batch file for MS-DOS/Windows
Fri Feb 20 2004 Anton Kokalj (tone.kokalj@ijs.si)
* addapting the package to work with Tcl/Tk8.4, Itcl/Itk 3.2, and
Iwidgets 4.0

View File

@ -1,3 +1,11 @@
Mon Feb 20 2004 Anton Kokalj (tone.kokalj@ijs.si)
* adding the defaultPager and defaultEditor. i.e., internal editor
and pager (better porting to non-unix systems)
Fri Feb 20 2004 Anton Kokalj (tone.kokalj@ijs.si)
* package was renamed from TkPWscf to PWgui * porting the package
to MS-Windows
Wed Feb 18 2004 Anton Kokalj (tone.kokalj@ijs.si)
* src-tcl/ directory renamed to src/
* CVS: moving the PWgui and GUIB repositories to O-sesame

View File

@ -8,7 +8,7 @@ This INSTALL.cvs file is located in O-sesame/GUI/PWgui/
directory. To "install" the PWgui do the following:
(i) from O-sesame/GUI/PWgui/ directory call: make cvsinit
^^^^^^^^^^^^
^^^^^^^^^^^^
(ii) define the PWGUI environmental variable,
(iii) add $PWGUI to your path, and

View File

@ -82,11 +82,11 @@ PWGUI_SRC_FILES = \
# nothing by default
default:
cat make.usage
@cat make.usage
clean:
-rm *~
-rm *~ */*~
-rm *.tgz
-rm *.tar
@ -210,23 +210,3 @@ _lib-links:
_clean_lib-links:
cd lib; for link in $(EXTERNAL_LIB_DIRS); do rm -f $$link ; done
# @if test ! -d lib/ ; then \
# echo ""; echo "WARNING: cannot create pwgui-source-notcl package ..."; echo " lib/ directory is missing ..."; exit 1; fi
# @for dir in $(LIB_DIRS); do \
# if test ! -d $$dir/ ; then \
# echo ""; \
# echo "WARNING: cannot create pwgui-source-all package ..."; \
# echo " bin/ directory is missing ..."; \
# exit 1; \
# fi; \
# done
# @for dir in $(LIB_DIRS); do \
# if test ! -d $$dir/ ; then \
# echo ""; \
# echo "WARNING: cannot create pwgui-linux-i386-bin package ..."; \
# echo " bin/ directory is missing ..."; \
# exit 1; \
# fi; \
# done

View File

@ -1,3 +1,7 @@
Version: 0.6.1
* adding internal EDITOR and PAGER to PWgui (better porting to
non-unix systems)
Version: 0.6.0
* PWgui compatible with PWscf 2.0
* D3.X module added

View File

@ -1 +1 @@
0.6.0
0.6.1

View File

@ -39,17 +39,17 @@ fi
echo "
==================================================
This is PWGUI version: `cat $PWGUI/VERSION`
This is PWgui version: `cat $PWGUI/VERSION`
--------------------------------------------------
"
if [ -d $PWGUI/bin ]; then
echo "
PWGUI: using the \"$PWGUI/bin/itkwish\" interpreter
PWgui: using the \"$PWGUI/bin/itkwish\" interpreter
"
$PWGUI/bin/itkwish $PWGUI/pwgui.tcl
else
echo "
PWGUI: using the system default \"wish\" interpreter
PWgui: using the system default \"wish\" interpreter
"
wish $PWGUI/pwgui.tcl
fi

View File

@ -26,14 +26,14 @@
#
if { [info exists env(PWGUI)] } {
puts " PWgui GUI: $env(PWGUI)"
puts " PWGUI : $env(PWGUI)"
set guib_dir [glob -nocomplain -directory [file join $env(PWGUI) lib] Guib-*]
if { $guib_dir != "" } {
set env(GUIB) $guib_dir
}
if { [info exists env(GUIB)] } {
lappend auto_path $env(GUIB)
puts " GUIB engine: $env(GUIB)\n"
puts " GUIB engine : $env(GUIB)\n"
}
} else {
puts stderr " "
@ -55,7 +55,9 @@ namespace eval ::pwscf {
}
# define here all pwscf's namespaces ...
namespace eval ::pwscf::edit {}
namespace eval ::pwscf::edit {
variable edit
}
namespace eval ::pwscf::menustate {}
namespace eval ::pwscf::view {}