This commit was manufactured by cvs2svn to create tag 'wxPy_2_8_4_0'.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/tags/wxPy_2_8_4_0@46023 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Bryan Petty
2007-05-14 22:14:12 +00:00
parent e86fbab1ba
commit 47a689ca6a
840 changed files with 30355 additions and 96264 deletions

View File

@@ -49,6 +49,24 @@ allhlp: wxhlp
allpdfrtf: pdfrtf
allhtb: htb
# cd $(WXDIR)\utils\dialoged\src
# nmake -f makefile.vc htb
cd $(WXDIR)\utils\tex2rtf\docs
nmake -f makefile.vc htb
cd $(WXDIR)\contrib\src\fl
cd $(THISDIR)
cd $(WXDIR)\contrib\src\ogl
nmake -f makedocs.vc htb
cd $(THISDIR)
cd $(WXDIR)\contrib\src\svg
nmake -f makedocs.vc htb
cd $(THISDIR)
cd $(WXDIR)\contrib\src\gizmos
nmake -f makedocs.vc htb
cd $(THISDIR)
cd $(WXDIR)\contrib\src\mmedia
nmake -f makedocs.vc htb
cd $(THISDIR)
allhtml: wxhtml
# cd $(WXDIR)\utils\dialoged\src

View File

@@ -1,5 +1,7 @@
rem Uncomment the next line to set the version; used also in wxWidgets.iss
SET WXW_VER=2.8.1
SET WXW_VER=2.8.4
if (%WXW_VER%)==() SET WXW_VER=CVS
echo docs building for %WXW_VER%
@@ -57,7 +59,7 @@ mkdir %WXWIN%\docs\pdf
mkdir %WXWIN%\docs\htmlhelp
mkdir %WXWIN%\docs\htb
echo starting word >> c:\temp.log
start /WAIT winword /mwx_ps
start /WAIT winword /mwx28_ps
echo cvs doc up part 2 >> c:\temp.log

View File

@@ -2,7 +2,7 @@
' laserjet ps driver
' Note that the output dir and hardcoded printer must exist
Sub wx_ps()
Sub wx28_ps()
swxWIN = Environ("WXWIN")
do_ps swxWIN & "\docs\pdf\", "wx"
do_ps swxWIN & "\contrib\docs\latex\svg", "svg"
@@ -15,28 +15,4 @@ Sub wx_ps()
bye_bye
End Sub
Sub do_ps(mydir, myfile)
' wx_ps Macro
' Macro recorded 04/05/2005 by cje2
'
sDAILYIN = Environ("DAILY") & "\in\"
ChangeFileOpenDirectory mydir
Documents.Open FileName:=myfile & ".rtf", ConfirmConversions:=False, ReadOnly:= _
False, AddToRecentFiles:=False, PasswordDocument:="", PasswordTemplate:= _
"", Revert:=False, WritePasswordDocument:="", WritePasswordTemplate:="", _
Format:=wdOpenFormatAuto
ActivePrinter = "\\biolpc22\laserjet"
ActiveDocument.Fields.Update
Application.PrintOut FileName:="", Range:=wdPrintAllDocument, Item:= _
wdPrintDocumentContent, Copies:=1, Pages:="", PageType:=wdPrintAllPages, _
Collate:=True, Background:=False, PrintToFile:=True, PrintZoomColumn:=0, _
PrintZoomRow:=0, PrintZoomPaperWidth:=0, PrintZoomPaperHeight:=0, _
OutputFileName:=sDAILYIN & myfile & ".ps", Append:=False
ActiveDocument.Close SaveChanges:=wdDoNotSaveChanges
End Sub
Sub bye_bye()
Application.Quit SaveChanges:=wdDoNotSaveChanges
End Sub