summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Master/texmf-dist/doc/latex/hyperref/ChangeLog5
-rw-r--r--Master/texmf-dist/doc/latex/hyperref/ChangeLog.pdfbin296039 -> 296528 bytes
-rw-r--r--Master/texmf-dist/doc/latex/hyperref/README38
-rw-r--r--Master/texmf-dist/doc/latex/hyperref/README.pdfbin276466 -> 277218 bytes
-rw-r--r--Master/texmf-dist/doc/latex/hyperref/backref.pdf4
-rw-r--r--Master/texmf-dist/doc/latex/hyperref/hyperref.pdfbin3420890 -> 3422865 bytes
-rw-r--r--Master/texmf-dist/doc/latex/hyperref/nameref.pdf5
-rw-r--r--Master/texmf-dist/source/latex/hyperref/hyperref.dtx18
-rw-r--r--Master/texmf-dist/source/latex/hyperref/test/Makefile4
-rw-r--r--Master/texmf-dist/source/latex/hyperref/test/test7.pdf179
-rw-r--r--Master/texmf-dist/tex/latex/hyperref/hdvipdfm.def10
-rw-r--r--Master/texmf-dist/tex/latex/hyperref/hdvips.def4
-rw-r--r--Master/texmf-dist/tex/latex/hyperref/hdvipson.def2
-rw-r--r--Master/texmf-dist/tex/latex/hyperref/hdviwind.def4
-rw-r--r--Master/texmf-dist/tex/latex/hyperref/hpdftex.def2
-rw-r--r--Master/texmf-dist/tex/latex/hyperref/htex4ht.cfg2
-rw-r--r--Master/texmf-dist/tex/latex/hyperref/htex4ht.def2
-rw-r--r--Master/texmf-dist/tex/latex/hyperref/htexture.def2
-rw-r--r--Master/texmf-dist/tex/latex/hyperref/hvtex.def2
-rw-r--r--Master/texmf-dist/tex/latex/hyperref/hvtexhtm.def2
-rw-r--r--Master/texmf-dist/tex/latex/hyperref/hvtexmrk.def2
-rw-r--r--Master/texmf-dist/tex/latex/hyperref/hyperref.sty2
-rw-r--r--Master/texmf-dist/tex/latex/hyperref/hypertex.def2
-rw-r--r--Master/texmf-dist/tex/latex/hyperref/nohyperref.sty2
-rw-r--r--Master/texmf-dist/tex/latex/hyperref/pd1enc.def2
-rw-r--r--Master/texmf-dist/tex/latex/hyperref/pdfmark.def4
-rw-r--r--Master/texmf-dist/tex/latex/hyperref/puarenc.def2
-rw-r--r--Master/texmf-dist/tex/latex/hyperref/puenc.def2
-rw-r--r--Master/texmf-dist/tex/latex/hyperref/puvnenc.def2
29 files changed, 93 insertions, 212 deletions
diff --git a/Master/texmf-dist/doc/latex/hyperref/ChangeLog b/Master/texmf-dist/doc/latex/hyperref/ChangeLog
index 01e4a3376e8..e4c5ce26b51 100644
--- a/Master/texmf-dist/doc/latex/hyperref/ChangeLog
+++ b/Master/texmf-dist/doc/latex/hyperref/ChangeLog
@@ -1,3 +1,8 @@
+2008-07-23 6.78e Heiko Oberdiek
+ * 6.78e
+ * Driver hdvipdfm.def: Missing code for option `setpagesize' added.
+ * README: Entry for package geometry/dvipdfm added.
+
2008-07-17 6.78d Heiko Oberdiek
* 6.78d
* Bug fix in disabled onclick field for PDF/A (Radhakrishnan CV).
diff --git a/Master/texmf-dist/doc/latex/hyperref/ChangeLog.pdf b/Master/texmf-dist/doc/latex/hyperref/ChangeLog.pdf
index 9dfaef71516..39e8bd0afd7 100644
--- a/Master/texmf-dist/doc/latex/hyperref/ChangeLog.pdf
+++ b/Master/texmf-dist/doc/latex/hyperref/ChangeLog.pdf
Binary files differ
diff --git a/Master/texmf-dist/doc/latex/hyperref/README b/Master/texmf-dist/doc/latex/hyperref/README
index 6232f50ea4a..a3e97a5737a 100644
--- a/Master/texmf-dist/doc/latex/hyperref/README
+++ b/Master/texmf-dist/doc/latex/hyperref/README
@@ -732,6 +732,40 @@ footnote
This package is not supported, you have to disable hyperref's footnote
support by using option "hyperfootnotes=false".
+geometry
+--------
+ Driver `dvipdfm' and program `dvipdfm' might generate a warning:
+ Sorry. Too late to change page size
+ Then prefer the program `dvipdfmx' or use one of the following
+ workarounds to move the \special of geometry to an earlier
+ location:
+
+ \documentclass[dvipdfm]{article}% or other classes
+ \usepackage{atbegshi}
+ \AtBeginDocument{%
+ \let\OrgAtBeginDvi\AtBeginDvi
+ \let\AtBeginDvi\AtBeginShipoutFirst
+ }
+ \usepackage[
+ paperwidth=170mm,
+ paperheight=240mm
+ ]{geometry}
+ \AtBeginDocument{%
+ \let\AtBeginDvi\OrgAtBeginDvi
+ }
+ \usepackage{hyperref}
+
+ or
+
+ \documentclass[dvipdfm]{article}% or other classes
+ \usepackage{atbegshi}
+ \let\AtBeginDvi\AtBeginShipoutFirst
+ \usepackage[
+ paperwidth=170mm,
+ paperheight=240mm
+ ]{geometry}
+ \usepackage{hyperref}
+
IEEEtran.cls
------------
version >= V1.6b (because of \@makecaption, see ChangeLog)
@@ -933,8 +967,8 @@ vietnam
7 LIMITATIONS
=============
-* Wrapped/broken link support
-
+Wrapped/broken link support
+---------------------------
Only few drivers support automatically wrapped/broken links,
e.g. pdftex, dvipdfm, hypertex. Other drivers lack this
feature, e.g. dvips, dvipsone.
diff --git a/Master/texmf-dist/doc/latex/hyperref/README.pdf b/Master/texmf-dist/doc/latex/hyperref/README.pdf
index 1798ccb4685..b99335c61d3 100644
--- a/Master/texmf-dist/doc/latex/hyperref/README.pdf
+++ b/Master/texmf-dist/doc/latex/hyperref/README.pdf
Binary files differ
diff --git a/Master/texmf-dist/doc/latex/hyperref/backref.pdf b/Master/texmf-dist/doc/latex/hyperref/backref.pdf
index 32e74b54100..3fdd56bfa89 100644
--- a/Master/texmf-dist/doc/latex/hyperref/backref.pdf
+++ b/Master/texmf-dist/doc/latex/hyperref/backref.pdf
@@ -10,7 +10,7 @@ endobj
endobj
5 0 obj<</S/GoTo/D[13 0 R/FitBH 752.95145]>>
endobj
-6 0 obj<</PTEX.Fullbanner(This is pdfTeX, Version 3.1415926-1.40.8-2.2 (Web2C 7.5.7) kpathsea version 3.5.7)/Trapped/False/Subject(Bibliographical back referencing)/ModDate(D:20080717161004+02'00')/Author(David Carlisle and Sebastian Rahtz)/Producer(pdfTeX-1.40.8)/Title(Back referencing from bibliographical citations)/Creator(LaTeX with hyperref package)/CreationDate(D:20080717161004+02'00')>>
+6 0 obj<</PTEX.Fullbanner(This is pdfTeX, Version 3.1415926-1.40.8-2.2 (Web2C 7.5.7) kpathsea version 3.5.7)/Trapped/False/Subject(Bibliographical back referencing)/ModDate(D:20080723163818+02'00')/Author(David Carlisle and Sebastian Rahtz)/Producer(pdfTeX-1.40.8)/Title(Back referencing from bibliographical citations)/Creator(LaTeX with hyperref package)/CreationDate(D:20080723163818+02'00')>>
endobj
7 0 obj<</Type/Pages/Kids[13 0 R 14 0 R 15 0 R 16 0 R 17 0 R 18 0 R]/Parent 2 0 R/Count 6>>
endobj
@@ -4086,7 +4086,7 @@ xref
0000239136 00000 n
0000239175 00000 n
trailer
-<</Size 1182/Root 1 0 R/Compress<</LengthO 278917/SpecO/1.4>>/Info 6 0 R/ID[(MCY ])(‹ɚ 5IË{)]>>
+<</Size 1182/Root 1 0 R/Compress<</LengthO 278917/SpecO/1.4>>/Info 6 0 R/ID[(P%ɣE6b>)(4=;,a\(i)]>>
startxref
239214
%%EOF
diff --git a/Master/texmf-dist/doc/latex/hyperref/hyperref.pdf b/Master/texmf-dist/doc/latex/hyperref/hyperref.pdf
index d853fd49ce0..45bc374d244 100644
--- a/Master/texmf-dist/doc/latex/hyperref/hyperref.pdf
+++ b/Master/texmf-dist/doc/latex/hyperref/hyperref.pdf
Binary files differ
diff --git a/Master/texmf-dist/doc/latex/hyperref/nameref.pdf b/Master/texmf-dist/doc/latex/hyperref/nameref.pdf
index 1c2f95fe9e6..86669ef44dd 100644
--- a/Master/texmf-dist/doc/latex/hyperref/nameref.pdf
+++ b/Master/texmf-dist/doc/latex/hyperref/nameref.pdf
@@ -10,7 +10,7 @@ endobj
endobj
5 0 obj<</S/GoTo/D[12 0 R/FitBH 752.95145]>>
endobj
-6 0 obj<</PTEX.Fullbanner(This is pdfTeX, Version 3.1415926-1.40.8-2.2 (Web2C 7.5.7) kpathsea version 3.5.7)/Trapped/False/Subject(Cross-referencing by name of section)/ModDate(D:20080717161009+02'00')/Author(Sebastian Rahtz)/Producer(pdfTeX-1.40.8)/Title(Section name references in LaTeX)/Creator(LaTeX with hyperref package)/CreationDate(D:20080717161009+02'00')>>
+6 0 obj<</PTEX.Fullbanner(This is pdfTeX, Version 3.1415926-1.40.8-2.2 (Web2C 7.5.7) kpathsea version 3.5.7)/Trapped/False/Subject(Cross-referencing by name of section)/ModDate(D:20080723163824+02'00')/Author(Sebastian Rahtz)/Producer(pdfTeX-1.40.8)/Title(Section name references in LaTeX)/Creator(LaTeX with hyperref package)/CreationDate(D:20080723163824+02'00')>>
endobj
7 0 obj<</Type/Pages/Kids[12 0 R 13 0 R 14 0 R 15 0 R 16 0 R 17 0 R]/Parent 2 0 R/Count 6>>
endobj
@@ -4045,7 +4045,8 @@ xref
0000230439 00000 n
0000230478 00000 n
trailer
-<</Size 1182/Root 1 0 R/Compress<</LengthO 270328/SpecO/1.4>>/Info 6 0 R/ID[(wnEu)(ʹ^[#Jcht)]>>
+<</Size 1182/Root 1 0 R/Compress<</LengthO 270328/SpecO/1.4>>/Info 6 0 R/ID[(@ttgJ)(e
+FV\\ЈN]Va)]>>
startxref
230517
%%EOF
diff --git a/Master/texmf-dist/source/latex/hyperref/hyperref.dtx b/Master/texmf-dist/source/latex/hyperref/hyperref.dtx
index 61f2c6315fd..cd02b0895e3 100644
--- a/Master/texmf-dist/source/latex/hyperref/hyperref.dtx
+++ b/Master/texmf-dist/source/latex/hyperref/hyperref.dtx
@@ -38,7 +38,7 @@
%<puenc>\ProvidesFile{puenc.def}
%<puvnenc>\ProvidesFile{puvnenc.def}
%<puarenc>\ProvidesFile{puarenc.def}
-%<!none> [2008/07/17 v6.78d
+%<!none> [2008/07/23 v6.78e
%<package> Hypertext links for LaTeX]
%<nohyperref> Dummy hyperref (SR)]
%<driver> Hyperref documentation driver file]
@@ -114,7 +114,7 @@
\end{document}
%</driver>
% \fi
-% \CheckSum{22837}
+% \CheckSum{22847}
%
% \MakeShortVerb{|}
% \StopEventually{}
@@ -11690,6 +11690,16 @@
\@pdfm@mark{put @pages <</CropBox[\@pdfpagescrop]>>}%
\fi
}
+% \end{macrocode}
+% \begin{macrocode}
+\AtBeginShipoutFirst{%
+ \ifx\special@paper\@empty\else
+ \ifHy@setpagesize
+ \special{papersize=\special@paper}%
+ \fi
+ \fi
+ \Hy@DisableOption{setpagesize}%
+}
%</dvipdfm>
% \end{macrocode}
%
@@ -12904,7 +12914,7 @@
\newtoks\pdf@defaulttoks
\pdf@defaulttoks={}%
\def\pdf@addtoks#1#2{%
- \edef\@processme{\pdf@toks{\the\pdf@toks\space /#2 #1}}%
+ \edef\@processme{\pdf@toks{\the\pdf@toks/#2 #1}}%
\@processme
}
\def\pdf@addtoksx#1{%
@@ -13296,8 +13306,8 @@
\ifHy@setpagesize
\special{papersize=\special@paper}%
\fi
- \Hy@DisableOption{setpagesize}%
\fi
+ \Hy@DisableOption{setpagesize}%
}
%</dvips>
% \end{macrocode}
diff --git a/Master/texmf-dist/source/latex/hyperref/test/Makefile b/Master/texmf-dist/source/latex/hyperref/test/Makefile
index 8b39cd2ecb2..ac6fc6cb9b3 100644
--- a/Master/texmf-dist/source/latex/hyperref/test/Makefile
+++ b/Master/texmf-dist/source/latex/hyperref/test/Makefile
@@ -1,5 +1,7 @@
all:
+ pdflatex test7
+ pdflatex test7
(for i in test*.tex; do pdflatex $$i;pdflatex $$i; done)
clean:
- -rm test*pdf *.aux *.log *.toc *.lof *.lot *.idx *.ind *.out
+ -$(RM) test*pdf *.aux *.log *.toc *.lof *.lot *.idx *.ind *.out
diff --git a/Master/texmf-dist/source/latex/hyperref/test/test7.pdf b/Master/texmf-dist/source/latex/hyperref/test/test7.pdf
deleted file mode 100644
index 1ed1c8dfd81..00000000000
--- a/Master/texmf-dist/source/latex/hyperref/test/test7.pdf
+++ /dev/null
@@ -1,179 +0,0 @@
-%PDF-1.3
-5 0 obj
-<< /S /GoTo /D (section.1) >>
-endobj
-8 0 obj
-(The first section)
-endobj
-9 0 obj
-<< /S /GoTo /D (section.2) >>
-endobj
-12 0 obj
-(The second section)
-endobj
-13 0 obj
-<< /S /GoTo /D [14 0 R /Fit ] >>
-endobj
-16 0 obj <<
-/Length 135
-/Filter /FlateDecode
->>
-stream
-x-0 D|d%+ ـPEhM{w@M vMJHп̡IZ1DXrXvȖ:/H>󲙹sz[9>CƬa{ud8 `4O1R%endstream
-endobj
-14 0 obj <<
-/Type /Page
-/Contents 16 0 R
-/Resources 15 0 R
-/MediaBox [0 0 612 792]
-/Parent 23 0 R
->> endobj
-17 0 obj <<
-/D [14 0 R /XYZ 133.768 692.105 null]
->> endobj
-18 0 obj <<
-/D [14 0 R /XYZ 133.768 667.198 null]
->> endobj
-6 0 obj <<
-/D [14 0 R /XYZ 133.768 667.198 null]
->> endobj
-15 0 obj <<
-/Font << /F20 20 0 R /F21 22 0 R >>
-/ProcSet [ /PDF /Text ]
->> endobj
-26 0 obj <<
-/Length 135
-/Filter /FlateDecode
->>
-stream
-x=1 >Evhh&ǭH00wC,\uyv!2kPX`M60!'|^\!y`ujsaQDHƥrzQGd5I67&endstream
-endobj
-25 0 obj <<
-/Type /Page
-/Contents 26 0 R
-/Resources 24 0 R
-/MediaBox [0 0 612 792]
-/Parent 23 0 R
->> endobj
-27 0 obj <<
-/D [25 0 R /XYZ 133.768 692.105 null]
->> endobj
-10 0 obj <<
-/D [25 0 R /XYZ 133.768 667.198 null]
->> endobj
-28 0 obj <<
-/D [25 0 R /XYZ 133.768 646.723 null]
->> endobj
-24 0 obj <<
-/Font << /F20 20 0 R /F21 22 0 R >>
-/ProcSet [ /PDF /Text ]
->> endobj
-29 0 obj <<
-/Type /Encoding
-/Differences [ 0 /.notdef 1/dotaccent/fi/fl/fraction/hungarumlaut/Lslash/lslash/ogonek/ring 10/.notdef 11/breve/minus 13/.notdef 14/Zcaron/zcaron/caron/dotlessi/dotlessj/ff/ffi/ffl 22/.notdef 30/grave/quotesingle/space/exclam/quotedbl/numbersign/dollar/percent/ampersand/quoteright/parenleft/parenright/asterisk/plus/comma/hyphen/period/slash/zero/one/two/three/four/five/six/seven/eight/nine/colon/semicolon/less/equal/greater/question/at/A/B/C/D/E/F/G/H/I/J/K/L/M/N/O/P/Q/R/S/T/U/V/W/X/Y/Z/bracketleft/backslash/bracketright/asciicircum/underscore/quoteleft/a/b/c/d/e/f/g/h/i/j/k/l/m/n/o/p/q/r/s/t/u/v/w/x/y/z/braceleft/bar/braceright/asciitilde 127/.notdef 130/quotesinglbase/florin/quotedblbase/ellipsis/dagger/daggerdbl/circumflex/perthousand/Scaron/guilsinglleft/OE 141/.notdef 147/quotedblleft/quotedblright/bullet/endash/emdash/tilde/trademark/scaron/guilsinglright/oe 157/.notdef 159/Ydieresis 160/.notdef 161/exclamdown/cent/sterling/currency/yen/brokenbar/section/dieresis/copyright/ordfeminine/guillemotleft/logicalnot/hyphen/registered/macron/degree/plusminus/twosuperior/threesuperior/acute/mu/paragraph/periodcentered/cedilla/onesuperior/ordmasculine/guillemotright/onequarter/onehalf/threequarters/questiondown/Agrave/Aacute/Acircumflex/Atilde/Adieresis/Aring/AE/Ccedilla/Egrave/Eacute/Ecircumflex/Edieresis/Igrave/Iacute/Icircumflex/Idieresis/Eth/Ntilde/Ograve/Oacute/Ocircumflex/Otilde/Odieresis/multiply/Oslash/Ugrave/Uacute/Ucircumflex/Udieresis/Yacute/Thorn/germandbls/agrave/aacute/acircumflex/atilde/adieresis/aring/ae/ccedilla/egrave/eacute/ecircumflex/edieresis/igrave/iacute/icircumflex/idieresis/eth/ntilde/ograve/oacute/ocircumflex/otilde/odieresis/divide/oslash/ugrave/uacute/ucircumflex/udieresis/yacute/thorn/ydieresis]
->> endobj
-22 0 obj <<
-/Type /Font
-/Subtype /Type1
-/Encoding 29 0 R
-/BaseFont /Times-Roman
->> endobj
-20 0 obj <<
-/Type /Font
-/Subtype /Type1
-/Encoding 29 0 R
-/BaseFont /Times-Bold
->> endobj
-23 0 obj <<
-/Type /Pages
-/Count 2
-/Kids [14 0 R 25 0 R]
->> endobj
-30 0 obj <<
-/Type /Outlines
-/First 7 0 R
-/Last 11 0 R
-/Count 2
->> endobj
-11 0 obj <<
-/Title 12 0 R
-/A 9 0 R
-/Parent 30 0 R
-/Prev 7 0 R
->> endobj
-7 0 obj <<
-/Title 8 0 R
-/A 5 0 R
-/Parent 30 0 R
-/Next 11 0 R
->> endobj
-31 0 obj <<
-/Names [(Doc-Start) 18 0 R (TestTarget) 28 0 R (page.1) 17 0 R (page.2) 27 0 R (section.1) 6 0 R (section.2) 10 0 R]
-/Limits [(Doc-Start) (section.2)]
->> endobj
-32 0 obj <<
-/Kids [31 0 R]
->> endobj
-33 0 obj <<
-/Dests 32 0 R
->> endobj
-34 0 obj <<
-/Type /Catalog
-/Pages 23 0 R
-/Outlines 30 0 R
-/Names 33 0 R
- /PageMode /UseOutlines /URI << /Base () >> /ViewerPreferences << >>
-/OpenAction 13 0 R
->> endobj
-35 0 obj <<
-/Producer (pdfTeX-0.14h-pdfcrypt)
-/Author () /Title () /Subject () /Creator (LaTeX with hyperref package) /Producer (pdfTeX14.h) /Keywords ()
-/CreationDate (D:20010816055100)
->> endobj
-xref
-0 36
-0000000001 65535 f
-0000000002 00000 f
-0000000003 00000 f
-0000000004 00000 f
-0000000019 00000 f
-0000000009 00000 n
-0000000663 00000 n
-0000003567 00000 n
-0000000054 00000 n
-0000000089 00000 n
-0000001186 00000 n
-0000003495 00000 n
-0000000134 00000 n
-0000000171 00000 n
-0000000435 00000 n
-0000000722 00000 n
-0000000221 00000 n
-0000000543 00000 n
-0000000603 00000 n
-0000000021 00000 f
-0000003267 00000 n
-0000000000 00000 f
-0000003177 00000 n
-0000003356 00000 n
-0000001306 00000 n
-0000001018 00000 n
-0000000804 00000 n
-0000001126 00000 n
-0000001246 00000 n
-0000001388 00000 n
-0000003422 00000 n
-0000003638 00000 n
-0000003811 00000 n
-0000003848 00000 n
-0000003884 00000 n
-0000004056 00000 n
-trailer
-<<
-/Size 36
-/Root 34 0 R
-/Info 35 0 R
->>
-startxref
-4254
-%%EOF
diff --git a/Master/texmf-dist/tex/latex/hyperref/hdvipdfm.def b/Master/texmf-dist/tex/latex/hyperref/hdvipdfm.def
index d48d3929018..aceb56c3551 100644
--- a/Master/texmf-dist/tex/latex/hyperref/hdvipdfm.def
+++ b/Master/texmf-dist/tex/latex/hyperref/hdvipdfm.def
@@ -24,7 +24,7 @@
%% given in the file `manifest.txt'.
%%
\ProvidesFile{hdvipdfm.def}
- [2008/07/17 v6.78d
+ [2008/07/23 v6.78e
Hyperref driver for dvipdfm]
\def\Hy@PutCatalog#1{\@pdfm@mark{docview << #1 >>}}
\ifHy@pagelabels
@@ -494,6 +494,14 @@
\@pdfm@mark{put @pages <</CropBox[\@pdfpagescrop]>>}%
\fi
}
+\AtBeginShipoutFirst{%
+ \ifx\special@paper\@empty\else
+ \ifHy@setpagesize
+ \special{papersize=\special@paper}%
+ \fi
+ \fi
+ \Hy@DisableOption{setpagesize}%
+}
\def\@Gauge[#1]#2#3#4{% parameters, label, minimum, maximum
\typeout{Sorry, dvipdfm does not support FORM gauges}%
}
diff --git a/Master/texmf-dist/tex/latex/hyperref/hdvips.def b/Master/texmf-dist/tex/latex/hyperref/hdvips.def
index baa5d2dc3e3..ab655f71583 100644
--- a/Master/texmf-dist/tex/latex/hyperref/hdvips.def
+++ b/Master/texmf-dist/tex/latex/hyperref/hdvips.def
@@ -24,7 +24,7 @@
%% given in the file `manifest.txt'.
%%
\ProvidesFile{hdvips.def}
- [2008/07/17 v6.78d
+ [2008/07/23 v6.78e
Hyperref driver for dvips]
\providecommand*{\XR@ext}{pdf}
\def\Hy@raisedlink{}
@@ -88,8 +88,8 @@
\ifHy@setpagesize
\special{papersize=\special@paper}%
\fi
- \Hy@DisableOption{setpagesize}%
\fi
+ \Hy@DisableOption{setpagesize}%
}
\endinput
%%
diff --git a/Master/texmf-dist/tex/latex/hyperref/hdvipson.def b/Master/texmf-dist/tex/latex/hyperref/hdvipson.def
index 7836f55bc0a..ed35322c5b7 100644
--- a/Master/texmf-dist/tex/latex/hyperref/hdvipson.def
+++ b/Master/texmf-dist/tex/latex/hyperref/hdvipson.def
@@ -24,7 +24,7 @@
%% given in the file `manifest.txt'.
%%
\ProvidesFile{hdvipson.def}
- [2008/07/17 v6.78d
+ [2008/07/23 v6.78e
Hyperref driver for dvipsone]
\providecommand*{\XR@ext}{pdf}
\def\Hy@raisedlink{}
diff --git a/Master/texmf-dist/tex/latex/hyperref/hdviwind.def b/Master/texmf-dist/tex/latex/hyperref/hdviwind.def
index 91fff980b08..06dbe31ea19 100644
--- a/Master/texmf-dist/tex/latex/hyperref/hdviwind.def
+++ b/Master/texmf-dist/tex/latex/hyperref/hdviwind.def
@@ -24,7 +24,7 @@
%% given in the file `manifest.txt'.
%%
\ProvidesFile{hdviwind.def}
- [2008/07/17 v6.78d
+ [2008/07/23 v6.78e
Hyperref driver for dviwindo]
\begingroup
\toks@\expandafter{\Hy@FirstPageHook}%
@@ -466,7 +466,7 @@
\newtoks\pdf@defaulttoks
\pdf@defaulttoks={}%
\def\pdf@addtoks#1#2{%
- \edef\@processme{\pdf@toks{\the\pdf@toks\space /#2 #1}}%
+ \edef\@processme{\pdf@toks{\the\pdf@toks/#2 #1}}%
\@processme
}
\def\pdf@addtoksx#1{%
diff --git a/Master/texmf-dist/tex/latex/hyperref/hpdftex.def b/Master/texmf-dist/tex/latex/hyperref/hpdftex.def
index c14d59aa206..fe62bfdc48b 100644
--- a/Master/texmf-dist/tex/latex/hyperref/hpdftex.def
+++ b/Master/texmf-dist/tex/latex/hyperref/hpdftex.def
@@ -24,7 +24,7 @@
%% given in the file `manifest.txt'.
%%
\ProvidesFile{hpdftex.def}
- [2008/07/17 v6.78d
+ [2008/07/23 v6.78e
Hyperref driver for pdfTeX]
\let\Hy@PutCatalog\pdfcatalog
\ifHy@pagelabels
diff --git a/Master/texmf-dist/tex/latex/hyperref/htex4ht.cfg b/Master/texmf-dist/tex/latex/hyperref/htex4ht.cfg
index 23c400d76f0..0952761561f 100644
--- a/Master/texmf-dist/tex/latex/hyperref/htex4ht.cfg
+++ b/Master/texmf-dist/tex/latex/hyperref/htex4ht.cfg
@@ -24,7 +24,7 @@
%% given in the file `manifest.txt'.
%%
\ProvidesFile{htex4ht.cfg}
- [2008/07/17 v6.78d
+ [2008/07/23 v6.78e
Hyperref configuration file for TeX4ht]
\IfFileExists{\jobname.cfg}{\endinput}{}
\Preamble{html}
diff --git a/Master/texmf-dist/tex/latex/hyperref/htex4ht.def b/Master/texmf-dist/tex/latex/hyperref/htex4ht.def
index e5426e6037d..f8c9c4e8456 100644
--- a/Master/texmf-dist/tex/latex/hyperref/htex4ht.def
+++ b/Master/texmf-dist/tex/latex/hyperref/htex4ht.def
@@ -24,7 +24,7 @@
%% given in the file `manifest.txt'.
%%
\ProvidesFile{htex4ht.def}
- [2008/07/17 v6.78d
+ [2008/07/23 v6.78e
Hyperref driver for TeX4ht]
\providecommand*{\XR@ext}{html}
\def\Hy@raisedlink{}
diff --git a/Master/texmf-dist/tex/latex/hyperref/htexture.def b/Master/texmf-dist/tex/latex/hyperref/htexture.def
index 74cc5b72d31..b2ffb00bb0d 100644
--- a/Master/texmf-dist/tex/latex/hyperref/htexture.def
+++ b/Master/texmf-dist/tex/latex/hyperref/htexture.def
@@ -24,7 +24,7 @@
%% given in the file `manifest.txt'.
%%
\ProvidesFile{htexture.def}
- [2008/07/17 v6.78d
+ [2008/07/23 v6.78e
Hyperref driver for Textures]
\providecommand*{\XR@ext}{pdf}
\begingroup
diff --git a/Master/texmf-dist/tex/latex/hyperref/hvtex.def b/Master/texmf-dist/tex/latex/hyperref/hvtex.def
index 1a84b345eb0..4904397d661 100644
--- a/Master/texmf-dist/tex/latex/hyperref/hvtex.def
+++ b/Master/texmf-dist/tex/latex/hyperref/hvtex.def
@@ -24,7 +24,7 @@
%% given in the file `manifest.txt'.
%%
\ProvidesFile{hvtex.def}
- [2008/07/17 v6.78d
+ [2008/07/23 v6.78e
Hyperref driver for VTeX in PDF/PS mode]
\providecommand*{\XR@ext}{pdf}
\edef\Hy@VTeXversion{%
diff --git a/Master/texmf-dist/tex/latex/hyperref/hvtexhtm.def b/Master/texmf-dist/tex/latex/hyperref/hvtexhtm.def
index 9a9d9df64ce..d6a3e5dcd93 100644
--- a/Master/texmf-dist/tex/latex/hyperref/hvtexhtm.def
+++ b/Master/texmf-dist/tex/latex/hyperref/hvtexhtm.def
@@ -24,7 +24,7 @@
%% given in the file `manifest.txt'.
%%
\ProvidesFile{hvtexhtml.def}
- [2008/07/17 v6.78d
+ [2008/07/23 v6.78e
Hyperref driver for VTeX in HTML mode]
\providecommand*{\XR@ext}{htm}
\RequirePackage{vtexhtml}
diff --git a/Master/texmf-dist/tex/latex/hyperref/hvtexmrk.def b/Master/texmf-dist/tex/latex/hyperref/hvtexmrk.def
index 898f898d63a..91a5f94c28b 100644
--- a/Master/texmf-dist/tex/latex/hyperref/hvtexmrk.def
+++ b/Master/texmf-dist/tex/latex/hyperref/hvtexmrk.def
@@ -24,7 +24,7 @@
%% given in the file `manifest.txt'.
%%
\ProvidesFile{hvtexmrk.def}
- [2008/07/17 v6.78d
+ [2008/07/23 v6.78e
Hyperref driver for VTeX in PDF/PS mode (pdfmark specials)]
\providecommand*{\XR@ext}{pdf}
\def\Hy@raisedlink{}
diff --git a/Master/texmf-dist/tex/latex/hyperref/hyperref.sty b/Master/texmf-dist/tex/latex/hyperref/hyperref.sty
index 1b13b5c4739..fb6092d9578 100644
--- a/Master/texmf-dist/tex/latex/hyperref/hyperref.sty
+++ b/Master/texmf-dist/tex/latex/hyperref/hyperref.sty
@@ -25,7 +25,7 @@
%%
\NeedsTeXFormat{LaTeX2e}
\ProvidesPackage{hyperref}
- [2008/07/17 v6.78d
+ [2008/07/23 v6.78e
Hypertext links for LaTeX]
\begingroup
\@makeother\`%
diff --git a/Master/texmf-dist/tex/latex/hyperref/hypertex.def b/Master/texmf-dist/tex/latex/hyperref/hypertex.def
index 31e92f2a145..a32fdd78eae 100644
--- a/Master/texmf-dist/tex/latex/hyperref/hypertex.def
+++ b/Master/texmf-dist/tex/latex/hyperref/hypertex.def
@@ -24,7 +24,7 @@
%% given in the file `manifest.txt'.
%%
\ProvidesFile{hypertex.def}
- [2008/07/17 v6.78d
+ [2008/07/23 v6.78e
Hyperref driver for HyperTeX specials]
\providecommand*{\XR@ext}{dvi}
\def\PDF@FinishDoc{}
diff --git a/Master/texmf-dist/tex/latex/hyperref/nohyperref.sty b/Master/texmf-dist/tex/latex/hyperref/nohyperref.sty
index 533df9001ba..1791f093b42 100644
--- a/Master/texmf-dist/tex/latex/hyperref/nohyperref.sty
+++ b/Master/texmf-dist/tex/latex/hyperref/nohyperref.sty
@@ -25,7 +25,7 @@
%%
\NeedsTeXFormat{LaTeX2e}
\ProvidesPackage{nohyperref}
- [2008/07/17 v6.78d
+ [2008/07/23 v6.78e
Dummy hyperref (SR)]
\let\hyper@@anchor\@gobble
\def\hyper@link#1#2#3{#3}%
diff --git a/Master/texmf-dist/tex/latex/hyperref/pd1enc.def b/Master/texmf-dist/tex/latex/hyperref/pd1enc.def
index 9339bd38630..9b0fc6ff5e4 100644
--- a/Master/texmf-dist/tex/latex/hyperref/pd1enc.def
+++ b/Master/texmf-dist/tex/latex/hyperref/pd1enc.def
@@ -24,7 +24,7 @@
%% given in the file `manifest.txt'.
%%
\ProvidesFile{pd1enc.def}
- [2008/07/17 v6.78d
+ [2008/07/23 v6.78e
Hyperref: PDFDocEncoding definition (HO)]
\DeclareFontEncoding{PD1}{}{}
\DeclareTextCommand{\textLF}{PD1}{\012} % line feed
diff --git a/Master/texmf-dist/tex/latex/hyperref/pdfmark.def b/Master/texmf-dist/tex/latex/hyperref/pdfmark.def
index 458a8a425a0..07012c767a4 100644
--- a/Master/texmf-dist/tex/latex/hyperref/pdfmark.def
+++ b/Master/texmf-dist/tex/latex/hyperref/pdfmark.def
@@ -24,7 +24,7 @@
%% given in the file `manifest.txt'.
%%
\ProvidesFile{pdfmark.def}
- [2008/07/17 v6.78d
+ [2008/07/23 v6.78e
Hyperref definitions for pdfmark specials]
\begingroup
\toks@\expandafter{\Hy@FirstPageHook}%
@@ -507,7 +507,7 @@
\newtoks\pdf@defaulttoks
\pdf@defaulttoks={}%
\def\pdf@addtoks#1#2{%
- \edef\@processme{\pdf@toks{\the\pdf@toks\space /#2 #1}}%
+ \edef\@processme{\pdf@toks{\the\pdf@toks/#2 #1}}%
\@processme
}
\def\pdf@addtoksx#1{%
diff --git a/Master/texmf-dist/tex/latex/hyperref/puarenc.def b/Master/texmf-dist/tex/latex/hyperref/puarenc.def
index 91fa9031569..8ecd735bd20 100644
--- a/Master/texmf-dist/tex/latex/hyperref/puarenc.def
+++ b/Master/texmf-dist/tex/latex/hyperref/puarenc.def
@@ -24,7 +24,7 @@
%% given in the file `manifest.txt'.
%%
\ProvidesFile{puarenc.def}
- [2008/07/17 v6.78d
+ [2008/07/23 v6.78e
Hyperref: Additions to puenc.def for Arabi]
\DeclareTextCommand{\hamza}{PU}{\86\041}% 0621;afii57409;ARABIC LETTER HAMZA
\DeclareTextCommand{\alefmadda}{PU}{\86\042}% 0622;afii57410;ARABIC LETTER ALEF WITH MADDA ABOVE
diff --git a/Master/texmf-dist/tex/latex/hyperref/puenc.def b/Master/texmf-dist/tex/latex/hyperref/puenc.def
index da71027d8ef..685d13727ba 100644
--- a/Master/texmf-dist/tex/latex/hyperref/puenc.def
+++ b/Master/texmf-dist/tex/latex/hyperref/puenc.def
@@ -24,7 +24,7 @@
%% given in the file `manifest.txt'.
%%
\ProvidesFile{puenc.def}
- [2008/07/17 v6.78d
+ [2008/07/23 v6.78e
Hyperref: PDF Unicode definition (HO)]
\DeclareFontEncoding{PU}{}{}
\DeclareTextCommand{\textLF}{PU}{\80\012} % line feed
diff --git a/Master/texmf-dist/tex/latex/hyperref/puvnenc.def b/Master/texmf-dist/tex/latex/hyperref/puvnenc.def
index 52fbbf879c3..f0353f2e8c7 100644
--- a/Master/texmf-dist/tex/latex/hyperref/puvnenc.def
+++ b/Master/texmf-dist/tex/latex/hyperref/puvnenc.def
@@ -24,7 +24,7 @@
%% given in the file `manifest.txt'.
%%
\ProvidesFile{puvnenc.def}
- [2008/07/17 v6.78d
+ [2008/07/23 v6.78e
Hyperref: Additions to puenc.def for VnTeX]
\DeclareTextCommand{\abreve}{PU}{\81\003}
\DeclareTextCommand{\acircumflex}{PU}{\80\342}