summaryrefslogtreecommitdiff
path: root/httemplate/search
diff options
context:
space:
mode:
authorivan <ivan>2007-02-05 13:11:03 +0000
committerivan <ivan>2007-02-05 13:11:03 +0000
commit75c07c10c95158a925cb25119abfea646fa5f12e (patch)
treeb2ef59a90701007fc45b9ff502241026e77187be /httemplate/search
parent509db87bd528fdb6bea716bf501e44ff854a485c (diff)
remove unused svc_Smart
Diffstat (limited to 'httemplate/search')
-rw-r--r--httemplate/search/svc_Smart.html28
1 files changed, 0 insertions, 28 deletions
diff --git a/httemplate/search/svc_Smart.html b/httemplate/search/svc_Smart.html
deleted file mode 100644
index 706471ba0..000000000
--- a/httemplate/search/svc_Smart.html
+++ /dev/null
@@ -1,28 +0,0 @@
-% if ( $cgi->param('search_svc') =~ /\.[a-z]{2,8}$/i
-% && $cgi->param('search_svc') !~ /\@/
-% )
-% {
-
-% # looks (enough) like a domain
- <% $cgi->redirect('svc_domain.cgi?domain='. uri_escape( $cgi->param('search_svc') ) ) %>
-
-% } elsif ( $cgi->param('search_svc') =~ /\w/ ) {
-%
-% if ( $cgi->param('search_svc') =~ /^(.+)\@(.+)$/ ) {
-
-% #looks (enough) like a username@domain
- <% $cgi->redirect('svc_acct.cgi?username_type=Exact;username='. uri_escape($1). ';domain='. uri_escape($2) ) %>
-
-% } else {
-
-% #looks (enough) like a username
- <% $cgi->redirect('svc_acct.cgi?username_type=Exact;username='. uri_escape( $cgi->param('search_svc') ) ) %>
-
-% }
-
-% } else {
-
- <% include('/elements/header.html', 'Unrecognized service string') %>
- <% include('/elements/footer.html') %>
-
-% }