]> git.cworth.org Git - apitrace/commitdiff
Inline the HTML style sheet.
authorJosé Fonseca <jfonseca@vmware.com>
Fri, 24 Apr 2009 14:48:03 +0000 (15:48 +0100)
committerJosé Fonseca <jfonseca@vmware.com>
Fri, 24 Apr 2009 14:48:03 +0000 (15:48 +0100)
README
apitrace.css [deleted file]
apitrace.xsl

diff --git a/README b/README
index f169706384bf1edf52d4e3edbc9c08ccbbc582d6..093628871ffa78a74e432c6aeb069f6fe609e056 100644 (file)
--- 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 (file)
index 8f08bf6..0000000
+++ /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 <http://www.gnu.org/licenses/>.
- *
- ****************************************************************************/
-
-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;
-}
-
index 1e0b6312c7a3743a665572443a106d7a3f247db2..511e7dffd2f9810fb5f5f64eea67424dc1f1710a 100644 (file)
@@ -2,6 +2,7 @@
 
 <!--
 
+Copyright 2009 VMware, Inc.
 Copyright 2008 Tungsten Graphics, Inc.
 
 This program is free software: you can redistribute it and/or modify it
@@ -29,8 +30,81 @@ along with this program.  If not, see <http://www.gnu.org/licenses/>.
                <html>
                        <head>
                                <title>D3D Trace</title>
-                               <link rel="stylesheet" type="text/css" href="apitrace.css"/>
                        </head>
+                       <style>
+                               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;
+                               }
+                       </style>
                        <body>
                                <ul class="calls">
                                        <xsl:apply-templates/>