From 8aaf833a7c9bb00bea12f046472b9f615460e467 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Jos=C3=A9=20Fonseca?= Date: Fri, 24 Apr 2009 15:48:03 +0100 Subject: [PATCH] Inline the HTML style sheet. --- README | 2 +- apitrace.css | 92 ---------------------------------------------------- apitrace.xsl | 76 ++++++++++++++++++++++++++++++++++++++++++- 3 files changed, 76 insertions(+), 94 deletions(-) delete mode 100644 apitrace.css diff --git a/README b/README index f169706..0936288 100644 --- a/README +++ b/README @@ -66,7 +66,7 @@ See the scons manpage for more info. = Usage = -* Copy d3d8.dll/d3d9.dll, apitrace.xsl, apitrace.css to the directory with the application you want to trace. +* Copy d3d8.dll, d3d9.dll, or opengl32.dll and apitrace.xsl to the directory with the application you want to trace. * Run the application. * Open the output XML file with Firefox or Internet Explorer to view the log. * For long XML files is better to use xml2txt.py script. diff --git a/apitrace.css b/apitrace.css deleted file mode 100644 index 8f08bf6..0000000 --- a/apitrace.css +++ /dev/null @@ -1,92 +0,0 @@ -/**************************************************************************** - * - * Copyright 2008 Tungsten Graphics, Inc. - * - * This program is free software: you can redistribute it and/or modify it - * under the terms of the GNU Lesser General Public License as published - * by the Free Software Foundation, either version 3 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General Public License - * along with this program. If not, see . - * - ****************************************************************************/ - -body { - font-family: verdana, sans-serif; - font-size: 11px; - font-weight: normal; - text-align : left; -} - -ul.calls { - list-style: none; - margin-left: 0px; - padding-left: 0px; -} - -ul.args { - display:inline; - list-style: none; - margin-left: 0px; - padding-left: 0px; -} - -ul.args li { - display:inline; -} - -ul.elems { - list-style: none; - margin-left: 2em; - padding-left: 0px; -} - -ul.elems li { - display:block; -} - -.fun { - font-weight: bold; -} - -.var { - font-style: italic; -} - -.typ { - display: none; -} - -.lit { - color: #0000ff; -} - -.addr { - color: #008000; -} - -.ref { - position: relative; - cursor: help; -} - -.def { - display: none; - position: absolute; - top: 1.5em; - left: 0; - width: 32em; - background: #f7f7f7; - cursor: default; -} - -.ref:hover .def { - display: block; -} - diff --git a/apitrace.xsl b/apitrace.xsl index 1e0b631..511e7df 100644 --- a/apitrace.xsl +++ b/apitrace.xsl @@ -2,6 +2,7 @@