• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..--

agents/22-Nov-2023-557388

test_data/22-Nov-2023-3,9632,168

trace-viewer/22-Nov-2023-1,287,5351,205,682

.gitD01-Jan-19700

.gitignoreD22-Nov-202351 54

AUTHORSD22-Nov-2023292 1311

LICENSED22-Nov-20231.5 KiB2827

MODULE_LICENSE_BSD_LIKE_AND_APACHE_2D22-Nov-20230

NOTICED22-Nov-202311.5 KiB206177

READMED22-Nov-20231 KiB2316

UPSTREAM_REVISIOND22-Nov-202341 21

prefix.htmlD22-Nov-20231.7 KiB7063

run_unittest.pyD22-Nov-20235 KiB12697

suffix.htmlD22-Nov-202316 32

systrace-legacy.pyD22-Nov-20238.1 KiB209184

systrace.pyD22-Nov-20237.1 KiB200151

systrace_agent.pyD22-Nov-20231.6 KiB6245

systrace_trace_viewer.htmlD22-Nov-20231.1 MiB4,7474,566

update.pyD22-Nov-20232.1 KiB6545

util.pyD22-Nov-20233.5 KiB11676

README

1The trace-viewer directory contains code from:
2
3    http://trace-viewer.googlecode.com/svn/trunk/
4
5The file UPSTREAM_REVISION contains the upstream revision number that was last
6pulled.  Changes should be made upstream and then pulled into the trace-viewer
7directory.
8
9The update.py script should be used to pull the latest upstream code, update
10the UPSTREAM_REVISION file, and package the CSS and Javascript files into
11style.css and script.js, respectively.  These generated files are being checked
12into the git repository, and they get embedded in each trace HTML file that
13systrace.py generates.
14
15To make development of trace-viewer code in the context of systrace easier,
16systrace supports arguments to generate HTML files that link to files in a
17trace-viewer development directory rather than embedding the JS and CSS in the
18HTML.  Do take advantage of this, you should check out the trace-viewer code in
19a new directory (e.g. trace-viewer-dev) and use systrace as follows:
20
21    $ ./systrace.py --link-assets --asset-dir trace-viewer-dev
22
23