diff options
Diffstat (limited to 'Master/tlpkg/doc')
-rwxr-xr-x | Master/tlpkg/doc/w32client | 92 | ||||
-rwxr-xr-x | Master/tlpkg/doc/w32client.bat | 19 | ||||
-rw-r--r-- | Master/tlpkg/doc/w32client.bat.manifest | 15 | ||||
-rw-r--r-- | Master/tlpkg/doc/w32client.txt | 87 | ||||
-rwxr-xr-x | Master/tlpkg/doc/w32client_advanced.bat | 60 | ||||
-rw-r--r-- | Master/tlpkg/doc/w32unclient | 51 | ||||
-rwxr-xr-x | Master/tlpkg/doc/w32unclient.bat | 19 | ||||
-rw-r--r-- | Master/tlpkg/doc/w32unclient.bat.manifest | 15 |
8 files changed, 0 insertions, 358 deletions
diff --git a/Master/tlpkg/doc/w32client b/Master/tlpkg/doc/w32client deleted file mode 100755 index 887020d1441..00000000000 --- a/Master/tlpkg/doc/w32client +++ /dev/null @@ -1,92 +0,0 @@ -#!/usr/bin/env perl - -# Tlmgr.pl can be loaded either by itself, as a program, or as a library, -# at least under Windows. -# An application of this is configuring a client Windows workstation -# for a pre-installed TeX Live installation on a local network. - -# Public domain. - -# you can use either the simple or the advanced batch wrapper, -# but it should have the same name as this file, with .bat appended. - -BEGIN { - $^W = 1; - require "tlmgr.pl"; -} - -# for debugging: -#$::opt_verbosity = 2; - -# Only make user-level changes even if admin -$opts{'w32mode'} = 'user'; - -# The action_... functions read their arguments from @ARGV. - -# Add TeX Live to path -unshift @ARGV, 'add'; -action_path(); - -# create some shortcuts -unshift @ARGV, 'install', 'shortcut', - 'dviout.win32', 'texworks', 'texlive-en', 'tlpsv.win32'; -action_postaction(); - -# File associations. 1: only new; 2: always, overriding existing settings -$opts{'fileassocmode'} = 1; -unshift @ARGV, 'install', 'fileassoc', - 'dviout.win32', 'tlpsv.win32', 'texworks.win32'; -action_postaction(); -TeXLive::TLWinGoo::update_assocs(); # optional - -# xetex font cache -unshift @ARGV, 'install', 'script', 'xetex'; -action_postaction(); - -#%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% - -# optional advanced features. -# these make direct use of the modules in tlmgr/TeXlive -# and modules loaded by them. - -# don't need to re-require modules but do need to re-import names - -Win32::TieRegistry->import( qw( $Registry - REG_SZ REG_EXPAND_SZ KEY_READ KEY_WRITE KEY_ALL_ACCESS - KEY_ENUMERATE_SUB_KEYS ) ); -$Registry->Delimiter('/'); -$Registry->ArrayValues(0); -$Registry->FixSzNulls(1); - -# register uninstaller. Failure not fatal. -# This really should be the first item. - -my $Master_bsl = $Master; -$Master_bsl =~ s,/,\\,g; - -my $rootkey = $Registry -> Open("CUser", - {Access => Win32::TieRegistry::KEY_ALL_ACCESS()}); -my $k; -if ($rootkey) { - $k = $rootkey->CreateKey( - "software/microsoft/windows/currentversion/uninstall/OurTeXLive/"); - if ($k) { - $k->{"/DisplayName"} = "OurTeXLive 2009"; - $k->{"/UninstallString"} = "\"$Master_bsl\\w32unclient.bat\""; - $k->{'/DisplayVersion'} = "2009"; - $k->{'/URLInfoAbout'} = "http://ourwebsite.edu/ourtexlive"; - } -} -warn "Failed to register uninstaller\n" unless $k; - -# add a command-prompt shortcut with TeX Live first item on the path. -# note that for TeXworks, the wrapper already takes care of this. - -add_menu_shortcut( - $TeXLive::TLConfig::WindowsMainMenuName, - 'TeX Live Prompt', - '', - 'cmd', - "/k \"path $Master_bsl\\bin\\win32;%path%\"", - '', -); diff --git a/Master/tlpkg/doc/w32client.bat b/Master/tlpkg/doc/w32client.bat deleted file mode 100755 index 63afc5aa42b..00000000000 --- a/Master/tlpkg/doc/w32client.bat +++ /dev/null @@ -1,19 +0,0 @@ -@echo off
-rem Wrapper batchfile for Perl script of the same name
-rem both in the root of the TeX Live installation.
-rem Based on code from Tomasz M. Trzeciak.
-rem Public domain.
-
-rem For more safeguards and 4DOS/4NT compatibility,
-rem see w32client_advanced.bat
-
-set this=%~dp0
-
-rem Use TL Perl
-path %this%tlpkg\tlperl\bin;%this%bin\win32;%path%
-set PERL5LIB=%this%tlpkg\tlperl\lib;%this%tlpkg;%this%texmf\scripts\texlive
-
-rem Start Perl script of the same name
-perl "%~dpn0" %*
-rem Give user opportunity to scan output messages
-pause
diff --git a/Master/tlpkg/doc/w32client.bat.manifest b/Master/tlpkg/doc/w32client.bat.manifest deleted file mode 100644 index 7155260e717..00000000000 --- a/Master/tlpkg/doc/w32client.bat.manifest +++ /dev/null @@ -1,15 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="yes"?> -<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0"> - <assemblyIdentity - version="1.0.0.0" - processorArchitecture="*" - name="w32client" - type="win32"/> - <trustInfo xmlns="urn:schemas-microsoft-com:asm.v3"> - <security> - <requestedPrivileges> - <requestedExecutionLevel level="asInvoker"/> - </requestedPrivileges> - </security> - </trustInfo> -</assembly> diff --git a/Master/tlpkg/doc/w32client.txt b/Master/tlpkg/doc/w32client.txt deleted file mode 100644 index cc583323e39..00000000000 --- a/Master/tlpkg/doc/w32client.txt +++ /dev/null @@ -1,87 +0,0 @@ -CREATING A LAN INSTALLATION OF TEX LIVE FOR WINDOWS CLIENTS - -You can copy a TeX Live installation to a read-only network drive -and tell your users to add the <root>\bin\win32 directory to their -searchpath. However, this is not how things are done on the Windows -platform. - -The w32client.bat/w32client script pair modifies the searchpath, -creates shortcuts and creates file associations. It also registers -an uninstaller script which will show up under Add/Remove Programs. - -Consider these scripts prototypes. You may want to add a GUI which -lets the user choose whether [s]he wants any of those things. - -As it stands, all changes are made for the user, not for the -workstation. This implies that in a roaming profile setup the -configuration is available from any computer on the network, and -that the user needs no particular rights on the workstation. - -REQUIREMENTS OF THE NETWORK INSTALLATION - -The prototype script assumes a standard directory layout: -<parent>---<year> - | | - | +---bin---win32 - | +---texmf - | +---texmf-dist - | +---texmf-config - | +---texmf-var - | +---tlpkg - | - +---texmf-local - -The w32client- and w32unclient scripts assume that they are in the -root of the installation, i.e. in <parent>\<year>. - -Sticking to this default directory layout minimizes configuration -hassles. Still, there may be some: - -XETEX - -For XeTeX to support system fonts, it needs some information about -those fonts. For Windows, this information normally is collected by -a utiltity fc-cache during installation of XeTeX. - -If all computers on the network have the same set of fonts, and if -the installation was created from such a computer, then XeTeX font -support might work perfectly without additional action. - -However, it is better not to count on this, and to run fc-cache from -the client script. Since users don't have write access to -TEXMFSYSVAR, or <parent>\<year>\texmf-var, we need to use TEXMFVAR, -or <user profile>\.texlive<year>\texmf-var. This can be accomplished -with a file <parent>\<year>\texmf.cnf with the lines - -FONTCONFIG_PATH=$TEXMFVAR/fonts/conf -FC_CACHEDIR=$TEXMFVAR/fonts/cache - -The file should already exist, but would still be empty apart from -some comments. Settings here override settings in the main -texmf.cnf, in <parent>\<year>\texmf\web2c. - -Users may need to rerun fc-cache if they move to another workstation -with a different set of fonts. - -SEARCH PATH - -If a workstation already has a locally installed TeX and if its -binaries are on the system path, then the locally installed TeX will -be found first. The demo script safeguards against this by -prepending the searchpath with the TeX Live binaries for individual -shortcuts. Wrapper scripts also do this, so the TeXworks shortcut -will always find our TeX Live first. - -In addition, w32client adds a command-prompt shortcut with such a -locally patched searchpath. - -VISTA - -Under some circumstances, Vista needs to be told that a program or -batchfile doesn't require admin privileges. This can be done with a -manifest file, which has the name of the program, including -extension, with `.manifest' appended. In my own tests, I had to -create a manifest file w32unclient.bat.manifest for the uninstaller. - -If you need additional manifest files, just copy this manifest file -and replace the program name in it. diff --git a/Master/tlpkg/doc/w32client_advanced.bat b/Master/tlpkg/doc/w32client_advanced.bat deleted file mode 100755 index cbbd4606b7b..00000000000 --- a/Master/tlpkg/doc/w32client_advanced.bat +++ /dev/null @@ -1,60 +0,0 @@ -@echo off
-rem Wrapper batchfile for Perl script of the same name
-rem both in the root of the TeX Live installation.
-rem Based on code from Tomasz M. Trzeciak.
-rem Public domain.
-
-rem This version has some additional safeguards and
-rem better compatibility with replacement command shells
-rem compared to the regular version.
-
-rem First, check if this is DOS based system
-rem in DOS '^' is just a normal character
-if not ^x==x goto DOS
-
-rem Abort if we are running from UNC path
-if %~d0==\\ goto UNC
-
-rem Localize environment changes
-setlocal enableextensions
-
-set this=%~dp0
-
-rem Break search path into dir list and rebuild w/o tex dirs
-call :rebuildpath ";" "%path:;=" "%"
-
-rem Use TL Perl
-path %this%tlpkg\tlperl\bin;%this%bin\win32;%path%
-set PERL5LIB=%this%tlpkg\tlperl\lib;%this%tlpkg;%this%texmf\scripts\texlive
-
-rem Start Perl script of the same name
-perl "%~dpn0" %*
-rem Give user opportunity to scan output messages
-pause
-goto :eof
-
-rem Subroutine to build search path without tex directories
-rem any dir containing pdftex.exe is considered a tex dir
-:rebuildpath ";" dir list ...
-shift
-rem The first argument (";") serves as a marker to reset the path
-if "%~0"==";" set path=
-rem Finish if no more arguments to process
-if [%1]==[] goto :eof
-rem Continue if tex dir
-if exist "%~1\pdftex.exe" goto :rebuildpath
-rem Add dir to path
-if not defined path (path %~1) else (path %path%;%~1)
-goto :rebuildpath
-
-:UNC
-echo Cannot run from UNC path.
-echo Map network drive to a drive letter and rerun the installer.
-echo You can use pushd/popd commands for temporary mapping.
-pause
-exit /b 1
-
-:DOS
-echo DOS and Windows 9x systems are not supported. Sorry.
-echo Windows 2000 or newer is required.
-pause
diff --git a/Master/tlpkg/doc/w32unclient b/Master/tlpkg/doc/w32unclient deleted file mode 100644 index b9fe34139e2..00000000000 --- a/Master/tlpkg/doc/w32unclient +++ /dev/null @@ -1,51 +0,0 @@ -#!/usr/bin/env perl - -# see comments in w32client - -# Public domain. - -BEGIN { - $^W = 1; - require "tlmgr.pl"; -} - -#$::opt_verbosity = 2; - -#init_local_db(); - -# Only make user-level changes even if admin -$opts{'w32mode'} = 'user'; - -# remove shortcuts -unshift @ARGV, 'remove', 'shortcut', 'dviout.win32', 'texworks', - 'texlive-en', 'tlpsv.win32'; -action_postaction(); - -# File associations -unshift @ARGV, 'remove', 'fileassoc', 'dviout.win32', 'tlpsv.win32'; -action_postaction(); -TeXLive::TLWinGoo::update_assocs(); # optional - -# xetex font cache -unshift @ARGV, 'remove', 'script', 'xetex'; -action_postaction(); - -# Remove TeX Live from path -unshift @ARGV, 'remove'; -action_path(); - -Win32::TieRegistry->import( qw( $Registry - REG_SZ REG_EXPAND_SZ KEY_READ KEY_WRITE KEY_ALL_ACCESS - KEY_ENUMERATE_SUB_KEYS ) ); -$Registry->Delimiter('/'); -$Registry->ArrayValues(0); -$Registry->FixSzNulls(1); - -# unregister uninstaller -my $rootkey = $Registry -> Open("CUser", - {Access => Win32::TieRegistry::KEY_ALL_ACCESS()}); -if ($rootkey) { # otherwise fail silently - my $k = $rootkey->Open( - "software/microsoft/windows/currentversion/uninstall/"); - TeXLive::TLWinGoo::reg_delete_recurse($k, 'OurTexLive/') if $k; -} diff --git a/Master/tlpkg/doc/w32unclient.bat b/Master/tlpkg/doc/w32unclient.bat deleted file mode 100755 index 63afc5aa42b..00000000000 --- a/Master/tlpkg/doc/w32unclient.bat +++ /dev/null @@ -1,19 +0,0 @@ -@echo off
-rem Wrapper batchfile for Perl script of the same name
-rem both in the root of the TeX Live installation.
-rem Based on code from Tomasz M. Trzeciak.
-rem Public domain.
-
-rem For more safeguards and 4DOS/4NT compatibility,
-rem see w32client_advanced.bat
-
-set this=%~dp0
-
-rem Use TL Perl
-path %this%tlpkg\tlperl\bin;%this%bin\win32;%path%
-set PERL5LIB=%this%tlpkg\tlperl\lib;%this%tlpkg;%this%texmf\scripts\texlive
-
-rem Start Perl script of the same name
-perl "%~dpn0" %*
-rem Give user opportunity to scan output messages
-pause
diff --git a/Master/tlpkg/doc/w32unclient.bat.manifest b/Master/tlpkg/doc/w32unclient.bat.manifest deleted file mode 100644 index 470faf02b6e..00000000000 --- a/Master/tlpkg/doc/w32unclient.bat.manifest +++ /dev/null @@ -1,15 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="yes"?> -<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0"> - <assemblyIdentity - version="1.0.0.0" - processorArchitecture="*" - name="w32unclient" - type="win32"/> - <trustInfo xmlns="urn:schemas-microsoft-com:asm.v3"> - <security> - <requestedPrivileges> - <requestedExecutionLevel level="asInvoker"/> - </requestedPrivileges> - </security> - </trustInfo> -</assembly> |