Hi, I’ve tried to create a search engine plug-in for “rseek”, but can’t get it to work. Here’s the code
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>Description</key>
<string>Search for R related results using RSeek</string>
<key>EngineUrl</key>
<string>https://rseek.org/?q=_agentQuery_</string>
<key>Identifier</key>
<string>rseek.org</string>
<key>Info</key>
<string>RSeek Plugin</string>
<key>Name</key>
<string>RSeek</string>
<key>OffsetPerPage</key>
<integer>1</integer>
<key>Operators</key>
<integer>59</integer>
<key>ParseLinks</key>
<true/>
<key>ResultsPerPage</key>
<integer>10</integer>
<key>Start</key>
<integer>0</integer>
<key>Version</key>
<string>1.0</string>
</dict>
</plist>
No results are returned. When I look at the log, the first line is interesting. For example,
When I double-click the address. The web browser opens, loads the page and presents the results I’m expecting. Any thoughts on why I can’t get this to happen within the query itself?
Thanks.