Diff for "GavinPanella"

Not logged in - Log In / Register

Differences between revisions 20 and 23 (spanning 3 versions)
Revision 20 as of 2011-07-14 13:48:33
Size: 2566
Editor: allenap
Comment:
Revision 23 as of 2011-08-02 10:46:20
Size: 2097
Editor: allenap
Comment:
Deletions are marked like this. Additions are marked like this.
Line 25: Line 25:
 * [[JavaScriptReviewNotes|Javascript Review Notes]]
 * [[UserInterfaceWording|User Interface Wording]]
 * [[https://devpad.canonical.com/~gary|Launchpad internal API documentation, ZCML reference, etc.]]
Line 28: Line 27:
 * [[https://devpad.canonical.com/~gary|Launchpad internal API documentation, ZCML reference, etc.]]
 * [[http://developer.yahoo.com/ypatterns/|Yahoo! Design Pattern Library]]
 * [[/ProfilingLaunchpad|Profiling Launchpad]]

 * Java``Script
   * [[https://developer.mozilla.org/en/JavaScript/Reference|MDN JavaScript Reference]]
   * [[JavaScriptReviewNotes|Javascript Review Notes]]

 * Design / UI
   * [[UserInterfaceWording|User Interface Wording]]
   * [[http://developer.yahoo.com/ypatterns/|Yahoo! Design Pattern Library]]

 * Packaging
   * [[/BumpPackageVersion|Bumping the version of a package on dogfood]]
Line 39: Line 48:
== Profiling Launchpad ==

 * Apply: {{{
=== modified file 'configs/development/launchpad-lazr.conf'
--- configs/development/launchpad-lazr.conf 2009-01-21 03:21:56 +0000
+++ configs/development/launchpad-lazr.conf 2009-02-04 16:01:04 +0000
@@ -5,6 +5,10 @@
 [meta]
 extends: ../../lib/canonical/config/schema-lazr.conf

+[profiling]
+profile_requests: True
+profile_dir: /tmp/profiling
+
 [archivepublisher]
 root: /var/tmp/archive
}}}

 * `mkdir /tmp/profiling`

 * `make run` and use the application.

 * `wget http://jrfonseca.googlecode.com/svn/trunk/gprof2dot/gprof2dot.py`

 * `python gprof2dot.py -n 1 -f pstats /tmp/profiling/''blah.prof'' | dot -Tpng -o profiling.png`

 * Look at `profiling.png`.

GavinPanella (last edited 2012-07-17 11:50:09 by allenap)