Post Reply 
Load time
Oct. 13, 2008, 01:03 PM
Post: #6
RE: Load time
lnminente Wrote:i think the best is to save a big webpage bypassed

I was thinking the same.

Then you could use proxo's url command:
Code:
http://file//path

Used to filter a local file as if it were a web page. Similar to the file:// URL used by most browsers.

If the browser has cached the pages external resources, server lag would be minimal.

Here's some js filters that will calc the time for you: Smile!
Code:
[Patterns]
Name = "Inject Start Time js"
Active = TRUE
Limit = 256
Match = "<start>"
Replace = "<script type="text/javascript">\r\n"
          "  proxoT0 = new Date();\r\n"
          "</script>\r\n"

Code:
[Patterns]
Name = "Inject End Time js"
Active = TRUE
Limit = 256
Match = "<end>"
Replace = "\r\n"
          "<script type="text/javascript">\r\n"
          "  // calc delta time\r\n"
          "  var proxoDT = new Date()-proxoT0;\r\n"
          "  var proxoLT = 'Load Time = ' + proxoDT + ' ms';\r\n"
          "  document.write('<div><span>'+proxoLT+'<\/span><\/div>');\r\n"
          "</script>\r\n"

HTH
z12
Add Thank You Quote this message in a reply
Post Reply 


Messages In This Thread
Load time - lnminente - Oct. 11, 2008, 07:57 PM
RE: Load time - z12 - Oct. 12, 2008, 01:50 PM
RE: Load time - lnminente - Oct. 12, 2008, 05:18 PM
RE: Load time - ProxRocks - Oct. 12, 2008, 05:38 PM
RE: Load time - Guest - Oct. 13, 2008, 02:38 AM
RE: Load time - z12 - Oct. 13, 2008 01:03 PM
RE: Load time - lnminente - Oct. 13, 2008, 03:38 PM
RE: Load time - lnminente - Oct. 13, 2008, 05:26 PM
RE: Load time - z12 - Oct. 13, 2008, 07:43 PM
RE: Load time - lnminente - Oct. 13, 2008, 09:34 PM
RE: Load time - lnminente - Oct. 14, 2008, 12:48 PM
RE: Load time - ProxRocks - Oct. 14, 2008, 04:23 PM
RE: Load time - lnminente - Oct. 14, 2008, 06:38 PM
RE: Load time - ProxRocks - Oct. 14, 2008, 06:58 PM
RE: Load time - lnminente - Oct. 14, 2008, 07:05 PM
RE: Load time - z12 - Oct. 14, 2008, 08:47 PM
RE: Load time - lnminente - Oct. 14, 2008, 08:55 PM
RE: Load time - z12 - Oct. 14, 2008, 09:24 PM
RE: Load time - Toppy - Oct. 17, 2008, 07:47 PM
RE: Load time - lnminente - Oct. 18, 2008, 02:07 AM

Forum Jump: