From ac768be5ab2e638802806ac364ca4402e8e9935e Mon Sep 17 00:00:00 2001 From: Karl Berry Date: Sun, 24 Feb 2008 18:22:07 +0000 Subject: pgf 2.0, third try git-svn-id: svn://tug.org/texlive/trunk@6747 c570f23f-e606-0410-a88d-b1316a301751 --- Master/texmf-dist/tex/plain/pgf/basiclayer/pgf.tex | 28 ++++++++++++++++++++++ .../tex/plain/pgf/basiclayer/pgfbaseimage.tex | 20 ++++++++++++++++ .../tex/plain/pgf/basiclayer/pgfbaselayers.tex | 20 ++++++++++++++++ .../tex/plain/pgf/basiclayer/pgfbasematrix.tex | 22 +++++++++++++++++ .../tex/plain/pgf/basiclayer/pgfbasepatterns.tex | 20 ++++++++++++++++ .../tex/plain/pgf/basiclayer/pgfbaseplot.tex | 22 +++++++++++++++++ .../tex/plain/pgf/basiclayer/pgfbaseshapes.tex | 22 +++++++++++++++++ .../tex/plain/pgf/basiclayer/pgfbasesnakes.tex | 22 +++++++++++++++++ .../tex/plain/pgf/basiclayer/pgfcore.tex | 23 ++++++++++++++++++ .../tex/plain/pgf/frontendlayer/tikz.tex | 23 ++++++++++++++++++ Master/texmf-dist/tex/plain/pgf/math/pgfmath.tex | 23 ++++++++++++++++++ .../tex/plain/pgf/systemlayer/pgfsys.tex | 28 ++++++++++++++++++++++ .../tex/plain/pgf/utilities/pgfcalendar.tex | 18 ++++++++++++++ .../texmf-dist/tex/plain/pgf/utilities/pgffor.tex | 18 ++++++++++++++ .../texmf-dist/tex/plain/pgf/utilities/pgfrcs.tex | 26 ++++++++++++++++++++ 15 files changed, 335 insertions(+) create mode 100644 Master/texmf-dist/tex/plain/pgf/basiclayer/pgf.tex create mode 100644 Master/texmf-dist/tex/plain/pgf/basiclayer/pgfbaseimage.tex create mode 100644 Master/texmf-dist/tex/plain/pgf/basiclayer/pgfbaselayers.tex create mode 100644 Master/texmf-dist/tex/plain/pgf/basiclayer/pgfbasematrix.tex create mode 100644 Master/texmf-dist/tex/plain/pgf/basiclayer/pgfbasepatterns.tex create mode 100644 Master/texmf-dist/tex/plain/pgf/basiclayer/pgfbaseplot.tex create mode 100644 Master/texmf-dist/tex/plain/pgf/basiclayer/pgfbaseshapes.tex create mode 100644 Master/texmf-dist/tex/plain/pgf/basiclayer/pgfbasesnakes.tex create mode 100644 Master/texmf-dist/tex/plain/pgf/basiclayer/pgfcore.tex create mode 100644 Master/texmf-dist/tex/plain/pgf/frontendlayer/tikz.tex create mode 100644 Master/texmf-dist/tex/plain/pgf/math/pgfmath.tex create mode 100644 Master/texmf-dist/tex/plain/pgf/systemlayer/pgfsys.tex create mode 100644 Master/texmf-dist/tex/plain/pgf/utilities/pgfcalendar.tex create mode 100644 Master/texmf-dist/tex/plain/pgf/utilities/pgffor.tex create mode 100644 Master/texmf-dist/tex/plain/pgf/utilities/pgfrcs.tex (limited to 'Master/texmf-dist/tex/plain/pgf') diff --git a/Master/texmf-dist/tex/plain/pgf/basiclayer/pgf.tex b/Master/texmf-dist/tex/plain/pgf/basiclayer/pgf.tex new file mode 100644 index 00000000000..4c4e4c60de6 --- /dev/null +++ b/Master/texmf-dist/tex/plain/pgf/basiclayer/pgf.tex @@ -0,0 +1,28 @@ +% Copyright 2006 by Till Tantau +% +% This file may be distributed and/or modified +% +% 1. under the LaTeX Project Public License and/or +% 2. under the GNU Public License. +% +% See the file doc/generic/pgf/licenses/LICENSE for more details. + + +\edef\pgfatcode{\the\catcode`\@} +\catcode`\@=11 + + +\input pgfrcs.tex +\ProvidesPackageRCS $Header: /cvsroot/pgf/pgf/plain/pgf/basiclayer/pgf.tex,v 1.10 2008/01/15 17:17:22 tantau Exp $ + +\input pgfcore.tex + +\usepgfmodule{shapes,plot} + +%\input pgfbasesnakes.tex +%\input pgfbasedecorations.tex +%\input pgfbasematrix.tex + +\catcode`\@=\pgfatcode + +\endinput diff --git a/Master/texmf-dist/tex/plain/pgf/basiclayer/pgfbaseimage.tex b/Master/texmf-dist/tex/plain/pgf/basiclayer/pgfbaseimage.tex new file mode 100644 index 00000000000..675ac960c4f --- /dev/null +++ b/Master/texmf-dist/tex/plain/pgf/basiclayer/pgfbaseimage.tex @@ -0,0 +1,20 @@ +% Copyright 2006 by Till Tantau +% +% This file may be distributed and/or modified +% +% 1. under the LaTeX Project Public License and/or +% 2. under the GNU Public License. +% +% See the file doc/generic/pgf/licenses/LICENSE for more details. + + +\edef\pgfbaseimageatcode{\the\catcode`\@} +\catcode`\@=11 + +\input pgfcore.tex + +\PackageWarning{pgf}{This package is obsolete and no longer needed} + +\catcode`\@=\pgfbaseimageatcode + +\endinput diff --git a/Master/texmf-dist/tex/plain/pgf/basiclayer/pgfbaselayers.tex b/Master/texmf-dist/tex/plain/pgf/basiclayer/pgfbaselayers.tex new file mode 100644 index 00000000000..626c89d5a87 --- /dev/null +++ b/Master/texmf-dist/tex/plain/pgf/basiclayer/pgfbaselayers.tex @@ -0,0 +1,20 @@ +% Copyright 2006 by Till Tantau +% +% This file may be distributed and/or modified +% +% 1. under the LaTeX Project Public License and/or +% 2. under the GNU Public License. +% +% See the file doc/generic/pgf/licenses/LICENSE for more details. + + +\edef\pgfbaselayersatcode{\the\catcode`\@} +\catcode`\@=11 + +\input pgfcore.tex + +\PackageWarning{pgf}{This package is obsolete and no longer needed} + +\catcode`\@=\pgfbaselayersatcode + +\endinput diff --git a/Master/texmf-dist/tex/plain/pgf/basiclayer/pgfbasematrix.tex b/Master/texmf-dist/tex/plain/pgf/basiclayer/pgfbasematrix.tex new file mode 100644 index 00000000000..a860a1a7bcc --- /dev/null +++ b/Master/texmf-dist/tex/plain/pgf/basiclayer/pgfbasematrix.tex @@ -0,0 +1,22 @@ +% Copyright 2006 by Till Tantau +% +% This file may be distributed and/or modified +% +% 1. under the LaTeX Project Public License and/or +% 2. under the GNU Public License. +% +% See the file doc/generic/pgf/licenses/LICENSE for more details. + + +\edef\pgfbasematrixatcode{\the\catcode`\@} +\catcode`\@=11 + +\input pgfcore.tex + +\PackageWarning{pgf}{This package is obsolete. Use \string\usepgfmodule{matrix} instead} + +\usepgfmodule{matrix} + +\catcode`\@=\pgfbasematrixatcode + +\endinput diff --git a/Master/texmf-dist/tex/plain/pgf/basiclayer/pgfbasepatterns.tex b/Master/texmf-dist/tex/plain/pgf/basiclayer/pgfbasepatterns.tex new file mode 100644 index 00000000000..3b14b0a3a3f --- /dev/null +++ b/Master/texmf-dist/tex/plain/pgf/basiclayer/pgfbasepatterns.tex @@ -0,0 +1,20 @@ +% Copyright 2006 by Till Tantau +% +% This file may be distributed and/or modified +% +% 1. under the LaTeX Project Public License and/or +% 2. under the GNU Public License. +% +% See the file doc/generic/pgf/licenses/LICENSE for more details. + + +\edef\pgfbasepatternsatcode{\the\catcode`\@} +\catcode`\@=11 + +\input pgfcore.tex + +\PackageWarning{pgf}{This package is obsolete and no longer needed} + +\catcode`\@=\pgfbasepatternsatcode + +\endinput diff --git a/Master/texmf-dist/tex/plain/pgf/basiclayer/pgfbaseplot.tex b/Master/texmf-dist/tex/plain/pgf/basiclayer/pgfbaseplot.tex new file mode 100644 index 00000000000..ef56ce8715e --- /dev/null +++ b/Master/texmf-dist/tex/plain/pgf/basiclayer/pgfbaseplot.tex @@ -0,0 +1,22 @@ +% Copyright 2006 by Till Tantau +% +% This file may be distributed and/or modified +% +% 1. under the LaTeX Project Public License and/or +% 2. under the GNU Public License. +% +% See the file doc/generic/pgf/licenses/LICENSE for more details. + + +\edef\pgfbaseplotatcode{\the\catcode`\@} +\catcode`\@=11 + +\input pgfcore.tex + +\PackageWarning{pgf}{This package is obsolete. Use \string\usepgfmodule{plot} instead} + +\usepgfmodule{plot} + +\catcode`\@=\pgfbaseplotatcode + +\endinput diff --git a/Master/texmf-dist/tex/plain/pgf/basiclayer/pgfbaseshapes.tex b/Master/texmf-dist/tex/plain/pgf/basiclayer/pgfbaseshapes.tex new file mode 100644 index 00000000000..94fa7a28884 --- /dev/null +++ b/Master/texmf-dist/tex/plain/pgf/basiclayer/pgfbaseshapes.tex @@ -0,0 +1,22 @@ +% Copyright 2006 by Till Tantau +% +% This file may be distributed and/or modified +% +% 1. under the LaTeX Project Public License and/or +% 2. under the GNU Public License. +% +% See the file doc/generic/pgf/licenses/LICENSE for more details. + + +\edef\pgfbaseshapesatcode{\the\catcode`\@} +\catcode`\@=11 + +\input pgfcore.tex + +\PackageWarning{pgf}{This package is obsolete. Use \string\usepgfmodule{shapes} instead} + +\usepgfmodule{shapes} + +\catcode`\@=\pgfbaseshapesatcode + +\endinput diff --git a/Master/texmf-dist/tex/plain/pgf/basiclayer/pgfbasesnakes.tex b/Master/texmf-dist/tex/plain/pgf/basiclayer/pgfbasesnakes.tex new file mode 100644 index 00000000000..7902e02bf31 --- /dev/null +++ b/Master/texmf-dist/tex/plain/pgf/basiclayer/pgfbasesnakes.tex @@ -0,0 +1,22 @@ +% Copyright 2006 by Till Tantau +% +% This file may be distributed and/or modified +% +% 1. under the LaTeX Project Public License and/or +% 2. under the GNU Public License. +% +% See the file doc/generic/pgf/licenses/LICENSE for more details. + + +\edef\pgfbasesnakesatcode{\the\catcode`\@} +\catcode`\@=11 + +\input pgfcore.tex + +\PackageWarning{pgf}{This package is obsolete. Use \string\usepgfmodule{decorations} instead} + +\usepgfmodule{decorations} + +\catcode`\@=\pgfbasesnakesatcode + +\endinput diff --git a/Master/texmf-dist/tex/plain/pgf/basiclayer/pgfcore.tex b/Master/texmf-dist/tex/plain/pgf/basiclayer/pgfcore.tex new file mode 100644 index 00000000000..590120a96c5 --- /dev/null +++ b/Master/texmf-dist/tex/plain/pgf/basiclayer/pgfcore.tex @@ -0,0 +1,23 @@ +% Copyright 2006 by Till Tantau +% +% This file may be distributed and/or modified +% +% 1. under the LaTeX Project Public License and/or +% 2. under the GNU Public License. +% +% See the file doc/generic/pgf/licenses/LICENSE for more details. + + +\ifx\pgfcoreincluded\undefined +\def\pgfcoreincluded{} + +\edef\pgfcoreatcode{\the\catcode`\@} +\catcode`\@=11 + +\input pgfsys.tex +\input pgfcore.code.tex +\catcode`\@=\pgfcoreatcode + +\fi + +\endinput diff --git a/Master/texmf-dist/tex/plain/pgf/frontendlayer/tikz.tex b/Master/texmf-dist/tex/plain/pgf/frontendlayer/tikz.tex new file mode 100644 index 00000000000..30aa11fa074 --- /dev/null +++ b/Master/texmf-dist/tex/plain/pgf/frontendlayer/tikz.tex @@ -0,0 +1,23 @@ +% Copyright 2006 by Till Tantau +% +% This file may be distributed and/or modified +% +% 1. under the LaTeX Project Public License and/or +% 2. under the GNU Public License. +% +% See the file doc/generic/pgf/licenses/LICENSE for more details. + +% This file is tikz.tex + +\edef\tikzatcode{\the\catcode`\@} +\catcode`\@=11 + +%\input xkeyval.tex % no longer used/needed + +\input pgf.tex +\input pgffor.tex +\input tikz.code.tex + +\catcode`\@=\tikzatcode + +\endinput diff --git a/Master/texmf-dist/tex/plain/pgf/math/pgfmath.tex b/Master/texmf-dist/tex/plain/pgf/math/pgfmath.tex new file mode 100644 index 00000000000..b26fbc8c356 --- /dev/null +++ b/Master/texmf-dist/tex/plain/pgf/math/pgfmath.tex @@ -0,0 +1,23 @@ +% Copyright 2007 by Till Tantau +% +% This file may be distributed and/or modified +% +% 1. under the LaTeX Project Public License and/or +% 2. under the GNU Public License. +% +% See the file doc/generic/pgf/licenses/LICENSE for more details. + + +\ifx\pgfmathincluded\undefined +\def\pgfmathincluded{} + +\edef\pgfmathatcode{\the\catcode`\@} +\catcode`\@=11 + +\input pgfsys.tex +\input pgfmath.code.tex +\catcode`\@=\pgfmathatcode + +\fi + +\endinput diff --git a/Master/texmf-dist/tex/plain/pgf/systemlayer/pgfsys.tex b/Master/texmf-dist/tex/plain/pgf/systemlayer/pgfsys.tex new file mode 100644 index 00000000000..1ca8bba3581 --- /dev/null +++ b/Master/texmf-dist/tex/plain/pgf/systemlayer/pgfsys.tex @@ -0,0 +1,28 @@ +% Copyright 2006 by Till Tantau +% +% This file may be distributed and/or modified +% +% 1. under the LaTeX Project Public License and/or +% 2. under the GNU Public License. +% +% See the file doc/generic/pgf/licenses/LICENSE for more details. + +% This file is pgfsys.tex + +\ifx\pgfsysincluded\undefined +\def\pgfsysincluded{} + +\edef\pgfsysatcode{\the\catcode`\@} +\catcode`\@=11 + +\input pgfrcs.tex + +\input pgfsys.code.tex +\input pgfsyssoftpath.code.tex +\input pgfsysprotocol.code.tex + +\catcode`\@=\pgfsysatcode\relax + +\fi + +\endinput diff --git a/Master/texmf-dist/tex/plain/pgf/utilities/pgfcalendar.tex b/Master/texmf-dist/tex/plain/pgf/utilities/pgfcalendar.tex new file mode 100644 index 00000000000..768357527ae --- /dev/null +++ b/Master/texmf-dist/tex/plain/pgf/utilities/pgfcalendar.tex @@ -0,0 +1,18 @@ +% Copyright 2006 by Till Tantau +% +% This file may be distributed and/or modified +% +% 1. under the LaTeX Project Public License and/or +% 2. under the GNU Public License. +% +% See the file doc/generic/pgf/licenses/LICENSE for more details. + +\edef\pgfcalendaratcode{\the\catcode`\@} +\catcode`\@=11 + +\input pgfrcs.tex +\input pgfcalendar.code.tex + +\catcode`\@=\pgfcalendaratcode + +\endinput diff --git a/Master/texmf-dist/tex/plain/pgf/utilities/pgffor.tex b/Master/texmf-dist/tex/plain/pgf/utilities/pgffor.tex new file mode 100644 index 00000000000..4b5e8177135 --- /dev/null +++ b/Master/texmf-dist/tex/plain/pgf/utilities/pgffor.tex @@ -0,0 +1,18 @@ +% Copyright 2006 by Till Tantau +% +% This file may be distributed and/or modified +% +% 1. under the LaTeX Project Public License and/or +% 2. under the GNU Public License. +% +% See the file doc/generic/pgf/licenses/LICENSE for more details. + +\edef\pgfforatcode{\the\catcode`\@} +\catcode`\@=11 + +\input pgfrcs.tex +\input pgffor.code.tex + +\catcode`\@=\pgfforatcode + +\endinput diff --git a/Master/texmf-dist/tex/plain/pgf/utilities/pgfrcs.tex b/Master/texmf-dist/tex/plain/pgf/utilities/pgfrcs.tex new file mode 100644 index 00000000000..6d8928dc078 --- /dev/null +++ b/Master/texmf-dist/tex/plain/pgf/utilities/pgfrcs.tex @@ -0,0 +1,26 @@ +% Copyright 2006 by Till Tantau +% +% This file may be distributed and/or modified +% +% 1. under the LaTeX Project Public License and/or +% 2. under the GNU Public License. +% +% See the file doc/generic/pgf/licenses/LICENSE for more details. + + +\ifx\pgfrcsincluded\undefined +\def\pgfrcsincluded{} + +\edef\pgfrcsatcode{\the\catcode`\@} +\catcode`\@=11 + +\input pgfutil-common.tex +\input pgfutil-plain.def + +\input pgfrcs.code.tex + +\catcode`\@=\pgfrcsatcode + +\fi + +\endinput -- cgit v1.2.3