![]() |
|
Centralized management of search sources - Printable Version +- The Un-Official Proxomitron Forum (https://www.prxbx.com/forums) +-- Forum: Forum Related (/forumdisplay.php?fid=37) +--- Forum: Proxomitron Program (/forumdisplay.php?fid=4) +--- Thread: Centralized management of search sources (/showthread.php?tid=1752) |
Centralized management of search sources - sh8an - Apr. 26, 2011 12:28 PM Hi all. in the process of trying various browsers decided to centralize search source management and ran into some problems. i'am still working on it but wanted to check several things in advance. i've setup a default search engine http://local.ptron/search/{search terms} Code: [HTTP headers]the list itself Code: ##############################################1. * matches but does not jump without an explicit jump in the list. is it supposed to be that way or am i doing something wrong 2. figured out that russian keywords can be included in unicode 3. single word searches are broken. i've tried ((\+|%20) \2|) but this way multi word gets caught by \1 4. ie8 currently joins terms with a + sign while in case of wikipedia for example a space would be better. whats' the easy way to explode and join? thanks in advance for hints RE: Centralized management of search sources - JJoe - Apr. 27, 2011 06:23 PM If I understand correctly... Quote:1. * matches but does not jump without an explicit jump in the list. is it supposed to be that way or am i doing something wrong Could it be due to Code: prxDebug $SET(seHost=http://local.ptron/search.debug/Quote:3. single word searches are broken. i've tried ((\+|%20) \2|) but this way multi word gets caught by \1 Try (\+|%20|^?) Quote:4. ie8 currently joins terms with a + sign while in case of wikipedia for example a space would be better. whats' the easy way to explode and join? I would probably have most of the work in the list. The filter might look something like Code: [HTTP headers]List entries like Code: dict(\+|%20) \2 & $JUMP(http://dictionary.reference.com/search?q=\2)Not tested. HTH RE: Centralized management of search sources - sh8an - Apr. 28, 2011 03:46 PM (Apr. 27, 2011 06:23 PM)JJoe Wrote: missing a closing parenthesis.ooops. thanks for the hints. |