diff options
Diffstat (limited to 'apps/duckduckgo/app.rc')
-rwxr-xr-x | apps/duckduckgo/app.rc | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/apps/duckduckgo/app.rc b/apps/duckduckgo/app.rc deleted file mode 100755 index 72dd0ec..0000000 --- a/apps/duckduckgo/app.rc +++ /dev/null @@ -1,30 +0,0 @@ -fn conf_enable_duckduckgo { - enable_duckduckgo=yes - conf_enable_app duckduckgo - pageTitle='Site Search' -} - - -fn duckduckgo_init { - get_post_args q - if (! ~ $#q 0) { - redirect_string = 'https://duckduckgo.com/?q=site:'$SERVER_NAME^'+'^$"q - http_redirect $redirect_string '302 Found' - } - if not { - handler_body_main='duckduckgo_body' - } -} - -fn duckduckgo_body { - echo ' -<h1>Site search</h1> -<h2>using DuckDuckGo</h2> -<form action="/_search/" method="POST"> -<label for="searchtext">Site search:</label> -<input type="text" id="searchtext" name="q" placeholder="Search text..."> -<input type="submit" value="Search"> -</form>' - -} - |