--- loncom/interface/lonsearchcat.pm 2001/03/12 17:28:32 1.7
+++ loncom/interface/lonsearchcat.pm 2001/03/19 16:45:38 1.41
@@ -3,6 +3,30 @@
#
# 03/08/2001 Scott Harrison
#
+# Functions
+#
+# handler(server reference) : interacts with the Apache server layer
+# (for /adm/searchcat URLs)
+# simpletextfield(name,value) : returns HTML formatted string for simple text
+# field
+# simplecheckbox(name,value) : returns HTML formatted string for simple
+# checkbox
+# searchphrasefield(title,name,value) : returns HTML formatted string for
+# a search expression phrase field
+# dateboxes(name, defaultmonth, defaultday, defaultyear) : returns HTML
+# formatted string
+# for a calendar date
+# selectbox(title,name,value,%HASH=options) : returns HTML formatted string for
+# a selection box field
+# advancedsearch() :
+# filled(field) : determines whether a given field has been filled
+# basicsearch() :
+# output_blank_field_error() : outputs a message saying that more fields need
+# to be filled in
+# output_results() : outputs results from search
+# build_SQL_query() : builds a SQL query string from a logical expression
+# with AND/OR keywords
+
package Apache::lonsearchcat;
use strict;
@@ -10,6 +34,7 @@ use Apache::Constants qw(:common);
use Apache::lonnet();
use Apache::File();
use CGI qw(:standard);
+use Text::Query;
my %language;
my $scrout;
@@ -36,9 +61,15 @@ sub handler {
%metadatafields=();
+ my $hidden='';
+ $hidden=<
-between:
-
-
-and:
-
-
-
$title:
".
- '';
+sub simpletextfield {
+ my ($name,$value)=@_;
+ return '';
+}
+
+sub simplecheckbox {
+ my ($name,$value)=@_;
+ my $checked='';
+ $checked="CHECKED" if $value eq 'on';
+ return '';
}
sub searchphrasefield {
@@ -702,10 +277,154 @@ as AND or OR.
END
my $uctitle=uc($title);
return "\n
$uctitle:".
- ": $instruction
".
+ " $instruction
".
'';
}
+sub dateboxes {
+ my ($name,$defaultmonth,$defaultday,$defaultyear,
+ $currentmonth,$currentday,$currentyear)=@_;
+ ($defaultmonth,$defaultday,$defaultyear)=('','','');
+ my $month=<Search Catalog
+