Post Reply 
Strange results from Exceptions-U changes
Dec. 21, 2011, 07:10 PM
Post: #13
RE: Strange results from Exceptions-U changes
The Proxomitron may hash or index a list when it loads it. As hits and misses accumulate, the list may be further optimised. So the last entry in your list could be checked first. http://local.ptron/.pinfo/lists/ can help.


You want
www.google.com/(^?) $JUMP(http://www.google.com/advanced_search)
www.google.com/webhp?hl=en $JUMP(http://www.google.com/advanced_search)
www.google.com/imghp $JUMP(http://www.google.com/advanced_image_search?hl=en)
www.google.com/firefox $JUMP(http://www.google.com/advanced_search)
and
www.google.com/ $SET(0=f_ua_ie.)


For www.google.com/
if webhp?hl=en then $SET(0=f_ua_ie.)$JUMP(http://www.google.com/advanced_search)
if firefox then $SET(0=f_ua_ie.)$JUMP(http://www.google.com/advanced_search)
if imghp then $SET(0=f_ua_ie.)$JUMP(http://www.google.com/advanced_image_search?hl=en)
if ? then $SET(0=f_ua_ie.)
else $SET(0=f_ua_ie.)$JUMP(http://www.google.com/advanced_search)


Try

Code:
www.google.com/ (webhp\?hl=en$SET(0=f_ua_ie.)$JUMP(http://www.google.com/advanced_search)
                |firefox$SET(0=f_ua_ie.)$JUMP(http://www.google.com/advanced_search)
                |imghp$SET(0=f_ua_ie.)$JUMP(http://www.google.com/advanced_image_search?hl=en)
                |?$SET(0=f_ua_ie.)
                |$SET(0=f_ua_ie.)$JUMP(http://www.google.com/advanced_search))

You can put it all on one line. Indentation allows the entry to continue on the next line.
To comment out an entry add a # to each line.

http://proxomitron.info/45/help/Contents.html
http://proxomitron.info/45/help/BlockLis...ation.html

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


Messages In This Thread
RE: Strange results from Exceptions-U changes - JJoe - Dec. 21, 2011 07:10 PM

Forum Jump: