diff options
author | Siep Kroonenberg <siepo@cybercomm.nl> | 2008-06-30 09:43:04 +0000 |
---|---|---|
committer | Siep Kroonenberg <siepo@cybercomm.nl> | 2008-06-30 09:43:04 +0000 |
commit | 7215436757d8fab9c6f09d0bc8972dd89e8fa11c (patch) | |
tree | 7f427ec9e1a293989dac2e69a232689eb5d0d125 /Master/tlpkg | |
parent | 32b5c667bfb6204c57ac614aac5b1d6237ff6bff (diff) |
Temporarily commented out [e]ps file associations
git-svn-id: svn://tug.org/texlive/trunk@9106 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/tlpkg')
-rw-r--r-- | Master/tlpkg/TeXLive/TLPostActions.pm | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/Master/tlpkg/TeXLive/TLPostActions.pm b/Master/tlpkg/TeXLive/TLPostActions.pm index a347431761a..ae9f27f0f69 100644 --- a/Master/tlpkg/TeXLive/TLPostActions.pm +++ b/Master/tlpkg/TeXLive/TLPostActions.pm @@ -146,15 +146,15 @@ sub do_install_bin_tlpsv_win32 { '', # no args 'batgui', # any non-null value to hide command-prompt ); - register_extension(".ps", "PostScript"); - register_extension(".eps", "PostScript"); - #register_file_type("PostScript", '"'.$texdir.'/bin/win32/psv.bat"'); - register_file_type("PostScript", - '"'.$texdir.'/tlpkg/tlpsv/gswxlua.exe" -g '. - '"'.$texdir.'/tlpkg/tlgs/bin/gsdll32.dll" -l '. - '"'.$texdir.'/tlpkg/tlpsv/psv.wx.lua" -p '. - '"'.$texdir.'/tlpkg/tlpsv/psv_view.ps" -sINPUT="%1"'); - update_assocs(); + #register_extension(".ps", "PostScript"); + #register_extension(".eps", "PostScript"); + ##register_file_type("PostScript", '"'.$texdir.'/bin/win32/psv.bat"'); + #register_file_type("PostScript", + # '"'.$texdir.'/tlpkg/tlpsv/gswxlua.exe" -g '. + # '"'.$texdir.'/tlpkg/tlgs/bin/gsdll32.dll" -l '. + # '"'.$texdir.'/tlpkg/tlpsv/psv.wx.lua" -p '. + # '"'.$texdir.'/tlpkg/tlpsv/psv_view.ps" -sINPUT="%1"'); + #update_assocs(); } } sub do_remove_bin_tlpsv_win32 { @@ -162,10 +162,10 @@ sub do_remove_bin_tlpsv_win32 { if (win32()) { remove_desktop_shortcut('PS_View'); remove_menu_shortcut($mainmenu, 'PS_View'); - unregister_extension(".ps"); - unregister_extension(".eps"); - unregister_file_type("PostScript"); - update_assocs(); + #unregister_extension(".ps"); + #unregister_extension(".eps"); + #unregister_file_type("PostScript"); + #update_assocs(); } } $PostRemove{'bin-tlpsv.win32'} = \&do_remove_bin_tlpsv_win32; |