Commit graph

3650 commits

Author SHA1 Message Date
doxulting
f6609fd4d1 Template for 123f field plugin 2005-06-02 15:25:53 +00:00
doxulting
402776bbbb Template for 123e field plugin 2005-06-02 15:25:34 +00:00
doxulting
6e2ca8c2f3 Template for 123d field plugin 2005-06-02 15:25:08 +00:00
doxulting
61ceebf471 Template for 123a field plugin 2005-06-02 15:24:44 +00:00
doxulting
e02ab0499f Template for 122a field plugin 2005-06-02 15:24:20 +00:00
doxulting
8e52509e8d Template for 121b field plugin 2005-06-02 15:23:59 +00:00
doxulting
5eb650682b Template for 121a field plugin 2005-06-02 15:23:38 +00:00
doxulting
d67f7fd303 Template for 120a field plugin 2005-06-02 15:23:13 +00:00
doxulting
291f66b874 Template for 117a field plugin 2005-06-02 15:22:38 +00:00
doxulting
560fe9ef99 Template for 116a field plugin 2005-06-02 15:22:13 +00:00
doxulting
fb4f7dac54 Template for 115b field plugin 2005-06-02 15:21:47 +00:00
doxulting
5d93d939a7 Template for 115a field plugin 2005-06-02 15:21:18 +00:00
doxulting
f0fb333bbf Template for 110a field plugin 2005-06-02 15:20:54 +00:00
doxulting
0beb48ec2a Template for 106a field plugin 2005-06-02 15:20:25 +00:00
doxulting
06bb50211e Template for 105a field plugin 2005-06-02 15:19:57 +00:00
doxulting
fec9018dc3 Template for 100a field plugin 2005-06-02 15:16:54 +00:00
gmccullagh
8bebcfb2a5 just declared $totalResults and added an indent at the end 2005-06-02 13:47:47 +00:00
genjimoto
6660f2c26c minor bugfix 2005-06-02 13:29:28 +00:00
genjimoto
cf8f949703 minor bugfix 2005-06-02 04:36:22 +00:00
genjimoto
521651614d template to edit the mediatype table. 2005-06-02 03:55:59 +00:00
genjimoto
c9276aa1c6 template to edit the item subcategory table. 2005-06-02 03:55:26 +00:00
genjimoto
e77d06e4ef template to edit the item category table. 2005-06-02 03:55:02 +00:00
genjimoto
22b8970807 script to edit the item subcategory table. 2005-06-02 03:31:16 +00:00
genjimoto
67cd0be3ed script to edit the category table. 2005-06-02 03:08:22 +00:00
genjimoto
cb0562abd2 script to edit the media type table. 2005-06-02 02:37:32 +00:00
genjimoto
e2f06e613b Processes the Search options sidebar input, and places it into terms and values for opac-search.pl. Also passes along itemtypes to search on, branches to search on, and availablity bool. 2005-06-02 00:47:58 +00:00
genjimoto
bad524360d Addition of new table lists: Categorylist, Subcategorylist and Mediatypelist. Renamed classlist to itemtypelist. 2005-06-01 23:07:17 +00:00
genjimoto
0b54c26b3e New Feature: Search options sidebar. Feature request of Rachel@katipo. 2005-06-01 22:20:16 +00:00
genjimoto
bc6d3d8bcf New links to three new table editors: Categorytable, subcategorytable and mediatypetable. 2005-06-01 21:41:03 +00:00
genjimoto
9724d3b061 New Feature: catalogsearch() has a new parameter, $sqlstring. A developer puts into it whatever they want to tack onto the end of the where statement. See usage in opac-search.pl 2005-06-01 21:35:05 +00:00
genjimoto
8e62940ba0 New Feature: catalogsearch() has a new parameter, $sqlstring. A developer puts into it whatever they want to tack onto the end of the where statement. See usage in opac-search.pl 2005-06-01 21:18:39 +00:00
genjimoto
a54fa6ac52 patch from Genji (Waylon R.) to update subjects in MARC tables when systempref has MARC=OFF 2005-06-01 20:43:58 +00:00
tipaul
4cdb643e3e new version, doing tag by tag. Should be slower, but requires a lot less memory 2005-06-01 18:55:08 +00:00
tipaul
b79bc88f4b new version, doing tag by tag. Should be slower, but requires a lot less memory 2005-06-01 18:47:38 +00:00
tipaul
e2d56f0f49 some fixes & improvements for dictionnary search in librarian interface 2005-06-01 12:51:02 +00:00
joshferraro
5974c9f86d fix for bug 981 2005-05-31 14:23:08 +00:00
slef
113a1f8f50 possible fix for shell characters in kohaadmin user and database names 2005-05-27 13:33:42 +00:00
tipaul
41c209a4bd proof of concept for inverted index tables for search
how it works :
* create the table marc_Tword with the following structure :
CREATE TABLE `marc_Tword` (
  `word` varchar(80) NOT NULL default '',
  `usedin` text NOT NULL,
  `tagsubfield` varchar(4) NOT NULL default '',
  PRIMARY KEY  (`word`,`tagsubfield`)
) TYPE=MyISAM;
* open a console & type export PERL5LIB & export KOHA_CONF as usual.
* fill this table with misc/build_marc_Tword.pl. Warning, this script uses a very very consumming but very fast method to fill the table : it does everything in memory, then write everything. Another method is provided (& commented), but it's 100x times slower (really !)
* open opac-search.pl and replace use C4::SearchMarc; by use C4::SearchMarcTest; as the API hasn't changed, it will work immediatly.
* go to opac-search (advanced search) & search whatever you want. Should work fine.

LIMITS :
* build_marc_Tword has problem with extended chars (accented ones mainly). So don't be afraid if you get sql errors. They are not a problem for a POC
* search works always order by title, whatever you choose.
* search works only search WORDA and WOARDB, not yet WORDA or WORDB or WORDA except WORDB.
2005-05-27 09:30:23 +00:00
rangi
a887b00436 First cut of a search engine using Plucene
NOT FOR PRODUCTION, but if anyone wishes to test/improve go right ahead
2005-05-22 01:18:45 +00:00
hdl
3adf376ae5 Removing a warning 2005-05-17 14:54:16 +00:00
dnmeid
b33c6222ff Some translation adjustments 2005-05-17 13:21:34 +00:00
rangi
440b5402e6 Can now change branch and printer 2005-05-15 05:56:05 +00:00
rangi
5975a94379 Got drop down list appearing when more than one borrower matches 2005-05-15 05:42:00 +00:00
rangi
18b2cfe08a Removing old print statement 2005-05-15 04:35:36 +00:00
rangi
0edd65bfc8 More little changes to remove warns 2005-05-15 04:34:09 +00:00
rangi
da12640324 Continuing work, issues getting closed to finished 2005-05-15 04:29:54 +00:00
rangi
987767d7a1 Just changed the intro text 2005-05-15 00:03:26 +00:00
rangi
f3fa85c38f Start of a module to handle circulation use Curses::UI
This will issue, and return .. but has lots of glitches still and is no
where near finished. I will continue working on it, but am committing so
others can see what im up to.
2005-05-14 23:57:28 +00:00
rangi
abf3b05898 Another little error that was throwing annoying warns 2005-05-14 22:26:07 +00:00
rangi
1e1929be43 Fixing a line that was throwing up warnings when running the script with -w 2005-05-14 22:20:17 +00:00