/[webpac]/trunk2/out/search.html
This is repository of my old source code which isn't updated any more. Go to git.rot13.org for current projects!
ViewVC logotype

Diff of /trunk2/out/search.html

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 464 by dpavlin, Thu Sep 23 17:14:33 2004 UTC revision 470 by dpavlin, Fri Sep 24 20:31:11 2004 UTC
# Line 9  Line 9 
9      <script src="js/l2_unescape.js" type="text/javascript"></script>      <script src="js/l2_unescape.js" type="text/javascript"></script>
10      <script src="js/getargs.js" type="text/javascript"></script>      <script src="js/getargs.js" type="text/javascript"></script>
11      <script src="js/search.js" type="text/javascript"></script>      <script src="js/search.js" type="text/javascript"></script>
12        <script src="js/popup.js" type="text/javascript"></script>
13      <script src="js/usage.js" type="text/javascript"></script>      <script src="js/usage.js" type="text/javascript"></script>
14      <link rel="stylesheet" href="style.css" type="text/css">      <link rel="stylesheet" href="style.css" type="text/css">
15    </head>    </head>
# Line 41  Line 42 
42      <form id="search" onsubmit="return go(this);">      <form id="search" onsubmit="return go(this);">
43        <script type="text/javascript">        <script type="text/javascript">
44          document.write('<select name="index_name">');          document.write('<select name="index_name">');
45          select_option("index/DescriptorHR","Hrvatski",args.index_name);          var index = 'index/DescriptorHR';
46          select_option("index/DescriptorEN","Engleski",args.index_name);          if (args && args.index_name) index = args.index_name;
47          select_option("index/DescriptorFR","Francuski",args.index_name);          select_option("index/DescriptorHR","Hrvatski",index);
48          select_option("index/DescriptorGE","Njemački",args.index_name);          select_option("index/DescriptorEN","Engleski",index);
49          select_option("index/AllThes","Sve riječi",args.index_name);          select_option("index/DescriptorFR","Francuski",index);
50            select_option("index/DescriptorGE","Njemački",index);
51            select_option("index/AllThes","Sve riječi",index);
52          document.write('</select>');          document.write('</select>');
53        </script>        </script>
54        <script type="text/javascript">        <script type="text/javascript">
# Line 66  Line 69 
69    
70        if (args.query) {        if (args.query) {
71          document.write("<div id=\"results\"><h2>Please wait...</h2></div>\n");          document.write("<div id=\"results\"><h2>Please wait...</h2></div>\n");
72          doSearch(args.index_name, args.query, printResults);          doSearch(index, args.query, printResults);
73        }              }      
74    
75      </script>      </script>

Legend:
Removed from v.464  
changed lines
  Added in v.470

  ViewVC Help
Powered by ViewVC 1.1.26