summaryrefslogtreecommitdiff
path: root/htroot/ConfigAppearance_p.html
diff options
context:
space:
mode:
authororbiter <orbiter@6c8d7289-2bf4-0310-a012-ef5d649a1542>2009-02-03 13:04:02 +0000
committerorbiter <orbiter@6c8d7289-2bf4-0310-a012-ef5d649a1542>2009-02-03 13:04:02 +0000
commit9d282d2c1626b1e060576b1e03ae410f6e58eac0 (patch)
tree64d2640deb5b1b7a3cfed534e9aa1804f30ac2f1 /htroot/ConfigAppearance_p.html
parent910c2aaed6bcdd408dedc0bed196cd7fc54dda73 (diff)
- renamed interactivesearch to yacyinteractive
- added a configuration option to set the pop up page in Config Appearance - added a minimized header option to yacyinteractive - fixed a bug in yacysearch: default values when no query is done git-svn-id: https://svn.berlios.de/svnroot/repos/yacy/trunk@5569 6c8d7289-2bf4-0310-a012-ef5d649a1542
Diffstat (limited to 'htroot/ConfigAppearance_p.html')
-rw-r--r--htroot/ConfigAppearance_p.html62
1 files changed, 58 insertions, 4 deletions
diff --git a/htroot/ConfigAppearance_p.html b/htroot/ConfigAppearance_p.html
index ecaf05ba9..da658fafa 100644
--- a/htroot/ConfigAppearance_p.html
+++ b/htroot/ConfigAppearance_p.html
@@ -75,6 +75,14 @@
<dt>URL of a Large Corporate Image</dt>
<dd><input type="text" name="promoteSearchPageGreeting.largeImage" value="#[promoteSearchPageGreeting.largeImage]#" size="60" /></dd>
+ <dt>Default Pop-Up Page</dt>
+ <dd>
+ <input type="radio" name="popup" value="status" #(popupStatus)#::checked="checked"#(/popupStatus)# />Status Page&nbsp;
+ <input type="radio" name="popup" value="front" #(popupFront)#::checked="checked"#(/popupFront)# />Search Front Page&nbsp;
+ <input type="radio" name="popup" value="search" #(popupSearch)#::checked="checked"#(/popupSearch)# />Search Page (small header)&nbsp;
+ <input type="radio" name="popup" value="interactive" #(popupInteractive)#::checked="checked"#(/popupInteractive)# />Interactive Search Page&nbsp;
+ </dd>
+
<dd>
<input type="submit" name="searchpage_set" value="Change Search Page" />&nbsp;&nbsp;
<input type="submit" name="searchpage_default" value="Set to Default Values" />
@@ -83,10 +91,10 @@
</fieldset>
</form>
- <p>
+ <h3>
The search page can be integrated in your own web pages with an iframe. Simply use the following code:
- <p>
- <pre>
+ </h3>
+ <fieldset><pre>
&lt;iframe name="target"
src="http://#[myaddress]#/index.html?display=2&amp;resource=local"
width="100%"
@@ -95,14 +103,60 @@
scrolling="auto"
id="target"&gt;
&lt;/iframe&gt;
- </pre>
+ </pre></fieldset>
This would look like:
<iframe name="target"
src="http://#[myaddress]#/index.html?display=2&amp;resource=local"
width="100%"
+ height="340"
+ frameborder="0"
+ scrolling="auto"
+ id="target">
+ </iframe>
+
+ <h3>
+ For a search page with a small header, use this code:
+ </h3>
+ <fieldset><pre>
+ &lt;iframe name="target"
+ src="http://#[myaddress]#/yacysearch.html?display=2&amp;resource=local"
+ width="100%"
height="560"
frameborder="0"
scrolling="auto"
+ id="target"&gt;
+ &lt;/iframe&gt;
+ </pre></fieldset>
+ This would look like:
+ <iframe name="target"
+ src="http://#[myaddress]#/yacysearch.html?display=2&amp;resource=local"
+ width="100%"
+ height="180"
+ frameborder="0"
+ scrolling="auto"
+ id="target">
+ </iframe>
+
+ <h3>
+ A third option is the interactive search. Use this code:
+ </h3>
+ <fieldset><pre>
+ &lt;iframe name="target"
+ src="http://#[myaddress]#/yacyinteractive.html?display=2"
+ width="100%"
+ height="560"
+ frameborder="0"
+ scrolling="auto"
+ id="target"&gt;
+ &lt;/iframe&gt;
+ </pre></fieldset>
+ This would look like:
+ <iframe name="target"
+ src="http://#[myaddress]#/yacyinteractive.html?display=2"
+ width="100%"
+ height="180"
+ frameborder="0"
+ scrolling="auto"
id="target">
</iframe>