Changes between Initial Version and Version 1 of jazz/09-11-25


Ignore:
Timestamp:
Nov 25, 2009, 10:43:08 AM (15 years ago)
Author:
jazz
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • jazz/09-11-25

    v1 v1  
     1= 2009-11-25 =
     2
     3 * [http://www.homeweb.idv.tw/249 DHCP relay agent]
     4
     5 * 解析[http://contrapants.org/blog/2005/07/gmailthis.html GmailThis!] Bookmarklet
     6{{{
     7#!java
     8popw='';
     9Q='';
     10x=document;
     11y=window;
     12if(x.selection)
     13{
     14  Q=x.selection.createRange().text;
     15}
     16else if (y.getSelection)
     17{
     18  Q=y.getSelection();
     19}
     20else if (x.getSelection)
     21{
     22  Q=x.getSelection();
     23}
     24
     25popw=y.open('https://mail.google.com/mail/?view=cm&fs=1&tf=1&to=&su='%20+%20escape(document.title)%20+%20'&body='%20+%20escape(Q)%20+%20escape('\n')%20+%20escape(location.href)%20+%20'&zx=RANDOMCRAP&shva=1&disablechatbrowsercheck=1&ui=1','gmailForm','scrollbars=yes,width=680,height=510,top=175,left=75,status=no,resizable=yes');
     26
     27if(!document.all)
     28  T=setTimeout('popw.focus()',50);
     29void(0);
     30}}}